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
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
|
msgid ""
msgstr ""
"Project-Id-Version: 2.1.0-alpha\n"
"Last-Translator: Vicent Alberola Canet\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Language: Catalan (català)\n"
#: ejabberd_c2s.erl:364 ejabberd_c2s.erl:668
msgid "Use of STARTTLS required"
msgstr "És obligatori utilitzar STARTTLS"
#: ejabberd_c2s.erl:448
msgid "No resource provided"
msgstr "Recurs no disponible"
#: ejabberd_c2s.erl:1073
msgid "Replaced by new connection"
msgstr "Reemplaçat per una nova connexió"
#: ejabberd_captcha.erl:93 ejabberd_captcha.erl:125
#, fuzzy
msgid "Enter the text you see"
msgstr "Introdueix ruta al fitxer de text"
#: ejabberd_captcha.erl:97
msgid "Your messages to ~s are being blocked. To unblock them, visit ~s"
msgstr ""
#: ejabberd_captcha.erl:235
msgid "The captcha is valid."
msgstr ""
#: mod_adhoc.erl:95 mod_adhoc.erl:125 mod_adhoc.erl:143 mod_adhoc.erl:161
msgid "Commands"
msgstr "Comandaments"
#: mod_adhoc.erl:149 mod_adhoc.erl:243
msgid "Ping"
msgstr "Ping"
#: mod_adhoc.erl:260
msgid "Pong"
msgstr "Pong"
#: mod_announce.erl:505
msgid "Really delete message of the day?"
msgstr "Segur que vols eliminar el missatge del dia?"
#: mod_announce.erl:513 mod_configure.erl:1051 mod_configure.erl:1096
msgid "Subject"
msgstr "Assumpte"
#: mod_announce.erl:518 mod_configure.erl:1056 mod_configure.erl:1101
msgid "Message body"
msgstr "Missatge"
#: mod_announce.erl:598
msgid "No body provided for announce message"
msgstr "No hi ha proveedor per al missatge anunci"
#: mod_announce.erl:633
msgid "Announcements"
msgstr "Anuncis"
#: mod_announce.erl:635
msgid "Send announcement to all users"
msgstr "Enviar anunci a tots els usuaris"
#: mod_announce.erl:637
msgid "Send announcement to all users on all hosts"
msgstr "Enviar anunci a tots els usuaris de tots els hosts"
#: mod_announce.erl:639
msgid "Send announcement to all online users"
msgstr "Enviar anunci a tots els usuaris connectats"
#: mod_announce.erl:641 mod_configure.erl:1046 mod_configure.erl:1091
msgid "Send announcement to all online users on all hosts"
msgstr "Enviar anunci a tots els usuaris connectats a tots els hosts"
#: mod_announce.erl:643
msgid "Set message of the day and send to online users"
msgstr "Configurar el missatge del dia i enviar a tots els usuaris"
#: mod_announce.erl:645
msgid "Set message of the day on all hosts and send to online users"
msgstr ""
"Escriure missatge del dia en tots els hosts i envia als usuaris connectats"
#: mod_announce.erl:647
msgid "Update message of the day (don't send)"
msgstr "Actualitzar el missatge del dia (no enviar)"
#: mod_announce.erl:649
msgid "Update message of the day on all hosts (don't send)"
msgstr "Actualitza el missatge del dia en tots els hosts (no enviar)"
#: mod_announce.erl:651
msgid "Delete message of the day"
msgstr "Eliminar el missatge del dia"
#: mod_announce.erl:653
msgid "Delete message of the day on all hosts"
msgstr "Elimina el missatge del dis de tots els hosts"
#: mod_configure.erl:114 mod_configure.erl:258 mod_configure.erl:280
#: mod_configure.erl:466
msgid "Configuration"
msgstr "Configuració"
#: mod_configure.erl:125 mod_configure.erl:544 web/ejabberd_web_admin.erl:1862
msgid "Database"
msgstr "Base de dades"
#: mod_configure.erl:127 mod_configure.erl:563
msgid "Start Modules"
msgstr "Iniciar mòduls"
#: mod_configure.erl:129 mod_configure.erl:564
msgid "Stop Modules"
msgstr "Parar mòduls"
#: mod_configure.erl:131 mod_configure.erl:572 web/ejabberd_web_admin.erl:1863
msgid "Backup"
msgstr "Guardar còpia de seguretat"
#: mod_configure.erl:133 mod_configure.erl:573
msgid "Restore"
msgstr "Restaurar"
#: mod_configure.erl:135 mod_configure.erl:574
msgid "Dump to Text File"
msgstr "Exportar a fitxer de text"
#: mod_configure.erl:137 mod_configure.erl:583
msgid "Import File"
msgstr "Importar fitxer"
#: mod_configure.erl:139 mod_configure.erl:584
msgid "Import Directory"
msgstr "Importar directori"
#: mod_configure.erl:141 mod_configure.erl:549 mod_configure.erl:1025
msgid "Restart Service"
msgstr "Reiniciar el Servei"
#: mod_configure.erl:143 mod_configure.erl:550 mod_configure.erl:1070
msgid "Shut Down Service"
msgstr "Apager el Servei"
#: mod_configure.erl:145 mod_configure.erl:486 mod_configure.erl:1165
#: web/ejabberd_web_admin.erl:1508
msgid "Add User"
msgstr "Afegir usuari"
#: mod_configure.erl:147 mod_configure.erl:487 mod_configure.erl:1187
msgid "Delete User"
msgstr "Eliminar Usuari"
#: mod_configure.erl:149 mod_configure.erl:488 mod_configure.erl:1199
msgid "End User Session"
msgstr "Finalitzar Sesió d'Usuari"
#: mod_configure.erl:151 mod_configure.erl:489 mod_configure.erl:1211
#: mod_configure.erl:1223
msgid "Get User Password"
msgstr "Obtenir Password d'usuari"
#: mod_configure.erl:153 mod_configure.erl:490
msgid "Change User Password"
msgstr "Canviar Password d'Usuari"
#: mod_configure.erl:155 mod_configure.erl:491 mod_configure.erl:1240
msgid "Get User Last Login Time"
msgstr "Obtenir la última connexió d'Usuari"
#: mod_configure.erl:157 mod_configure.erl:492 mod_configure.erl:1252
msgid "Get User Statistics"
msgstr "Obtenir Estadístiques d'Usuari"
#: mod_configure.erl:159 mod_configure.erl:493
msgid "Get Number of Registered Users"
msgstr "Obtenir Número d'Usuaris Registrats"
#: mod_configure.erl:161 mod_configure.erl:494
msgid "Get Number of Online Users"
msgstr "Obtenir Número d'Usuaris Connectats"
#: mod_configure.erl:163 mod_configure.erl:477 web/ejabberd_web_admin.erl:811
#: web/ejabberd_web_admin.erl:852
msgid "Access Control Lists"
msgstr "Llista de Control d'Accés"
#: mod_configure.erl:165 mod_configure.erl:478 web/ejabberd_web_admin.erl:920
#: web/ejabberd_web_admin.erl:956
msgid "Access Rules"
msgstr "Regles d'Accés"
#: mod_configure.erl:281 mod_configure.erl:467
msgid "User Management"
msgstr "Gestió d'Usuaris"
#: mod_configure.erl:468 web/ejabberd_web_admin.erl:1038
#: web/ejabberd_web_admin.erl:1443
msgid "Online Users"
msgstr "Usuaris conectats"
#: mod_configure.erl:469
msgid "All Users"
msgstr "Tots els usuaris"
#: mod_configure.erl:470
msgid "Outgoing s2s Connections"
msgstr "Connexions s2s d'eixida"
#: mod_configure.erl:471 web/ejabberd_web_admin.erl:1833
msgid "Running Nodes"
msgstr "Nodes funcionant"
#: mod_configure.erl:472 web/ejabberd_web_admin.erl:1835
msgid "Stopped Nodes"
msgstr "Nodes parats"
#: mod_configure.erl:545 mod_configure.erl:555 web/ejabberd_web_admin.erl:1879
msgid "Modules"
msgstr "Mòduls"
#: mod_configure.erl:546
msgid "Backup Management"
msgstr "Gestió de còpia de seguretat"
#: mod_configure.erl:547
msgid "Import Users From jabberd14 Spool Files"
msgstr "Importar usuaris de jabberd14"
#: mod_configure.erl:667
msgid "To ~s"
msgstr "A ~s"
#: mod_configure.erl:685
msgid "From ~s"
msgstr "De ~s"
#: mod_configure.erl:881
msgid "Database Tables Configuration at "
msgstr "Configuració de la base de dades en "
#: mod_configure.erl:886
msgid "Choose storage type of tables"
msgstr "Selecciona el tipus d'almacenament de les taules"
#: mod_configure.erl:894 mod_configure.erl:896
msgid "Disc only copy"
msgstr "Còpia sols en disc"
#: mod_configure.erl:894 mod_configure.erl:896
msgid "RAM and disc copy"
msgstr "Còpia en RAM i disc"
#: mod_configure.erl:894 mod_configure.erl:896
msgid "RAM copy"
msgstr "Còpia en RAM"
#: mod_configure.erl:894 mod_configure.erl:896
msgid "Remote copy"
msgstr "Còpia remota"
#: mod_configure.erl:918
msgid "Stop Modules at "
msgstr "Detindre mòduls en "
#: mod_configure.erl:922
msgid "Choose modules to stop"
msgstr "Selecciona mòduls a detindre"
#: mod_configure.erl:937
msgid "Start Modules at "
msgstr "Iniciar mòduls en "
#: mod_configure.erl:941
msgid "Enter list of {Module, [Options]}"
msgstr "Introdueix llista de {mòdul, [opcions]}"
#: mod_configure.erl:942
msgid "List of modules to start"
msgstr "Llista de mòduls a iniciar"
#: mod_configure.erl:951
msgid "Backup to File at "
msgstr "Desar còpia de seguretat a fitxer en "
#: mod_configure.erl:955 mod_configure.erl:969
msgid "Enter path to backup file"
msgstr "Introdueix ruta al fitxer de còpia de seguretat"
#: mod_configure.erl:956 mod_configure.erl:970 mod_configure.erl:984
#: mod_configure.erl:998
msgid "Path to File"
msgstr "Ruta al fitxer"
#: mod_configure.erl:965
msgid "Restore Backup from File at "
msgstr "Restaura còpia de seguretat des del fitxer en "
#: mod_configure.erl:979
msgid "Dump Backup to Text File at "
msgstr "Exporta còpia de seguretat a fitxer de text en "
#: mod_configure.erl:983
msgid "Enter path to text file"
msgstr "Introdueix ruta al fitxer de text"
#: mod_configure.erl:993
msgid "Import User from File at "
msgstr "Importa usuari des de fitxer en "
#: mod_configure.erl:997
msgid "Enter path to jabberd14 spool file"
msgstr "Introdueix ruta al fitxer jabberd14 spool"
#: mod_configure.erl:1007
msgid "Import Users from Dir at "
msgstr "Importar usuaris des del directori en "
#: mod_configure.erl:1011
msgid "Enter path to jabberd14 spool dir"
msgstr "Introdueix la ruta al directori de jabberd14 spools"
#: mod_configure.erl:1012
msgid "Path to Dir"
msgstr "Ruta al directori"
#: mod_configure.erl:1028 mod_configure.erl:1073
msgid "Time delay"
msgstr "Temps de retràs"
#: mod_configure.erl:1111
msgid "Access Control List Configuration"
msgstr "Configuració de la Llista de Control d'Accés"
#: mod_configure.erl:1115
msgid "Access control lists"
msgstr "Llistes de Control de Accés"
#: mod_configure.erl:1139
msgid "Access Configuration"
msgstr "Configuració d'accesos"
#: mod_configure.erl:1143
msgid "Access rules"
msgstr "Regles d'accés"
#: mod_configure.erl:1168 mod_configure.erl:1190 mod_configure.erl:1202
#: mod_configure.erl:1214 mod_configure.erl:1226 mod_configure.erl:1243
#: mod_configure.erl:1255 mod_configure.erl:1620 mod_configure.erl:1670
#: mod_configure.erl:1691 mod_roster.erl:948 mod_roster_odbc.erl:1049
#: mod_vcard.erl:465 mod_vcard_ldap.erl:550 mod_vcard_odbc.erl:440
msgid "Jabber ID"
msgstr "ID Jabber"
#: mod_configure.erl:1173 mod_configure.erl:1231 mod_configure.erl:1621
#: mod_configure.erl:1833 mod_muc/mod_muc_room.erl:2849
#: web/ejabberd_web_admin.erl:1501
msgid "Password"
msgstr "Password"
#: mod_configure.erl:1178
msgid "Password Verification"
msgstr "Verificació del Password"
#: mod_configure.erl:1269
msgid "Number of registered users"
msgstr "Número d'Usuaris Registrats"
#: mod_configure.erl:1283
msgid "Number of online users"
msgstr "Número d'usuaris connectats"
#: mod_configure.erl:1652 web/ejabberd_web_admin.erl:1567
msgid "Never"
msgstr "Mai"
#: mod_configure.erl:1666 web/ejabberd_web_admin.erl:1581
msgid "Online"
msgstr "Connectat"
#: mod_configure.erl:1671
msgid "Last login"
msgstr "Últim login"
#: mod_configure.erl:1692
msgid "Roster size"
msgstr "Tamany de la llista"
#: mod_configure.erl:1693
msgid "IP addresses"
msgstr "Adreça IP"
#: mod_configure.erl:1694
msgid "Resources"
msgstr "Recursos"
#: mod_configure.erl:1820
msgid "Administration of "
msgstr "Administració de "
#: mod_configure.erl:1823
msgid "Action on user"
msgstr "Acció en l'usuari"
#: mod_configure.erl:1827
msgid "Edit Properties"
msgstr "Editar propietats"
#: mod_configure.erl:1830 web/ejabberd_web_admin.erl:1695
msgid "Remove User"
msgstr "Eliminar usuari"
#: mod_irc/mod_irc.erl:201 mod_muc/mod_muc.erl:335
msgid "Access denied by service policy"
msgstr "Accés denegat per la política del servei"
#: mod_irc/mod_irc.erl:400
msgid "IRC Transport"
msgstr "Transport a IRC"
#: mod_irc/mod_irc.erl:427
msgid "ejabberd IRC module"
msgstr "mòdul ejabberd IRC"
#: mod_irc/mod_irc.erl:557
msgid "You need an x:data capable client to configure mod_irc settings"
msgstr ""
"Necessites un client amb suport x:data per a configurar les opcions de "
"mod_irc"
#: mod_irc/mod_irc.erl:564
msgid "Registration in mod_irc for "
msgstr "Registre en mod_irc per a"
#: mod_irc/mod_irc.erl:569
#, fuzzy
msgid ""
"Enter username, encodings, ports and passwords you wish to use for "
"connecting to IRC servers"
msgstr ""
"Introdueix el nom d'usuari i les codificacions de caràcters per a utilitzar "
"als servidors de IRC"
#: mod_irc/mod_irc.erl:574
msgid "IRC Username"
msgstr "Nom d'usuari al IRC"
#: mod_irc/mod_irc.erl:584
#, fuzzy
msgid ""
"If you want to specify different ports, passwords, encodings for IRC "
"servers, fill this list with values in format '{\"irc server\", \"encoding"
"\", port, \"password\"}'. By default this service use \"~s\" encoding, port "
"~p, empty password."
msgstr ""
"Si vols especificar codificacions de caràcters distints per a cada servidor "
"IRC emplena aquesta llista amb els valors amb el format '{\"servidor irc\", "
"\"codificació\"}'. Aquest servei utilitza per defecte la codificació \"~s\"."
#: mod_irc/mod_irc.erl:596
#, fuzzy
msgid ""
"Example: [{\"irc.lucky.net\", \"koi8-r\", 6667, \"secret\"}, {\"vendetta.fef."
"net\", \"iso8859-1\", 7000}, {\"irc.sometestserver.net\", \"utf-8\"}]."
msgstr ""
"Exemple: [{\"irc.lucky.net\", \"koi8-r\"}, {\"vendetta.fef.net\", \"iso8859-1"
"\"}]."
#: mod_irc/mod_irc.erl:601
msgid "Connections parameters"
msgstr ""
#: mod_irc/mod_irc.erl:711
msgid "Join IRC channel"
msgstr ""
#: mod_irc/mod_irc.erl:715
msgid "IRC channel (don't put the first #)"
msgstr ""
#: mod_irc/mod_irc.erl:720
#, fuzzy
msgid "IRC server"
msgstr "Nom d'usuari al IRC"
#: mod_irc/mod_irc.erl:753 mod_irc/mod_irc.erl:757
msgid "Join the IRC channel here."
msgstr ""
#: mod_irc/mod_irc.erl:761
msgid "Join the IRC channel in this Jabber ID: ~s"
msgstr ""
#: mod_irc/mod_irc.erl:846
msgid "IRC settings"
msgstr ""
#: mod_irc/mod_irc.erl:851
#, fuzzy
msgid ""
"Enter username and encodings you wish to use for connecting to IRC servers. "
"Press 'Next' to get more fields to fill in. Press 'Complete' to save "
"settings."
msgstr ""
"Introdueix el nom d'usuari i les codificacions de caràcters per a utilitzar "
"als servidors de IRC"
#: mod_irc/mod_irc.erl:857
#, fuzzy
msgid "IRC username"
msgstr "Nom d'usuari al IRC"
#: mod_irc/mod_irc.erl:906
#, fuzzy
msgid "Password ~b"
msgstr "Password"
#: mod_irc/mod_irc.erl:911
#, fuzzy
msgid "Port ~b"
msgstr "Port"
#: mod_irc/mod_irc.erl:916
msgid "Encoding for server ~b"
msgstr ""
#: mod_irc/mod_irc.erl:925
msgid "Server ~b"
msgstr ""
#: mod_muc/mod_muc.erl:437
msgid "Only service administrators are allowed to send service messages"
msgstr ""
"Sols els administradors del servei tenen permís per a enviar missatges de "
"servei"
#: mod_muc/mod_muc.erl:481
msgid "Room creation is denied by service policy"
msgstr "Se t'ha denegat el crear la sala per política del servei"
#: mod_muc/mod_muc.erl:488
msgid "Conference room does not exist"
msgstr "La sala de conferències no existeix"
#: mod_muc/mod_muc.erl:569
msgid "Chatrooms"
msgstr "Sales de xat"
#: mod_muc/mod_muc.erl:688
msgid "You need an x:data capable client to register nickname"
msgstr ""
"Necessites un client amb suport x:data per a poder registrar el Nickname"
#: mod_muc/mod_muc.erl:694
msgid "Nickname Registration at "
msgstr "Registre del Nickname en "
#: mod_muc/mod_muc.erl:698
msgid "Enter nickname you want to register"
msgstr "Introdueix el nickname que vols registrar"
#: mod_muc/mod_muc.erl:699 mod_roster.erl:949 mod_roster_odbc.erl:1050
#: mod_vcard.erl:357 mod_vcard.erl:470 mod_vcard_odbc.erl:334
#: mod_vcard_odbc.erl:445
msgid "Nickname"
msgstr "Nickname"
#: mod_muc/mod_muc.erl:738 mod_muc/mod_muc_room.erl:926
#: mod_muc/mod_muc_room.erl:1513
#, fuzzy
msgid "That nickname is registered by another person"
msgstr "El Nickname ja està registrat per una altra persona"
#: mod_muc/mod_muc.erl:764
msgid "You must fill in field \"Nickname\" in the form"
msgstr "Deus d'omplir el camp \"Nickname\" al formulari"
#: mod_muc/mod_muc.erl:784
msgid "ejabberd MUC module"
msgstr "mòdul ejabberd MUC"
#: mod_muc/mod_muc_log.erl:371 mod_muc/mod_muc_log.erl:378
msgid "Chatroom configuration modified"
msgstr "Configuració de la sala de xat modificada"
#: mod_muc/mod_muc_log.erl:381
msgid "joins the room"
msgstr "Entrar a la sala"
#: mod_muc/mod_muc_log.erl:384 mod_muc/mod_muc_log.erl:387
msgid "leaves the room"
msgstr "Deixar la sala"
#: mod_muc/mod_muc_log.erl:390 mod_muc/mod_muc_log.erl:393
msgid "has been banned"
msgstr "Has sigut banejat"
#: mod_muc/mod_muc_log.erl:396 mod_muc/mod_muc_log.erl:399
msgid "has been kicked"
msgstr "Has sigut expulsat"
#: mod_muc/mod_muc_log.erl:402
msgid "has been kicked because of an affiliation change"
msgstr "Has sigut expulsat a causa d'un canvi d'afiliació"
#: mod_muc/mod_muc_log.erl:405
msgid "has been kicked because the room has been changed to members-only"
msgstr "Has sigut expulsat perquè la sala ha canviat a sols membres"
#: mod_muc/mod_muc_log.erl:408
msgid "has been kicked because of a system shutdown"
msgstr "Has sigut expulsat perquè el sistema s'ha apagat"
#: mod_muc/mod_muc_log.erl:411
msgid "is now known as"
msgstr "ara es conegut com"
#: mod_muc/mod_muc_log.erl:414 mod_muc/mod_muc_log.erl:678
#: mod_muc/mod_muc_room.erl:2040
msgid " has set the subject to: "
msgstr " ha posat l'assumpte: "
#: mod_muc/mod_muc_log.erl:448
msgid "Monday"
msgstr "Dilluns"
#: mod_muc/mod_muc_log.erl:449
msgid "Tuesday"
msgstr "Dimarts"
#: mod_muc/mod_muc_log.erl:450
msgid "Wednesday"
msgstr "Dimecres"
#: mod_muc/mod_muc_log.erl:451
msgid "Thursday"
msgstr "Dijous"
#: mod_muc/mod_muc_log.erl:452
msgid "Friday"
msgstr "Divendres"
#: mod_muc/mod_muc_log.erl:453
msgid "Saturday"
msgstr "Dissabte"
#: mod_muc/mod_muc_log.erl:454
msgid "Sunday"
msgstr "Diumenge"
#: mod_muc/mod_muc_log.erl:458
msgid "January"
msgstr "Gener"
#: mod_muc/mod_muc_log.erl:459
msgid "February"
msgstr "Febrer"
#: mod_muc/mod_muc_log.erl:460
msgid "March"
msgstr "Març"
#: mod_muc/mod_muc_log.erl:461
msgid "April"
msgstr "Abril"
#: mod_muc/mod_muc_log.erl:462
msgid "May"
msgstr "Maig"
#: mod_muc/mod_muc_log.erl:463
msgid "June"
msgstr "Juny"
#: mod_muc/mod_muc_log.erl:464
msgid "July"
msgstr "Juliol"
#: mod_muc/mod_muc_log.erl:465
msgid "August"
msgstr "Agost"
#: mod_muc/mod_muc_log.erl:466
msgid "September"
msgstr "Setembre"
#: mod_muc/mod_muc_log.erl:467
msgid "October"
msgstr "Octubre"
#: mod_muc/mod_muc_log.erl:468
msgid "November"
msgstr "Novembre"
#: mod_muc/mod_muc_log.erl:469
msgid "December"
msgstr "Decembre"
#: mod_muc/mod_muc_log.erl:740
msgid "Room Configuration"
msgstr "Configuració de la sala"
#: mod_muc/mod_muc_log.erl:749
#, fuzzy
msgid "Room Occupants"
msgstr "Número d'ocupants"
#: mod_muc/mod_muc_log.erl:852 mod_muc/mod_muc_room.erl:2825
msgid "Room title"
msgstr "Títol de la sala"
#: mod_muc/mod_muc_room.erl:167
msgid "Traffic rate limit is exceeded"
msgstr "El llímit de tràfic ha sigut sobrepassat"
#: mod_muc/mod_muc_room.erl:239
msgid ""
"This participant is kicked from the room because he sent an error message"
msgstr ""
"Aquest participant ha sigut expulsat de la sala perque ha enviat un missatge "
"d'error"
#: mod_muc/mod_muc_room.erl:248
msgid "It is not allowed to send private messages to the conference"
msgstr "No està permés l'enviament de missatges privats a la sala"
#: mod_muc/mod_muc_room.erl:293
msgid "Improper message type"
msgstr "Tipus de missatge incorrecte"
#: mod_muc/mod_muc_room.erl:403
msgid ""
"This participant is kicked from the room because he sent an error message to "
"another participant"
msgstr ""
"Aquest participant ha sigut expulsat de la sala perque ha enviat un missatge "
"erroni a un altre participant"
#: mod_muc/mod_muc_room.erl:416
msgid "It is not allowed to send private messages of type \"groupchat\""
msgstr "No està permés enviar missatges del tipus \"groupchat\""
#: mod_muc/mod_muc_room.erl:428 mod_muc/mod_muc_room.erl:482
msgid "Recipient is not in the conference room"
msgstr "El receptor no està en la sala de conferència"
#: mod_muc/mod_muc_room.erl:448 mod_muc/mod_muc_room.erl:825
#: mod_muc/mod_muc_room.erl:3447
msgid "Only occupants are allowed to send messages to the conference"
msgstr "Sols els ocupants poden enviar missatges a la sala"
#: mod_muc/mod_muc_room.erl:457
msgid "It is not allowed to send private messages"
msgstr "No està permés enviar missatges privats"
#: mod_muc/mod_muc_room.erl:503
msgid "Only occupants are allowed to send queries to the conference"
msgstr "Sols els ocupants poden enviar solicituts a la sala"
#: mod_muc/mod_muc_room.erl:515
msgid "Queries to the conference members are not allowed in this room"
msgstr " En aquesta sala no es permeten solicituts als membres de la sala"
#: mod_muc/mod_muc_room.erl:601
msgid "private, "
msgstr "privat"
#: mod_muc/mod_muc_room.erl:801
#, fuzzy
msgid ""
"Only moderators and participants are allowed to change the subject in this "
"room"
msgstr ""
"Sols els moderadors i participants poden canviar l'assumpte d'aquesta sala"
#: mod_muc/mod_muc_room.erl:806
#, fuzzy
msgid "Only moderators are allowed to change the subject in this room"
msgstr "Sols els moderadors poden canviar l'assumpte d'aquesta sala"
#: mod_muc/mod_muc_room.erl:816
msgid "Visitors are not allowed to send messages to all occupants"
msgstr "Els visitants no poden enviar missatges a tots els ocupants"
#: mod_muc/mod_muc_room.erl:884
msgid ""
"This participant is kicked from the room because he sent an error presence"
msgstr ""
"Aquest participant ha sigut expulsat de la sala perque ha enviat un error de "
"presencia"
#: mod_muc/mod_muc_room.erl:902
msgid "Visitors are not allowed to change their nicknames in this room"
msgstr "Els visitants no tenen permés canviar el seus Nicknames en esta sala"
#: mod_muc/mod_muc_room.erl:915 mod_muc/mod_muc_room.erl:1505
#, fuzzy
msgid "That nickname is already in use by another occupant"
msgstr "El Nickname està siguent utilitzat per una altra persona"
#: mod_muc/mod_muc_room.erl:1494
msgid "You have been banned from this room"
msgstr "Has sigut bloquejat en aquesta sala"
#: mod_muc/mod_muc_room.erl:1497
#, fuzzy
msgid "Membership is required to enter this room"
msgstr "Necessites ser membre d'aquesta sala per a poder entrar"
#: mod_muc/mod_muc_room.erl:1533
msgid "This room is not anonymous"
msgstr "Aquesta sala no és anònima"
#: mod_muc/mod_muc_room.erl:1559
#, fuzzy
msgid "A password is required to enter this room"
msgstr "Es necessita password per a entrar en aquesta sala"
#: mod_muc/mod_muc_room.erl:1581
msgid "Unable to generate a captcha"
msgstr ""
#: mod_muc/mod_muc_room.erl:1591
msgid "Incorrect password"
msgstr "Password incorrecte"
#: mod_muc/mod_muc_room.erl:2095
msgid "Administrator privileges required"
msgstr "Es necessita tenir privilegis d'administrador"
#: mod_muc/mod_muc_room.erl:2110
msgid "Moderator privileges required"
msgstr "Es necessita tenir privilegis de moderador"
#: mod_muc/mod_muc_room.erl:2265
msgid "Jabber ID ~s is invalid"
msgstr "El Jabber ID ~s no és vàlid"
#: mod_muc/mod_muc_room.erl:2279
msgid "Nickname ~s does not exist in the room"
msgstr "El Nickname ~s no existeix a la sala"
#: mod_muc/mod_muc_room.erl:2305 mod_muc/mod_muc_room.erl:2683
msgid "Invalid affiliation: ~s"
msgstr "Afiliació invàlida: ~s"
#: mod_muc/mod_muc_room.erl:2362
msgid "Invalid role: ~s"
msgstr "Rol invàlid: ~s"
#: mod_muc/mod_muc_room.erl:2660 mod_muc/mod_muc_room.erl:2696
msgid "Owner privileges required"
msgstr "Es requerixen privilegis de propietari de la sala"
#: mod_muc/mod_muc_room.erl:2820
#, fuzzy
msgid "Configuration of room ~s"
msgstr "Configuració per a "
#: mod_muc/mod_muc_room.erl:2828 mod_muc/mod_muc_room.erl:3246
#, fuzzy
msgid "Room description"
msgstr "Descripció:"
#: mod_muc/mod_muc_room.erl:2835
msgid "Make room persistent"
msgstr "Crear una sala persistent"
#: mod_muc/mod_muc_room.erl:2840
msgid "Make room public searchable"
msgstr "Crear una sala pública"
#: mod_muc/mod_muc_room.erl:2843
msgid "Make participants list public"
msgstr "Crear una llista de participants pública"
#: mod_muc/mod_muc_room.erl:2846
msgid "Make room password protected"
msgstr "Crear una sala amb password"
#: mod_muc/mod_muc_room.erl:2857
msgid "Maximum Number of Occupants"
msgstr "Número màxim d'ocupants"
#: mod_muc/mod_muc_room.erl:2864
msgid "No limit"
msgstr "Sense Llímit"
#: mod_muc/mod_muc_room.erl:2875
msgid "Present real Jabber IDs to"
msgstr "Presentar Jabber ID's reals a"
#: mod_muc/mod_muc_room.erl:2883
msgid "moderators only"
msgstr "sols moderadors"
#: mod_muc/mod_muc_room.erl:2885
msgid "anyone"
msgstr "qualsevol"
#: mod_muc/mod_muc_room.erl:2887
msgid "Make room members-only"
msgstr "Crear una sala de \"soles membres\""
#: mod_muc/mod_muc_room.erl:2890
msgid "Make room moderated"
msgstr "Crear una sala moderada"
#: mod_muc/mod_muc_room.erl:2893
msgid "Default users as participants"
msgstr "Els usuaris per defecte són els participants"
#: mod_muc/mod_muc_room.erl:2896
#, fuzzy
msgid "Allow users to change the subject"
msgstr "Permetre que els usuaris canvien el tema"
#: mod_muc/mod_muc_room.erl:2899
msgid "Allow users to send private messages"
msgstr "Permetre que els usuaris envien missatges privats"
#: mod_muc/mod_muc_room.erl:2902
msgid "Allow users to query other users"
msgstr "Permetre que els usuaris fagen peticions a altres usuaris"
#: mod_muc/mod_muc_room.erl:2905
msgid "Allow users to send invites"
msgstr "Permetre que els usuaris envien invitacions"
#: mod_muc/mod_muc_room.erl:2908
msgid "Allow visitors to send status text in presence updates"
msgstr ""
"Permetre als visitants enviar text d'estat en les actualitzacions de "
"presència"
#: mod_muc/mod_muc_room.erl:2911
msgid "Allow visitors to change nickname"
msgstr "Permetre als visitants canviar el Nickname"
#: mod_muc/mod_muc_room.erl:2917
#, fuzzy
msgid "Make room captcha protected"
msgstr "Crear una sala amb password"
#: mod_muc/mod_muc_room.erl:2926
msgid "Enable logging"
msgstr "Habilitar el registre de la conversa"
#: mod_muc/mod_muc_room.erl:2934
msgid "You need an x:data capable client to configure room"
msgstr "Necessites un client amb suport x:data per a configurar la sala"
#: mod_muc/mod_muc_room.erl:3248
msgid "Number of occupants"
msgstr "Número d'ocupants"
#: mod_muc/mod_muc_room.erl:3367
msgid "~s invites you to the room ~s"
msgstr "~s et convida a la sala ~s"
#: mod_muc/mod_muc_room.erl:3376
msgid "the password is"
msgstr "el password és"
#: mod_offline.erl:509 mod_offline_odbc.erl:352
msgid ""
"Your contact offline message queue is full. The message has been discarded."
msgstr "La cua de missatges offline és plena. El missatge ha sigut descartat"
#: mod_offline.erl:558 mod_offline_odbc.erl:407
msgid "~s's Offline Messages Queue"
msgstr "~s's cua de missatges offline"
#: mod_offline.erl:561 mod_offline_odbc.erl:410 mod_roster.erl:992
#: mod_roster_odbc.erl:1093 mod_shared_roster.erl:778
#: mod_shared_roster.erl:879 web/ejabberd_web_admin.erl:813
#: web/ejabberd_web_admin.erl:854 web/ejabberd_web_admin.erl:922
#: web/ejabberd_web_admin.erl:958 web/ejabberd_web_admin.erl:999
#: web/ejabberd_web_admin.erl:1489 web/ejabberd_web_admin.erl:1687
#: web/ejabberd_web_admin.erl:1857 web/ejabberd_web_admin.erl:1889
#: web/ejabberd_web_admin.erl:1952 web/ejabberd_web_admin.erl:2056
#: web/ejabberd_web_admin.erl:2081 web/ejabberd_web_admin.erl:2169
msgid "Submitted"
msgstr "Enviat"
#: mod_offline.erl:569
msgid "Time"
msgstr "Data"
#: mod_offline.erl:570
msgid "From"
msgstr "De"
#: mod_offline.erl:571
msgid "To"
msgstr "Per a"
#: mod_offline.erl:572 mod_offline_odbc.erl:418
msgid "Packet"
msgstr "Paquet"
#: mod_offline.erl:585 mod_offline_odbc.erl:431 mod_shared_roster.erl:785
#: web/ejabberd_web_admin.erl:862 web/ejabberd_web_admin.erl:966
msgid "Delete Selected"
msgstr "Eliminar els seleccionats"
#: mod_offline.erl:620 mod_offline_odbc.erl:496
msgid "Offline Messages:"
msgstr "Missatges fora de línia:"
#: mod_offline.erl:620 mod_offline_odbc.erl:496
#, fuzzy
msgid "Remove All Offline Messages"
msgstr "Missatges offline"
#: mod_proxy65/mod_proxy65_service.erl:213
msgid "ejabberd SOCKS5 Bytestreams module"
msgstr "mòdul ejabberd SOCKS5 Bytestreams"
#: mod_pubsub/mod_pubsub.erl:1061 mod_pubsub/mod_pubsub_odbc.erl:887
msgid "Publish-Subscribe"
msgstr "Publicar-subscriure't"
#: mod_pubsub/mod_pubsub.erl:1157 mod_pubsub/mod_pubsub_odbc.erl:984
msgid "ejabberd Publish-Subscribe module"
msgstr "Mòdul ejannerd Publicar-Subscriure"
#: mod_pubsub/mod_pubsub.erl:1440 mod_pubsub/mod_pubsub_odbc.erl:1271
msgid "PubSub subscriber request"
msgstr "Petició de PubSub subscriure"
#: mod_pubsub/mod_pubsub.erl:1442 mod_pubsub/mod_pubsub_odbc.erl:1273
msgid "Choose whether to approve this entity's subscription."
msgstr "Tria si aprova aquesta entitat de subscripció"
#: mod_pubsub/mod_pubsub.erl:1448 mod_pubsub/mod_pubsub_odbc.erl:1279
msgid "Node ID"
msgstr "ID del Node"
#: mod_pubsub/mod_pubsub.erl:1453 mod_pubsub/mod_pubsub_odbc.erl:1284
msgid "Subscriber Address"
msgstr "Adreça del Subscriptor"
#: mod_pubsub/mod_pubsub.erl:1459 mod_pubsub/mod_pubsub_odbc.erl:1290
msgid "Allow this Jabber ID to subscribe to this pubsub node?"
msgstr "Permetre que aquesta Jabber ID es puga subscriure a aquest node pubsub"
#: mod_pubsub/mod_pubsub.erl:3236 mod_pubsub/mod_pubsub_odbc.erl:3086
msgid "Deliver payloads with event notifications"
msgstr "Enviar payloads junt a les notificacions d'events"
#: mod_pubsub/mod_pubsub.erl:3237 mod_pubsub/mod_pubsub_odbc.erl:3087
msgid "Deliver event notifications"
msgstr "Entrega de notificacions d'events"
#: mod_pubsub/mod_pubsub.erl:3238 mod_pubsub/mod_pubsub_odbc.erl:3088
msgid "Notify subscribers when the node configuration changes"
msgstr "Notificar subscriptors quan canvia la configuració del node"
#: mod_pubsub/mod_pubsub.erl:3239 mod_pubsub/mod_pubsub_odbc.erl:3089
msgid "Notify subscribers when the node is deleted"
msgstr "Notificar subscriptors quan el node és eliminat"
#: mod_pubsub/mod_pubsub.erl:3240 mod_pubsub/mod_pubsub_odbc.erl:3090
msgid "Notify subscribers when items are removed from the node"
msgstr "Notificar subscriptors quan els elements són eliminats del node"
#: mod_pubsub/mod_pubsub.erl:3241 mod_pubsub/mod_pubsub_odbc.erl:3091
msgid "Persist items to storage"
msgstr "Persistir elements al guardar"
#: mod_pubsub/mod_pubsub.erl:3242 mod_pubsub/mod_pubsub_odbc.erl:3092
msgid "A friendly name for the node"
msgstr "Un nom per al node"
#: mod_pubsub/mod_pubsub.erl:3243 mod_pubsub/mod_pubsub_odbc.erl:3093
msgid "Max # of items to persist"
msgstr "Màxim # d'elements que persistixen"
#: mod_pubsub/mod_pubsub.erl:3244 mod_pubsub/mod_pubsub_odbc.erl:3094
msgid "Whether to allow subscriptions"
msgstr "Permetre subscripcions"
#: mod_pubsub/mod_pubsub.erl:3245 mod_pubsub/mod_pubsub_odbc.erl:3095
msgid "Specify the access model"
msgstr "Especificar el model d'accés"
#: mod_pubsub/mod_pubsub.erl:3248 mod_pubsub/mod_pubsub_odbc.erl:3098
msgid "Roster groups allowed to subscribe"
msgstr "Llista de grups que tenen permés subscriures"
#: mod_pubsub/mod_pubsub.erl:3249 mod_pubsub/mod_pubsub_odbc.erl:3099
msgid "Specify the publisher model"
msgstr "Especificar el model del publicant"
#: mod_pubsub/mod_pubsub.erl:3251 mod_pubsub/mod_pubsub_odbc.erl:3101
msgid "Max payload size in bytes"
msgstr "Màxim tamany del payload en bytes"
#: mod_pubsub/mod_pubsub.erl:3252 mod_pubsub/mod_pubsub_odbc.erl:3102
msgid "When to send the last published item"
msgstr "Quan s'ha enviat l'última publicació"
#: mod_pubsub/mod_pubsub.erl:3254 mod_pubsub/mod_pubsub_odbc.erl:3104
msgid "Only deliver notifications to available users"
msgstr "Sols enviar notificacions als usuaris disponibles"
#: mod_pubsub/mod_pubsub.erl:3255 mod_pubsub/mod_pubsub_odbc.erl:3105
msgid "The collections with which a node is affiliated"
msgstr ""
#: mod_register.erl:190
msgid "Choose a username and password to register with this server"
msgstr "Tria nom d'usuari i password per a registrar-te en aquest servidor"
#: mod_register.erl:243
#, fuzzy
msgid "Users are not allowed to register accounts so quickly"
msgstr "Els usuarios no tenen permis per a crear comptes tan apresa"
#: mod_roster.erl:943 mod_roster_odbc.erl:1044 web/ejabberd_web_admin.erl:1653
#: web/ejabberd_web_admin.erl:1812 web/ejabberd_web_admin.erl:1823
#: web/ejabberd_web_admin.erl:2140
msgid "None"
msgstr "Cap"
#: mod_roster.erl:950 mod_roster_odbc.erl:1051
msgid "Subscription"
msgstr "Subscripció"
#: mod_roster.erl:951 mod_roster_odbc.erl:1052
msgid "Pending"
msgstr "Pendent"
#: mod_roster.erl:952 mod_roster_odbc.erl:1053
msgid "Groups"
msgstr "Grups"
#: mod_roster.erl:979 mod_roster_odbc.erl:1080
msgid "Validate"
msgstr "Validar"
#: mod_roster.erl:987 mod_roster_odbc.erl:1088
msgid "Remove"
msgstr "Borrar"
#: mod_roster.erl:990 mod_roster_odbc.erl:1091
msgid "Roster of "
msgstr "Llista de contactes de "
#: mod_roster.erl:993 mod_roster_odbc.erl:1094 mod_shared_roster.erl:779
#: mod_shared_roster.erl:880 web/ejabberd_web_admin.erl:814
#: web/ejabberd_web_admin.erl:855 web/ejabberd_web_admin.erl:923
#: web/ejabberd_web_admin.erl:959 web/ejabberd_web_admin.erl:1000
#: web/ejabberd_web_admin.erl:1490 web/ejabberd_web_admin.erl:1688
#: web/ejabberd_web_admin.erl:1858 web/ejabberd_web_admin.erl:2057
#: web/ejabberd_web_admin.erl:2082 web/ejabberd_web_admin.erl:2170
msgid "Bad format"
msgstr "Format erroni"
#: mod_roster.erl:1000 mod_roster_odbc.erl:1101
msgid "Add Jabber ID"
msgstr "Afegir Jabber ID"
#: mod_roster.erl:1099 mod_roster_odbc.erl:1200
msgid "Roster"
msgstr "Llista de contactes"
#: mod_shared_roster.erl:734 mod_shared_roster.erl:776
#: mod_shared_roster.erl:876
msgid "Shared Roster Groups"
msgstr "Grups de contactes compartits"
#: mod_shared_roster.erl:772 web/ejabberd_web_admin.erl:1346
#: web/ejabberd_web_admin.erl:2382
msgid "Add New"
msgstr "Afegir nou"
#: mod_shared_roster.erl:847
msgid "Name:"
msgstr "Nom:"
#: mod_shared_roster.erl:852
msgid "Description:"
msgstr "Descripció:"
#: mod_shared_roster.erl:860
msgid "Members:"
msgstr "Membre:"
#: mod_shared_roster.erl:868
msgid "Displayed Groups:"
msgstr "Mostrar grups:"
#: mod_shared_roster.erl:877
msgid "Group "
msgstr "Grup "
#: mod_shared_roster.erl:886 web/ejabberd_web_admin.erl:820
#: web/ejabberd_web_admin.erl:864 web/ejabberd_web_admin.erl:929
#: web/ejabberd_web_admin.erl:1006 web/ejabberd_web_admin.erl:1943
msgid "Submit"
msgstr "Enviar"
#: mod_vcard.erl:165 mod_vcard_ldap.erl:237 mod_vcard_odbc.erl:129
msgid "Erlang Jabber Server"
msgstr "Servidor Erlang Jabber"
#: mod_vcard.erl:357 mod_vcard.erl:471 mod_vcard_odbc.erl:334
#: mod_vcard_odbc.erl:446
msgid "Birthday"
msgstr "Aniversari"
#: mod_vcard.erl:357 mod_vcard.erl:473 mod_vcard_odbc.erl:334
#: mod_vcard_odbc.erl:448
msgid "City"
msgstr "Ciutat"
#: mod_vcard.erl:357 mod_vcard.erl:472 mod_vcard_odbc.erl:334
#: mod_vcard_odbc.erl:447
msgid "Country"
msgstr "Pais"
#: mod_vcard.erl:357 mod_vcard.erl:474 mod_vcard_odbc.erl:334
#: mod_vcard_odbc.erl:449
msgid "Email"
msgstr "Email"
#: mod_vcard.erl:357 mod_vcard.erl:469 mod_vcard_odbc.erl:334
#: mod_vcard_odbc.erl:444
msgid "Family Name"
msgstr "Cognom"
#: mod_vcard.erl:357 mod_vcard_odbc.erl:334
msgid ""
"Fill in the form to search for any matching Jabber User (Add * to the end of "
"field to match substring)"
msgstr ""
"Emplena el formulari per a buscar usuaris Jabber. Afegix * al final d'un "
"camp per a buscar subcadenes."
#: mod_vcard.erl:357 mod_vcard.erl:466 mod_vcard_odbc.erl:334
#: mod_vcard_odbc.erl:441
msgid "Full Name"
msgstr "Nom complet"
#: mod_vcard.erl:357 mod_vcard.erl:468 mod_vcard_odbc.erl:334
#: mod_vcard_odbc.erl:443
msgid "Middle Name"
msgstr "Segon nom"
#: mod_vcard.erl:357 mod_vcard.erl:467 mod_vcard_odbc.erl:334
#: mod_vcard_odbc.erl:442 web/ejabberd_web_admin.erl:1932
msgid "Name"
msgstr "Nom"
#: mod_vcard.erl:357 mod_vcard.erl:475 mod_vcard_odbc.erl:334
#: mod_vcard_odbc.erl:450
msgid "Organization Name"
msgstr "Nom de la organizació"
#: mod_vcard.erl:357 mod_vcard.erl:476 mod_vcard_odbc.erl:334
#: mod_vcard_odbc.erl:451
msgid "Organization Unit"
msgstr "Unitat de la organizació"
#: mod_vcard.erl:357 mod_vcard_ldap.erl:458 mod_vcard_odbc.erl:334
msgid "Search users in "
msgstr "Cerca usuaris en "
#: mod_vcard.erl:357 mod_vcard_odbc.erl:334 web/ejabberd_web_admin.erl:1496
#: web/ejabberd_web_admin.erl:1551
msgid "User"
msgstr "Usuari"
#: mod_vcard.erl:357 mod_vcard_ldap.erl:458 mod_vcard_odbc.erl:334
msgid "You need an x:data capable client to search"
msgstr "Necesites un client amb suport x:data per a poder buscar"
#: mod_vcard.erl:382 mod_vcard_ldap.erl:483 mod_vcard_odbc.erl:359
msgid "vCard User Search"
msgstr "Recerca de vCard d'usuari"
#: mod_vcard.erl:438 mod_vcard_ldap.erl:537 mod_vcard_odbc.erl:413
msgid "ejabberd vCard module"
msgstr "Mòdul ejabberd vCard"
#: mod_vcard.erl:462 mod_vcard_ldap.erl:547 mod_vcard_odbc.erl:437
msgid "Search Results for "
msgstr "Resultat de la búsqueda"
#: mod_vcard_ldap.erl:458
msgid "Fill in fields to search for any matching Jabber User"
msgstr "Emplena camps per a buscar usuaris Jabber que concorden"
#: web/ejabberd_web_admin.erl:179 web/ejabberd_web_admin.erl:186
#: web/ejabberd_web_admin.erl:202 web/ejabberd_web_admin.erl:209
msgid "Unauthorized"
msgstr ""
#: web/ejabberd_web_admin.erl:266 web/ejabberd_web_admin.erl:283
msgid "ejabberd Web Admin"
msgstr "Web d'administració del ejabberd"
#: web/ejabberd_web_admin.erl:749 web/ejabberd_web_admin.erl:760
msgid "Administration"
msgstr "Administració"
#: web/ejabberd_web_admin.erl:858 web/ejabberd_web_admin.erl:962
msgid "Raw"
msgstr "en format text"
#: web/ejabberd_web_admin.erl:997
msgid "~s access rule configuration"
msgstr "Configuració de les Regles d'Accés ~s"
#: web/ejabberd_web_admin.erl:1015
msgid "ejabberd virtual hosts"
msgstr "Hosts virtuals del ejabberd"
#: web/ejabberd_web_admin.erl:1023 web/ejabberd_web_admin.erl:1030
msgid "Users"
msgstr "Usuaris"
#: web/ejabberd_web_admin.erl:1058
msgid "Users Last Activity"
msgstr "Última activitat d'usuari"
#: web/ejabberd_web_admin.erl:1060
msgid "Period: "
msgstr "Període: "
#: web/ejabberd_web_admin.erl:1070
msgid "Last month"
msgstr "Últim mes"
#: web/ejabberd_web_admin.erl:1071
msgid "Last year"
msgstr "Últim any"
#: web/ejabberd_web_admin.erl:1072
msgid "All activity"
msgstr "Tota l'activitat"
#: web/ejabberd_web_admin.erl:1074
msgid "Show Ordinary Table"
msgstr "Mostrar Taula Ordinaria"
#: web/ejabberd_web_admin.erl:1076
msgid "Show Integral Table"
msgstr "Mostrar Taula Integral"
#: web/ejabberd_web_admin.erl:1085 web/ejabberd_web_admin.erl:1865
msgid "Statistics"
msgstr "Estadístiques"
#: web/ejabberd_web_admin.erl:1097
#, fuzzy
msgid "Not Found"
msgstr "Node no trobat"
#: web/ejabberd_web_admin.erl:1114
msgid "Node not found"
msgstr "Node no trobat"
#: web/ejabberd_web_admin.erl:1441
msgid "Host"
msgstr "Host"
#: web/ejabberd_web_admin.erl:1442
msgid "Registered Users"
msgstr "Usuaris registrats"
#: web/ejabberd_web_admin.erl:1552
msgid "Offline Messages"
msgstr "Missatges offline"
#: web/ejabberd_web_admin.erl:1553
msgid "Last Activity"
msgstr "Última activitat"
#: web/ejabberd_web_admin.erl:1611 web/ejabberd_web_admin.erl:1627
msgid "Registered Users:"
msgstr "Usuaris registrats:"
#: web/ejabberd_web_admin.erl:1613 web/ejabberd_web_admin.erl:1629
#: web/ejabberd_web_admin.erl:2113
msgid "Online Users:"
msgstr "Usuaris en línia:"
#: web/ejabberd_web_admin.erl:1615
msgid "Outgoing s2s Connections:"
msgstr "Connexions d'eixida s2s"
#: web/ejabberd_web_admin.erl:1617
msgid "Outgoing s2s Servers:"
msgstr "Servidors d'eixida de s2s"
#: web/ejabberd_web_admin.erl:1682
msgid "Change Password"
msgstr "Canviar password"
#: web/ejabberd_web_admin.erl:1685
msgid "User "
msgstr "Usuari "
#: web/ejabberd_web_admin.erl:1692
msgid "Connected Resources:"
msgstr "Recursos connectats:"
#: web/ejabberd_web_admin.erl:1693
msgid "Password:"
msgstr "Password:"
#: web/ejabberd_web_admin.erl:1754
msgid "No Data"
msgstr "No hi ha dades"
#: web/ejabberd_web_admin.erl:1832
msgid "Nodes"
msgstr "Nodes"
#: web/ejabberd_web_admin.erl:1855 web/ejabberd_web_admin.erl:1877
msgid "Node "
msgstr "Node "
#: web/ejabberd_web_admin.erl:1864
msgid "Listened Ports"
msgstr "Ports a l'escolta"
#: web/ejabberd_web_admin.erl:1866 web/ejabberd_web_admin.erl:2181
#: web/ejabberd_web_admin.erl:2369
msgid "Update"
msgstr "Actualitzar"
#: web/ejabberd_web_admin.erl:1869 web/ejabberd_web_admin.erl:2490
msgid "Restart"
msgstr "Reiniciar"
#: web/ejabberd_web_admin.erl:1871 web/ejabberd_web_admin.erl:2492
msgid "Stop"
msgstr "Detindre"
#: web/ejabberd_web_admin.erl:1885
msgid "RPC Call Error"
msgstr "Error de cridada RPC"
#: web/ejabberd_web_admin.erl:1926
msgid "Database Tables at "
msgstr "Taules de la base de dades en "
#: web/ejabberd_web_admin.erl:1933
msgid "Storage Type"
msgstr "Tipus d'emmagatzematge"
#: web/ejabberd_web_admin.erl:1934
msgid "Elements"
msgstr ""
#: web/ejabberd_web_admin.erl:1935
msgid "Memory"
msgstr "Memòria"
#: web/ejabberd_web_admin.erl:1953 web/ejabberd_web_admin.erl:2058
msgid "Error"
msgstr ""
#: web/ejabberd_web_admin.erl:1955
msgid "Backup of "
msgstr "Còpia de seguretat de "
#: web/ejabberd_web_admin.erl:1957
#, fuzzy
msgid ""
"Please note that these options will only backup the builtin Mnesia database. "
"If you are using the ODBC module, you also need to backup your SQL database "
"separately."
msgstr ""
"Recordar que estes opcions sols fan còpia de seguretat de la base de dades "
"Mnesia. Si estàs utilitzant el mòdul d'ODBC també deus de fer una còpia de "
"seguretat de la base de dades de SQL a part."
#: web/ejabberd_web_admin.erl:1962
msgid "Store binary backup:"
msgstr "Guardar una còpia de seguretat binària:"
#: web/ejabberd_web_admin.erl:1966 web/ejabberd_web_admin.erl:1973
#: web/ejabberd_web_admin.erl:1981 web/ejabberd_web_admin.erl:1988
#: web/ejabberd_web_admin.erl:1995 web/ejabberd_web_admin.erl:2002
#: web/ejabberd_web_admin.erl:2009 web/ejabberd_web_admin.erl:2017
#: web/ejabberd_web_admin.erl:2024 web/ejabberd_web_admin.erl:2031
msgid "OK"
msgstr "Acceptar"
#: web/ejabberd_web_admin.erl:1969
msgid "Restore binary backup immediately:"
msgstr "Restaurar una còpia de seguretat binària ara mateix."
#: web/ejabberd_web_admin.erl:1977
msgid ""
"Restore binary backup after next ejabberd restart (requires less memory):"
msgstr ""
"Restaurar una còpia de seguretat binària després de reiniciar el ejabberd "
"(requereix menys memòria:"
#: web/ejabberd_web_admin.erl:1984
msgid "Store plain text backup:"
msgstr "Guardar una còpia de seguretat en format de text pla:"
#: web/ejabberd_web_admin.erl:1991
msgid "Restore plain text backup immediately:"
msgstr "Restaurar una còpia de seguretat en format de text pla ara mateix:"
#: web/ejabberd_web_admin.erl:1998
msgid "Import users data from a PIEFXIS file (XEP-0277):"
msgstr ""
#: web/ejabberd_web_admin.erl:2005
msgid "Export data of all users in the server to PIEFXIS files (XEP-0277):"
msgstr ""
#: web/ejabberd_web_admin.erl:2012
msgid "Export data of users in a host to PIEFXIS files (XEP-0277):"
msgstr ""
#: web/ejabberd_web_admin.erl:2020
#, fuzzy
msgid "Import user data from jabberd14 spool file:"
msgstr "Importar usuaris de jabberd14"
#: web/ejabberd_web_admin.erl:2027
#, fuzzy
msgid "Import users data from jabberd14 spool directory:"
msgstr "Importar usuaris de jabberd14"
#: web/ejabberd_web_admin.erl:2053
msgid "Listened Ports at "
msgstr "Ports a la escolta en "
#: web/ejabberd_web_admin.erl:2078
msgid "Modules at "
msgstr "Mòduls en "
#: web/ejabberd_web_admin.erl:2104
msgid "Statistics of ~p"
msgstr "Estadístiques de ~p"
#: web/ejabberd_web_admin.erl:2107
msgid "Uptime:"
msgstr "Temps en marxa"
#: web/ejabberd_web_admin.erl:2110
msgid "CPU Time:"
msgstr "Temps de CPU"
#: web/ejabberd_web_admin.erl:2116
msgid "Transactions Committed:"
msgstr "Transaccions Realitzades:"
#: web/ejabberd_web_admin.erl:2119
msgid "Transactions Aborted:"
msgstr "Transaccions Avortades"
#: web/ejabberd_web_admin.erl:2122
msgid "Transactions Restarted:"
msgstr "Transaccions reiniciades"
#: web/ejabberd_web_admin.erl:2125
msgid "Transactions Logged:"
msgstr "Transaccions registrades"
#: web/ejabberd_web_admin.erl:2167
msgid "Update "
msgstr "Actualitzar"
#: web/ejabberd_web_admin.erl:2175
msgid "Update plan"
msgstr "Pla d'actualització"
#: web/ejabberd_web_admin.erl:2176
#, fuzzy
msgid "Modified modules"
msgstr "Mòduls actualitzats"
#: web/ejabberd_web_admin.erl:2177
msgid "Update script"
msgstr "Script d'actualització"
#: web/ejabberd_web_admin.erl:2178
msgid "Low level update script"
msgstr "Script d'actualització de baix nivell"
#: web/ejabberd_web_admin.erl:2179
msgid "Script check"
msgstr "Comprovar script"
#: web/ejabberd_web_admin.erl:2347
msgid "Port"
msgstr "Port"
#: web/ejabberd_web_admin.erl:2348
msgid "IP"
msgstr ""
#: web/ejabberd_web_admin.erl:2349
#, fuzzy
msgid "Protocol"
msgstr "Port"
#: web/ejabberd_web_admin.erl:2350 web/ejabberd_web_admin.erl:2477
msgid "Module"
msgstr "Mòdul"
#: web/ejabberd_web_admin.erl:2351 web/ejabberd_web_admin.erl:2478
msgid "Options"
msgstr "Opcions"
#: web/ejabberd_web_admin.erl:2371
msgid "Delete"
msgstr "Eliminar"
#: web/ejabberd_web_admin.erl:2500
msgid "Start"
msgstr "Iniciar"
#~ msgid "Encodings"
#~ msgstr "Codificacions"
#~ msgid "(Raw)"
#~ msgstr "(en format text)"
#~ msgid "Virtual Hosts"
#~ msgstr "Hosts Virtuals"
#~ msgid "Specified nickname is already registered"
#~ msgstr "El Nickname especificat ja està registrat, busca-te'n un altre"
#~ msgid "Size"
#~ msgstr "Tamany"
|