This repository was archived by the owner on Nov 20, 2024. It is now read-only.
forked from bminor/bash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbash.pot
4273 lines (3676 loc) · 112 KB
/
bash.pot
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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-01-11 14:50-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: arrayfunc.c:66
msgid "bad array subscript"
msgstr ""
#: arrayfunc.c:471 builtins/declare.def:709 variables.c:2242 variables.c:2268
#: variables.c:3101
#, c-format
msgid "%s: removing nameref attribute"
msgstr ""
#: arrayfunc.c:496 builtins/declare.def:868
#, c-format
msgid "%s: cannot convert indexed to associative array"
msgstr ""
#: arrayfunc.c:777
#, c-format
msgid "%s: cannot assign to non-numeric index"
msgstr ""
#: arrayfunc.c:822
#, c-format
msgid "%s: %s: must use subscript when assigning associative array"
msgstr ""
#: bashhist.c:455
#, c-format
msgid "%s: cannot create: %s"
msgstr ""
#: bashline.c:4479
msgid "bash_execute_unix_command: cannot find keymap for command"
msgstr ""
#: bashline.c:4637
#, c-format
msgid "%s: first non-whitespace character is not `\"'"
msgstr ""
#: bashline.c:4666
#, c-format
msgid "no closing `%c' in %s"
msgstr ""
#: bashline.c:4697
#, c-format
msgid "%s: missing colon separator"
msgstr ""
#: bashline.c:4733
#, c-format
msgid "`%s': cannot unbind in command keymap"
msgstr ""
#: braces.c:327
#, c-format
msgid "brace expansion: cannot allocate memory for %s"
msgstr ""
#: braces.c:406
#, c-format
msgid "brace expansion: failed to allocate memory for %u elements"
msgstr ""
#: braces.c:451
#, c-format
msgid "brace expansion: failed to allocate memory for `%s'"
msgstr ""
#: builtins/alias.def:131 variables.c:1817
#, c-format
msgid "`%s': invalid alias name"
msgstr ""
#: builtins/bind.def:122 builtins/bind.def:125
msgid "line editing not enabled"
msgstr ""
#: builtins/bind.def:212
#, c-format
msgid "`%s': invalid keymap name"
msgstr ""
#: builtins/bind.def:252
#, c-format
msgid "%s: cannot read: %s"
msgstr ""
#: builtins/bind.def:328 builtins/bind.def:358
#, c-format
msgid "`%s': unknown function name"
msgstr ""
#: builtins/bind.def:336
#, c-format
msgid "%s is not bound to any keys.\n"
msgstr ""
#: builtins/bind.def:340
#, c-format
msgid "%s can be invoked via "
msgstr ""
#: builtins/bind.def:378 builtins/bind.def:395
#, c-format
msgid "`%s': cannot unbind"
msgstr ""
#: builtins/break.def:77 builtins/break.def:119
msgid "loop count"
msgstr ""
#: builtins/break.def:139
msgid "only meaningful in a `for', `while', or `until' loop"
msgstr ""
#: builtins/caller.def:136
msgid ""
"Returns the context of the current subroutine call.\n"
" \n"
" Without EXPR, returns \"$line $filename\". With EXPR, returns\n"
" \"$line $subroutine $filename\"; this extra information can be used to\n"
" provide a stack trace.\n"
" \n"
" The value of EXPR indicates how many call frames to go back before the\n"
" current one; the top frame is frame 0."
msgstr ""
#: builtins/cd.def:327
msgid "HOME not set"
msgstr ""
#: builtins/cd.def:335 builtins/common.c:161 test.c:916
msgid "too many arguments"
msgstr ""
#: builtins/cd.def:342
msgid "null directory"
msgstr ""
#: builtins/cd.def:353
msgid "OLDPWD not set"
msgstr ""
#: builtins/common.c:96
#, c-format
msgid "line %d: "
msgstr ""
#: builtins/common.c:134 error.c:264
#, c-format
msgid "warning: "
msgstr ""
#: builtins/common.c:148
#, c-format
msgid "%s: usage: "
msgstr ""
#: builtins/common.c:193 shell.c:524 shell.c:866
#, c-format
msgid "%s: option requires an argument"
msgstr ""
#: builtins/common.c:200
#, c-format
msgid "%s: numeric argument required"
msgstr ""
#: builtins/common.c:207
#, c-format
msgid "%s: not found"
msgstr ""
#: builtins/common.c:216 shell.c:879
#, c-format
msgid "%s: invalid option"
msgstr ""
#: builtins/common.c:223
#, c-format
msgid "%s: invalid option name"
msgstr ""
#: builtins/common.c:230 execute_cmd.c:2402 general.c:368 general.c:373
#, c-format
msgid "`%s': not a valid identifier"
msgstr ""
#: builtins/common.c:240
msgid "invalid octal number"
msgstr ""
#: builtins/common.c:242
msgid "invalid hex number"
msgstr ""
#: builtins/common.c:244 expr.c:1574
msgid "invalid number"
msgstr ""
#: builtins/common.c:252
#, c-format
msgid "%s: invalid signal specification"
msgstr ""
#: builtins/common.c:259
#, c-format
msgid "`%s': not a pid or valid job spec"
msgstr ""
#: builtins/common.c:266 error.c:536
#, c-format
msgid "%s: readonly variable"
msgstr ""
#: builtins/common.c:273
#, c-format
msgid "%s: cannot assign"
msgstr ""
#: builtins/common.c:281
#, c-format
msgid "%s: %s out of range"
msgstr ""
#: builtins/common.c:281 builtins/common.c:283
msgid "argument"
msgstr ""
#: builtins/common.c:283
#, c-format
msgid "%s out of range"
msgstr ""
#: builtins/common.c:291
#, c-format
msgid "%s: no such job"
msgstr ""
#: builtins/common.c:299
#, c-format
msgid "%s: no job control"
msgstr ""
#: builtins/common.c:301
msgid "no job control"
msgstr ""
#: builtins/common.c:311
#, c-format
msgid "%s: restricted"
msgstr ""
#: builtins/common.c:313
msgid "restricted"
msgstr ""
#: builtins/common.c:321
#, c-format
msgid "%s: not a shell builtin"
msgstr ""
#: builtins/common.c:330
#, c-format
msgid "write error: %s"
msgstr ""
#: builtins/common.c:338
#, c-format
msgid "error setting terminal attributes: %s"
msgstr ""
#: builtins/common.c:340
#, c-format
msgid "error getting terminal attributes: %s"
msgstr ""
#: builtins/common.c:642
#, c-format
msgid "%s: error retrieving current directory: %s: %s\n"
msgstr ""
#: builtins/common.c:708 builtins/common.c:710
#, c-format
msgid "%s: ambiguous job spec"
msgstr ""
#: builtins/common.c:971
msgid "help not available in this version"
msgstr ""
#: builtins/common.c:1038 builtins/set.def:953 variables.c:3825
#, c-format
msgid "%s: cannot unset: readonly %s"
msgstr ""
#: builtins/common.c:1043 builtins/set.def:932 variables.c:3830
#, c-format
msgid "%s: cannot unset"
msgstr ""
#: builtins/complete.def:287
#, c-format
msgid "%s: invalid action name"
msgstr ""
#: builtins/complete.def:486 builtins/complete.def:642
#: builtins/complete.def:873
#, c-format
msgid "%s: no completion specification"
msgstr ""
#: builtins/complete.def:696
msgid "warning: -F option may not work as you expect"
msgstr ""
#: builtins/complete.def:698
msgid "warning: -C option may not work as you expect"
msgstr ""
#: builtins/complete.def:846
msgid "not currently executing completion function"
msgstr ""
#: builtins/declare.def:137
msgid "can only be used in a function"
msgstr ""
#: builtins/declare.def:437
msgid "cannot use `-f' to make functions"
msgstr ""
#: builtins/declare.def:464 execute_cmd.c:6132
#, c-format
msgid "%s: readonly function"
msgstr ""
#: builtins/declare.def:521 builtins/declare.def:804
#, c-format
msgid "%s: reference variable cannot be an array"
msgstr ""
#: builtins/declare.def:532 variables.c:3359
#, c-format
msgid "%s: nameref variable self references not allowed"
msgstr ""
#: builtins/declare.def:537 variables.c:2072 variables.c:3278 variables.c:3286
#: variables.c:3356
#, c-format
msgid "%s: circular name reference"
msgstr ""
#: builtins/declare.def:541 builtins/declare.def:811 builtins/declare.def:820
#, c-format
msgid "`%s': invalid variable name for name reference"
msgstr ""
#: builtins/declare.def:856
#, c-format
msgid "%s: cannot destroy array variables in this way"
msgstr ""
#: builtins/declare.def:862 builtins/read.def:887
#, c-format
msgid "%s: cannot convert associative to indexed array"
msgstr ""
#: builtins/declare.def:891
#, c-format
msgid "%s: quoted compound array assignment deprecated"
msgstr ""
#: builtins/enable.def:145 builtins/enable.def:153
msgid "dynamic loading not available"
msgstr ""
#: builtins/enable.def:376
#, c-format
msgid "cannot open shared object %s: %s"
msgstr ""
#: builtins/enable.def:405
#, c-format
msgid "cannot find %s in shared object %s: %s"
msgstr ""
#: builtins/enable.def:422
#, c-format
msgid "%s: dynamic builtin already loaded"
msgstr ""
#: builtins/enable.def:426
#, c-format
msgid "load function for %s returns failure (%d): not loaded"
msgstr ""
#: builtins/enable.def:551
#, c-format
msgid "%s: not dynamically loaded"
msgstr ""
#: builtins/enable.def:577
#, c-format
msgid "%s: cannot delete: %s"
msgstr ""
#: builtins/evalfile.c:138 builtins/hash.def:185 execute_cmd.c:5959
#, c-format
msgid "%s: is a directory"
msgstr ""
#: builtins/evalfile.c:144
#, c-format
msgid "%s: not a regular file"
msgstr ""
#: builtins/evalfile.c:153
#, c-format
msgid "%s: file is too large"
msgstr ""
#: builtins/evalfile.c:188 builtins/evalfile.c:206 shell.c:1673
#, c-format
msgid "%s: cannot execute binary file"
msgstr ""
#: builtins/exec.def:158 builtins/exec.def:160 builtins/exec.def:246
#, c-format
msgid "%s: cannot execute: %s"
msgstr ""
#: builtins/exit.def:64
#, c-format
msgid "logout\n"
msgstr ""
#: builtins/exit.def:89
msgid "not login shell: use `exit'"
msgstr ""
#: builtins/exit.def:121
#, c-format
msgid "There are stopped jobs.\n"
msgstr ""
#: builtins/exit.def:123
#, c-format
msgid "There are running jobs.\n"
msgstr ""
#: builtins/fc.def:275 builtins/fc.def:373 builtins/fc.def:417
msgid "no command found"
msgstr ""
#: builtins/fc.def:363 builtins/fc.def:368 builtins/fc.def:407
#: builtins/fc.def:412
msgid "history specification"
msgstr ""
#: builtins/fc.def:444
#, c-format
msgid "%s: cannot open temp file: %s"
msgstr ""
#: builtins/fg_bg.def:152 builtins/jobs.def:284
msgid "current"
msgstr ""
#: builtins/fg_bg.def:161
#, c-format
msgid "job %d started without job control"
msgstr ""
#: builtins/getopt.c:110
#, c-format
msgid "%s: illegal option -- %c\n"
msgstr ""
#: builtins/getopt.c:111
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr ""
#: builtins/hash.def:91
msgid "hashing disabled"
msgstr ""
#: builtins/hash.def:139
#, c-format
msgid "%s: hash table empty\n"
msgstr ""
#: builtins/hash.def:267
#, c-format
msgid "hits\tcommand\n"
msgstr ""
#: builtins/help.def:133
msgid "Shell commands matching keyword `"
msgid_plural "Shell commands matching keywords `"
msgstr[0] ""
msgstr[1] ""
#: builtins/help.def:135
msgid ""
"'\n"
"\n"
msgstr ""
#: builtins/help.def:185
#, c-format
msgid ""
"no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'."
msgstr ""
#: builtins/help.def:223
#, c-format
msgid "%s: cannot open: %s"
msgstr ""
#: builtins/help.def:523
#, c-format
msgid ""
"These shell commands are defined internally. Type `help' to see this list.\n"
"Type `help name' to find out more about the function `name'.\n"
"Use `info bash' to find out more about the shell in general.\n"
"Use `man -k' or `info' to find out more about commands not in this list.\n"
"\n"
"A star (*) next to a name means that the command is disabled.\n"
"\n"
msgstr ""
#: builtins/history.def:159
msgid "cannot use more than one of -anrw"
msgstr ""
#: builtins/history.def:192 builtins/history.def:204 builtins/history.def:215
#: builtins/history.def:228 builtins/history.def:240 builtins/history.def:247
msgid "history position"
msgstr ""
#: builtins/history.def:338
#, c-format
msgid "%s: invalid timestamp"
msgstr ""
#: builtins/history.def:449
#, c-format
msgid "%s: history expansion failed"
msgstr ""
#: builtins/inlib.def:71
#, c-format
msgid "%s: inlib failed"
msgstr ""
#: builtins/jobs.def:109
msgid "no other options allowed with `-x'"
msgstr ""
#: builtins/kill.def:211
#, c-format
msgid "%s: arguments must be process or job IDs"
msgstr ""
#: builtins/kill.def:274
msgid "Unknown error"
msgstr ""
#: builtins/let.def:97 builtins/let.def:122 expr.c:640 expr.c:658
msgid "expression expected"
msgstr ""
#: builtins/mapfile.def:180
#, c-format
msgid "%s: not an indexed array"
msgstr ""
#: builtins/mapfile.def:276 builtins/read.def:336
#, c-format
msgid "%s: invalid file descriptor specification"
msgstr ""
#: builtins/mapfile.def:284 builtins/read.def:343
#, c-format
msgid "%d: invalid file descriptor: %s"
msgstr ""
#: builtins/mapfile.def:293 builtins/mapfile.def:331
#, c-format
msgid "%s: invalid line count"
msgstr ""
#: builtins/mapfile.def:304
#, c-format
msgid "%s: invalid array origin"
msgstr ""
#: builtins/mapfile.def:321
#, c-format
msgid "%s: invalid callback quantum"
msgstr ""
#: builtins/mapfile.def:354
msgid "empty array variable name"
msgstr ""
#: builtins/mapfile.def:375
msgid "array variable support required"
msgstr ""
#: builtins/printf.def:430
#, c-format
msgid "`%s': missing format character"
msgstr ""
#: builtins/printf.def:485
#, c-format
msgid "`%c': invalid time format specification"
msgstr ""
#: builtins/printf.def:708
#, c-format
msgid "`%c': invalid format character"
msgstr ""
#: builtins/printf.def:734
#, c-format
msgid "warning: %s: %s"
msgstr ""
#: builtins/printf.def:822
#, c-format
msgid "format parsing problem: %s"
msgstr ""
#: builtins/printf.def:919
msgid "missing hex digit for \\x"
msgstr ""
#: builtins/printf.def:934
#, c-format
msgid "missing unicode digit for \\%c"
msgstr ""
#: builtins/pushd.def:199
msgid "no other directory"
msgstr ""
#: builtins/pushd.def:360
#, c-format
msgid "%s: invalid argument"
msgstr ""
#: builtins/pushd.def:480
msgid "<no current directory>"
msgstr ""
#: builtins/pushd.def:524
msgid "directory stack empty"
msgstr ""
#: builtins/pushd.def:526
msgid "directory stack index"
msgstr ""
#: builtins/pushd.def:701
msgid ""
"Display the list of currently remembered directories. Directories\n"
" find their way onto the list with the `pushd' command; you can get\n"
" back up through the list with the `popd' command.\n"
" \n"
" Options:\n"
" -c\tclear the directory stack by deleting all of the elements\n"
" -l\tdo not print tilde-prefixed versions of directories relative\n"
" \tto your home directory\n"
" -p\tprint the directory stack with one entry per line\n"
" -v\tprint the directory stack with one entry per line prefixed\n"
" \twith its position in the stack\n"
" \n"
" Arguments:\n"
" +N\tDisplays the Nth entry counting from the left of the list shown "
"by\n"
" \tdirs when invoked without options, starting with zero.\n"
" \n"
" -N\tDisplays the Nth entry counting from the right of the list shown "
"by\n"
"\tdirs when invoked without options, starting with zero."
msgstr ""
#: builtins/pushd.def:723
msgid ""
"Adds a directory to the top of the directory stack, or rotates\n"
" the stack, making the new top of the stack the current working\n"
" directory. With no arguments, exchanges the top two directories.\n"
" \n"
" Options:\n"
" -n\tSuppresses the normal change of directory when adding\n"
" \tdirectories to the stack, so only the stack is manipulated.\n"
" \n"
" Arguments:\n"
" +N\tRotates the stack so that the Nth directory (counting\n"
" \tfrom the left of the list shown by `dirs', starting with\n"
" \tzero) is at the top.\n"
" \n"
" -N\tRotates the stack so that the Nth directory (counting\n"
" \tfrom the right of the list shown by `dirs', starting with\n"
" \tzero) is at the top.\n"
" \n"
" dir\tAdds DIR to the directory stack at the top, making it the\n"
" \tnew current working directory.\n"
" \n"
" The `dirs' builtin displays the directory stack."
msgstr ""
#: builtins/pushd.def:748
msgid ""
"Removes entries from the directory stack. With no arguments, removes\n"
" the top directory from the stack, and changes to the new top directory.\n"
" \n"
" Options:\n"
" -n\tSuppresses the normal change of directory when removing\n"
" \tdirectories from the stack, so only the stack is manipulated.\n"
" \n"
" Arguments:\n"
" +N\tRemoves the Nth entry counting from the left of the list\n"
" \tshown by `dirs', starting with zero. For example: `popd +0'\n"
" \tremoves the first directory, `popd +1' the second.\n"
" \n"
" -N\tRemoves the Nth entry counting from the right of the list\n"
" \tshown by `dirs', starting with zero. For example: `popd -0'\n"
" \tremoves the last directory, `popd -1' the next to last.\n"
" \n"
" The `dirs' builtin displays the directory stack."
msgstr ""
#: builtins/read.def:308
#, c-format
msgid "%s: invalid timeout specification"
msgstr ""
#: builtins/read.def:827
#, c-format
msgid "read error: %d: %s"
msgstr ""
#: builtins/return.def:68
msgid "can only `return' from a function or sourced script"
msgstr ""
#: builtins/set.def:869
msgid "cannot simultaneously unset a function and a variable"
msgstr ""
#: builtins/set.def:969
#, c-format
msgid "%s: not an array variable"
msgstr ""
#: builtins/setattr.def:189
#, c-format
msgid "%s: not a function"
msgstr ""
#: builtins/setattr.def:194
#, c-format
msgid "%s: cannot export"
msgstr ""
#: builtins/shift.def:72 builtins/shift.def:79
msgid "shift count"
msgstr ""
#: builtins/shopt.def:323
msgid "cannot set and unset shell options simultaneously"
msgstr ""
#: builtins/shopt.def:444
#, c-format
msgid "%s: invalid shell option name"
msgstr ""
#: builtins/source.def:128
msgid "filename argument required"
msgstr ""
#: builtins/source.def:154
#, c-format
msgid "%s: file not found"
msgstr ""
#: builtins/suspend.def:102
msgid "cannot suspend"
msgstr ""
#: builtins/suspend.def:112
msgid "cannot suspend a login shell"
msgstr ""
#: builtins/type.def:235
#, c-format
msgid "%s is aliased to `%s'\n"
msgstr ""
#: builtins/type.def:256
#, c-format
msgid "%s is a shell keyword\n"
msgstr ""
#: builtins/type.def:275
#, c-format
msgid "%s is a function\n"
msgstr ""
#: builtins/type.def:299
#, c-format
msgid "%s is a special shell builtin\n"
msgstr ""
#: builtins/type.def:301
#, c-format
msgid "%s is a shell builtin\n"
msgstr ""
#: builtins/type.def:323 builtins/type.def:408
#, c-format
msgid "%s is %s\n"
msgstr ""
#: builtins/type.def:343
#, c-format
msgid "%s is hashed (%s)\n"
msgstr ""
#: builtins/ulimit.def:400
#, c-format
msgid "%s: invalid limit argument"
msgstr ""
#: builtins/ulimit.def:426
#, c-format
msgid "`%c': bad command"
msgstr ""
#: builtins/ulimit.def:464
#, c-format
msgid "%s: cannot get limit: %s"
msgstr ""
#: builtins/ulimit.def:490
msgid "limit"
msgstr ""
#: builtins/ulimit.def:502 builtins/ulimit.def:802
#, c-format
msgid "%s: cannot modify limit: %s"
msgstr ""
#: builtins/umask.def:115
msgid "octal number"
msgstr ""
#: builtins/umask.def:232
#, c-format
msgid "`%c': invalid symbolic mode operator"
msgstr ""
#: builtins/umask.def:287
#, c-format
msgid "`%c': invalid symbolic mode character"
msgstr ""
#: error.c:89 error.c:373 error.c:375 error.c:377
msgid " line "
msgstr ""
#: error.c:164
#, c-format
msgid "last command: %s\n"
msgstr ""
#: error.c:172
#, c-format
msgid "Aborting..."
msgstr ""
#. TRANSLATORS: this is a prefix for informational messages.
#: error.c:287
#, c-format
msgid "INFORM: "
msgstr ""
#: error.c:310
#, c-format
msgid "DEBUG warning: "
msgstr ""
#: error.c:488
msgid "unknown command error"
msgstr ""
#: error.c:489
msgid "bad command type"
msgstr ""
#: error.c:490
msgid "bad connector"
msgstr ""
#: error.c:491
msgid "bad jump"
msgstr ""
#: error.c:529
#, c-format
msgid "%s: unbound variable"
msgstr ""
#: eval.c:243
msgid "\atimed out waiting for input: auto-logout\n"
msgstr ""
#: execute_cmd.c:555
#, c-format
msgid "cannot redirect standard input from /dev/null: %s"
msgstr ""
#: execute_cmd.c:1317
#, c-format
msgid "TIMEFORMAT: `%c': invalid format character"
msgstr ""
#: execute_cmd.c:2391
#, c-format
msgid "execute_coproc: coproc [%d:%s] still exists"
msgstr ""
#: execute_cmd.c:2524
msgid "pipe error"
msgstr ""
#: execute_cmd.c:4923
#, c-format
msgid "eval: maximum eval nesting level exceeded (%d)"
msgstr ""
#: execute_cmd.c:4935
#, c-format
msgid "%s: maximum source nesting level exceeded (%d)"
msgstr ""
#: execute_cmd.c:5043
#, c-format
msgid "%s: maximum function nesting level exceeded (%d)"
msgstr ""
#: execute_cmd.c:5598
#, c-format
msgid "%s: restricted: cannot specify `/' in command names"
msgstr ""
#: execute_cmd.c:5715
#, c-format
msgid "%s: command not found"
msgstr ""
#: execute_cmd.c:5957
#, c-format
msgid "%s: %s"
msgstr ""
#: execute_cmd.c:5975
#, c-format
msgid "%s: cannot execute: required file not found"
msgstr ""
#: execute_cmd.c:6000
#, c-format