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
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-06-05 20:32+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../scripts/build/lb_chroot_apt:17
msgid "manage /etc/apt/apt.conf"
msgstr ""
#: ../scripts/build/lb_chroot_apt:32
msgid "Configuring file /etc/apt/apt.conf"
msgstr ""
#: ../scripts/build/lb_chroot_apt:229
msgid "Deconfiguring file /etc/apt/apt.conf"
msgstr ""
#: ../scripts/build/lb_chroot_package-lists:17
msgid "queue install of package lists into chroot"
msgstr ""
#: ../scripts/build/lb_binary_net:17
msgid "build netboot binary image"
msgstr ""
#: ../scripts/build/lb_binary_net:37
msgid "Begin building binary netboot image..."
msgstr ""
#: ../scripts/build/lb_binary_net:98
msgid "Invalid default kernel flavour for sparc \"%s\""
msgstr ""
#: ../scripts/build/lb_chroot_local-patches:17
msgid "apply local patches against chroot"
msgstr ""
#: ../scripts/build/lb_chroot_local-patches:27
msgid "Begin applying chroot local patches..."
msgstr ""
#: ../scripts/build/lb_chroot_local-patches:54
msgid "Applying patch %s..."
msgstr ""
#: ../scripts/build/lb_chroot_preseed:17
msgid "execute local preseed in chroot"
msgstr ""
#: ../scripts/build/lb_chroot_preseed:27
msgid "Begin executing local preseeds..."
msgstr ""
#: ../scripts/build/lb_chroot_archives:17
msgid "manage /etc/apt/sources.list"
msgstr ""
#: ../scripts/build/lb_chroot_archives:47
msgid "Configuring file /etc/apt/sources.list"
msgstr ""
#: ../scripts/build/lb_chroot_archives:375
msgid "GPG exited with error status %s"
msgstr ""
#: ../scripts/build/lb_chroot_archives:423
#, sh-format
msgid ""
"Local packages must be named with suffix '_all.deb' or '_$architecture.deb'."
msgstr ""
#: ../scripts/build/lb_chroot_archives:570
msgid "Deconfiguring file /etc/apt/sources.list"
msgstr ""
#: ../scripts/build/lb_chroot_upstart:17
msgid "manage /sbin/initctl"
msgstr ""
#: ../scripts/build/lb_chroot_upstart:32
msgid "Configuring file /sbin/initctl"
msgstr ""
#: ../scripts/build/lb_chroot_upstart:63
msgid "Deconfiguring file /sbin/initctl"
msgstr ""
#: ../scripts/build/lb_binary_hooks:17
msgid "execute hooks in binary"
msgstr ""
#: ../scripts/build/lb_binary_hooks:27 ../scripts/build/lb_chroot_hooks:27
msgid "Begin executing hooks..."
msgstr ""
#: ../scripts/build/lb_chroot_interactive:17
msgid "make build interactive"
msgstr ""
#: ../scripts/build/lb_chroot_interactive:32
msgid "Begin interactive build..."
msgstr ""
#: ../scripts/build/lb_chroot_interactive:48
msgid "Pausing build: starting interactive shell..."
msgstr ""
#: ../scripts/build/lb_chroot_interactive:52
msgid "Pausing build: starting interactive X11..."
msgstr ""
#: ../scripts/build/lb_chroot_interactive:56
msgid "Pausing build: starting interactive Xnest..."
msgstr ""
#: ../scripts/build/lb_source_debian:17
msgid "debian sources"
msgstr ""
#: ../scripts/build/lb_source_debian:32
msgid "Begin downloading sources..."
msgstr ""
#: ../scripts/build/lb_binary_disk:17
msgid "install disk information into binary"
msgstr ""
#: ../scripts/build/lb_binary_disk:35 ../scripts/build/lb_source_disk:36
msgid "Begin installing disk information..."
msgstr ""
#: ../scripts/build/lb_bootstrap_cdebootstrap:17
msgid "bootstrap a Debian system with cdebootstrap(1)"
msgstr ""
#: ../scripts/build/lb_bootstrap_cdebootstrap:35
#: ../scripts/build/lb_bootstrap_debootstrap:35
#: ../scripts/build/lb_bootstrap_copy:35
msgid "Begin bootstrapping system..."
msgstr ""
#: ../scripts/build/lb_chroot_linux-image:17
msgid "schedule kernel packages for installation"
msgstr ""
#: ../scripts/build/lb:17
msgid "utility to build Debian Live systems"
msgstr ""
#: ../scripts/build/lb:62
msgid "no such script"
msgstr ""
#: ../scripts/build/lb:66
msgid "[%s] %s"
msgstr ""
#: ../scripts/build/lb_chroot_live-packages:17
msgid "schedule live packages for installation"
msgstr ""
#: ../scripts/build/lb_source:19 ../scripts/build/lb_build:19
#: ../scripts/build/lb_bootstrap:19 ../scripts/build/lb_chroot:19
#: ../scripts/build/lb_binary:19
msgid "Automatically populating config tree."
msgstr ""
#: ../scripts/build/lb_source:24
msgid "build source images"
msgstr ""
#: ../scripts/build/lb_chroot_hosts:17
msgid "manage /etc/hosts"
msgstr ""
#: ../scripts/build/lb_chroot_hosts:32
msgid "Configuring file /etc/hosts"
msgstr ""
#: ../scripts/build/lb_chroot_hosts:68
msgid "Deconfiguring file /etc/hosts"
msgstr ""
#: ../scripts/build/lb_binary_grub2:17
msgid "installs grub2 into binary"
msgstr ""
#: ../scripts/build/lb_binary_grub2:32
msgid "Begin installing grub2..."
msgstr ""
#: ../scripts/build/lb_binary_grub2:129 ../scripts/build/lb_binary_grub:155
msgid "Bootloader in this image type not yet supported by live-build."
msgstr ""
#: ../scripts/build/lb_binary_grub2:130 ../scripts/build/lb_binary_grub:156
msgid "This would produce a not bootable image, aborting (FIXME)."
msgstr ""
#: ../scripts/build/lb_binary_grub2:148 ../scripts/build/lb_binary_grub:174
msgid "Net cow not yet supported on grub"
msgstr ""
#: ../scripts/build/lb_chroot_task-lists:17
msgid "install task lists into chroot"
msgstr ""
#: ../scripts/build/lb_source_hdd:17 ../scripts/build/lb_source_virtual-hdd:17
msgid "build source image"
msgstr ""
#: ../scripts/build/lb_source_hdd:37
msgid "Begin building source hdd image..."
msgstr ""
#: ../scripts/build/lb_source_hdd:87 ../scripts/build/lb_binary_hdd:140
msgid "Unsupported binary filesystem %s"
msgstr ""
#: ../scripts/build/lb_source_hdd:92
msgid "!!! The following error/warning messages can be ignored !!!"
msgstr ""
#: ../scripts/build/lb_source_hdd:125
msgid "!!! The above error/warning messages can be ignored !!!"
msgstr ""
#: ../scripts/build/lb_binary_grub:17
msgid "installs grub into binary"
msgstr ""
#: ../scripts/build/lb_binary_grub:32
msgid "Begin installing grub..."
msgstr ""
#: ../scripts/build/lb_binary_local-includes:17
#: ../scripts/build/lb_binary_includes:17
msgid "copy files into binary"
msgstr ""
#: ../scripts/build/lb_binary_local-includes:27
msgid "Begin copying binary local includes..."
msgstr ""
#: ../scripts/build/lb_binary_win32-loader:17
msgid "copy win32-loader into binary"
msgstr ""
#: ../scripts/build/lb_binary_win32-loader:32
msgid "Begin copying win32-loader..."
msgstr ""
#: ../scripts/build/lb_binary_win32-loader:98
msgid ""
"win32-loader inclusion is set to true but not compatible with your "
"architecture, ignoring."
msgstr ""
#: ../scripts/build/lb_binary_rootfs:17
msgid "build rootfs image"
msgstr ""
#: ../scripts/build/lb_binary_rootfs:27
msgid "Begin building root filesystem image..."
msgstr ""
#: ../scripts/build/lb_binary_rootfs:326
msgid "Preparing squashfs image..."
msgstr ""
#: ../scripts/build/lb_binary_rootfs:327 ../scripts/build/lb_binary_rootfs:475
#: ../scripts/build/lb_binary_chroot:81 ../scripts/build/lb_source_tar:38
msgid "This may take a while."
msgstr ""
#: ../scripts/build/lb_binary_iso:17
msgid "build iso binary image"
msgstr ""
#: ../scripts/build/lb_binary_iso:41
msgid "Begin building binary iso image..."
msgstr ""
#: ../scripts/build/lb_binary_iso:151
msgid "Bootloader on your architecture not yet supported by live-build."
msgstr ""
#: ../scripts/build/lb_binary_iso:152
msgid ""
"This will produce a most likely not bootable image (Continuing in 5 seconds)."
msgstr ""
#: ../scripts/build/lb_testroot:17
msgid "ensure that a system is built as root"
msgstr ""
#: ../scripts/build/lb_testroot:30
msgid "need root privileges"
msgstr ""
#: ../scripts/build/lb_chroot_includes:17
msgid "copy files into chroot"
msgstr ""
#: ../scripts/build/lb_chroot_includes:27
msgid "Begin copying chroot includes..."
msgstr ""
#: ../scripts/build/lb_binary_tar:17
msgid "build harddisk binary image"
msgstr ""
#: ../scripts/build/lb_binary_tar:32
msgid "Begin building binary harddisk image..."
msgstr ""
#: ../scripts/build/lb_binary_syslinux:17
msgid "installs syslinux into binary"
msgstr ""
#: ../scripts/build/lb_binary_syslinux:32
msgid "Begin installing syslinux..."
msgstr ""
#: ../scripts/build/lb_binary_syslinux:108
msgid "/usr/bin/syslinux - no such file."
msgstr ""
#: ../scripts/build/lb_binary_syslinux:115
msgid "/usr/lib/syslinux - no such directory"
msgstr ""
#: ../scripts/build/lb_chroot_dpkg:17
msgid "manage /sbin/dpkg"
msgstr ""
#: ../scripts/build/lb_chroot_dpkg:32
msgid "Configuring file /sbin/start-stop-daemon"
msgstr ""
#: ../scripts/build/lb_chroot_dpkg:82
msgid "Deconfiguring file /sbin/start-stop-daemon"
msgstr ""
#: ../scripts/build/lb_build:26
msgid "Executing auto/build script."
msgstr ""
#: ../scripts/build/lb_build:37
msgid "build a Debian Live system"
msgstr ""
#: ../scripts/build/lb_build:45
msgid "No config/ directory; using defaults for all options"
msgstr ""
#: ../scripts/build/lb_build:50
msgid "Cannot build live image from the root directory (/)"
msgstr ""
#: ../scripts/build/lb_build:56
msgid "Cannot build live image from a directory containing spaces"
msgstr ""
#: ../scripts/build/lb_chroot_hooks:17
msgid "execute hooks in chroot"
msgstr ""
#: ../scripts/build/lb_source_checksums:17
msgid "create source checksums"
msgstr ""
#: ../scripts/build/lb_chroot_resolv:17
msgid "manage /etc/resolv.conf"
msgstr ""
#: ../scripts/build/lb_chroot_resolv:32
msgid "Configuring file /etc/resolv.conf"
msgstr ""
#: ../scripts/build/lb_chroot_resolv:71
msgid "Deconfiguring file /etc/resolv.conf"
msgstr ""
#: ../scripts/build/lb_config:19
msgid "Executing auto/config script."
msgstr ""
#: ../scripts/build/lb_config:31
msgid "create configuration for live-build(7)"
msgstr ""
#: ../scripts/build/lb_config:185 ../functions/arguments.sh:17
msgid "terminating"
msgstr ""
#: ../scripts/build/lb_config:201
msgid "%s: This is live-build version %s"
msgstr ""
#: ../scripts/build/lb_config:876 ../functions/arguments.sh:77
msgid "internal error %s"
msgstr ""
#: ../scripts/build/lb_config:886
msgid "Considering defaults defined in %s"
msgstr ""
#: ../scripts/build/lb_config:1465
msgid "Please install 'debconf-utils' in order to use this feature."
msgstr ""
#: ../scripts/build/lb_binary_includes:32
msgid "Begin copying binary includes..."
msgstr ""
#: ../scripts/build/lb_binary_includes:53
msgid "user specified includes not accessible in %s"
msgstr ""
#: ../scripts/build/lb_bootstrap:24
msgid "bootstrap a Debian system"
msgstr ""
#: ../scripts/build/lb_binary_yaboot:17
msgid "installs yaboot into binary"
msgstr ""
#: ../scripts/build/lb_binary_yaboot:32
msgid "Begin installing yaboot..."
msgstr ""
#: ../scripts/build/lb_binary_yaboot:162
msgid "not yet supported, aborting (FIXME)."
msgstr ""
#: ../scripts/build/lb_binary_yaboot:180
msgid "Net cow not yet supported on yaboot"
msgstr ""
#: ../scripts/build/lb_chroot_sysv-rc:17
msgid "manage /usr/sbin/policy-rc.d"
msgstr ""
#: ../scripts/build/lb_chroot_sysv-rc:32
msgid "Configuring file /usr/sbin/policy-rc.d"
msgstr ""
#: ../scripts/build/lb_chroot_sysv-rc:63
msgid "Deconfiguring file /usr/sbin/policy-rc.d"
msgstr ""
#: ../scripts/build/lb_binary_package-lists:17
msgid "install local packages into binary"
msgstr ""
#: ../scripts/build/lb_binary_package-lists:27
msgid "Begin installing local package lists..."
msgstr ""
#: ../scripts/build/lb_chroot_proc:17
msgid "mount /proc"
msgstr ""
#: ../scripts/build/lb_chroot_proc:35
msgid "Begin mounting /proc..."
msgstr ""
#: ../scripts/build/lb_chroot_proc:63
msgid "Begin unmounting /proc..."
msgstr ""
#: ../scripts/build/lb_chroot_hostname:17
msgid "manage /bin/hostname"
msgstr ""
#: ../scripts/build/lb_chroot_hostname:32
msgid "Configuring file /etc/hostname"
msgstr ""
#: ../scripts/build/lb_chroot_hostname:49
msgid "Configuring file /bin/hostname"
msgstr ""
#: ../scripts/build/lb_chroot_hostname:66
msgid "Deconfiguring file /etc/hostname"
msgstr ""
#: ../scripts/build/lb_chroot_hostname:80
msgid "Deconfiguring file /bin/hostname"
msgstr ""
#: ../scripts/build/lb_binary_debian-installer:17
msgid "install debian-installer into binary"
msgstr ""
#: ../scripts/build/lb_binary_debian-installer:52
msgid "debian-installer flavour %s not supported."
msgstr ""
#: ../scripts/build/lb_binary_debian-installer:57
msgid "Begin installing debian-installer..."
msgstr ""
#: ../scripts/build/lb_binary_debian-installer:234
msgid "Could not download file: %s"
msgstr ""
#: ../scripts/build/lb_binary_debian-installer:531
msgid "Could not find packages in cache/packages.bootstrap."
msgstr ""
#: ../scripts/build/lb_binary_debian-installer:532
msgid ""
"You selected values of LB_CACHE, LB_CACHE_PACKAGES, LB_CACHE_STAGES and "
"LB_DEBIAN_INSTALLER which will result in 'bootstrap' packages not being "
"cached - these are required when integrating the Debian Installer."
msgstr ""
#: ../scripts/build/lb_binary_debian-installer:617
msgid "Downloading udebs..."
msgstr ""
#: ../scripts/build/lb_binary_debian-installer:621
msgid ""
"Building in derivative mode in debian+ layout.. a lot of 404 errors are ok "
"here."
msgstr ""
#: ../scripts/build/lb_source_virtual-hdd:37
msgid "Begin building source virtual-hdd image..."
msgstr ""
#: ../scripts/build/lb_chroot_hacks:17
msgid "execute hacks in chroot"
msgstr ""
#: ../scripts/build/lb_chroot_hacks:27
msgid "Begin executing hacks..."
msgstr ""
#: ../scripts/build/live-build:33
msgid "live-build is a set of scripts to build Debian Live system images."
msgstr ""
#: ../scripts/build/live-build:35
msgid ""
"The idea behind live-build is a framework that uses a configuration "
"directory to completely automate and customize all aspects of building a "
"Live image."
msgstr ""
#: ../scripts/build/live-build:37
msgid ""
"An introduction to live-build can be found in the live-build(7) manpage."
msgstr ""
#: ../scripts/build/lb_chroot_devpts:17
msgid "mount /dev/pts"
msgstr ""
#: ../scripts/build/lb_chroot_devpts:35
msgid "Begin mounting /dev/pts..."
msgstr ""
#: ../scripts/build/lb_chroot_devpts:60
msgid "Begin unmounting /dev/pts..."
msgstr ""
#: ../scripts/build/lb_binary_virtual-hdd:17 ../scripts/build/lb_binary_hdd:17
msgid "build binary image"
msgstr ""
#: ../scripts/build/lb_binary_virtual-hdd:32
msgid "Begin building binary virtual-hdd image..."
msgstr ""
#: ../scripts/build/lb_binary_virtual-hdd:67
msgid "Creating virtual disk image..."
msgstr ""
#: ../scripts/build/lb_chroot:24
msgid "customize the Debian system"
msgstr ""
#: ../scripts/build/lb_bootstrap_debootstrap:17
msgid "bootstrap a Debian system with debootstrap(8)"
msgstr ""
#: ../scripts/build/lb_bootstrap_debootstrap:126
msgid "Running debootstrap (download-only)... "
msgstr ""
#: ../scripts/build/lb_bootstrap_debootstrap:142
msgid "Running debootstrap... "
msgstr ""
#: ../scripts/build/lb_bootstrap_debootstrap:152
msgid "Bootstrap will be foreign"
msgstr ""
#: ../scripts/build/lb_bootstrap_debootstrap:155
msgid "Running debootstrap second stage under QEMU"
msgstr ""
#: ../scripts/build/lb_bootstrap_debootstrap:176
msgid "Can't process file /usr/bin/debootstrap (FIXME)"
msgstr ""
#: ../scripts/build/lb_binary_manifest:17
msgid "create manifest"
msgstr ""
#: ../scripts/build/lb_binary_manifest:32
msgid "Begin creating manifest..."
msgstr ""
#: ../scripts/build/lb_source_disk:17
msgid "install disk information into source"
msgstr ""
#: ../scripts/build/lb_chroot_tmpfs:17
msgid "use tmpfs to speedup the build"
msgstr ""
#: ../scripts/build/lb_chroot_tmpfs:37
msgid "Configuring tmpfs for /var/lib/dpkg"
msgstr ""
#: ../scripts/build/lb_chroot_tmpfs:59
msgid "Deconfiguring tmpfs for /var/lib/dpkg"
msgstr ""
#: ../scripts/build/lb_bootstrap_cache:17
msgid "cache bootstrap stage"
msgstr ""
#: ../scripts/build/lb_bootstrap_cache:36
msgid "Restoring bootstrap stage from cache..."
msgstr ""
#: ../scripts/build/lb_bootstrap_cache:69
msgid "Saving bootstrap stage to cache..."
msgstr ""
#: ../scripts/build/lb_chroot_cache:17
msgid "cache chroot stage"
msgstr ""
#: ../scripts/build/lb_chroot_cache:33
msgid "Restoring chroot stage from cache..."
msgstr ""
#: ../scripts/build/lb_chroot_cache:65
msgid "Saving chroot stage to cache..."
msgstr ""
#: ../scripts/build/lb_binary_linux-image:17
msgid "install linux-image into binary"
msgstr ""
#: ../scripts/build/lb_binary_linux-image:32
msgid "Begin install linux-image..."
msgstr ""
#: ../scripts/build/lb_source_debian-live:17
msgid "copy debian-live config into source"
msgstr ""
#: ../scripts/build/lb_source_debian-live:32
msgid "Begin copying live-build configuration..."
msgstr ""
#: ../scripts/build/lb_source_net:17
msgid "build source net image"
msgstr ""
#: ../scripts/build/lb_source_net:37
msgid "Begin building source netboot image..."
msgstr ""
#: ../scripts/build/lb_source_iso:17
msgid "build iso source image"
msgstr ""
#: ../scripts/build/lb_source_iso:41
msgid "Begin building source iso image..."
msgstr ""
#: ../scripts/build/lb_binary_hdd:32
msgid "Begin building binary hdd image..."
msgstr ""
#: ../scripts/build/lb_binary_hdd:59
msgid "Sparc only supports booting from ext2, ext3, ext4 or ufs."
msgstr ""
#: ../scripts/build/lb_binary_hdd:90
msgid ""
"FAT16 doesn't support files larger than 2GB, automatically enforcing FAT32."
msgstr ""
#: ../scripts/build/lb_binary_hdd:99
msgid ""
"FAT16 doesn't support partitions larger than 2GB, automatically enforcing "
"FAT32"
msgstr ""
#: ../scripts/build/lb_binary:24
msgid "build binary images"
msgstr ""
#: ../scripts/build/lb_binary_chroot:17
msgid "copy chroot into chroot"
msgstr ""
#: ../scripts/build/lb_binary_chroot:27
msgid "Begin copying chroot..."
msgstr ""
#: ../scripts/build/lb_chroot_debianchroot:17
msgid "manage /etc/debian_chroot"
msgstr ""
#: ../scripts/build/lb_chroot_debianchroot:32
msgid "Configuring file /etc/debian_chroot"
msgstr ""
#: ../scripts/build/lb_chroot_debianchroot:57
msgid "Deconfiguring file /etc/debian_chroot"
msgstr ""
#: ../scripts/build/lb_clean:19
msgid "Executing auto/clean script."
msgstr ""
#: ../scripts/build/lb_clean:30
msgid "clean up system build directories"
msgstr ""
#: ../scripts/build/lb_clean:43
msgid "%s is not a good Debian Live working directory to clean."
msgstr ""
#: ../scripts/build/lb_clean:73
msgid "Cleaning chroot"
msgstr ""
#: ../scripts/build/lb_source_tar:17
msgid "build source tarball"
msgstr ""
#: ../scripts/build/lb_source_tar:37
msgid "Begin building source tarball..."
msgstr ""
#: ../scripts/build/lb_chroot_sysfs:17
msgid "mount /sys"
msgstr ""
#: ../scripts/build/lb_chroot_sysfs:35
msgid "Begin mounting /sys..."
msgstr ""
#: ../scripts/build/lb_chroot_sysfs:63
msgid "Begin unmounting /sys..."
msgstr ""
#: ../scripts/build/lb_binary_memtest:17
msgid "installs a memtest into binary"
msgstr ""
#: ../scripts/build/lb_binary_memtest:32
msgid "Begin installing memtest..."
msgstr ""
#: ../scripts/build/lb_binary_memtest:48
msgid "skipping binary_memtest, foreign architecture."
msgstr ""
#: ../scripts/build/lb_bootstrap_copy:17
msgid "bootstrap by copying the host system"
msgstr ""
#: ../scripts/build/lb_chroot_install-packages:17
msgid "install queued packages into chroot"
msgstr ""
#: ../scripts/build/lb_binary_silo:17
msgid "installs silo into binary"
msgstr ""
#: ../scripts/build/lb_binary_silo:43
msgid "Begin installing silo..."
msgstr ""
#: ../scripts/build/lb_binary_silo:138
msgid "Net cow not supported on silo"
msgstr ""
#: ../scripts/build/lb_chroot_selinuxfs:17
msgid "mount /selinux"
msgstr ""
#: ../scripts/build/lb_chroot_selinuxfs:37
msgid "Begin mounting /selinux..."
msgstr ""
#: ../scripts/build/lb_chroot_selinuxfs:66
msgid "Begin unmounting /selinux..."
msgstr ""
#: ../scripts/build/lb_binary_checksums:17
msgid "create binary checksums"
msgstr ""
#: ../functions/losetup.sh:51
msgid "Mounting %s with offset 0"
msgstr ""
#: ../functions/losetup.sh:58
msgid "Mounting %s with offset %s"
msgstr ""
#: ../functions/echo.sh:243
msgid ""
"If the following stage fails, the most likely cause of the problem is with "
"your mirror configuration, a caching proxy or the sid distribution."
msgstr ""
#: ../functions/echo.sh:246
msgid ""
"If the following stage fails, the most likely cause of the problem is with "
"your mirror configuration or a caching proxy."
msgstr ""
#: ../functions/chroot.sh:17
msgid "Executing: %s"
msgstr ""
#: ../functions/conffile.sh:37
msgid "Reading configuration file %s"
msgstr ""
#: ../functions/conffile.sh:40
msgid "Failed to read configuration file %s"
msgstr ""
#: ../functions/help.sh:13
msgid "%s - %s"
msgstr ""
#: ../functions/help.sh:15 ../functions/usage.sh:15
msgid "Usage:"
msgstr ""
#: ../functions/help.sh:23
msgid " %s [-h|--help]"
msgstr ""
#: ../functions/help.sh:24
msgid " %s [-u|--usage]"
msgstr ""
#: ../functions/help.sh:25
msgid " %s [-v|--version]"
msgstr ""
#: ../functions/help.sh:34
msgid "Report bugs to Debian Live project <http://live.debian.net/>."
msgstr ""
#: ../functions/exit.sh:23
msgid "Begin unmounting filesystems..."
msgstr ""
#: ../functions/exit.sh:43
msgid "Saving caches..."
msgstr ""
#: ../functions/exit.sh:61
msgid "Setting up cleanup function"
msgstr ""
#: ../functions/stagefile.sh:22
msgid "skipping %s, already done"
msgstr ""
#: ../functions/stagefile.sh:26
msgid "forcing %s"
msgstr ""
#: ../functions/stagefile.sh:64
msgid "%s: %s missing"
msgstr ""
#: ../functions/stagefile.sh:66
msgid "%s: one of %s is missing"
msgstr ""
#: ../functions/breakpoints.sh:17
msgid "Waiting at %s"
msgstr ""
#: ../functions/version.sh:13
msgid "%s, version %s"
msgstr ""
#: ../functions/version.sh:14
msgid "This program is a part of %s"
msgstr ""
#: ../functions/version.sh:16
msgid "Copyright (C) 2006-2012 Daniel Baumann <daniel@debian.org>"
msgstr ""
#: ../functions/version.sh:18
msgid "This program is free software: you can redistribute it and/or modify"
msgstr ""
#: ../functions/version.sh:19
msgid "it under the terms of the GNU General Public License as published by"
msgstr ""
#: ../functions/version.sh:20
msgid "the Free Software Foundation, either version 3 of the License, or"
msgstr ""
#: ../functions/version.sh:21
msgid "(at your option) any later version."
msgstr ""
#: ../functions/version.sh:23
msgid "This program is distributed in the hope that it will be useful,"
msgstr ""
#: ../functions/version.sh:24
msgid "but WITHOUT ANY WARRANTY; without even the implied warranty of"
msgstr ""
#: ../functions/version.sh:25
msgid "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"
msgstr ""
#: ../functions/version.sh:26
msgid "GNU General Public License for more details."
msgstr ""
#: ../functions/version.sh:28
msgid "You should have received a copy of the GNU General Public License"
msgstr ""
#: ../functions/version.sh:29
msgid "along with this program. If not, see <http://www.gnu.org/licenses/>."
msgstr ""
#: ../functions/version.sh:31
msgid "The complete text of the GNU General Public License"
msgstr ""
#: ../functions/version.sh:32
msgid "can be found in /usr/share/common-licenses/GPL-3 file."
msgstr ""
#: ../functions/version.sh:34
msgid "Homepage: <http://live.debian.net/>"
msgstr ""
#: ../functions/templates.sh:22
msgid "%s templates not accessible in %s nor config/templates"
msgstr ""
#: ../functions/defaults.sh:166
msgid ""
"Cannot find /usr/sbin/debootstrap or /usr/bin/cdebootstrap. Please install "
"debootstrap or cdebootstrap, or specify an alternative bootstrapping utility."
msgstr ""
#: ../functions/defaults.sh:256
msgid "Can't process file /sbin/fdisk"
msgstr ""
#: ../functions/defaults.sh:272
msgid "Can't process file /sbin/losetup"
msgstr ""
#: ../functions/defaults.sh:985
msgid ""
"You have placed some preseeding files into config/binary_debian-installer "
"but you didn't specify the default preseeding file through "
"LB_DEBIAN_INSTALLER_PRESEEDFILE. This means that debian-installer will not "
"take up a preseeding file by default."
msgstr ""
#: ../functions/defaults.sh:1234
msgid "Aborting build, please get a new version of live-build."
msgstr ""
#: ../functions/defaults.sh:1240
msgid "Aborting build, please repopulate the config tree."
msgstr ""
#: ../functions/defaults.sh:1244
msgid ""
"This config tree does not specify a format version or has an unknown version "
"number."
msgstr ""
#: ../functions/defaults.sh:1245
msgid ""
"Continuing build, but it could lead to errors or different results. Please "
"repopulate the config tree."
msgstr ""
#: ../functions/defaults.sh:1254
msgid "You selected LB_PACKAGE_LISTS='%s' and LB_APT='aptitude'"
msgstr ""
#: ../functions/defaults.sh:1263
msgid ""
"You have selected values of LB_CACHE, LB_CACHE_PACKAGES, LB_CACHE_STAGES and "
"LB_DEBIAN_INSTALLER which will result in 'bootstrap' packages not being "
"cached. This configuration is potentially unsafe as the bootstrap packages "
"are re-used when integrating the Debian Installer."
msgstr ""
#: ../functions/defaults.sh:1274
msgid ""
"You have selected values of LB_BOOTLOADER and LB_BINARY_FILESYSTEM which are "
"incompatible - syslinux only supports FAT filesystems."
msgstr ""
#: ../functions/defaults.sh:1284
msgid ""
"You have selected a combination of bootloader and image type that is "
"currently not supported by live-build. Please use either another bootloader "
"or a different image type."
msgstr ""
#: ../functions/defaults.sh:1293
msgid ""
"You have specified a value of LB_ISO_APPLICATION that is too long; the "
"maximum length is 128 characters."
msgstr ""
#: ../functions/defaults.sh:1298
msgid ""
"You have specified a value of LB_ISO_PREPARER that is too long; the maximum "
"length is 128 characters."
msgstr ""
#: ../functions/defaults.sh:1303
msgid ""
"You have specified a value of LB_ISO_PUBLISHER that is too long; the maximum "
"length is 128 characters."
msgstr ""
#: ../functions/defaults.sh:1308
msgid ""
"You have specified a value of LB_ISO_VOLUME that is too long; the maximum "
"length is 32 characters."
msgstr ""
#: ../functions/defaults.sh:1315
msgid ""
"You have selected hook to minimise image size but you are still including "
"package indices with your value of LB_APT_INDICES."
msgstr ""
#: ../functions/usage.sh:28
msgid "Try \"%s --help\" for more information."
msgstr ""
#: ../functions/packages.sh:24
msgid "You need to install %s on your host system."
msgstr ""
#: ../functions/architectures.sh:45
msgid "skipping %s, foreign architecture(s)."
msgstr ""
|