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
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
|
# Catalan translation of GNU fileutils.
# Copyright (C) 2002, 2003, 2004, 2005, 2010 Free Software Foundation,
# Inc.
# Jordi Mallach <jordi@gnu.org>, 2002, 2003, 2004, 2005.
#
msgid ""
msgstr ""
"Project-Id-Version: findutils 4.2.27\n"
"Report-Msgid-Bugs-To: bug-findutils@gnu.org\n"
"POT-Creation-Date: 2011-05-11 09:01+0100\n"
"PO-Revision-Date: 2006-05-20 14:54+0200\n"
"Last-Translator: Jordi Mallach <jordi@gnu.org>\n"
"Language-Team: Catalan <ca@dodds.net>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"
#: find/find.c:148 find/ftsfind.c:667
#, c-format
msgid "Failed initialise shared-file hash table"
msgstr ""
#: find/find.c:205
#, fuzzy, c-format
msgid "cannot stat current directory"
msgstr "no es pot obtenir el directori actual"
#: find/find.c:296
#, c-format
msgid "Cannot read list of mounted devices."
msgstr ""
#: find/find.c:385
#, fuzzy, c-format
msgid "WARNING: file system %s has recently been unmounted."
msgstr "Avís: el sistema de fitxers %s ha estat desmuntat fa poc."
#: find/find.c:395
#, fuzzy, c-format
msgid "WARNING: file system %s has recently been mounted."
msgstr "Avís: el sistema de fitxers %s ha estat muntat fa poc."
#: find/find.c:491
#, fuzzy, c-format
msgid ""
"%s%s changed during execution of %s (old device number %ld, new device "
"number %ld, file system type is %s) [ref %ld]"
msgstr ""
"%s%s ha canviat durant l'execució de %s (el número de dispositiu vell era "
"%ld, el número del nou dispositiu és %ld, el tipus de sistema de fitxers és "
"%s) [ref %ld]"
#: find/find.c:528
#, fuzzy, c-format
msgid ""
"%s%s changed during execution of %s (old inode number %<PRIuMAX>, new inode "
"number %<PRIuMAX>, file system type is %s) [ref %ld]"
msgstr ""
"%s%s ha canviat durant l'execució de %s (el número del node-i vell era %ld, "
"el número del node-i nou és %ld, el tipus de sistema de fitxers és %s) [ref "
"%ld]"
#: find/find.c:693
#, fuzzy, c-format
msgid "failed to return to parent directory"
msgstr "no es pot obtenir el directori actual"
#: find/find.c:980
#, c-format
msgid "Failed to safely change directory into %s"
msgstr ""
#: find/find.c:1078 find/ftsfind.c:245
#, fuzzy, c-format
msgid ""
"Symbolic link %s is part of a loop in the directory hierarchy; we have "
"already visited the directory to which it points."
msgstr ""
"L'enllaç simbòlic «%s» és part d'un bucle a la jerarquia del directori. Ja "
"hem visitat el directori al qual apunta."
#: find/find.c:1097
#, fuzzy, c-format
msgid ""
"Filesystem loop detected; %s has the same device number and inode as a "
"directory which is %d level higher in the file system hierarchy"
msgid_plural ""
"Filesystem loop detected; %s has the same device number and inode as a "
"directory which is %d levels higher in the file system hierarchy"
msgstr[0] ""
"S'ha detectat un bucle al sistema de fitxers; «%s» té el mateix número de "
"dispositiu i node d'idenficació que un directori que és %d %s."
msgstr[1] ""
"S'ha detectat un bucle al sistema de fitxers; «%s» té el mateix número de "
"dispositiu i node d'idenficació que un directori que és %d %s."
#: find/find.c:1343
#, c-format
msgid "warning: not following the symbolic link %s"
msgstr "avís: no es seguirà l'enllaç simbòlic %s"
#: find/find.c:1386
#, fuzzy, c-format
msgid ""
"WARNING: Hard link count is wrong for %s (saw only st_nlink=%<PRIuMAX> but "
"we already saw %<PRIuMAX> subdirectories): this may be a bug in your file "
"system driver. Automatically turning on find's -noleaf option. Earlier "
"results may have failed to include directories that should have been "
"searched."
msgstr ""
"AVÍS: el compte d'enllaços durs és incorrecte per a %s: això pot ser un "
"error al vostre controlador del sistema de fitxers. S'està habilitant "
"automàticament l'opció -noleaf. Els resultats anteriors poden no haver "
"inclós directoris que s'haurien d'haver cercat."
#: find/fstype.c:203
#, c-format
msgid "Cannot read mounted file system list"
msgstr ""
#: find/fstype.c:250
msgid "unknown"
msgstr "desconegut"
#: find/ftsfind.c:259
#, fuzzy, c-format
msgid ""
"File system loop detected; %s is part of the same file system loop as %s."
msgstr ""
"S'ha detectat un bucle al sistema de fitxers; «%s» té el mateix número de "
"dispositiu i node d'idenficació que un directori que és %d %s."
#: find/ftsfind.c:444 find/util.c:214
#, c-format
msgid "WARNING: file %s appears to have mode 0000"
msgstr ""
#: find/ftsfind.c:559
#, c-format
msgid "cannot search %s"
msgstr ""
#: find/ftsfind.c:599
#, fuzzy, c-format
msgid "failed to restore working directory after searching %s"
msgstr "no es pot obtenir el directori actual"
#: find/parser.c:471
#, c-format
msgid ""
"The -delete action automatically turns on -depth, but -prune does nothing "
"when -depth is in effect. If you want to carry on anyway, just explicitly "
"use the -depth option."
msgstr ""
#: find/parser.c:618
#, c-format
msgid ""
"warning: you have specified the %s option after a non-option argument %s, "
"but options are not positional (%s affects tests specified before it as well "
"as those specified after it). Please specify options before other "
"arguments.\n"
msgstr ""
"avís: he especificat l'opció %s després d'un argument no-opció %s, però les "
"opcions no són posicionals (%s afecta a les comprovacions especificades "
"abans d'ella com també aquelles especificades després d'ella). Si us plau, "
"especifiqueu les opcions abans d'altres arguments.\n"
#: find/parser.c:914
#, c-format
msgid ""
"warning: the -d option is deprecated; please use -depth instead, because the "
"latter is a POSIX-compliant feature."
msgstr ""
"avís: l'opció -d està desaconsellada; si us plau, utilitzeu -depth en el seu "
"lloc, ja que aquesta és una funcionalitat que compleix amb POSIX."
#: find/parser.c:1184
#, c-format
msgid ""
"%s is not the name of an existing group and it does not look like a numeric "
"group ID because it has the unexpected suffix %s"
msgstr ""
#: find/parser.c:1199
#, c-format
msgid "%s is not the name of an existing group"
msgstr ""
#: find/parser.c:1205
#, c-format
msgid "argument to -group is empty, but should be a group name"
msgstr ""
#: find/parser.c:1227
msgid ""
"\n"
"default path is the current directory; default expression is -print\n"
"expression may consist of: operators, options, tests, and actions:\n"
msgstr ""
"\n"
"el camí per defecte és el directori actual; l'expressió per defecte és -"
"print\n"
"l'expressió pot consistir d'operadors, opcions, avaluacions i accions:\n"
#: find/parser.c:1230
msgid ""
"operators (decreasing precedence; -and is implicit where no others are "
"given):\n"
" ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n"
" EXPR1 -o EXPR2 EXPR1 -or EXPR2 EXPR1 , EXPR2\n"
msgstr ""
"operadors (prioritat decreixent; -and és implícit quan no es donen altres):\n"
" ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n"
" EXPR1 -o EXPR2 EXPR1 -or EXPR2 EXPR1 , EXPR2\n"
#: find/parser.c:1234
msgid ""
"positional options (always true): -daystart -follow -regextype\n"
"\n"
"normal options (always true, specified before other expressions):\n"
" -depth --help -maxdepth LEVELS -mindepth LEVELS -mount -noleaf\n"
" --version -xdev -ignore_readdir_race -noignore_readdir_race\n"
msgstr ""
"opcions posicionals (sempre vertaderes): -daystart -follow -regextype\n"
"opcions normals (sempre vertaderes, especificades abans d'altres "
"expressions):\n"
" -depth -help -maxdepth NIVELLS -mindepth NIVELLS -mount -noleaf\n"
" --version -xdev -ignore_readdir_race -noignore_readdir_race\n"
#: find/parser.c:1239
msgid ""
"tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n"
" -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n"
" -ilname PATTERN -iname PATTERN -inum N -iwholename PATTERN -iregex "
"PATTERN\n"
" -links N -lname PATTERN -mmin N -mtime N -name PATTERN -newer FILE"
msgstr ""
"avaluacions (N pot ser +N o -N o N): -amin N -anewer FITXER -atime N -cmin "
"N\n"
" -cnewer FITXER -ctime N -empty -false -fstype TIPUS -gid N -group NOM\n"
" -ilname PATRÓ -iname PATRÓ -inum N -iwholename PATRÓ -iregex PATRÓ\n"
" -links N -lname PATRÓ -mmin N -mtime N -name PATRÓ -newer FITXER"
#: find/parser.c:1244
#, fuzzy
msgid ""
" -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n"
" -readable -writable -executable\n"
" -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n"
" -used N -user NAME -xtype [bcdpfls]"
msgstr ""
" -nouser -nogroup -path PATRÓ -perm [+-]MODE -regex PATRÓ\n"
" -wholename PATRÓ -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n"
" -used N -user NOM -xtype [bcdpfls]\n"
#: find/parser.c:1249
msgid " -context CONTEXT\n"
msgstr ""
#: find/parser.c:1251
#, fuzzy
msgid ""
"\n"
"actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n"
" -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n"
" -exec COMMAND ; -exec COMMAND {} + -ok COMMAND ;\n"
" -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n"
msgstr ""
"accions: -delete -print0 -printf FORMAT -fprintf FORMAT FITXER -print \n"
" -fprint0 FITXER -fprint FITXER -ls -fls FITXER -prune -quit\n"
" -exec ORDRE ; -exec ORDRE {} + -ok ORDRE ;\n"
" -execdir ORDRE ; -execdir ORDRE {} + -okdir ORDRE ;\n"
#: find/parser.c:1257
msgid ""
"Report (and track progress on fixing) bugs via the findutils bug-reporting\n"
"page at http://savannah.gnu.org/ or, if you have no web access, by sending\n"
"email to <bug-findutils@gnu.org>."
msgstr ""
"Informeu (i feu un seguiment del procés de solució) dels errors a través de "
"la\n"
"pàgina d'informes d'error de findutils en http://savannah.gnu.org/ o, si no\n"
"teniu accés a la web, enviant correu a <bug-findutils@gnu.org>."
#: find/parser.c:1312
#, c-format
msgid "sanity check of the fnmatch() library function failed."
msgstr ""
"la comprovació de sanitat de la funció fnmatch() de la biblioteca ha fallat."
#: find/parser.c:1326
#, c-format
msgid ""
"warning: Unix filenames usually don't contain slashes (though pathnames "
"do). That means that '%s %s' will probably evaluate to false all the time "
"on this system. You might find the '-wholename' test more useful, or "
"perhaps '-samefile'. Alternatively, if you are using GNU grep, you could "
"use 'find ... -print0 | grep -FzZ %s'."
msgstr ""
"avís: els noms de fitxers de Unix no contenen barres (però sí els camins). "
"Això vol dir que «%s %s» probablement sempre avaluarà com a fals en aquest "
"sistema. És possible que la comprovació «-wholename» siga més útil, o potser "
"«-samefile». Alternativament, si esteu utilitzant GNU grep, podeu utilitzar "
"«find ... -print0 | grep -FzZ %s»."
#: find/parser.c:1452
#, c-format
msgid "Expected a positive decimal integer argument to %s, but got %s"
msgstr ""
#: find/parser.c:1617
#, c-format
msgid "This system does not provide a way to find the birth time of a file."
msgstr ""
#: find/parser.c:1638
#, fuzzy, c-format
msgid "The %s test needs an argument"
msgstr "%s: l'opció «%s» requereix un argument\n"
#: find/parser.c:1675
#, c-format
msgid "I cannot figure out how to interpret %s as a date or time"
msgstr ""
#: find/parser.c:1692
#, fuzzy, c-format
msgid "Cannot obtain birth time of file %s"
msgstr "No s'ha pogut obrir el fitxer d'entrada «%s»"
#: find/parser.c:1900
#, c-format
msgid "warning: -%s %s will not match anything because it ends with /."
msgstr ""
#: find/parser.c:1956
#, c-format
msgid "Mode %s is not valid when POSIXLY_CORRECT is on."
msgstr ""
#: find/parser.c:2039
#, fuzzy, c-format
msgid "invalid mode %s"
msgstr "el mode «%s» no és vàlid"
#: find/parser.c:2058
#, fuzzy, c-format
msgid ""
"warning: you have specified a mode pattern %s (which is equivalent to /000). "
"The meaning of -perm /000 has now been changed to be consistent with -perm "
"-000; that is, while it used to match no files, it now matches all files."
msgstr ""
"avís: heu especificat un patró de mode %s que és equivalent a 000. El "
"significat de -perm /000 canviarà prompte per a que siga consistent amb -"
"perm -000; això vol dir, de moment no concorda amb cap fitxer, però prompte "
"canviarà per a que concorde amb tots."
#: find/parser.c:2274
#, c-format
msgid "invalid null argument to -size"
msgstr "l'argument nul no és vàlid per a -size"
#: find/parser.c:2324
#, c-format
msgid "invalid -size type `%c'"
msgstr "el tipus de -size «%c» no vàlid"
#: find/parser.c:2334
#, fuzzy, c-format
msgid "Invalid argument `%s%s' to -size"
msgstr "l'argument «%s» no és vàlid per a «%s»"
#: find/parser.c:2516
msgid ""
"The -show-control-chars option takes a single argument which must be "
"'literal' or 'safe'"
msgstr ""
#: find/parser.c:2630
#, fuzzy, c-format
msgid "Invalid argument %s to -used"
msgstr "l'argument %s no és vàlid per a %s"
#: find/parser.c:2671
#, c-format
msgid "%s is not the name of a known user"
msgstr ""
#: find/parser.c:2678
#, c-format
msgid "The argument to -user should not be empty"
msgstr ""
#: find/parser.c:2703
#, c-format
msgid "Features enabled: "
msgstr "Funcionalitats habilitades: "
#: find/parser.c:2780
#, c-format
msgid "invalid predicate -context: SELinux is not enabled."
msgstr ""
#: find/parser.c:2844
#, c-format
msgid "Arguments to -type should contain only one letter"
msgstr ""
#: find/parser.c:2893
#, c-format
msgid "Unknown argument to -type: %c"
msgstr ""
#: find/parser.c:3015
#, c-format
msgid "warning: unrecognized escape `\\%c'"
msgstr "avís: seqüència d'escapament «\\%c» no reconegut"
#: find/parser.c:3032
#, c-format
msgid "error: %s at end of format string"
msgstr ""
#: find/parser.c:3071
#, c-format
msgid "warning: unrecognized format directive `%%%c'"
msgstr "avís: directiva de format «%%%c» no reconeguda"
#: find/parser.c:3225
#, c-format
msgid "error: the format directive `%%%c' is reserved for future use"
msgstr ""
#: find/parser.c:3260
#, c-format
msgid ""
"The current directory is included in the PATH environment variable, which is "
"insecure in combination with the %s action of find. Please remove the "
"current directory from your $PATH (that is, remove \".\" or leading or "
"trailing colons)"
msgstr ""
"El directori actual està inclós a la variable d'entorn PATH, el qual és "
"insegur en combinació amb l'acció %s de find. Elimineu el directori actual "
"del vostre $PATH (és a dir, elimineu «.» o els dos punts del principi o "
"final)"
#: find/parser.c:3272
#, fuzzy, c-format
msgid ""
"The relative path %s is included in the PATH environment variable, which is "
"insecure in combination with the %s action of find. Please remove that "
"entry from $PATH"
msgstr ""
"El directori actual està inclós a la variable d'entorn PATH, el qual és "
"insegur en combinació amb l'acció %s de find. Elimineu el directori actual "
"del vostre $PATH (és a dir, elimineu «.» o els dos punts del principi o "
"final)"
#: find/parser.c:3379
#, c-format
msgid ""
"You may not use {} within the utility name for -execdir and -okdir, because "
"this is a potential security problem."
msgstr ""
"No pdeu utilitzar {} dins del nom de la utilitat per a -execdir i -okdir, ja "
"que això és un problema de seguretat potencial."
#: find/parser.c:3405
#, c-format
msgid "Only one instance of {} is supported with -exec%s ... +"
msgstr "Només es suporta una instància de {} amb -exec%s ... +"
#: find/parser.c:3415
#, c-format
msgid "In %s the %s must appear by itself, but you specified %s"
msgstr ""
#: find/parser.c:3435
#, fuzzy, c-format
msgid "The environment is too large for exec()."
msgstr "l'entorn és massa gran per a l'execució"
#: find/parser.c:3603
#, c-format
msgid "arithmetic overflow while converting %s days to a number of seconds"
msgstr ""
#: find/parser.c:3627
#, c-format
msgid "arithmetic overflow when trying to calculate the end of today"
msgstr ""
#: find/parser.c:3786
msgid "standard error"
msgstr ""
#: find/parser.c:3791
msgid "standard output"
msgstr ""
#: find/pred.c:432
#, c-format
msgid "cannot delete %s"
msgstr ""
#: find/pred.c:580
#, fuzzy, c-format
msgid "Failed to save working directory in order to run a command on %s"
msgstr "no es pot obtenir el directori actual"
#: find/pred.c:1183 find/pred.c:1992
#, c-format
msgid "getfilecon failed: %s"
msgstr ""
#: find/pred.c:1507
#, fuzzy, c-format
msgid "WARNING: cannot determine birth time of file %s"
msgstr "No s'ha pogut obrir el fitxer d'entrada «%s»"
#: find/pred.c:1571
#, c-format
msgid "< %s ... %s > ? "
msgstr "< %s ... %s > ?"
#: find/pred.c:2032
#, c-format
msgid "Cannot close standard input"
msgstr ""
#: find/pred.c:2061
#, c-format
msgid "Failed to change directory"
msgstr ""
#: find/pred.c:2092 xargs/xargs.c:1126
#, c-format
msgid "cannot fork"
msgstr "no es pot fer «fork»"
# Suggerències? jm
#: find/pred.c:2123
#, c-format
msgid "error waiting for %s"
msgstr "error a l'esperar al procés %s"
#: find/pred.c:2132
#, c-format
msgid "%s terminated by signal %d"
msgstr "%s finalitzat pel senyal %d"
#: find/tree.c:124 find/tree.c:129 find/tree.c:219 find/tree.c:258
#, c-format
msgid "invalid expression"
msgstr "expressió no vàlida"
#: find/tree.c:135
#, fuzzy, c-format
msgid ""
"invalid expression; you have used a binary operator '%s' with nothing before "
"it."
msgstr ""
"l'expressió no és vàlida; heu utilitzat un operador binari sense res davant "
"d'ell."
#: find/tree.c:146
#, c-format
msgid "expected an expression between '%s' and ')'"
msgstr ""
#: find/tree.c:156
#, fuzzy, c-format
msgid "expected an expression after '%s'"
msgstr "s'ha trobat un predicat extra no esperat"
#: find/tree.c:161
#, c-format
msgid "invalid expression; you have too many ')'"
msgstr "l'expressió no és vàlida; teniu massa «)»"
#: find/tree.c:184
#, fuzzy, c-format
msgid ""
"invalid expression; expected to find a ')' but didn't see one. Perhaps you "
"need an extra predicate after '%s'"
msgstr ""
"l'expressió no és vàlida; s'esperava un «)» en algun lloc però no s'ha "
"trobat cap."
#: find/tree.c:192
#, fuzzy, c-format
msgid "invalid expression; empty parentheses are not allowed."
msgstr "l'expressió no és vàlida; teniu massa «)»"
#: find/tree.c:198
#, c-format
msgid ""
"invalid expression; I was expecting to find a ')' somewhere but did not see "
"one."
msgstr ""
"l'expressió no és vàlida; s'esperava un «)» en algun lloc però no s'ha "
"trobat cap."
#: find/tree.c:204 find/tree.c:827
#, c-format
msgid "oops -- invalid expression type!"
msgstr "ep -- el tipus d'expressió no és vàlid!"
#: find/tree.c:276
#, c-format
msgid "oops -- invalid expression type (%d)!"
msgstr "ep -- el tipus d'expressió (%d) no és vàlid!"
#: find/tree.c:1114
#, c-format
msgid ""
"warning: there is no entry in the predicate evaluation cost table for "
"predicate %s; please report this as a bug"
msgstr ""
#: find/tree.c:1288
#, fuzzy, c-format
msgid "paths must precede expression: %s"
msgstr "els camins han de precedir la expressió"
#: find/tree.c:1297
#, fuzzy, c-format
msgid "unknown predicate `%s'"
msgstr "el predicat «%s» no és vàlid"
#: find/tree.c:1317
#, c-format
msgid "invalid predicate `%s'"
msgstr "el predicat «%s» no és vàlid"
#: find/tree.c:1322
#, c-format
msgid "invalid argument `%s' to `%s'"
msgstr "l'argument «%s» no és vàlid per a «%s»"
#: find/tree.c:1330
#, c-format
msgid "missing argument to `%s'"
msgstr "manca un argument per a «%s»"
#: find/tree.c:1406
#, fuzzy, c-format
msgid "you have too many ')'"
msgstr "l'expressió no és vàlida; teniu massa «)»"
#: find/tree.c:1412
#, fuzzy, c-format
msgid "unexpected extra predicate '%s'"
msgstr "s'ha trobat un predicat extra no esperat"
#: find/tree.c:1414
#, c-format
msgid "unexpected extra predicate"
msgstr "s'ha trobat un predicat extra no esperat"
#: find/tree.c:1547
#, c-format
msgid "oops -- invalid default insertion of and!"
msgstr "oops -- inserció per defecte d'«and» no vàlida!"
#: find/util.c:171
#, fuzzy, c-format
msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D "
msgstr "Forma d'ús: %s [-H] [-L] [-P] [camí...] [expressió]\n"
#: find/util.c:173
#, fuzzy, c-format
msgid "] [path...] [expression]\n"
msgstr "Forma d'ús: %s [camí...] [expressió]\n"
#: find/util.c:451
#, fuzzy, c-format
msgid "failed to save initial working directory"
msgstr "no es pot obtenir el directori actual"
#: find/util.c:468
#, fuzzy, c-format
msgid "failed to restore initial working directory"
msgstr "no es pot obtenir el directori actual"
#: find/util.c:816
#, fuzzy, c-format
msgid "Ignoring unrecognised debug flag %s"
msgstr "avís: seqüència d'escapament «\\%c» no reconegut"
#: find/util.c:823
#, c-format
msgid "Empty argument to the -D option."
msgstr ""
#: find/util.c:839
#, c-format
msgid "The -O option must be immediately followed by a decimal integer"
msgstr ""
#: find/util.c:849 find/util.c:860
#, c-format
msgid "Please specify a decimal number immediately after -O"
msgstr ""
#: find/util.c:865 find/util.c:870
#, c-format
msgid "Invalid optimisation level %s"
msgstr ""
#: find/util.c:878
#, c-format
msgid ""
"Optimisation level %lu is too high. If you want to find files very quickly, "
"consider using GNU locate."
msgstr ""
#: find/util.c:1022
#, c-format
msgid ""
"The environment variable FIND_BLOCK_SIZE is not supported, the only thing "
"that affects the block size is the POSIXLY_CORRECT environment variable"
msgstr ""
"La variable d'entorn FIND_BLOCK_SIZE no està suportada, l'única cosa que "
"afecta a la mida dels blocs és la variable d'entorn POSIXLY_CORRECT"
#: lib/buildcmd.c:171
#, c-format
msgid "command too long"
msgstr "ordre massa llarga"
#: lib/buildcmd.c:311
#, c-format
msgid "can't call exec() due to argument size restrictions"
msgstr ""
# Açò vol dir que de tots els arguments, només un no cap, no? jm
#: lib/buildcmd.c:381
#, fuzzy, c-format
msgid "cannot fit single argument within argument list size limit"
msgstr "un argument no cap en el límit de mida de la llista d'arguments"
#: lib/buildcmd.c:387
#, c-format
msgid "argument list too long"
msgstr "llista d'arguments massa llarga"
#: lib/buildcmd.c:640
#, c-format
msgid "Environment variable %s is not set to a valid decimal number"
msgstr ""
#: lib/findutils-version.c:60
msgid "Eric B. Decker"
msgstr ""
#: lib/findutils-version.c:61
msgid "James Youngman"
msgstr ""
#: lib/findutils-version.c:62
msgid "Kevin Dalley"
msgstr ""
#: lib/findutils-version.c:64
#, fuzzy, c-format
msgid "Built using GNU gnulib version %s\n"
msgstr "GNU findutils versió %s\n"
#: lib/safe-atoi.c:76
#, c-format
msgid "Unexpected suffix %s on %s"
msgstr ""
#: lib/safe-atoi.c:82
#, fuzzy, c-format
msgid "Expected an integer: %s"
msgstr "s'ha trobat un predicat extra no esperat"
#: lib/regextype.c:107
#, c-format
msgid "Unknown regular expression type %s; valid types are %s."
msgstr ""
#: locate/code.c:127
#, c-format
msgid ""
"Usage: %s [--version | --help]\n"
"or %s most_common_bigrams < file-list > locate-database\n"
msgstr ""
"Forma d'ús: %s [--version | --help]\n"
" %s biagrames_més_comuns < llista-fitxers > base-de-dades-locate\n"
#: locate/code.c:131 locate/frcode.c:159 locate/locate.c:1409
#: xargs/xargs.c:1519
msgid ""
"\n"
"Report bugs to <bug-findutils@gnu.org>.\n"
msgstr ""
"\n"
"Informeu dels errors a <bug-findutils@gnu.org>.\n"
#: locate/code.c:149 locate/frcode.c:207
#, c-format
msgid "write error"
msgstr ""
#: locate/frcode.c:157
#, c-format
msgid "Usage: %s [-0 | --null] [--version] [--help]\n"
msgstr ""
#: locate/frcode.c:177
#, c-format
msgid "You need to specify a security level as a decimal integer."
msgstr ""
#: locate/frcode.c:185
#, c-format
msgid "Security level %s is outside the convertible range."
msgstr ""
#: locate/frcode.c:193
#, c-format
msgid "Security level %s has unexpected suffix %s."
msgstr ""
#: locate/frcode.c:251
#, c-format
msgid "slocate security level %ld is unsupported."
msgstr ""
#: locate/frcode.c:289
#, c-format
msgid "Failed to write to standard output"
msgstr ""
#: locate/locate.c:146
msgid "days"
msgstr "dies"
#: locate/locate.c:193
#, c-format
msgid "The argument for option --max-database-age must not be empty"
msgstr ""
#: locate/locate.c:209 locate/locate.c:216
#, fuzzy, c-format
msgid "Invalid argument %s for option --max-database-age"
msgstr "l'argument %s no és vàlid per a %s"
#: locate/locate.c:468
#, fuzzy, c-format
msgid "locate database %s contains a filename longer than locate can handle"
msgstr ""
"avís: el camí de la base de dades de locate «%s» té dos punts al principi, i "
"això no és un nom de base de dades vàlid"
#: locate/locate.c:603
#, fuzzy, c-format
msgid "locate database %s is corrupt or invalid"
msgstr "la base de dades de locate «%s» és corrupta o invàlida"
#: locate/locate.c:893
#, fuzzy, c-format
msgid "Locate database size: %s byte\n"
msgid_plural "Locate database size: %s bytes\n"
msgstr[0] "Mida de la base de dades de locate: %s octets\n"
msgstr[1] "Mida de la base de dades de locate: %s octets\n"
#: locate/locate.c:900
#, fuzzy, c-format
msgid "Matching Filenames: %s\n"
msgstr "Noms de fitxers: %s"
#: locate/locate.c:901
#, fuzzy, c-format
msgid "All Filenames: %s\n"
msgstr "Noms de fitxers: %s"
#: locate/locate.c:907
#, c-format
msgid ""
"File names have a cumulative length of %s bytes.\n"
"Of those file names,\n"
"\n"
"\t%s contain whitespace, \n"
"\t%s contain newline characters, \n"
"\tand %s contain characters with the high bit set.\n"
msgstr ""
#: locate/locate.c:921
#, c-format
msgid ""
"Some filenames may have been filtered out, so we cannot compute the "
"compression ratio.\n"
msgstr ""
#: locate/locate.c:934
#, fuzzy, c-format
msgid "Compression ratio %4.2f%% (higher is better)\n"
msgstr "El ràtio de compressió és %4.2f%%\n"
#: locate/locate.c:941
#, fuzzy, c-format
msgid "Compression ratio is undefined\n"
msgstr "El ràtio de compressió és %4.2f%%\n"
#: locate/locate.c:996
#, c-format
msgid ""
"locate database %s looks like an slocate database but it seems to have "
"security level %c, which GNU findutils does not currently support"
msgstr ""
#: locate/locate.c:1109
#, c-format
msgid ""
"%s is an slocate database. Support for these is new, expect problems for "
"now."
msgstr ""
#: locate/locate.c:1123
#, c-format
msgid ""
"%s is an slocate database of unsupported security level %d; skipping it."
msgstr ""
#: locate/locate.c:1140
#, c-format
msgid ""
"You specified the -E option, but that option cannot be used with slocate-"
"format databases with a non-zero security level. No results will be "
"generated for this database.\n"
msgstr ""
#: locate/locate.c:1151
#, c-format
msgid "%s is an slocate database. Turning on the '-e' option."
msgstr ""
#: locate/locate.c:1189
#, fuzzy, c-format
msgid "Old-format locate database %s is too short to be valid"
msgstr "la base de dades de locate «%s» és corrupta o invàlida"
#: locate/locate.c:1341
#, c-format
msgid "Database %s is in the %s format.\n"
msgstr "La base de dades %s és en el format %s.\n"
#: locate/locate.c:1362
msgid "The database has little-endian machine-word encoding.\n"
msgstr ""
#: locate/locate.c:1364
msgid "The database has big-endian machine-word encoding.\n"
msgstr ""
#: locate/locate.c:1377
#, c-format
msgid "The database machine-word encoding order is not obvious.\n"
msgstr ""
#: locate/locate.c:1400
#, fuzzy, c-format
msgid ""
"Usage: %s [-d path | --database=path] [-e | -E | --[non-]existing]\n"
" [-i | --ignore-case] [-w | --wholename] [-b | --basename] \n"
" [--limit=N | -l N] [-S | --statistics] [-0 | --null] [-c | --count]\n"
" [-P | -H | --nofollow] [-L | --follow] [-m | --mmap] [-s | --stdio]\n"
" [-A | --all] [-p | --print] [-r | --regex] [--regextype=TYPE]\n"
" [--max-database-age D] [--version] [--help]\n"
" pattern...\n"
msgstr ""
"Forma d'ús: %s [-d camí | --database=camí] [-e | -E | --[non-]existing]\n"
" [-i | --ignore-case] [-w | --wholename] [-b | --basename]\n"
" [--limit=N | -l N] [-S | --statistics] [-0 | --null] [-c | --"
"count]\n"
" [-P | -H | --nofollow] [-L |--follow] [-m | --mmap] [-s | --"
"stdio]\n"
" [-A | --all] [-p | --print] [-r | --regex] [--regextype=TIPUS]\n"
" [--version] [--help]\n"
" patró...\n"
#: locate/locate.c:1463
msgid "failed to drop group privileges"
msgstr ""
#: locate/locate.c:1481
msgid "failed to drop setuid privileges"
msgstr ""
#: locate/locate.c:1495
msgid "Failed to fully drop privileges"
msgstr ""
#: locate/locate.c:1513
msgid "failed to drop setgid privileges"
msgstr ""
#: locate/locate.c:1783
#, c-format
msgid "warning: the locate database can only be read from stdin once."
msgstr ""
"avís: la base de dades de locate només es pot llegir una vegada des de "
"l'entrada estàndard."
#: locate/locate.c:1845
#, c-format
msgid "time system call failed"
msgstr ""
#: locate/locate.c:1856
#, fuzzy, c-format
msgid "warning: database %s is more than %d %s old (actual age is %.1f %s)"
msgstr "avís: la base de dades «%s» té més de %d %s"
#: locate/word_io.c:96
#, c-format
msgid "WARNING: locate database %s was built with a different byte order"
msgstr ""
#: locate/word_io.c:143
#, c-format
msgid "unexpected EOF in %s"
msgstr ""
# Suggerències? jm
#: locate/word_io.c:146
#, fuzzy, c-format
msgid "error reading a word from %s"
msgstr "error a l'esperar al procés %s"
#: xargs/xargs.c:258
#, c-format
msgid "Invalid escape sequence %s in input delimiter specification."
msgstr ""
"La seqüència d'escapament %s és il·legal en una especificació de delimitació "
"d'entrada."
#: xargs/xargs.c:276
#, c-format
msgid ""
"Invalid escape sequence %s in input delimiter specification; character "
"values must not exceed %lx."
msgstr ""
"La seqüència d'escapament %s és il·legal en una especificació de delimitació "
"d'entrada; els valors dels caràcters no han d'excedir %lx."
#: xargs/xargs.c:282
#, c-format
msgid ""
"Invalid escape sequence %s in input delimiter specification; character "
"values must not exceed %lo."
msgstr ""
"La seqüència d'escapament %s és il·legal en una especificació de delimitació "
"d'entrada; els valors dels caràcters no han d'excedir %lo."
#: xargs/xargs.c:291
#, c-format
msgid ""
"Invalid escape sequence %s in input delimiter specification; trailing "
"characters %s not recognised."
msgstr ""
"La seqüència d'escapament %s és il·legal en una especificació de delimitació "
"d'entrada; no es reconeixen el caràcters finals %s."
#: xargs/xargs.c:336
#, c-format
msgid ""
"Invalid input delimiter specification %s: the delimiter must be either a "
"single character or an escape sequence starting with \\."
msgstr ""
"La seqüència d'escapament %s és il·legal en una especificació de delimitació "
"d'entrada: el delimitador ha de ser un únic caràcter o una seqüència "
"d'escapament que comence amb \\."
#: xargs/xargs.c:353
#, c-format
msgid "environment is too large for exec"
msgstr "l'entorn és massa gran per a l'execució"
#: xargs/xargs.c:561
#, c-format
msgid "warning: value %ld for -s option is too large, using %ld instead"
msgstr ""
#: xargs/xargs.c:629
#, c-format
msgid "Cannot set SIGUSR1 signal handler"
msgstr ""
#: xargs/xargs.c:635
#, c-format
msgid "Cannot set SIGUSR2 signal handler"
msgstr ""
#: xargs/xargs.c:651
#, fuzzy, c-format
msgid "Cannot open input file %s"
msgstr "No s'ha pogut obrir el fitxer d'entrada «%s»"
#: xargs/xargs.c:669
#, fuzzy, c-format
msgid "Your environment variables take up %<PRIuMAX> bytes\n"
msgstr "Les vostres variables d'entorn utilitzen %ld octets\n"
#: xargs/xargs.c:672
#, fuzzy, c-format
msgid "POSIX upper limit on argument length (this system): %<PRIuMAX>\n"
msgstr ""
"límits inferior i superior POSIX per a la mida dels arguments: %ld, %ld\n"
#: xargs/xargs.c:675
#, fuzzy, c-format
msgid ""
"POSIX smallest allowable upper limit on argument length (all systems): "
"%<PRIuMAX>\n"
msgstr ""
"límits inferior i superior POSIX per a la mida dels arguments: %ld, %ld\n"
#: xargs/xargs.c:678
#, fuzzy, c-format
msgid "Maximum length of command we could actually use: %<PRIuMAX>\n"
msgstr "La mida màxima de l'ordre que podem utilitzar: %ld\n"
#: xargs/xargs.c:681
#, fuzzy, c-format
msgid "Size of command buffer we are actually using: %<PRIuMAX>\n"
msgstr "La mida de la memòria intermèdia que s'està utilitzant: %ld\n"
#: xargs/xargs.c:687
#, c-format
msgid ""
"\n"
"Execution of xargs will continue now, and it will try to read its input and "
"run commands; if this is not what you wanted to happen, please type the end-"
"of-file keystroke.\n"
msgstr ""
#: xargs/xargs.c:695
#, c-format
msgid ""
"Warning: %s will be run at least once. If you do not want that to happen, "
"then press the interrupt keystroke.\n"
msgstr ""
#: xargs/xargs.c:823 xargs/xargs.c:916
#, c-format
msgid ""
"unmatched %s quote; by default quotes are special to xargs unless you use "
"the -0 option"
msgstr ""
"s'ha trobat una cometa %s no emparellada. Per defecte, les cometes són "
"especials per a xargs a no ser que s'utilitze l'opció -O"
#: xargs/xargs.c:824 xargs/xargs.c:917
msgid "double"
msgstr "doble"
#: xargs/xargs.c:824 xargs/xargs.c:917
msgid "single"
msgstr "simple"
#: xargs/xargs.c:936
#, c-format
msgid ""
"WARNING: a NUL character occurred in the input. It cannot be passed through "
"in the argument list. Did you mean to use the --null option?"
msgstr ""
#: xargs/xargs.c:946 xargs/xargs.c:1003
#, c-format
msgid "argument line too long"
msgstr "línia d'arguments massa llarga"
#: xargs/xargs.c:1031
#, c-format
msgid "failed to open /dev/tty for reading"
msgstr ""
#: xargs/xargs.c:1115
#, c-format
msgid "could not create pipe before fork"
msgstr ""
#: xargs/xargs.c:1184
#, c-format
msgid ""
"errno-buffer read failed in xargs_do_exec (this is probably a bug, please "
"report it)"
msgstr ""
#: xargs/xargs.c:1237
#, c-format
msgid ""
"read returned unexpected value %d; this is probably a bug, please report it"
msgstr ""
#: xargs/xargs.c:1329
#, c-format
msgid "error waiting for child process"
msgstr "error a l'esperar al procés fill"
#: xargs/xargs.c:1362
#, c-format
msgid "WARNING: Lost track of %d child processes"
msgstr ""
#: xargs/xargs.c:1381
#, c-format
msgid "%s: exited with status 255; aborting"
msgstr "%s: ha acabat amb estat 255; avortant"
#: xargs/xargs.c:1384
#, c-format
msgid "%s: stopped by signal %d"
msgstr "%s: interromput pel senyal %d"
#: xargs/xargs.c:1387
#, c-format
msgid "%s: terminated by signal %d"
msgstr "%s: terminat pel senyal %d"
#: xargs/xargs.c:1469
#, c-format
msgid "%s: invalid number for -%c option\n"
msgstr "%s: número no vàlid per a l'opció -%c\n"
#: xargs/xargs.c:1476
#, c-format
msgid "%s: value for -%c option should be >= %ld\n"
msgstr "%s: el valor per a l'opció -%c ha de ser >= %ld\n"
#: xargs/xargs.c:1490
#, c-format
msgid "%s: value for -%c option should be < %ld\n"
msgstr "%s: el valor per a l'opció -%c ha de ser < %ld\n"
#: xargs/xargs.c:1508
#, fuzzy, c-format
msgid ""
"Usage: %s [-0prtx] [--interactive] [--null] [-d|--delimiter=delim]\n"
" [-E eof-str] [-e[eof-str]] [--eof[=eof-str]]\n"
" [-L max-lines] [-l[max-lines]] [--max-lines[=max-lines]]\n"
" [-I replace-str] [-i[replace-str]] [--replace[=replace-str]]\n"
" [-n max-args] [--max-args=max-args]\n"
" [-s max-chars] [--max-chars=max-chars]\n"
" [-P max-procs] [--max-procs=max-procs] [--show-limits]\n"
" [--verbose] [--exit] [--no-run-if-empty] [--arg-file=file]\n"
" [--version] [--help] [command [initial-arguments]]\n"
msgstr ""
"Forma d'ús: %s [-0prtx] [--interactive] [--null] [-d|--deliminter=delim]\n"
" [-E cadena-eof] [-e[cadena-eof]] [--eof=[cadena-eof]]\n"
" [-L màx-línies] [-l[màx-línies] [--max-lines[=màx-línies]]\n"
" [-I cadena-de-reemplaçament] [-i[cadena-de-reemplaçament]]\n"
" [--replace=[cadena-de-reemplaçament]]\n"
" [-n màx-arguments] [--max-args=màx-arguments]\n"
" [-s màx-caràcters] [--max-chars=màx-caràcters]\n"
" [-P màx-processos] [--max-procs=màx-processos]\n"
" [--verbose] [--exit] [--no-run-if-empty] [--arg-file=fitxer]\n"
" [--version] [--help] [ordre [arguments-inicials]]\n"
#~ msgid "cannot get current directory"
#~ msgstr "no es pot obtenir el directori actual"
#~ msgid "invalid argument %s for %s"
#~ msgstr "l'argument %s no és vàlid per a %s"
#~ msgid "ambiguous argument %s for %s"
#~ msgstr "l'argument %s és ambigu per a %s"
#~ msgid "Valid arguments are:"
#~ msgstr "Els arguments vàlids són:"
#~ msgid "Unknown system error"
#~ msgstr "S'ha produït un error desconegut del sistema"
#, fuzzy
#~ msgid "%s: option '%s' is ambiguous\n"
#~ msgstr "%s: l'opció «%s» és ambigu\n"
#, fuzzy
#~ msgid "%s: option '--%s' doesn't allow an argument\n"
#~ msgstr "%s: l'opció «--%s» no accepta cap argument\n"
#, fuzzy
#~ msgid "%s: option '%c%s' doesn't allow an argument\n"
#~ msgstr "%s: l'opció «%c%s» no accepta cap argument\n"
#, fuzzy
#~ msgid "%s: option '%s' requires an argument\n"
#~ msgstr "%s: l'opció «%s» requereix un argument\n"
#, fuzzy
#~ msgid "%s: unrecognized option '--%s'\n"
#~ msgstr ""
#~ "%s: opció «--%s» no reconeguda\n"
#~ "\n"
#, fuzzy
#~ msgid "%s: unrecognized option '%c%s'\n"
#~ msgstr "%s: opció «%c%s» no reconeguda\n"
#, fuzzy
#~ msgid "%s: invalid option -- '%c'\n"
#~ msgstr "%s: opció no vàlida -- %c\n"
#, fuzzy
#~ msgid "%s: option requires an argument -- '%c'\n"
#~ msgstr "%s: l'opció requereix un argument -- %c\n"
#, fuzzy
#~ msgid "%s: option '-W %s' is ambiguous\n"
#~ msgstr "%s: l'opció «-W %s» és ambigua\n"
#, fuzzy
#~ msgid "%s: option '-W %s' doesn't allow an argument\n"
#~ msgstr "%s: l'opció «-W %s» no accepta cap argument\n"
#~ msgid "`"
#~ msgstr "«"
#~ msgid "'"
#~ msgstr "»"
#~ msgid "Success"
#~ msgstr "Èxit"
#~ msgid "No match"
#~ msgstr "No hi ha cap coincidència"
#~ msgid "Invalid regular expression"
#~ msgstr "Expressió regular no vàlida"
#~ msgid "Invalid collation character"
#~ msgstr "Caràcter de seqüència invàlid"
#~ msgid "Invalid character class name"
#~ msgstr "Caràcter de nom de clase no vàlid"
#~ msgid "Trailing backslash"
#~ msgstr "Barra invertida final"
#~ msgid "Invalid back reference"
#~ msgstr "Referència cap enrere no vàlida"
#~ msgid "Unmatched [ or [^"
#~ msgstr "[ o [^ no emparellat"
#~ msgid "Unmatched ( or \\("
#~ msgstr "( o \\( no emparellat"
#~ msgid "Unmatched \\{"
#~ msgstr "\\{ no emparellat"
#~ msgid "Invalid content of \\{\\}"
#~ msgstr "Contingut no vàlid de \\{\\}"
#~ msgid "Invalid range end"
#~ msgstr "Final de rang no vàlid"
#~ msgid "Memory exhausted"
#~ msgstr "Memòria exhaurida"
#~ msgid "Invalid preceding regular expression"
#~ msgstr "Expressió regular precedent no vàlida"
#~ msgid "Premature end of regular expression"
#~ msgstr "Final prematur de la expressió regular"
#~ msgid "Regular expression too big"
#~ msgstr "Expressió regular massa gran"
#~ msgid "Unmatched ) or \\)"
#~ msgstr ") o \\) no emparellat"
#~ msgid "No previous regular expression"
#~ msgstr "No hi ha cap expressió regular prèvia"
#~ msgid "^[yY]"
#~ msgstr "^[sS]"
#~ msgid "^[nN]"
#~ msgstr "^[nN]"
#~ msgid "memory exhausted"
#~ msgstr "memòria exhaurida"
#, fuzzy
#~ msgid "invalid %s%s argument `%s'"
#~ msgstr "l'argument «%s» no és vàlid per a «%s»"
#, fuzzy
#~ msgid "invalid suffix in %s%s argument `%s'"
#~ msgstr "l'argument «%s» no és vàlid per a «%s»"
#, fuzzy
#~ msgid "%s%s argument `%s' too large"
#~ msgstr "llista d'arguments massa llarga"
#~ msgid "%s: illegal option -- %c\n"
#~ msgstr "%s: opció il·legal -- %c\n"
#~ msgid "block size"
#~ msgstr "mida del bloc"
#~ msgid "level higher in the filesystem hierarchy"
#~ msgstr "nivell més alt a la jerarquia del sistema de fitxers"
#~ msgid "levels higher in the filesystem hierarchy"
#~ msgstr "nivells més alt a la jerarquia del sistema de fitxers"
#~ msgid ""
#~ "warning: the predicate -ipath is deprecated; please use -iwholename "
#~ "instead."
#~ msgstr ""
#~ "avís: el predicat -ipath està desaconsellat; utilitzeu -iwholename en el "
#~ "seu lloc."
#~ msgid "GNU find version %s\n"
#~ msgstr "GNU find versió %s\n"
#~ msgid "oops -- invalid expression type in mark_stat!"
#~ msgstr "ep -- el tipus d'expressió no és vàlid!"
#~ msgid "oops -- invalid expression type in mark_type!"
#~ msgstr "ep -- el tipus d'expressió no és vàlid!"
#~ msgid "with a cumulative length of %s bytes"
#~ msgstr "amb una longitud acumulada de %s octets"
#~ msgid ""
#~ "\n"
#~ "\tof which %s contain whitespace, "
#~ msgstr ""
#~ "\n"
#~ "\tdels quals %s contenen espais, "
#~ msgid ""
#~ "\n"
#~ "\t%s contain newline characters, "
#~ msgstr ""
#~ "\n"
#~ "\t%s contenen caràcters de retorn de carro, "
#~ msgid ""
#~ "\n"
#~ "\tand %s contain characters with the high bit set.\n"
#~ msgstr ""
#~ "\n"
#~ "\ti %s contenen caràcters amb el bit alt establert.\n"
#~ msgid "old"
#~ msgstr "vella"
#~ msgid "GNU locate version %s\n"
#~ msgstr "GNU locate versió %s\n"
#~ msgid "argument to --limit"
#~ msgstr "argument per a --limit"
#~ msgid "GNU xargs version %s\n"
#~ msgstr "GNU xargs versió %s\n"
#~ msgid "Reducing arg_max (%ld) to arg_size (%ld)\n"
#~ msgstr "S'està reduint arg_max (%ld) a arg_size (%ld)\n"
#~ msgid ""
#~ "actions: -exec COMMAND ; -fprint FILE -fprint0 FILE -fprintf FILE FORMAT\n"
#~ " -fls FILE -ok COMMAND ; -print -print0 -printf FORMAT -prune -ls -"
#~ "delete\n"
#~ " -quit\n"
#~ msgstr ""
#~ "accions: -exec ORDRE ; -fprint FITXER -fprint0 FITXER -fprintf FITXER "
#~ "FORMAT\n"
#~ " -fls FITXER -ok ORDRE ; -print -print0 -printf FORMAT -prune -ls -"
#~ "delete\n"
#~ " -quit\n"
# "Llista de predicats?" jm
#~ msgid "Predicate List:\n"
#~ msgstr "Llista de predicats:\n"
#~ msgid "Eval Tree:\n"
#~ msgstr "Arbre d'avaluació\n"
#~ msgid "Optimized Eval Tree:\n"
#~ msgstr "Arbre d'avaluació optimitzat:\n"
#~ msgid "Optimized command line:\n"
#~ msgstr "Línia d'ordres optimitzada:\n"
# Igual que la gent d'es@li.org, ací està el dubte de si ficar
# "memòria exhaurida", llevant el "virtual", ja que en UNIX no
# hi ha diferència de cara a l'usuari. De moment ho deixe com
# està en l'original, però tenen raó. jm
#~ msgid "virtual memory exhausted"
#~ msgstr "memòria virtual exhaurida"
#~ msgid "inserting %s\n"
#~ msgstr "s'està inserint %s\n"
#~ msgid " type: %s %s "
#~ msgstr " tipus: %s %s "
#~ msgid "left:\n"
#~ msgstr "esquerra:\n"
#~ msgid "right:\n"
#~ msgstr "dereta:\n"
#~ msgid "[stat called here] "
#~ msgstr "[s'ha cridat a stat aquí] "
#~ msgid "[type needed here] "
#~ msgstr "[es necessita el tipus aquí] "
#~ msgid "Normalized Eval Tree:\n"
#~ msgstr "Arbre d'avaluació normalitzat:\n"
#~ msgid "error in %s: %s"
#~ msgstr "error en %s: %s"
#~ msgid ""
#~ "warning: locate database path `%s' contains a trailing colon, which is "
#~ "not a valid database name"
#~ msgstr ""
#~ "avís: el camí de la base de dades de locate «%s» conté dos punts al "
#~ "final, i això no és un nom de base de dades vàlid"
#~ msgid "%s changed during execution of %s"
#~ msgstr "%s ha canviat durant l'execució de %s"
#~ msgid "%s/.. changed during execution of %s"
#~ msgstr "%s/.. ha canviat durant l'execució de %s"
#~ msgid "unmatched %s quote"
#~ msgstr "cometa %s no emparellada"
|