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
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
|
<?php
// This language is the Spanish translation of bitweaver and
// it was exported from the bitweaver database on 2008-08-25 08:07
$lang=[
'-1d' => '-1d',
'+1d' => '+1d',
'-1m' => '-1m',
'+1m' => '+1m',
'-7d' => '-7d',
'+7d' => '+7d',
'A' => 'A',
'aborted' => 'abortado',
'abort instance' => 'abortar instancia',
'About' => 'Acerca de',
'accept' => 'Aceptado',
'Accept Article' => 'Aceptar Articulo',
'Accepted requests' => 'Aceptar pedidos',
'Accept wiki syntax' => 'Acceptar sintaxis wiki',
'According this order rules will be applied (\'0\' or empty = auto)' => 'De acuerdo a este orden las reglas serán aplicadas (\'0\' o vacio = auto)',
'account' => 'cuenta',
'Account name' => 'Nombre de cuenta',
'act' => 'act',
'action' => 'Acción',
'Actions' => 'Acciones',
'activate' => 'Activar',
'Activate all polls' => 'Activar todas las votaciones',
'active' => 'Activo',
'Active?' => 'Activo?',
'Active Channels' => 'Canales activos',
'active process' => 'procesos activos',
'activities' => 'actividades',
'activity' => 'actividad',
'Activity completed' => 'Actividad completada',
'Activity (desc)' => 'Actividad (desc)',
'Activity name already exists' => 'Ya existe ese nombre de actividad',
'Activity \'.$res[\'name\'].\' is interactive so it must use the $instance->complete() method' => 'La actividad \'.$res[\'name\'].\' es interactiva por lo que tiene que usar el método $instance->complete()',
'Activity \'.$res[\'name\'].\' is non-interactive so it must not use the $instance->complete() method' => 'La actividad \'.$res[\'name\'].\' es no-interactiva por lo que no debe usar el método $instance->complete()',
'Activity \'.$res[\'name\'].\' is standalone and is using the $instance object' => 'La actividad \'.$res[\'name\'].\' es independiente y usa el objeto $instance',
'Activity \'.$res[\'name\'].\' is switch so it must use $instance->setNextActivity($actname) method' => 'La actividad \'.$res[\'name\'].\' es cambio por lo que debe usar el método $instance->setNextActivity($actname)',
'Activs' => 'Activos',
'act status' => 'act estado',
'Actual_version' => 'Versión actual',
'acvtivate' => 'activar',
'Add' => 'Agregar',
'Add a comment' => 'Agregar comentario',
'Add a directory category' => 'Agregar una categoría de directorio',
'Add all your site users to this newsletter (broadcast)' => 'Agregar todos los usuarios a este boletin',
'Add a new group' => 'Agregar grupo',
'Add a new site' => 'Agregar nuevo sitio',
'Add a new user' => 'Agregar un nuevo usuario',
'Add an operator to the system' => 'Agregar un operador al sistema',
'Add a related category' => 'Agregar categoria relacionada',
'add article' => 'agregar artículo',
'add a site' => 'agregar un sitio',
'Add a subscription newsletters' => 'Agregar subscripcion',
'Add a transition' => 'Agregar transición',
'Add a translation' => 'Agregar traducción',
'Add Calendar Item' => 'Agregar Item a Calendar',
'add comment' => 'agregar comentario',
'add contacts' => 'Agregar contactos',
'Added' => 'Agregada',
'Added users' => 'Usuarios agregados',
'add email' => 'agregar email',
'Add Featured Link' => 'Agregar un enlace',
'Add Hotword' => 'Agregar Hotword',
'Add messages from this email to the forum' => 'Agregar mensajes para este email a el foro',
'add new' => 'agregar nuevo',
'Add new category' => 'Agregar nueva categoría',
'Add New Group' => 'Agregar nuevo grupo',
'Add New Role' => 'Agregar nuevo grupo',
'Add new mail account' => 'Agregar cuenta de mail',
'Add new rule' => 'Agregar nueva regla',
'Add notification' => 'Agregar notificación',
'Add objects to category' => 'Agregar objetos a la categoria',
'Add or edit a category' => 'Agregar o editar categoria',
'Add or edit a chart' => 'Agregar o editar un chart',
'Add or edit an activity' => 'Agregar o editar una actividad',
'Add or edit a news server' => 'Agregar o editar un servidor de news',
'Add or edit an item' => 'Agregar o editar un item',
'Add or edit a process' => 'Agregar o editar proceso',
'Add or edit a role' => 'Agregar o editar un rol',
'Add or edit a rule' => 'Agregar o editar regla',
'Add or edit a site' => 'Agregar o editar un sitio',
'Add or edit a task' => 'Agregar o editar una tarea',
'Add or edit a URL' => 'Agregar o editar URL',
'Add or edit event' => 'Agregar o editar evento',
'Add or edit folder' => 'Agregar o editar carpeta',
'add page' => 'agregar página',
'Add pages to current node' => 'Agregar páginas a nodo actual',
'Add property' => 'Agregar propiedad',
'Address book' => 'Libreta de direcciones',
'add role' => 'agregar rol',
'Add scaled images size X x Y' => 'Agregar imágenes escaladas tamaño X x Y',
'add topic' => 'agregar tópico',
'Add top level bookmarks to menu' => 'Agregar bookmarks del nivel principal al menú',
'Add transition from:' => 'Agregar transición desde:',
'Add transitions' => 'Agregar transición',
'Add transition to:' => 'Agregar transición a:',
'Add unsubscribe instructions to each newsletter' => 'Agregar instrucciones de desubscripcion a cada boletín',
'Add users' => 'Agregar usuarios',
'adm' => 'adm',
'Admin' => 'Admin',
'admin activities' => 'admin activitidades',
'admin admin tpl' => 'admin admin tpl',
'Admin Article Types' => 'Admin Tipos de Artículo',
'admin backups' => 'admin respaldos',
'admin Banners' => 'admin Banners',
'admin Banners tpl' => 'admin Banners tpl',
'admin banning tpl' => 'admin banning tpl',
'admin cache' => 'admin cache',
'admin cache tpl' => 'admin cache tpl',
'Admin Calendars' => 'Admin Calendarios',
'Admin categories' => 'admin categorias',
'admin categories tpl' => 'admin categorias tpl',
'Admin category relationships' => 'Admin relaciones entre categorias',
'Admin chart items' => 'Admin items de charts',
'Admin charts' => 'Admin charts',
'admin charts tpl' => 'admin charts tpl',
'Admin chat' => 'Admin chat',
'Admin (click!)' => 'Admin (click!)',
'Admin content' => 'Administrar bloques de contenido',
'admin content templates' => 'admin plantillas de contenido',
'admin content templates tpl' => 'admin plantillas de contenido tpl',
'Admin cookies' => 'Administrar cookies',
'Admin directory' => 'Admin directorio',
'Admin directory categories' => 'Admin categorias de directorio',
'admin directory categories tpl' => 'admin categorías de directorio tpl',
'Admin Directory Related ' => 'Admin Directorio Relacionados ',
'Admin Directory Sites' => 'Admin Sitios de Directorio',
'Admin Directory Sites tpl' => 'Admin Sitios de Directorio tpl',
'admin directory tpl' => 'admin directorio tpl',
'Admin drawings' => 'admin Ilustraciones',
'admin Drawings tpl' => 'admin Ilustraciones tpl',
'Admin dsn' => 'Admin dsn',
'AdminDSN' => 'AdminDSN',
'admin DynamicContent' => 'admin DynamicContent',
'admin DynamicContent tpl' => 'admin DynamicContent tpl',
'admin Email Notifications' => 'admin Notificaciones por Email',
'Admin ephemerides' => 'Admin efemérides',
'admin Ephemerides tpl' => 'admin Efemérides tpl',
'admin ExternalWiki' => 'admin WikiExterno',
'Admin external wikis' => 'Admin wikis externos',
'Admin FAQ' => 'Admin FAQ',
'Admin FAQs' => 'Administrar FAQs',
'admin featured links' => 'admin featured links',
'admin featured links tpl' => 'admin featured links tpl',
'Admin folders and bookmarks' => 'Admin carpetas y bookmarks',
'admin FortuneCookie' => 'admin FortuneCookie',
'admin FortuneCookie tpl' => 'admin FortuneCookie tpl',
'Admin forums' => 'Admin foros',
'admin forums tpl' => 'admin foros tpl',
'Admin groups' => 'admin grupos',
'admin groups tpl' => 'admin grupos tpl',
'Admin Hotwords' => 'admin hotwords',
'admin hotwords tpl' => 'admin hotwords tpl',
'admin HTML page dynamic zones' => 'admin zonas dinámicas de páginas HTML',
'admin HtmlPages' => 'admin PáginasHtml',
'Admin HTML pages' => 'Administrar páginas HTML',
'admin HtmlPages tpl' => 'admin PáginasHtml tpl',
'Admin instance' => 'Admin instancia',
'Administration' => 'Administración',
'Administration Features' => 'Funciones de Administración',
'Admin layout' => 'Admin layout',
'Admin layout per section' => 'Administrar layout por sección',
'admin live support tpl' => 'admin soporte live tpl',
'admin mailin tpl' => 'admin mailin tpl',
'Admin Menu' => 'Menú admin',
'admin menu builder' => 'admin constructor de menus',
'Admin Menus' => 'Admin Menus',
'admin menus tpl' => 'admin menus tpl',
'Admin Modules' => 'admin módulos',
'admin modules tpl' => 'admin módulos tpl',
'Admin newsletters' => 'admin boletines',
'admin newsletters tpl' => 'admin boletines tpl',
'Admin newsletter subscriptions' => 'Admin subscripcion boletin',
'admin notifications tpl' => 'admin notificaciones tpl',
'Admin Polls' => 'admin votaciones',
'admin polls tpl' => 'admin votaciones tpl',
'Admin posts' => 'Admin posts',
'Admin process activities' => 'Admin actividades de proceso',
'admin processes' => 'Admin procesos',
'Admin process roles' => 'Admin roles de proceso',
'Admin process sources' => 'Admin fuentes de procesos',
'Admin Quicktags' => 'admin QuickTags',
'Admin quiz' => 'Admin cuestionario',
'Admin quizzes' => 'admin cuestionarios',
'admin quizzes tpl' => 'admin encuestas tpl',
'admin Referer stats' => 'admin estadísticas de Referer',
'admin Referer stats tpl' => 'admin estadísticas de Referer tpl',
'Admin related categories' => 'Admin categorias relacionadas',
'admin roles' => 'admin roles',
'Admin RSS modules' => 'admin módulos RSS',
'admin RSSmodules tpl' => 'admin módulos RSS tpl',
'admin send objects tpl' => 'admin enviar objetos tpl',
'Admin sites' => 'Admin sitios',
'Admin structures' => 'Admin estructuras',
'admin structures tpl' => 'admin estructuras tpl',
'Admin surveys' => 'admin encuestas',
'admin surveys tpl' => 'admin encuestas tpl',
'Admin templates' => 'Admin plantillas',
'Admin topics' => 'Administrar temas',
'admin topics tpl' => 'admin tópicos tpl',
'Admin tracker' => 'Admin tracker',
'Admin trackers' => 'Admin trackers',
'admin Trackers tpl' => 'admin Trackers tpl',
'Admin types' => 'Admin tipos',
'Admin users' => 'admin usuarios',
'admin users tpl' => 'admin usuarios tpl',
'admin Webmail' => 'admin Webmail',
'AdmMenu' => 'AdmMenu',
'%a %d of %b, %Y' => '%A %d de %B, %Y',
'%A %d of %B, %Y[%H:%M:%S %Z]' => '%A %d de %B, %Y[%H:%M:%S %Z]',
'%a %d of %b, %Y[%H:%M %Z]' => '%a %d de %b, %Y[%H:%M %Z]',
'After page' => 'Despues de página',
'Again' => 'Otra vez',
'Again please' => 'Repetir por favor',
'age' => 'edad',
'Alias' => 'Alias',
'A link to this post was sent to the following addresses' => 'Un enlace a este post fue enviado a las siguientes direcciones',
'all' => 'todos',
'All articles' => 'Listado de artículos',
'All ephemerides' => 'Todas las efemérides',
'All Fields except gdaltindex must be filled' => 'Todos los campos excepto gdaltindex deben ser completados',
'All galleries' => 'Todas las galerías',
'All games are from' => 'Todos los juegos son de',
'All items' => 'Todos los items',
'allow' => 'permitir',
'Allow comments' => 'Permitir comentarios',
'Allowed HTML:' => 'HTML permitido:',
'Allow HTML' => 'Permitir HTML',
'Allow messages from other users' => 'Permitir mensajes de otros usuarios',
'Allow other user to post in this blog' => 'Permitir a otros usuarios postear en este blog',
'Allow search' => 'Permitir busqueda',
'Allow secure (https) login' => 'Permitir login seguro (https)',
'Allow sites in this category' => 'Permitir sitios en esta categoría',
'Allow Smileys' => 'Permitir Emoticones',
'Allow viewing HTML mails' => 'Permitir ver mails HTML',
'Allow viewing HTML mails?' => 'Permitir ver mails HTML?',
'Allow viwing HTML mails?' => 'Permitir leer mails HTML?',
'Allow wiki markup' => 'Permitir sintaxis wiki',
'All pages' => 'Todas las páginas',
'all permissions in level' => 'todos los permisos en nivel',
'All posted' => 'Todos los posteados',
'All posts' => 'Todos los posts',
'All tasks' => 'Todas las tareas',
'All users' => 'Todos los usuarios',
'and its subpages from the structure, now you have two options:' => 'y sus subpáginas de la estructura, ahora tiene dos opciones:',
'A new message was posted to forum' => 'Un nuevo mensaje fue posteado en el foro',
'A new message was posted to you at {$mail_machine}' => 'Un nuevo mensaje fue enviado a ti en {$mail_machine}',
'A new password has been sent ' => 'Una nueva clave ha sido enviada ',
'announce' => 'anuncio',
'Anonymous' => 'Anónimo',
'Anonymous users can edit pages' => 'Usuarios anónimos pueden editar páginas',
'Anonymous users cannot edit pages' => 'Los usuarios no registrados no pueden editar páginas',
'answer' => 'respuesta',
'any' => 'todos',
'Anytime' => 'En cualquier momento',
'Any wiki page is changed' => 'Cualquier página wiki page es cambiada',
'A password reminder email has been sent ' => 'Un mail recordatorio de clave fue enviado ',
'Append CSS file to feed urls' => 'Agregar archivo CSS file para feed urls',
'Apply all rules' => 'Aplicar todas las reglas',
'Apply all rules or just this to generate preview' => 'Aplicar todas las reglas o sólo esta para generar la previsualización',
'Apply template' => 'Aplicar plantilla',
'Approval type' => 'Tipo de aprobacion',
'Approve' => 'aprobar',
'April' => 'Abril',
'Archived page:' => 'Página archivada:',
'Are files from repository can be cached' => 'Los archivos del repositorio pueden ser cacheados',
'Are you sure you want to delete this attachment?' => 'Está seguro que quiere borrar este archivo asociado?',
'Are you sure you want to delete this calendar?' => 'Está seguro que quiere borrar este calendario?',
'Are you sure you want to delete this category?' => 'Está seguro que quiere borrar esta categoría?',
'Are you sure you want to delete this channel?' => 'Está seguro que quiere borrar este canal?',
'Are you sure you want to delete this comment?' => 'Está seguro que quiere borrar este comentario?',
'Are you sure you want to delete this contact?' => 'Está seguro que quiere borrar este contacto?',
'Are you sure you want to delete this cookie?' => 'Está seguro que quiere borrar esta cookie?',
'Are you sure you want to delete this copyright?' => 'Está seguro que quiere borrar este copyright?',
'Are you sure you want to delete this directory?' => 'Está seguro que quiere borrar este directorio?',
'Are you sure you want to delete this drawing?' => 'Está seguro que quiere borrar este dibujo?',
'Are you sure you want to delete this dsn?' => 'Está seguro que quiere borrar este dsn?',
'Are you sure you want to delete this external wiki?' => 'Está seguro que quiere borrar este wiki externo?',
'Are you sure you want to delete this file?' => 'Está seguro que quiere borrar este archivo?',
'Are you sure you want to delete this forum?' => 'Está seguro que quiere borrar este foro?',
'Are you sure you want to delete this group?' => 'Está seguro que quiere borrar este grupo?',
'Are you sure you want to delete this hotword?' => 'Está seguro que quiere borrar esta hotword?',
'Are you sure you want to delete this HTML page?' => 'Está seguro que quiere borrar esta página HTML?',
'Are you sure you want to delete this menu?' => 'Está seguro que quiere borrar este menú?',
'Are you sure you want to delete this repository?' => 'Está seguro que quiere borrar este repositorio?',
'Are you sure you want to delete this rule?' => 'Está seguro que quiere borrar esta regla?',
'Are you sure you want to delete this template?' => 'Está seguro que quiere borrar esta plantilla?',
'Are you sure you want to delete this tracker?' => 'Está seguro que quiere borrar este tracker?',
'Are you sure you want to unassign this module?' => 'Está seguro que quiere desasignar este módulo?',
'arrow' => 'flecha',
'Article' => 'artículo',
'Article comments settings' => 'Configuraciones para comentarios de artículos',
'Article image' => 'Imágen de Artículo',
'Article is not published yet' => 'El artículo no ha sido publicado',
'Article not found' => 'Articulo no encontrado',
'articles' => 'artículos',
'Articles Home' => 'Inicio Artículos',
'Articles listing configuration' => 'Configuración de listado de artículos',
'Articles (subs)' => 'Artículos (colabs)',
'Article Types tpl' => 'Tipos de Artículo tpl',
'assign' => 'asignar',
'assigned' => 'asignado',
'Assigned categories' => 'Categorías asignadas',
'Assigned items' => 'Items asignados',
'Assigned Modules' => 'Módulos Asignados',
'Assigned objects' => 'Objetos asignados',
'Assigned sections' => 'Secciones asignadas',
'assign group' => 'Asignar Grupo',
'Assign module' => 'Asignar módulo',
'Assign new module' => 'Asignar nuevo módulo',
'Assign permissions' => 'Assignar permisos',
'Assign permissions to ' => 'Asignar permisos a ',
'Assign permissions to group' => 'Asignar permisos al grupo',
'Assign permissions to page' => 'Asignar permisos a página',
'Assign permissions to this object' => 'Asignar permisos al objeto',
'Assign permissions to thispage' => 'Asignar permisos a esta página',
'Assign permissions to this page' => 'Asignar permisos a esta página',
'assign_perms' => 'assign_perms',
'Assign themes to categories' => 'Asignar temas a categorías',
'Assign themes to objects' => 'Asignar temas a objetos',
'Assign themes to sections' => 'Asignar temas a secciones',
'Assign user' => 'Asignar usuario',
'at' => 'en',
'at:' => 'en:',
'(AT)' => '(EN)',
'attach' => 'adjuntar',
'Attach a file to this item' => 'Adjuntar archivo al item',
'Attachements' => 'Attachements',
'Attach file' => 'Adjuntar archivo',
'attachment' => 'adjunto',
'Attachments' => 'adjuntos',
'at tracker' => 'en tracker',
'{$atts_cnt} files attached' => '{$atts_cnt} archivos adjuntados',
'August' => 'Agosto',
'A user registers' => 'Un usuario se registra',
'A user submits an article' => 'Un usuario envia una colaboración',
'Authentication method' => 'Método de autenticacion',
'author' => 'autor',
'AuthorName' => 'Autor',
'Author Name' => 'Nombre del autor',
'Authors' => 'Autores',
'Authors:' => 'Autores:',
'auto' => 'auto',
'AutoLinks' => 'AutoLinks',
'auto-link urls' => 'auto-linkear urls',
'Automatic' => 'Automatico',
'Automatically creates a link to the appropriate SourceForge object' => 'Automáticamente crea un enlace al objeto de Sourceforge apropiado',
'Automatic Page Breaks' => 'Saltos automáticos de página',
'Automonospaced text' => 'Texto Automonoespaciado',
'Auto routed' => 'Auto ruteado',
'Auto validate user suggestions' => 'Autovalidar sugesrencias de usuarios',
'Available content blocks' => 'Bloques disponibles',
'Available drawings' => 'Ilustraciones disponibles',
'Available FAQs' => 'FAQs disponibles',
'Available File Galleries' => 'Galerías de archivos disponibles',
'Available Galleries' => 'Galerías disponibles',
'Available mapfiles' => 'Archivos de mapa disponibles',
'Available polls' => 'Votaciones disponibles',
'Available Repositories' => 'Repositorios disponibles',
'Available scales' => 'Escalas disponibles',
'Available templates' => 'Plantillas disponibles',
'Avatar' => 'Avatar',
'Avatar Image' => 'Imágen de Avatar',
'Average' => 'Promedio',
'Average article size' => 'Tamaño promedio de un artículo',
'Average bookmarks per user' => 'Cantidad de bookmarks por usuario',
'Average file size' => 'Tamaño promedio de archivo',
'Average files per gallery' => 'Promedio de archivos por galería',
'Average image size' => 'Tamaño promedio de imágen',
'Average images per gallery' => 'Promedio de imágenes por galería',
'Average links per page' => 'Cantidad promedio de enlaces por página',
'Average page length' => 'Tamaño promedio',
'Average pageviews per day' => 'Promedio de pageviews por día',
'Average posts pero weblog' => 'Promedio de posteos por weblog',
'Average posts per weblog' => 'Posts promedio por weblog',
'Average posts size' => 'Tamaño promedio de un post',
'Average questions per FAQ' => 'Promedio de preguntas por FAQ',
'Average questions per quiz' => 'Preguntas promedio por cuestionario',
'Average quiz score' => 'Score promedio',
'Average reads per article' => 'Lecturas promedio por artículo',
'Average threads per topic' => 'Promedio de mensajes por tema',
'Average time per quiz' => 'Tiempo promedio',
'Average topics per forums' => 'Cantidad promedio de temas por foro',
'Average versions per page' => 'Versiones promedio por página',
'Average votes per poll' => 'Promedio de votos por encuesta',
'avg' => 'prom',
'Av score' => 'Score prom',
'Av time' => 'Tiempo prom',
'b' => 'n',
'back' => 'atrás',
'background color of the node
' => 'color de fondo del nodo
',
'backlinks' => 'backlinks',
'backlinks to' => 'backlinks hacia',
'back to admin' => 'volver a admin',
'back to forum' => 'volver a foro',
'Back to groups' => 'Volver a grupos',
'back to homepage' => 'volver a inicio',
'Back to list of articles' => 'Volver a lista de artículos',
'back to mailbox' => 'volver a mailbox',
'Back to servers' => 'Volver a servidores',
'Backups' => 'Respaldos',
'Banned from sections' => 'Banneado de secciones',
'Banner Information' => 'Información de Banner',
'Banner not found' => 'Banner no encontrado',
'Banner raw data' => 'Datos crudos del banner',
'Banners' => 'Banners',
'Banner stats' => 'Estadisticas de Banner',
'Banner zones' => 'Zonas de banners',
'Banning' => 'Banning',
'Banning system' => 'Sistema de Banning',
'Batch upload' => 'Subida batch',
'Batch upload (CSV file)' => 'Batch upload (archivo CSV)',
'Batch Upload Results' => 'Resultados del Batch Upload',
'bcc' => 'bcc',
'being run' => 'siendo ejecutado',
'<b>enable/disable</b>' => '<b>habilitar/deshabilitar</b>',
'be offline' => 'quedar fuera de línea',
'be online' => 'quedar en línea',
'Best day' => 'Mejor día',
'Best Position' => 'Mejor Posición',
'<b>Feed</b>' => '<b>Feed</b>',
'bigger' => 'mayor',
'big grin' => 'gran sonrisa',
'>Block description: ' => '>Descripción del bloque: ',
'Block description: ' => 'Descripcion del bloque: ',
'Blog' => 'blog',
'Blog comments settings' => 'Configuración de comentarios en blogs',
'Blog features' => 'Características Blogs',
'Blog heading' => 'Encabezado del Blog',
'Blog level comments' => 'Comentarios para blogs',
'Blog listing configuration (when listing available blogs)' => 'Configuracion de listado de Blog (cuando liste blogs disponibles)',
'Blog name' => 'Nombre Blog',
'Blog not found' => 'No se encuentra el blog',
'Blog post' => 'Blog post',
'Blog post:' => 'Blog post:',
'Blog Posts' => 'Blog Posts',
'blog_ranking_last_posts' => 'blog_ranking_last_posts',
'blog_ranking_top_active_blogs' => 'blog_ranking_top_active_blogs',
'blog_ranking_top_blogs' => 'blog_ranking_top_blogs',
'blogs' => 'blogs',
'Blog settings' => 'Configuración para blogs',
'Blogs last posts' => 'Blogs últimos posts',
'Blog Stats' => 'Estadísticas de Weblogs',
'Blog Title' => 'Título Blog',
'Blog title (asc)' => 'Título del blog (asc)',
'<b>Max number of items</b>' => '<b>Cantidad máxima de items</b>',
'Body' => 'Cuerpo',
'Body:' => 'Cuerpo:',
'bold' => 'negrita',
'Bookmarks' => 'Bookmarks',
'both' => 'ambos',
'Bottom bar' => 'Barra al pie',
'box' => 'caja',
'Box content' => 'Contenido de la caja',
'Broadcast' => 'Broadcast',
'Broadcast message' => 'Broadcast mensaje',
'Browse' => 'Visitar',
'Browse a gallery' => 'Visitar una galería',
'browse by' => 'recorrer por',
'Browse Directory' => 'Navegar Directorio',
'Browse gallery' => 'visitar galería',
'Browser not supported' => 'Navegador no soportado',
'Browsing Gallery' => 'Visitando Galería',
'Browsing Image' => 'Visitando Imágen',
'Browsing Workitem' => 'Navegando Workitem',
'by' => 'por',
'By:' => 'Por:',
'by creator' => 'por creador',
'Bye bye!' => 'Adiós!',
'Bye bye from ' => 'Adiós desde ',
'by modificator' => 'por modificador',
'by %s' => 'por %s',
'bytes' => 'bytes',
'Bytes maximum' => 'Máximo de Bytes',
'by the' => 'por el',
'Cache' => 'Cache',
'Cacheable' => 'Cacheable',
'Cached' => 'cacheada',
'Cache expiration' => 'Expiración de cache',
'Cache Time' => 'Tiempo en cache',
'Cache wiki pages' => 'Cachear páginas',
'Cache wiki pages (global)' => 'Cachear páginas wiki (global)',
'calendar' => 'calendario',
'Calendar Interval in daily view' => 'Intervalo de calendario en vista diaria',
'Calendars Panel' => 'Panel de Calendarios',
'cancel' => 'Cancelar',
'cancel edit' => 'cancelar edición',
'Cancelled' => 'Cancelado',
'Cancel monitoring' => 'Cancelar monitoreo',
'cancel request and exit' => 'cancelar pedido y salir',
'cancel request and leave a message' => 'cancelar pedido y dejar mensaje',
'Can files from repository be cached' => 'Pueden ser cacheados archivos del repositorio',
'Cannot add transition only split activities can have more than one outbound transition' => 'No puedo agregar transición solo actividades divididas pueden tener mas que una transición saliente',
'Cannot connect to' => 'No puedo conectarme a',
'Cannot edit page because it is locked' => 'No se puede editar la página pues se encuentra bloqueada',
'Cannot get file from URL' => 'No se puede obtener el archivo a partir de la URL',
'Cannot get image from URL' => 'No se pudo leer imágen a partir de la URL',
'Cannot get messages' => 'No puedo obtener mensajes',
'cannot process upload' => 'no se pudo procesar upload',
'Cannot read file' => 'No puedo leer archivo',
'Cannot rename page maybe new page already exists' => 'No puedo renombrar página tal vez la nueva página ya existia',
'Cannot upload this file maximum upload size exceeded' => 'No puede subir este archivo tamaño maximo de subida excedido',
'Cannot upload this file not enough quota' => 'No puede subir este archivo quota insuficiente',
'Cannot write to this file:' => 'No puedo escribir en este archivo:',
'can_repeat' => 'puedeRepetir',
'Can\'t import remote HTML page' => 'No puedo importar página HTML remota',
'Can\'t parse remote HTML page' => 'No puedo parsear página HTML page',
'Case' => 'Case',
'Case sensitive' => 'Mayúsc/Minúsc',
'cat' => 'cat',
'categories' => 'Categorías',
'Categories:' => 'Categorías:',
'Categories are disabled' => 'Las categorías están desactivadas',
'categorize' => 'Categorizar',
'categorize this object' => 'categorizar este objeto',
'category' => 'categoría',
'Category description' => 'Descripcion de categoria',
'cc' => 'cc',
'cells' => 'celdas',
'center' => 'Centrar',
'Centers the plugin content in the wiki page' => 'Centra el contenido del plugin en la página wiki',
'center text' => 'centrar texto',
'Chair' => 'Chair',
'change' => 'cambiar',
'Change admin password' => 'Cambiar clave de administrador',
'changed' => 'modificado',
'change email' => 'cambiar email',
'Change password' => 'cambiar clave',
'Change password enforced' => 'Cambio de clave forzoso',
'Change preferences' => 'Cambiar preferencias',
'Change your email' => 'Change your email',
'Change your password' => 'Cambiar clave',
'Channel' => 'Canal',
'Channel Information' => 'Informacion del canal',
'characters long' => 'caracteres de longitud',
'chars' => 'chars',
'Chart' => 'Chart',
'Chart created' => 'Chart creado',
'Chart items' => 'Items de Chart',
'ChartMenu' => 'ChartMenu',
'charts' => 'charts',
'chat' => 'chat',
'ChatAdmin' => 'ChatAdmin',
'Chat Administration' => 'Administracion Chat',
'ChatAdmin tpl' => 'ChatAdmin tpl',
'Chat channels' => 'Canales de Chat ',
'Chatroom' => 'Salon de chat',
'Chat started' => 'Charla comenzada',
'checkbox' => 'checkbox',
'checked' => 'marcado',
'Check to enable this rule' => 'Chequee para habilitar esta regla',
'check / uncheck all' => 'marcar / desmarcar todos',
'chg' => 'camb',
'child categories' => 'Subcategorías',
'Children type' => 'Tipo de descendiente',
'Chinese' => 'Chino',
'choose' => 'Elegir',
'Choose a calendar where to put events' => 'Elija un calendario donde colocar eventos',
'Choose a movie' => 'Elija una película',
'choose a stylesheet' => 'elija una stylesheet',
'Circular reference found some activity has a transition leading to itself' => 'Referencia circular encontrada, alguna actividad tiene una transición que lleva a si misma',
'clear' => 'limpiar',
'Clear all cached pages of this repository' => 'Borrar todas las paginas cacheadas del repositorio',
'clear cache' => 'limpiar cache',
'Clear cached version and refresh cache' => 'Limpiar versión cacheada y refrescar caché',
'clear stats' => 'borrar estadísticas',
'Click' => 'Click',
'click here' => 'haga click acá',
'Click here for more details.' => 'Cliquee aquí para mas detalles.',
'Click here if you\'ve forgotten your password' => 'Cliquee aquí si se olvidó su clave',
'Click here to configure this menu' => 'Cliquee aquí para configurar este menú',
'Click here to confirm restoring' => 'Click aqui para confirmar recuperación del backup',
'Click here to confirm your action' => 'Cliquee aquí para confirmar su acción',
'Click here to create a new backup' => 'Click aqui para crear un nuevo backup',
'Click here to delete this attachment' => 'Cliquee aquí para borrar este archivo asociado',
'Click here to delete this channel' => 'Cliquee aquí para borrar este canal',
'Click here to delete this comment' => 'Cliquee aquí para borrar este comentario',
'Click here to delete this contact' => 'Cliquee aquí para borrar este contacto',
'Click here to delete this cookie' => 'Cliquee aquí para borrar esta cookie',
'Click here to delete this copyright' => 'Cliquee aquí para borrar este copyright',
'Click here to delete this drawing' => 'Cliquee aquí para borrar este dibujo',
'Click here to delete this forum' => 'Cliquee aquí para borrar este foro',
'Click here to delete this menu' => 'Cliquee aquí para borrar este menú',
'Click here to delete this repository' => 'Cliquee aquí para borrar este repositorio',
'Click here to delete this rule' => 'Cliquee aquí para borrar esta regla',
'Click here to delete this template' => 'Cliquee aquí para borrar esta plantilla',
'Click here to delete this tracker' => 'Cliquee aquí para borrar este tracker',
'Click here to edit this comment' => 'Cliquee aquí para editar este comentario',
'Click here to edit this menu' => 'Cliquee aquí para editar este menú',
'Click here to login using a secure protocol' => 'Cliquee aquí para loguearse usando un protocolo seguro',
'Click here to login using the default security protocol' => 'Cliquee aquí para loguearse usando el protocolo por defecto de seguridad',
'Click here to manage your personal menu' => 'Click aca para manejar su menú personal',
'Click here to register' => 'Cliquee aquí para registrarse',
'Click here to unassign this module' => 'Cliquee aquí para desasignar este módulo',
'Click here to view the Google cache of the page instead.' => 'Click aca para ver el cache de Google de la página.',
'Click on the map or click redraw' => 'Cliquee en el mapa o cliquee redibujar',
'click on the map to zoom or pan, do not drag' => 'cliquee en el mapa para ampliar o panorámica, no arrastre',
'Click ratio' => 'Click ratio',
'Clicks' => 'Clicks',
'click to edit' => 'click para editar',
'Click to edit dynamic variable' => 'Click para editar variable dinámica',
'click to navigate' => 'cliquear para navegar',
'Click twice if once is not enough !' => 'Cliquee 2 veces si una vez no es suficiente !',
'Client' => 'Cliente',
'clip' => 'clip',
'Close' => 'Cerrar',
'Close all polls but last' => 'Cerrar todos los votacion menos el ultimo',
'closed' => 'cerrado',
'CMS' => 'CMS',
'CMS features' => 'Características del CMS',
'CMS settings' => 'Configuraciones para el CMS',
'CMS Stats' => 'Estadísticas del CMS',
'code' => 'codigo',
'Code preview' => 'Previsualización de Código',
'col' => 'col',
'colored text' => 'Texto en colores',
'color for links (called edges here)
' => 'color para enlaces (llamados edges aca)
',
'color of the border
' => 'color del borde
',
'Column' => 'Columna',
'Column links to edit/view item?' => 'Enlaces en columna para editar/ver el item?',
'Com' => 'Com',
'Comm' => 'Coms',
'Command' => 'Comando',
'(comma separated list of URIs)' => '(lista separada por comas de URIs)',
'comma separated username:role' => 'usuario:rol separados por coma',
'comma separated usernames' => 'usuarios separados por coma',
'Comment' => 'Comentario',
'Comment:' => 'Comentario:',
'Comment Can Rate Article' => 'Comentario puede calificar artículo',
'comments' => 'comentarios',
'Comments below your current threshold' => 'Comentarios que no alcanzan el puntaje minimo',
'Comments default ordering' => 'Ordenamiento por defecto para comentarios',
'Communications (send/receive objects)' => 'Comunicaciones (enviar/recibir objetos)',
'compare' => 'comparar',
'Comparing versions' => 'Comparando versiones',
'Compile' => 'Compilar',
'Complete' => 'completo',
'Completed' => 'Completada',
'compose' => 'redactar',
'Compose message' => 'Componer Mensaje',
'compose message tpl' => 'componer mensaje tpl',
'coms' => 'coms',
'configure listing' => 'configurar listado',
'Configure modules' => 'Configurar módulos',
'Configure Newsreader' => 'Configurar lector de news',
'configure newsreader server tpl' => 'configurar servidor lector de news tpl',
'Configure news servers' => 'Configurar servidores de news',
'Configure/Options' => 'Configurar/Opciones',
'configure repositories' => 'configurar repositorios',
'configure rules' => 'configurar reglas',
'Configure this page' => 'Configurar esta página',
'configure this repository' => 'configure este repositorio',
'Confirmation required' => 'Confirmación requerida',
'Confirmed' => 'Confirmado',
'confused' => 'confundido',
'Contact' => 'Contactenos',
'contact feature disabled' => 'No esta habilitado',
'Contacts' => 'Contactos',
'contact us' => 'Contactenos',
'Contact us by email' => 'Contactarnos por email',
'Contact user' => 'Contactar usuario',
'Containing' => 'Conteniendo',
'content' => 'contenido',
'Content Features' => 'Funciones de Contenido',
'Content for the feed' => 'Contenido del feed',
'Content templates' => 'Plantillas de contenido',
'Continue' => 'Continúe',
'continued' => 'continuado',
'Control by Categories' => 'Control por Categorias',
'Control by category' => 'Control por categoría',
'Control by Object' => 'Control por Objeto',
'Control by Sections' => 'Control por Secciones',
'Controls recognition of Wiki links using the two parenthesis Wiki link syntax <i>((page name))</i>.' => 'Controla el reconocimiento de enlaces Wiki usando la sintaxis de enlaces wiki de dos paréntesis <i>((nombre página))</i>.',
'convert to topic' => 'convertir a topico',
'cookie' => 'cookie',
'Cookies' => 'Cookies',
'cool' => 'cool',
'cool sites' => 'sitios cool',
'Copy' => 'Copiar',
'Copyright' => 'Copyright',
'Copyright Management' => 'Manejo de Copyright',
'Copyrights' => 'Copyrights',
'copy rules' => 'copiar reglas',
'Could not upload the file' => 'No puedo subir el archivo',
'count' => 'cuenta',
'Count admin pageviews' => 'Contar pageviews de admin',
'country' => 'Pais',
'create' => 'Crear',
'Create a Blog' => 'Crear blog',
'Create a file gallery' => 'Crear galería de archivos',
'Create a gallery' => 'Crear una galería',
'Create a new mapfile' => 'Crear nuevo archivo de mapa',
'Create a new topic' => 'Crear nuevo topico',
'Create a new type' => 'Crear nuevo tipo',
'Create a tag for the current wiki' => 'Crear una etiqueta para el wiki actual',
'Create banner' => 'Crear banner',
'created' => 'Creada',
'Created by' => 'Creado por',
'created from import' => 'creada desde importación',
'created from notepad' => 'creado desde notepad',
'created from phpwiki import' => 'creada desde importación phpwiki',
'created from structure' => 'crear desde estructura',
'Create Directory:' => 'Crear Directorio:',
'create/edit' => 'crear/editar',
'Create/Edit Blog' => 'Crear/Editar Blog',
'Create/edit Calendars' => 'Crear/editar Calendarios',
'Create/edit channel' => 'Crear o editar canal',
'Create/edit contacts' => 'Crear/editar contactos',
'Create/edit cookies' => 'Crear/editar cookies',
'Create/edit dsn' => 'Crear/editar dsn',
'Create/Edit External Wiki' => 'Crear/Editar Wiki Externo',
'Create/edit extwiki' => 'Crear/editar extwiki',
'Create/edit Faq' => 'Crear/editar Faq',
'Create/edit Forums' => 'Crear o editar foros',
'Create/edit HTML pages' => 'Crear/editar páginas HTML',
'Create/edit Menus' => 'Crear o editar menús',
'Create/edit newsletters' => 'Crear/editar boletin',
'Create/edit options for question' => 'Crear/editar opciones para pregunta',
'Create/edit Polls' => 'Crear o editar encuestas',
'Create/edit questions for quiz' => 'Crear/editar preguntas para quiz',
'Create/edit questions for survey' => 'Crear/editar preguntas para encuesta',
'Create/Edit QuickTags' => 'Crear/Editar QuickTags',
'Create/edit quizzes' => 'Crear/editar cuestionarios',
'Create/edit RSS module' => 'Crear o editar módulo RSS',
'Create/edit surveys' => 'Crear o editar encuesta',
'Create/edit templates' => 'Crear/editar plantillas',
'Create/edit trackers' => 'Crear/editar trackers',
'Create Language' => 'Crear Lenguaje',
'Create level' => 'Crear nivel',
'Create new' => 'crear nueva',
'Create new backup' => 'Crear nuevo backup',
'Create new banner' => 'Crear nuevo banner',
'create new block' => 'crear nuevo bloque',
'create new blog' => 'crear nuevo blog',
'create new empty structure' => 'crear nueva estructura vacia',
'Create new FAQ' => 'Crear nueva FAQ',
'Create New FAQ:' => 'Crear Nueva FAQ:',
'Create new Featured Link' => 'Crear nuevo Featured Link',
'Create New Forum' => 'Crear Nuevo Foro',
'create new gallery' => 'crear nueva galería',
'Create new HTML page' => 'Crear nueva página HTML',
'Create new Menu' => 'Crear nuevo Menu',
'Create New Repository' => 'Crear Nuevo Repositorio',
'Create new RSS module' => 'Crear nuevo módulo RSS',
'Create new structure' => 'crear nueva estructura',
'Create New Survey:' => 'Crear Nueva Encuesta:',
'Create new template' => 'Crear nueva plantilla',
'Create new user module' => 'Crear nuevo módulo de usuario',
'Create or edit a file gallery using this form' => 'Cree o edite una galería usando este formulario',
'Create or edit a gallery using this form' => 'Cree o edite una galería usando este formulario',
'Create or edit content' => 'Crear or editar contenido',
'Create or edit content block' => 'Crear o editar bloque de contenido',
'create page' => 'crear página',
'create pdf' => 'Crear PDF',
'Creates a box with the data' => 'Crea un caja con los datos',
'Creates a definition list' => 'Crea lista de definiciones',
'creates a table' => 'crea una tabla',
'creates a title bar' => 'crea una barra de título',
'creates the editable drawing foo' => 'Crea la ilustración foo',
'Create structure from tree' => 'Crear estructura desde arbol',
'create tag' => 'crear etiqueta',
'Create this page' => 'Crear ésta página',
'Create user if not in Auth?' => 'Crear usuario si no está en Auth?',
'Create watch for author on page creation' => 'Crear watch por autor en creación de página',
'Create WebHelp' => 'crear webhelp',
'create zone' => 'crear zona',
'Creating backups may take a long time. If the process is not completed you will see a blank screen. If so you need to increment the maximum script execution time from your php.ini file' => 'Crear respaldos puede tomar mucho tiempo. Si el proceso no es completado usted vera una pantalla en blanco. Si pasa eso necesita incrementar el tiempo de ejecución máximo de scripts en su archivo php.ini',
'creation date' => 'Fecha de Creación',
'creation date (asc)' => 'fecha creación (asc)',
'creation date (desc)' => 'Fecha de creación (desc)',
'Creator' => 'Creador',
'Creator can edit' => 'Creador puede editar',
'cry' => 'llorar',
'CSS File' => 'Archivo CSS',
'CSS file to load when browse this repository' => 'Archivo CSS a cargar cuando se navegue este repositorio',
'cType' => 'cType',
'current' => 'actual',
'Current category' => 'Categoria actual',
'Current folder' => 'Folder actual',
'Current heading' => 'Encabezado actual',
'Current Image' => 'Imágen actual',
'Current Node' => 'Nodo Actual',
'Current page:' => 'Página actual:',
'Current permissions for this object' => 'Permisos actuales para este objeto',
'Current permissions for this page' => 'Permisos actuales para esta página',
'Current URL' => 'URL actual',
'Current ver' => 'Versión actual',
'current_version' => 'versión actual',
'Current version' => 'Versión actual',
'Custom Categories' => 'Categorias personalizadas',
'Custom home' => 'Inicio propio',
'Custom Languages' => 'Lenguajes personalizados',
'Custom Locations' => 'Ubicaciones personalizadas',
'Custom message to the user' => 'Mensaje personalizado al usuario',
'Custom Priorities' => 'Prioridades personalizadas',
'Czech' => 'Checoslovaco',
'Daily' => 'Diario',
'Danish' => 'Danés',
'Data' => 'datos',
'Database' => 'Base de datos',
'database queries used' => 'consultas a la base de datos usadas',
'Date' => 'fecha',
'date and time' => 'fecha y hora',
'Date and Time Format Help' => 'Ayuda de Formatos de Fecha y Hora',
'Date and Time Formats' => 'Formatos de Fecha y Hora',
'Date (asc)' => 'Fecha (asc)',
'Date (desc)' => 'Fecha (desc)',
'Date Selector' => 'Selector de Fecha',
'day' => 'día',
'days' => 'días',
'days (0=all)' => 'días (0=todos)',
'Days online' => 'Días en línea',
'dcs' => 'dcs',
'Deactivate' => 'Desactivar',
'debug' => 'depurar',
'debugger console' => 'consola de depurador',
'December' => 'Diciembre',
'deep' => 'profundidad',
'Default Group' => 'Grupo por Defecto',
'default mapfile' => 'archivo de mapa por defecto',
'Default number of comments per page' => 'Cantidad por defecto de comentarios por página',
'Default ordering for blog listing' => 'Ordenamiento por defecto para listado de blogs',
'Default ordering for threads' => 'Ordenamiento por defecto para mensajes',
'Default ordering for topics' => 'Ordenamiento por defecto para temas',
'Default RDF version' => 'Versión por defecto de RDF',
'definition' => 'definición',
'del' => 'del',
'delete' => 'Borrar',
'Delete item from category?' => 'Borrar ítem de categoria?',
'delete selected' => 'borrar seleccionados',
'delete selected files' => 'borrar archivos seleccionados',
'delete selected topics' => 'borrar tópicos seleccionados',
'Demote' => 'Degradar',
'Desc' => 'descripción',
'Describe topics in listing' => 'Describir temas en listas',
'Description' => 'Descripción',
'Description:' => 'Descripción:',
'Destroy the structure and remove the pages' => 'Destruir la estructura y borrar las páginas',
'Destroy the structure leaving the wiki pages' => 'Destruir la estructura dejando las páginas wiki',
'details' => 'detalles',
'Dif' => 'Dif',
'diff' => 'diff',
'Diff:' => 'Dif:',
'Diff of %s.' => 'Diff de %s.',
'Diff to version' => 'Diff a versión',
'Directories' => 'Directorios',
'directory' => 'directorio',
'Directory Administration' => 'Administracion de Directorio',
'directory admin related tpl' => 'directorio admin relacionados tpl',
'Directory category' => 'Categoría de directorio',
'Directory (include trailing slash)' => 'Directorio (incluya barra al final)',
'Directory path' => 'Directorio',
'Directory ranking' => 'Ranking de directorios',
'Directory Stats' => 'Estadísticas de Directorio',
'directory validate sites tpl' => 'validación de sitios de directorio tpl',
'DirMenu' => 'DirMenu',
'Disabled' => 'Deshabilitado',
'disables the link' => 'deshabilita el enlace',
'Disallow access to the site (except for those with permission)' => 'Desactivar acceso al sitio (excepto para aquellos con permiso)',
'Disallow access when load is above the threshold (except for those with permission)' => 'Desactivar acceso cuando la carga este por encima del límite (excepto para aquellos con permiso)',
'discuss' => 'discustir',
'Discuss pages on forums' => 'Discutir páginas en foro',
'dispay' => 'mostrar',
'display' => 'Mostrar',
'Displayed for the eligible users with no personal assigned modules' => 'Mostrado para los usuarios elegibles sin modulos personales asignados',
'Displayed now, can\'t be unassigned' => 'Mostrado ahora, no puede ser desasignado',
'Displayed now for all eligible users even with personal assigned modules' => 'Mostrado para todos los usuarios elegibles aun con módulos personales asignados',
'Displayed time zone' => 'Zona horaria a mostrar',
'Display last post titles' => 'Desplegar últimos títulos de post',
'Display menus as folders' => 'Desplegar menues como carpetas',
'Display modules to all groups always' => 'Mostrar módulos a todos los grupos siempre',
'Displays a graphical GAUGE' => 'Despliega un GAUGE grafico',
'Displays a module inlined in page' => 'Despliega un módulo embebido en la página',
'displays an image' => 'muestra una imágen',
'Displays a snippet of code' => 'Muestra una porción de código',
'displays rss feed with id=n maximum=m items' => 'muestra el feed rss con id=n y cantidad máxima de items=m',
'Displays the data using a monospace font' => 'Muestra los datos usando fuente monoespaciada',
'Displays the number of registered users' => 'Muestra el número de usuarios registrados',
'Displays the text only if the language matchs' => 'Despliega el texto sólo si el lenguaje coincide',
'Displays the user Avatar' => 'Mostrar Avatar del usuario',
'Dls' => 'bjds',
'Documentation' => 'Documentación',
'done' => 'listo',
'Don\'t move' => 'No mover',
'(DOT)' => '(PUNTO)',
'down' => 'bajar',
'Download' => 'Bajar',
'Download last dump' => 'Descargar último volcado',
'Download Layer' => 'Bajar Capa',
'downloads' => 'bajadas',
'drawing not found' => 'dibujo no encontrado',
'Drawings' => 'Ilustraciones',
'drop down' => 'drop down',
'(Dropdown options : list of items separated with commas)' => '(Opciones dropdown : lista de ítems separados por comas)',
'DSN' => 'dsn',
'dump' => 'volcado',
'Dumps' => 'Volcados',
'dump tree' => 'dump arbol',
'duplicate' => 'duplicado',
'Duration' => 'Duración',
'Duration:' => 'Duración:',
'Dutch' => 'Holandés',
'Dynamic' => 'Dinámica',
'dynamic colapsed' => 'dinámico sin expandir',
'dynamic collapsed' => 'dinámico colapsado',
'dynamic content' => 'Contenido dinámico',
'Dynamic content blocks' => 'Bloques de contenido dinámico',
'Dynamic content system' => 'Systema de Contenido Dinámico',
'dynamic extended' => 'dinámico expandido',
'Dynamic variables' => 'Variables dinámicas',
'Dynamic zones' => 'Secciones dinámicas',
'Each 5 minutes' => 'Cada 5 minutos',
'Edit' => 'Editar',
'Edit a file using this form' => 'Edite un archivo usando este formulario',
'Edit and create languages' => 'Editar y crear lenguajes',
'Edit article' => 'Editar artículo',
'edit article tpl' => 'editar artículo tpl',
'Edit a topic' => 'Editar tópico',
'Edit blog' => 'Editar Blog',
'edit blog tpl' => 'editar blog tpl',
'Edit Calendar Item' => 'Editar Item de Calendario',
'edit chart' => 'editar chart',
'edit/create' => 'editar/crear',
'Edit/Create user module' => 'Editar/Crear módulo de usuario',
'Edit CSS' => 'Editar CSS',
'Edit desc' => 'Editar desc',
'Edit drawings' => 'Editar ilustraciones',
'Edit drawings & pictures' => 'Editar dibujos & ilustraciones',
'Edit FAQ questions' => 'Editar preguntas',
'Edit Forum' => 'Editar Foro',
'edit gallery' => 'editar galería',
'Edit game' => 'Editar juego',
'Edit Image' => 'editar ilustración',
'Editing comment' => 'Editando mensaje',
'Editing tracker item' => 'Editar tracker item',
'editions' => 'ediciones',
'Edit item' => 'Editar item',
'edit items' => 'editar items',
'Edit languages' => 'Editar lenguajes',
'Edit mapfiles' => 'Editar archivos de mapa',
'Edit menu options' => 'Editar opciones del menú',
'edit new article' => 'editar nuevo artículo',
'edit new submission' => 'editar nueva submisión',
'editor' => 'editor',
'Edit or add category' => 'Editar o agregar categorias',
'Edit or add poll options' => 'Editar o agregar opciones',
'Edit or create banners' => 'Editar o crear banners',
'Edit or ex/import Languages' => 'Editar o ex/importar Lenguajes',
'Editor group' => 'Grupo editor',
'Edit Post' => 'Editar Post',
'Edit question options' => 'Editar opciones de pregunta',
'Edit queued message' => 'Editar mensajes en cola',
'Edit quiz questions' => 'Editar preguntas de cuestionario',
'Edit received article' => 'Editar artículo recibido',
'Edit received page' => 'Editar página recibida',
'edit repository' => 'editar repositorio',
'Edit Repository:' => 'Editar Repositorio:',
'Edit rules' => 'Editar reglas',
'Edit Rules for Repository:' => 'Editar Reglas para Repositorio:',
'Edit Style Sheet' => 'Editar Style Sheet',
'Edit Submissions' => 'Editar Colaboración',
'edit submissions tpl' => 'editar colaboración tpl',
'Edit successful!' => 'Editado exitosamente',
'Edit survey questions' => 'Editar preguntas de encuestas',
'edit template' => 'Editar plantilla',
'Edit templates' => 'Editar plantillas',
'EditTemplates' => 'EditarPlantillas',
'EditTemplates tpl' => 'EditarPlantillas tpl',
'Edit this assigned module:' => 'Editar el módulo asignado:',
'Edit this category:' => 'Editar esta categoría:',
'Edit this directory category' => 'Editar esta categoría de directorio',
'Edit this FAQ' => 'Editar esta FAQ',
'Edit this FAQ:' => 'Editar este FAQ:',
'Edit this Featured Link:' => 'Editar este Featured Link:',
'Edit this file gallery:' => 'Editar esta galería de archivos:',
'Edit this Forum:' => 'Editar este Foro:',
'Edit this gallery:' => 'Editar esta galería:',
'Edit this group:' => 'Editar este grupo:',
'Edit this HTML page' => 'Editar esta página HTML',
'Edit this HTML page:' => 'Editar esta página HTML:',
'Edit this menu' => 'Editar menú',
'Edit this Menu:' => 'Editar este Menu:',
'Edit this page' => 'Editar esta página',
'Edit this poll' => 'Editar votacion',
'edit this process' => 'Editar este proceso',
'edit this quiz' => 'editar este cuestionario',
'Edit this RSS module:' => 'Editar éste módulo RSS:',
'edit this survey' => 'editar encuesta',
'Edit this Survey:' => 'Editar esta Encuesta:',
'Edit this template:' => 'Editar esta plantilla:',
'Edit this tracker' => 'Editar tracker',
'Edit this user module:' => 'Editar este módulo de usuario:',
'Edit tpl' => 'Editar tpl',
'Edit tracker fields' => 'Editar campos del tracker ',
'Edit translations' => 'Editar traducción',
'Edit zone' => 'Editar sección',
'eek' => 'eek',
'Email' => 'Email',
'Email:' => 'Email:',
'Email Encoding' => 'Codificación de Email',
'Email is required' => 'Email es requerido',
'EMail notifications' => 'Notificaciones por EMail',
'email this post' => 'email este post',
'emot' => 'emot',
'Emphasis' => 'Enfasis',
'Empty' => 'Vacio',
'Enabled' => 'Activado',
'Enable Feature' => 'Activar Función',
'Enable watch by default for author' => 'Activar watch por defecto para autor',
'Enable watches on comments' => 'Activar watches en comentarios',
'Enable watches when I am the editor' => 'Activar watches cuando soy el editor',
'Enable watch events when I am the editor' => 'Activar eventos de watch cuando soy el editor',
'end' => 'Fin',
'###end###' => '###end###',
'End activity is not reachable from start activity' => 'La actividad final no es alcanzable desde la actividad inicial',
'End hour for days' => 'Hora final para dias',
'English' => 'Inglés',
'Enjoy the site!' => 'Disfrute el sitio!',
'Enlarge area height' => 'Ampliar altura del área',
'Enlarge area width' => 'Ampliar ancho del área',
'enter chat room' => 'ingresar al salon de chat',
'Entire Site' => 'Sitio completo',
'Ephemerides' => 'Efemerides',
'EphMenu' => 'EphMenu',
'Error' => 'Error',
'ERROR: Either the subject or body must be non-empty' => 'ERROR: Tanto el tema o el cuerpo no deben estar vacíos',
'ERROR: No valid users to send the message' => 'ERROR: Sin usuarios válidos para enviarles el mensaje',
'Error processing zipped image package' => 'Error procesando paquete de imagenes zipeado',
'Errors detected' => 'Errores detectados',
'event' => 'evento',
'Events' => 'Eventos',
'Events Panel' => 'Panel de Eventos',
'event without name' => 'evento sin nombre',
'Everybody can attach' => 'Todos pueden adjuntar',
'evil' => 'malvado',
'Example' => 'Ejemplo',
'exception' => 'excepción',
'exception instance' => 'instancia de excepcion',
'exceptions' => 'excepciones',
'exceptions instance' => 'instancia de excepciones',
'excerpt' => 'desc',
'exclaim' => 'exclamar',
'exec' => 'ejecutar',
'Execution time' => 'Tiempo de ejecución',
'Expiration Date' => 'Fecha Expiración',
'ExpireDate' => 'FechaExpiración',
'Expire Date' => 'Fecha de expiración',
'expires:' => 'expira:',
'export' => 'exportar',
'export all versions' => 'exportar todas las versiones',
'export pages' => 'exportar páginas',
'Export Wiki Pages' => 'Exportar páginas wiki',
'Exterminator' => 'Exterminador',
'external link' => 'un enlace externo',
'External links' => 'Enlaces externos',
'External Wiki' => 'Wiki Externo',
'External wikis' => 'Wikis externos',
'extwiki' => 'extwiki',
'ExtWikis' => 'ExtWikis',
'failed' => 'fallo',
'Failed to edit the image' => 'Error al editar imágen',
'faq' => 'faq',
'FAQ Answers' => 'Respuestas',
'FAQ comments' => 'Comentarios en FAQs',
'FAQ Questions' => 'Preguntas frecuentes',
'faqs' => 'faqs',
'FAQs settings' => 'Configuraciones de FAQs',
'Faq Stats' => 'Estadísticas de FAQs',
'Fatal error' => 'Error fatal',
'Fatal error: cannot execute automatic activity $activity_id' => 'Error fatal: no puedo ejecutar actividad automática $activity_id',
'Fatal error: next_activity does not match any candidate in autorouting switch activity' => 'Error fatal: next_activity no se corresponde con ningún candidato en cambio de actividad autoruteada',
'Fatal error: non-deterministic decision for autorouting activity' => 'Error fatal: decisión no determinística para actividad de autoruteo',
'Fatal error: setting next activity to an unexisting activity' => 'Error fatal: poner siguiente actividad a una actividad inexistente',
'Fatal error: trying to send an instance to an activity but no transition found' => 'Error fatal: intentando enviar una instancia a una actividad pero no se encontró transición',
'Favorites' => 'Favoritos',
'feat' => 'carac',
'Featured Help' => 'Featured Help',
'Feature disabled' => 'Opción deshabilitada',
'Featured links' => 'Enlaces destacados',
'Features' => 'Características',
'features matched' => 'características coincidentes',
'Features state' => 'Estado de características',
'February' => 'Febrero',
'Feed for Articles' => 'Feed de artículos',
'Feed for File Galleries' => 'Feed de galerías de archivos',
'Feed for forums' => 'Feed de foros',
'Feed for Image Galleries' => 'Feed de galerías de imágenes',
'Feed for individual File Galleries' => 'Feed para una galería de archivos en particular',
'Feed for individual forums' => 'Feed de foros individuales',
'Feed for individual Image Galleries' => 'Feed para una galería de imágenes en particular',
'Feed for individual weblogs' => 'Feed para un weblog',
'Feed for mapfiles' => 'Feed para archivos de mapa',
'Feed for the Wiki' => 'Feed del Wiki',
'Feed for Weblogs' => 'Feed de weblogs',
'fields' => 'campos',
'Fields to display on page' => 'Campos a mostrar en la página',
'File' => 'Archivo',
'File Description' => 'Descripción del archivo',
'file gal' => 'gal archivos',
'File galleries' => 'Galerías de archivos',
'File galleries comments settings' => 'Configuracion de comentarios para galerías de archivos',
'File galleries Stats' => 'Estadísticas de galerías de archivos',
'file galleries tpl' => 'galerías de archivos tpl',
'File Gallery' => 'Galería de archivos',
'FileGalMenu' => 'FileGalMenu',
'filegal_ranking_last_files' => 'filegal_ranking_last_files',
'filegal_ranking_top_files' => 'filegal_ranking_top_files',
'filegal_ranking_top_galleries' => 'filegal_ranking_top_galleries',
'File gals' => 'Galerías de archivos',
'file gls' => 'gls archivos',
'File is too big' => 'Archivo demasiado grande',
'Filename' => 'Nombre de archivo',
'File name of start page' => 'Archivo de la página inicial',
'Filename only' => 'Solo nombre de archivo',
'File not found' => 'Archivo no encontrado',
'files' => 'archivos',
'Filesize' => 'Tamaño archivo',
'files to index (regexp):' => 'archivos a indizar (regexp):',
'File Title' => 'Título del archivo',
'File with names appended by -{$user} are modifiable, others are only duplicable and be used as model.' => 'Los archivos con nombres agregados por -{$user} son modificables, otros son solo duplicables y seran usados como modelo.',
'Filter' => 'Filtrar',
'Filters' => 'Filtros',
'Finally if the user didn\'t select a theme the default theme is used' => 'Finalmente si el usuario no eligio un tema el tema por defecto sera usado',
'find' => 'Buscar',
'Find:' => 'Encontrar:',
'First' => 'Primero',
'first image' => 'primer imágen',
'First Name' => 'Nombre',
'First page' => 'Primer página',
'fixed' => 'estático',
'flag' => 'flag',
'Flagged' => 'marcado',
'Flag this message' => 'Marcar este mensaje',
'Flash binary (.sqf or .dcr)' => 'Archivo Flash (.sqf o .dcr)',
'Float text around image' => 'Texto flotante alrededor de imágen',
'Folder in' => 'Carpeta entrada',
'Folders' => 'Carpetas',
'Font' => 'Fuente',
'Footnotes' => 'Notas al pie',
'for' => 'para',
'for bullet lists' => 'para listas de bullets',
'Force to use chars and nums in passwords' => 'Obligar a usar letras y números en claves',
'for definiton lists' => 'para listas de definiciones',
'for links' => 'para enlaces',
'ForMenu' => 'ForMenu',
'for numbered lists' => 'para listas numeradas',
'|| for rows' => '|| para filas',
'
for rows' => '
para filas',
'Forum' => 'foro',
'Forum List' => 'Lista de foros',
'Forum listing configuration' => 'Configuración de listado de Foros',
'Forum password' => 'Clave de foro',
'Forum posts' => 'Posts de Foros',
'Forum quick jumps' => 'Accesos rápidos de foros',
'forums' => 'foros',
'Forums best topics' => 'Foros mejores tópicos',
'Forum settings' => 'Seteos de foros',
'Forums last topics' => 'Foros últimos tópicos',
'Forums most read topics' => 'Foros tópicos mas leídos',
'Forums most visited forums' => 'Foros foros mas visitados',
'Forums settings' => 'Configuracion de foros',
'Forum Stats' => 'Estadísticas de foros',
'Forums with most posts' => 'Foros con mas posts',
'forum topic' => 'tópico de foro',
'forward' => 'enviar',
'Forward messages to this forum to this email' => 'Enviar los mensajes de este foro a este email',
'Forward messages to this forum to this e-mail address, in a format that can be used for sending back to the inbound forum e-mail address' => 'Reenviar mensajes a este foro a esta direccion de mail, en un formato que puede ser usado para enviar para retornar a la direccion entrante de mail del foro',
'for wiki references' => 'para referencias en el wiki',
'Found' => 'Encontado',
'framed' => 'en un marco',
'French' => 'Francés',
'Frequency' => 'Frecuencia',
'fri' => 'vie',
'Friday' => 'Viernes',
'frms' => 'frms',
'From' => 'Desde',
'From:' => 'Desde:',
'From date' => 'Desde fecha',
'From Points' => 'Desde puntos',
'from the list' => 'de la lista',
'from
the mapfile:' => 'desde
el archivo de mapa:',
'frown' => 'ceño',
'full' => 'completo',
'Full adds accented characters.' => 'Completo agrega caracteres acentuados.',
'full headers' => 'ver headers',
'Full path to gdaltindex' => 'Camino completo a gdaltindex',
'full path to mapfiles' => 'camino completo a archivos de mapa',
'Full Text Search' => 'Búsqueda Full Text',
'Galaxia Admin Processes' => 'Galaxia Admin Procesos',
'Galaxia Admin Processes tpl' => 'Galaxia Admin Procesos tpl',
'Galaxia Monitor Activities' => 'Galaxia Monitor Actividades',
'Galaxia Monitor Activities tpl' => 'Galaxia Monitor Actividades tpl',
'Galaxia Monitor Instances' => 'Galaxia Monitor Instancias',
'Galaxia Monitor Instances tpl' => 'Galaxia Monitor Instancias tpl',
'Galaxia Monitor Processes' => 'Galaxia Monitor Procesos',
'Galaxia Monitor Processes tpl' => 'Galaxia Monitor Procesos tpl',
'Galaxia User Activities' => 'Galaxia Actividades de Usuario',
'Galaxia User Activities tpl' => 'Galaxia Actividades de Usuario tpl',
'Galaxia User Instances' => 'Galaxia Instancias de Usuario',
'Galaxia User Instances tpl' => 'Galaxia Instancias de Usuario tpl',
'Galaxia User Processes' => 'Galaxia Procesos de Usuario',
'Galaxia User Processes tpl' => 'Galaxia Procesos de Usuario tpl',
'galleries' => 'Galerías',
'Galleries features' => 'Preferencias de galerías',
'galleries tpl' => 'galerías tpl',
'Gallery' => 'Galería',
'Gallery Files' => 'Archivos de Galería',
'Gallery Images' => 'Imágenes de Galería',
'Gallery is visible to non-admin users?' => 'Galería visible para usuarios no-admin?',
'Gallery listing configuration' => 'Configuración del listado de galerías',
'Gallery Rankings' => 'Rankings de galerías',
'GalMenu' => 'GalMenu',
'gal_ranking_last_images' => 'gal_ranking_last_images',
'gal_ranking_top_galleries' => 'gal_ranking_top_galleries',
'gal_ranking_top_images' => 'gal_ranking_top_images',
'games' => 'juegos',
'General' => 'General',
'General Layout options' => 'Opciones generales de layout',
'General Preferences' => 'Preferencias Generales',
'General preferences and settings' => 'Configuraciones y preferencias generales',
'General Settings' => 'Configuraciones Generales',
'Generate a password' => 'Generar una clave',
'Generate dump' => 'Generar volcado',
'Generate HTML' => 'Generar HTML',
'Generate HTML preview' => 'Generar previsualización HTML',
'Generate positions by hits' => 'Ordenar automáticamente por hits',
'German' => 'Alemán',
'Get property' => 'Obtener propiedad',
'go' => 'ir',
'Go
back' => 'Ir
atrás',
'Google Search' => 'Buscar en Google',
'grab instance' => 'obtener instancia',
'gral' => 'gral',
'graph' => 'graf',
'Greek' => 'Griego',
'group' => 'Grupo',
'Group already exists' => 'El grupo ya existe',
'Group Calendars' => 'Calendarios Grupales',
'Group doesnt exist' => 'El grupo no existe',
'Group Information' => 'Información del grupo',
'groups' => 'grupos',
'group selector' => 'selector de grupo',
'h' => 'h',
'h1' => 'h1',
'h2' => 'h2',
'h3' => 'h3',
'half a second' => 'Medio segundo',
'happy' => 'contento',
'HasImg' => 'TieneImágen',
'heading' => 'Encabezado',
'Heading:' => 'Encabezado:',
'heading1' => 'titular1',
'heading2' => 'titular2',
'heading3' => 'titular3',
'Heading only' => 'Sólo encabezado',
'heads and cells separated by ~|~' => 'cabezales y celdas separados por ~|~',
'Hebrew' => 'Hebreo',
'Height of inner Heading' => 'Altura del encabezado interno',
'Height of mid Heading' => 'Altura del encabezado medio',
'Height of top Heading' => 'Altura del encabezado superior',
'height width desc link and align are optional' => 'alto ancho desc enlace y alineación son opcionales',
'help' => 'ayuda',
'Help System' => 'Sistema de Ayuda',
'Here are the files to download, do not forget to rename them:' => 'Aca están los archivos a bajar, no olvide renombrarlos:',
'Hi' => 'Hola',
'Hi,' => 'Hola,',
'Hide' => 'Ocultar',
'Hide all' => 'Ocultar todo',
'Hide anonymous-only modules from registered users' => 'Ocultar módulos solo para usuarios anónimos a los usuarios registrados',
'hide categories' => 'ocultar categorías',
'Hide comments' => 'Ocultar comentarios',
'hide from display' => 'ocultar de la vista',
'Hide Panels' => 'Ocultar paneles',
'Hide Post Form' => 'Ocultar formulario',
'hide structures' => 'ocultar estructuras',
'Hide suggested questions' => 'Ocultar preguntas sugeridas',
'High' => 'Alto',
'Highest' => 'Superior',
'Hi {$mail_user} has sent you this link:' => 'Hola {$mail_user} le envió este enlace:',
'hist' => 'hist',
'history' => 'historial',
'History of' => 'Historial de',
'hits' => 'hits',
'hits (asc)' => 'hits (asc)',
'hits (desc)' => 'hits (desc)',
'%H:%M:%S %Z' => '%H:%M:%S %Z',
'%H:%M %Z' => '%H:%M %Z',
'home' => 'inicio',
'Home Blog' => 'Blog principal',
'Home Blog (main blog)' => 'Blog principal',
'Home File Gal' => 'Galería de archivos ppal',
'Home File Gallery' => 'Galería de archivos ppal',
'Home Forum (main forum)' => 'Foro principal',
'Home Gallery (main gallery)' => 'Galería principal',
'Home Image Gal' => 'Galería de imgs ppal',
'Home Image Gallery' => 'Galería de imgs ppal',
'HomePage' => 'PáginaInicio',
'Home Page' => 'Página Inicio',
'horizontal ruler' => 'regla horizontal',
'hot' => 'hot',
'Hotwords' => 'Hotwords',
'Hotwords in new window' => 'Hotwords en nueva ventana',
'Hotwords in New Windows' => 'Hotwords en Nuevas Ventanas',
'hour' => 'hora',
'Hours' => 'Horas',
'hr' => 'hr',
'HTML code' => 'código HTML',
'HTML pages' => 'Páginas HTML',
'HTML preview' => 'HTML preview',
'HTML tags are not allowed inside comments' => 'No se admite HTML en los comentarios',
'HTTP port' => 'puerto HTTP',
'HTTP server name' => 'Servidor HTTP',
'HTTPS port' => 'port HTTPS',
'HTTPS server name' => 'Servidor HTTPs',
'HTTPS URL prefix' => 'Prefijo para URLs HTTPs',
'HTTP URL prefix' => 'Prefijo para URLs HTTP',
'Human readable repository name' => 'Nombre legible de repositorio',
'Human readable text description of repository' => 'Descripcion legible del repositorio',
'Human readable text description of rule' => 'Descripción legible de la regla',
'i' => 'i',
'icon' => 'Icono',
'I could not create the index file' => 'No puedo crear el archivo de índice',
'id' => 'Id',
'idea' => 'idea',
'idle' => 'en espera',
'I do not know where is gdaltindex. Set correctly the Map feature' => 'No se donde se encuentra gdaltindex. Configure correctamente la funcion de Mapas',
'If a theme is assigned to the individual object that theme is used.' => 'Si un tema esta asignado al objeto individual ese tema es usado.',
'If none of the above was selected the user theme is used' => 'Si nada de lo anterior fue seleccionado se usara el tema del usuario',
'If not then a theme for the section is used' => 'Si no entonces el tema para la seccion es usado',
'If not then if a theme is assigned to the object\'s category that theme is used' => 'Si no entonces si un tema es asignado a la categoria del objeto ese tema es usado',
'I forgot my pass' => 'Olvide mi clave',
'>I forgot my password' => '>Olvide my clave',
'I forgot my password' => 'Olvide mi clave',
'If:SetNextact' => 'If:SetNextact',
'If you can\'t see the game then you need a flash plugin for your browser' => 'Si no puede ver el juego necesita un plugin de Flash para su navegador',
'If you change the calendar selection, please refresh to get the appropriated list in Category, Location and people (if applicable to the calendar you choose).' => 'Si cambia la selección de calendario, por favor recargue la página para obtener la lista apropiada en Categoria, Ubicación y gente (si es aplicable para el calendario que elija).',
'If you don\'t want to receive these notifications follow this link:' => 'Si no desea recibir estas notificaciones siga este enlace:',
'If your site is private or inside your intranet, you should not register!' => 'Si su sitio es privado o dentro de una intranet, no deberia registrarse!',
'If you want to be a registered user in this site you will have to use' => 'Si quiere ser un usuario registrado en este sitio deberá usar',
'If you want to be a registered user in this site you will have to use the following link to login for the first time:' => 'Si desea ser un usuario registrado en este sitio debe seguir el siguiente enlace para loguearse por primera vez:',
'image' => 'imágen',
'Image:' => 'Imágen:',
'Image Description' => 'Descripción',
'image gal' => 'gal imágenes',
'Image galleries' => 'Galerías de imágenes',
'Image galleries comments settings' => 'Configuracion para los comentarios en galerías de Imágenes',
'Image galleries Stats' => 'Estadísticas de galerías de imágenes',
'Image Gallery' => 'Galería de imágenes',
'Image Gallery tpl' => 'Galería de Imágenes tpl',
'Image Gals' => 'Gals de Imágenes',
'Image ID' => 'ID de Imágen',
'Image ID thumb' => 'Miniatura ID de Imágen',
'Image name' => 'Nombre de la imágen',
'(Image options : xSize,ySize indicated in pixels)' => '(Opciones de imágen : Tamx,Tamy indicados en pixels)',
'images' => 'Imágenes',
'imagescale' => 'imagescale',
'Image size' => 'Tamaño de la imágen',
'Images per row' => 'Imágenes por fila',
'Image x size' => 'Tamaño x de la imágen',
'Image y size' => 'Tamaño y de la imágen',
'Img' => 'Img',
'img gls' => 'img gls',
'img nc' => 'img nc',
'Imgs' => 'Imgs',
'Import' => 'Importar',
'Important' => 'Importante',
'Import CSV file' => 'Importar archivo CSV',
'Import / Export' => 'Im- Exportar lenguajes',
'Import HTML' => 'Importar HTML',
'ImportingPagesPhpWikiPageAdmin' => 'ImportingPagesPhpWikiPageAdmin',
'Import page' => 'Importar página',
'Import pages from a PHPWiki Dump' => 'Importar desde un volcado de PHPWiki',
'Import PHPWiki Dump' => 'Importar Volcado PHPWiki',
'Impressions' => 'Impresiones',
'in' => 'en',
'in:' => 'en:',
'Inactive' => 'Inactivo',
'In blog listing show user as' => 'En listado de blogs mostrar usuario como',
'Include' => 'Incluir',
'Include an article' => 'Incluye un artículo',
'Include a page' => 'Incluir una página',
'Includes' => 'Incluye',
'in current category' => 'en la categoria actual',
'index file (.shp):' => 'archivo índice (.shp):',
'Index page' => 'Página indice',
'indicates if the process is active. Invalid processes cant be active' => 'indica si el proceso es activo. Procesos inválidos no pueden estar activos',
'Individual cache' => 'Caché Individual',
'in entire directory' => 'en todo el directorio',
'Information:' => 'Información:',
'Information about your site' => 'Información acerca de su sitio',
'info/vote' => 'info/vote',
'inline frame' => 'marco embebido',
'In order to confirm your subscription you must access the following URL:' => 'Para confirmar su subscripción debe acceder a la siguiente URL:',
'In parent page' => 'En página superior',
'Ins' => 'Ins',
'Insert' => 'Insertar',
'Insert articles into a wikipage' => 'Inserta artículos en una página wiki',
'Insert copyright notices' => 'Inserta aviso de copyright',
'Insert list of items for the current/given category into wiki page' => 'Insertar lista de items para la actual/ingresadas categorias en página wiki',
'Insert new item' => 'Insertar item',
'Inserts an editable variable' => 'Inserta una variable editable',
'Insert the full category path for each category that this wiki page belongs to' => 'Inserte el camino completo de categoría para cada categoría a la cual pertenece esta página wiki',
'Insert theme styled box on wiki page' => 'Inserta un cuadro con el estilo del tema en una página wiki',
'Insert (use \'text\' for figuring the selection)' => 'Insertar (use \'texto\' para simbolizar la selección)',
'instance' => 'instancia',
'Instances' => 'Instancias',
'Inst Status' => 'Inst Estado',
'int' => 'Int',
'Integrator' => 'Integrator',
'inter' => 'inter',
'Interactive' => 'interactivo',
'Invalid' => 'Inválido',
'Invalid directory name' => 'Nombre de directorio inválido',
'Invalid email address. You must enter a valid email address' => 'Direccion de email inválida. Debe entrar una dirección válida de email',
'Invalid file name' => 'Nombre de archivo inválido',
'Invalid filename (using filters for filenames)' => 'Nombre de archivo inválido (usando filtros para nombres de archivo)',
'Invalid files to index' => 'Archivos inválidos a indizar',
'Invalid imagename (using filters for filenames)' => 'Nombre de imágen inválido (usando filtros para nombres de archivos)',
'Invalid old password' => 'La clave ingresada es inválida',
'Invalid or unknown username' => 'Nombre de usuario inválido o desconocido',
'invalid process' => 'proceso inválido',
'Invalid request to edit an image' => 'No puede editar esta imágen',
'invalid sites' => 'sitios invalidos',
'Invalid structure_id or structure_id' => 'structure_id o structure_id inválidas',
'Invalid topic id specified' => 'Id de tópico especificado inválido',
'Invalid user' => 'Usuario inválido',
'Invalid username' => 'Nombre de usuario inválido',
'Invalid username or password' => 'Usuario o clave invalidos',
'Ip' => 'Ip',
'IP regex matching' => 'Regex matching de IP',
'IRC log' => 'IRC log',
'is active?' => 'es activo?',
'Is case sensitive (for simple replacer)' => 'Es sensitivo a mayúsc/minúsc (para reemplazo simple)',
'Is column visible when listing tracker items?' => 'Columna visible cuando se listan items?',
'Is email public? (uses scrambling to prevent spam)' => 'Es el email público? (usa cifrado para prevenir spam)',
' is interactive but has no role assigned' => ' es interactiva pero no tiene rol asignado',
'is_main' => 'es principal',
' is non-interactive and non-autorouted but has no role assigned' => ' es no interactiva y no autoruteada pero no tiene rol asignado',
' is not mapped' => ' no esta mapeada',
'Is repository visible to users' => 'Es el repositorio visible para usuarios',
' is standalone but has transitions' => ' es independiente pero tiene transiciones',
'Is this regular expression or simple search/replacer' => 'Es ésta una expresión regular o una simple busqueda/substitución',
'Is valid' => 'es válida',
'Italian' => 'Italiano',
'italic' => 'italica',
'italics' => 'itálicas',
'Item' => 'Item',
'Item information' => 'Información de item',
'items' => 'Items',
'January' => 'Enero',
'Japanese' => 'Japonés',
'Join' => 'Unir',
'JoinCapitalizedWords' => 'JuntarPalabrasEnMayusculas',
'JoinCapitalizedWords or use' => 'JuntarPalabrasEnMayusculas o usar',
'JsCalendar' => 'JsCalendar',
'July' => 'Julio',
'Jump to forum' => 'Saltar a foro',
'June' => 'Junio',
'__key__ | __default__ | __comments__
' => '__clave__ | __defecto__ | __comentarios__
',
'Klick to enlarge' => 'Click para agrandar',
'Label' => 'etiqueta',
'lang' => 'leng',
'Language' => 'Lenguaje',
'Language: ' => 'Lenguaje: ',
'Language created' => 'Lenguaje creado',
'last' => 'última',
'Last 24 hours' => 'Ultimas 24 horas',
'Last 48 hours' => 'Ultimas 48 horas',
'Last articles' => 'Ultimos artículos',
'Last author' => 'Ultimo autor',
'Last blog posts' => 'Ultimos posteos en blogs',
'last changes' => 'últimos cambios',
'LastChanges' => 'UltimosCambios',
'last chart' => 'último chart',
'Last Created blogs' => 'Ultimos blogs creados',
'Last Created FAQs' => 'Ultimos FAQs creadas',
'Last Created Quizzes' => 'Ultimos Cuestionarios',
'Last Files' => 'Ultimos archivos',
'Last forum topics' => 'Ultimos temas en foros',
'Last galleries' => 'Ultimas galerías',
'Last hour' => 'Ultima hora',
'last image' => 'ultima imágen',
'Last images' => 'Ultimas imágenes',
'Last Items' => 'Ultimos items',
'last_login' => 'último login',
'Last login' => 'Ultimo login',
'Last mod' => 'Ult mod',
'last modif' => 'ult modif',
'last modification' => 'última modificación',
'Last modification date' => 'Fecha de ultima modificación',
'Last modification date (desc)' => 'Fecha de ultima modificación (desc)',
'last modification time' => 'Ultima fecha de modificación',
'last_modified' => 'ultima modification',
'Last Modified' => 'Modificado',
'Last Modified blogs' => 'Blogs recientemente modificados',
'Last Modified Items' => 'Items recientemente modificados',
'Last `$module_rows` articles' => 'Ultimos `$module_rows` artículos',
'Last `$module_rows` blog posts' => 'Ultimos `$module_rows` blog posts',
'Last `$module_rows` changes' => 'Ultimos `$module_rows` cambios',
'Last `$module_rows` Files' => 'Ultimos `$module_rows` Archivos',
'Last `$module_rows` forum topics' => 'Ultimos `$module_rows` temas de foros',
'Last `$module_rows` galleries' => 'Ultimas `$module_rows` galerías',
'Last `$module_rows` Items' => 'Ultimos `$module_rows` Items',
'Last `$module_rows` Modified blogs' => 'Ultimos `$module_rows` blogs modificados',
'Last `$module_rows` modified file galleries' => 'Ultimas `$module_rows` galerías de archivos modificadas',
'Last `$module_rows` Modified Items' => 'Ultimos `$module_rows` Items Modificados',
'Last `$module_rows` Sites' => 'Ultimos `$module_rows` Sitios',
'Last `$module_rows` submissions' => 'Ultimas `$module_rows` colaboraciones',
'Last `$module_rows` wiki comments' => 'Ultimos `$module_rows` comentarios wiki',
'Last Name' => 'Apellido',
'Last page' => 'Ultima página',
'Last pages' => 'Ultimas páginas',
'last post' => 'ultimo mensaje',
'Last post (desc)' => 'Ultimo post (desc)',
'Last posts' => 'Ultimos posts',
'last sent' => 'última edición',
'Last Sites' => 'Ultimos Sitios',
'Last submissions' => 'Ultimas colaboraciones',
'Last taken' => 'Ultima respuesta',
'Last update' => 'Ultima actualización',
'Last updated' => 'Modificado',
'last updated (asc)' => 'ultima actualización (asc)',
'last updated (desc)' => 'ultima actualización (desc)',
'Last ver' => 'Ult ver',
'Last version' => 'Ultima versión',
'Last wiki comments' => 'Ultimos comentarios wiki',
'latin' => 'latin',
'Layer management' => 'Manejo de capas',
'Layer Manager' => 'Manejador de Capas',
'layout options' => 'opciones de layout',
'Layout per section' => 'Layout por sección',
'LDAP Admin Pwd' => 'LDAP Admin Pwd',
'LDAP Admin User' => 'LDAP Admin User',
'LDAP Base DN' => 'LDAP Base DN',
'LDAP Group Atribute' => 'LDAP Group Atribute',
'LDAP Group DN' => 'LDAP Group DN',
'LDAP Group OC' => 'LDAP Group OC',
'LDAP Host' => 'Servidor LDAP',
'LDAP Member Attribute' => 'LDAP Member Attribute',
'LDAP Member Is DN' => 'LDAP Member Is DN',
'LDAP Port' => 'Puerto LDAP',
'LDAP Scope' => 'Scope LDAP',
'LDAP User Attribute' => 'LDAP User Attribute',
'LDAP User DN' => 'LDAP User DN',
'LDAP User OC' => 'LDAP User OC',
'left' => 'izquierda',
'Left column' => 'Columna izquierda',
'Left Modules' => 'Módulos Izquierda',
'left/right' => 'izquierda/derecha',
'Left to Right, the direction of graph
' => 'Izquierda a Derecha, la dirección del gráfico
',
'level' => 'nivel',
'Library to use for processing images' => 'Libreria a usar para procesar imágenes',
'License' => 'Licencia',
'License Page' => 'Página de Licencia',
'like' => 'como',
'Like pages' => 'Páginas similares',
'Link' => 'Enlace',
'link_description' => 'descripción del enlace',
'Link plural WikiWords to their singular forms' => 'Linkea WikiWords en plural con su forma singular',
'Links' => 'Enlaces',
'Links/Commands' => 'Enlaces/Comandos',
'Links per page' => 'Enlaces por página',
'Links to a translated content' => 'Enlaza a contenido traducido',
'Links to validate' => 'Enlaces a validar',
'Link to user information' => 'Enlace a información de usuario',
'Link type' => 'Tipo de enlace',
'List' => 'Listar',
'List all pages which link to specific pages' => 'Muestra todas las páginas que enlazan a páginas específicas',
'list articles' => 'Listar Artículos',
'list articles tpl' => 'listar artículos tpl',
'List banners' => 'Listar banners',
'List blogs' => 'Listar blogs',
'List Calendars' => 'Listar Calendarios',
'list charts' => 'listar charts',
'List FAQs' => 'Listar FAQs',
'list faqs tpl' => 'listar faqs tpl',
'List forums' => 'Listar foros',
'List galleries' => 'Listar galerías',
'list gallery' => 'listar galería',
'List image galleries' => 'Listar galerías de imágenes',
'Listing configuration' => 'Configuración de listado',
'Listing Gallery' => 'Contenido de la galería',
'List menus' => 'Listar menús',
'List Movies' => 'Lista Películas',
'list newsletters' => 'listar boletines',
'List notes' => 'Listar notas',
'List of activities' => 'Listado de activitidades',
'List of attached files' => 'Lista de archivos adjuntos',
'List of available backups' => 'Lista de respaldos disponibles',
'List of Calendars' => 'Lista de Calendarios',
'List of email addresses separated by commas' => 'Lista de direcciones de mail separadas por comas',
'List of existing groups' => 'Lista de grupos existentes',
'List of featured links' => 'Lista de links destacados',
'List of instances' => 'Lista de instanciass',
'List of mappings' => 'Listado de mapeos',
'List of messages' => 'Lista de mensajes',
'List of processes' => 'Lista de procesos',
'List of topics' => 'Lista de topicos',
'List of transitions' => 'Lista de transiciones',
'List of types' => 'Lista de tipos',
'List of workitems' => 'Listado de workitems',
'list pages' => 'listar páginas',
'list_pages' => 'listar páginas',
'List pages where I am a creator' => 'Listar páginas donde soy el creador',
'List pages where I am a modificator' => 'Listar páginas donde soy el modificador',
'List polls' => 'Listar votaciones',
'list posts tpl' => 'listar posts tpl',
'List Quizzes' => 'Listar Cuestionarios',
'list repositories' => 'listar repositorios',
'Lists' => 'Listas',
'list submissions' => 'listar submisiones',
'List Surveys' => 'listar encuestas',
'List Trackers' => 'Listar Trackers',
'Live support' => 'Soporte Live',
'Live support:Console' => 'Soporte Live:Consola',
'Live support system' => 'Sistema de soporte Live',
'Live support:User window' => 'Soporte Live:ventana de usuario',
'loc' => 'ubi',
'Local' => 'Local',
'Location' => 'Ubicacion',
'lock' => 'desbloquear',
'locked' => 'bloqueado',
'locked by' => 'bloqueado por',
'lock selected topics' => 'bloquear tópicos seleccionados',
'logged in as' => 'logueado como',
'login' => 'Login',
'log in' => 'log in',
'Logout' => 'Logout',
'lol' => 'lol',
'Long date format' => 'Formato de fechas largas',
'Longname' => 'Nombre largo',
'Long time format' => 'Formato largo para largas',
'Low' => 'Bajo',
'Lowest' => 'Minimo',
'LRU list length' => 'Largo de la lista LRU',
'LRU list purging rate' => 'Ritmo de limpieza de lista LRU',
'mad' => 'loco',
'Made with' => 'Hecho con',
'mailbox' => 'mailbox',
'Mail-in' => 'Mail-in',
'Mailin accounts' => 'Cuentas de Mailin',
'Mail notifications' => 'Notificaciones por mail',
'make_headings' => 'hace títulos',
'make this a thread of' => 'hacer esto un thread de',
'Manual' => 'Manual',
'map' => 'mapear',
'Mapfile' => 'Archivo de mapa',
'Mapfile listing' => 'Listado de archivos de mapa',
'mapfile name incorrect' => 'Nombre de mapa incorrecto',
'Mapfiles' => 'Archivos de mapas',
'Map groups to roles' => 'Mapear grupos a roles',
'Map process roles' => 'Mapear roles de proceso',
'Maps' => 'Mapas',
'Map users to roles' => 'Mapear usuarios a roles',
'March' => 'Marzo',
'mark' => 'marcar',
'mark as done' => 'marcar como hecha',
'Mark as Flagged' => 'Poner como marcado',
'Mark as read' => 'Marcar como leido',
'Mark as unflagged' => 'Desmarcar',
'Mark as unread' => 'Marcar como no leido',
'Mass update' => 'Actualización masiva',
'Max. age in hours of syllable search cache' => 'Edad máxima en horas de cache de búsqueda de sílabas',
'Max attachment size (bytes)' => 'Tamaño maximo del adjunto (bytes)',
'Max average server load threshold in the last minute' => 'Carga promedio límite del servidor en el último minuto',
'Max description display size' => 'Tamaño máximo de descripción',
'Max Impressions' => 'Máximo de Impresiones',
'Maximum number of articles in home' => 'Cantidad máxima de artículos en inicio',
'Maximum number of children to show' => 'Numero máximo de hijos a mostrar',
'Maximum number of records in listings' => 'Cantidad máxima de registros en listados',
'Maximum number of versions for history' => 'Cantidad máxima de versiones en el historial',
'Maximum size for each attachment' => 'Tamanio maximo de archivos adjuntos',
'Maximum time' => 'Tiempo máximo',
'Max. number of words containing a syllable' => 'Número máximo de palabras conteniendo una sílaba',
'Max Rows per page' => 'Cantidad máxima de filas por página',
'maxScore' => 'Score máximo',
'May' => 'Mayo',
'May need to refresh twice to see changes' => 'Puede tener que refrescar 2 veces para ver cambios',
'Mb' => 'Mb',
'Memory usage' => 'Uso de memoria',
'Menu' => 'Menú',
'Menu options' => 'Opciones de menu',
'Menus' => 'Menús',
'merge' => 'combinar',
'merged note:' => 'nota combinada:',
'Merge into topic' => 'Combinar en tópico',
'merge selected notes into' => 'unir notas seleccionadas en',
'merge selected topics' => 'combinar tópicos seleccionados',
'Message' => 'mensaje',
'Message Broadcast' => 'Mensaje Broadcast',
'Message queue for' => 'Cola de mensajes para',
'Messages' => 'Mensajes',
'Message sent to' => 'Mensaje enviado a',
'Messages per page' => 'Mensajes por página',
'messages tpl' => 'mensajes tpl',
'Message to display when server is too busy' => 'Mensaje a desplegar cuando el servidor esta muy ocupado',
'Message to display when site is closed' => 'Mensaje a desplegar cuando el sitio está cerrado',
'Message will be sent to: ' => 'El mensaje será enviado a: ',
'Method' => 'Método',
'Method to open directory links' => 'Metodo para abrir enlaces del directorio',
'min' => 'min',
'Mini calendar' => 'Mini Calendario',
'Mini Calendar: Preferences' => 'Mini Calendario: Preferencias',
'Minimum length of search word' => 'Tamaño mínimo de palabra a buscar',
'Minimum password length' => 'Longitud mínima de claves',
'Minimum time between posts' => 'Tiempo mínimo entre posts',
'Minor' => 'Menor',
'mins' => 'minutos',
'minute' => 'minuto',
'minutes' => 'minutos',
'Misc' => 'Misc',
'Missing db param' => 'Falta parámetro de db',
'Missing information to read news (server,port,username,password,group) required' => 'Informacion faltante para leer news (servidor,puerto,usuario,clave,grupo) requerida',
'Missing title or body when trying to post a comment' => 'Falta el título o el texto',
'Mode' => 'Modo',
'Moderator' => 'Moderador',
'Moderator actions' => 'Acciones de moderador',
'Moderator group' => 'Grupo moderador',
'Moderators and admin can attach' => 'Moderadores y admin pueden adjuntar',
'Moderator user' => 'Usuario noderador',
'Modified' => 'Modificado',
'Modify Structure' => 'Modificar Estructura',
'Module' => 'Módulo',
'Module Name' => 'Nombre de módulo',
'Modules' => 'Módulos',
'mon' => 'lun',
'Monday' => 'Lunes',
'monitor' => 'Monitorear',
'monitor activities' => 'monitorear activitidades',
'Monitor instances' => 'Monitorear instancias',
'Monitor processes' => 'Monitorear procesos',
'monitor this blog' => 'monitorear este blog',
'monitor this forum' => 'monitorear este foro',
'monitor this map' => 'monitorear este mapa',
'monitor this page' => 'monitorear esta página',
'monitor this topic' => 'monitorear este tópico',
'Monitor workitems' => 'Monitorear workitems',
'month' => 'mes',
'Monthly' => 'Mensual',
'More info about' => 'Mas info acerca de',
'Most Active blogs' => 'Blogs mas activos',
'Most commented forums' => 'Foros con mas mensajes',
'Most downloaded files' => 'Archivos más bajados',
'Most `$module_rows` visited blogs' => '`$module_rows` blogs mas visitados',
'Most read topics' => 'Temas mas leídos',
'Most relevant pages' => 'Páginas mas relevantes',
'Most visited blogs' => 'Blogs mas visitados',
'Most visited forums' => 'Foros mas visitados',
'Most visited sub-categories' => 'Sub-categorias mas visitadas',
'mot' => 'mot',
'move' => 'Mover',
'Move image' => 'Mover imágen',
'Move module down' => 'Mover módulo abajo',
'Move module to opposite side' => 'Mover módulo al lado opuesto',
'Move module up' => 'Mover módulo arriba',
'move selected files' => 'mover archivos seleccionados',
'move selected topics' => 'mover tópicos seleccionados',
'Move to' => 'Mover a',
'move to left column' => 'mover a columna izquierda',
'move to right column' => 'mover a columna derecha',
'Move to topic:' => 'Mover a tópico:',
'Msg' => 'Msg',
'Msgs' => 'msjs',
'Multi-page pages' => 'Páginas Multi-página',
'Multiple choices' => 'Múltiples opciones',
'MultiPrint' => 'PrintMultiple',
'Mus enter a name to add a site' => 'Debe entrar un nombre para agregar un sitio',
'Must be logged to use this feature' => 'Debe estar logueado para usar esa función',
'Must enter a name to add a site. ' => 'Debe ingresar un nombre para agregar un sitio. ',
'Must enter a url to add a site. ' => 'Debe ingresar una URL para agregar un sitio. ',
'Must select a category. ' => 'Debe elegir una categoría. ',
'Mutual' => 'Mutual',
'My blogs' => 'Mis blogs',
'My files' => 'Mis archivos',
'MyFiles' => 'MisArchivos',
'My galleries' => 'Mis galerías',
'My items' => 'Mis items',
'MyMenu' => 'MiMenu',
'My messages' => 'Mis mensajes',
'My pages' => 'Mis páginas',
'My tasks' => 'Mis tareas',
'My watches' => 'Mis watches',
'Name' => 'Nombre',
'Name:' => 'Nombre:',
'name (asc)' => 'Nombre (asc)',
'name (desc)' => 'Nombre (desc)',
'Name-filename' => 'Nombre-Nombre de archivo',
'Navigation Panel' => 'Panel de Navegación',
'neutral' => 'neutral',
'Never' => 'Nunca',
'Never delete versions younger than days' => 'Nunca eliminar versiones con edad menor a dias',
'new' => 'nuevo',
'New article submitted at ' => 'Nuevo artículo enviado a ',
'New Calendar Item' => 'Nuevo ítem de calendario',
'new comments' => 'comentarios',
'Newest first' => 'Más nuevos primero',
'new files' => 'nuevos archivos',
'new images' => 'imágenes nuevas',
'new image uploaded by' => 'nueva imágen subida por',
'new item in tracker' => 'nuevo item en tracker',
'new major' => 'nuevo mayor',
'new message' => 'nuevo mensaje',
'New message arrived from ' => 'Llegó nuevo mensaje desde ',
'new messages' => 'nuevos mensajes',
'new minor' => 'nuevo menor',
'New name' => 'Nuevo nombre',
'New password' => 'Nueva clave ',
'new question' => 'nueva pregunta',
'new reply' => 'nueva respuesta',
'new repository' => 'nuevo repositorio',
'new rule' => 'nueva regla',
'Newsgroup' => 'Newsgroup',
'new sites' => 'nuevos sitios',
'Newsletter' => 'Boletin',
'Newsletter:' => 'Boletin:',
'Newsletters' => 'Boletines',
'Newsletter subscription information at ' => 'Información de subscripcion a boletin en ',
'Newsreader' => 'Noticias',
'News server' => 'Servidor de News',
'new subscriptions' => 'nueva subscripción',
' new topic:' => ' nuevo tópico:',
'new topic' => 'nuevo tópico',
'New user registration' => 'Registración de nuevo usuario',
'new users' => 'nuevos usuarios',
'new window' => 'nueva ventana',
'Next' => 'Próximo',
'next chart' => 'next chart',
'Next chart will be generated on' => 'El siguiente chart será generado en',
'next image' => 'proxima imágen',
'Next page' => 'Siguiente página',
'next topic' => 'tópico sig',
'Next ver' => 'Próxima versión',
'Next version' => 'Próxima versión',
'n for rows' => 'n para filas',
'Nickname' => 'Sobrenombre',
'No' => 'No',
'No activities defined yet' => 'No hay actividades definidas aun',
'No activity indicated' => 'No se indicó actividad',
'No arguments indicated' => 'No se indicaron argumentos',
'No article indicated' => 'No se indica un artículo',
'No attachments' => 'Sin adjuntos',
'No attachments for this item' => 'No hay archivos adjuntos',
'No attachments for this page' => 'No hay adjuntos',
'No backlinks to this page' => 'No hay backlinks hacia esta página',
'No banner indicated' => 'No se indica un banner',
'No blog_id specified' => 'No se especificó blog_id',
'No blog indicated' => 'No se indica un blog',
'no cache' => 'no cachear',
'No cache information available' => 'No hay informacion en el cache disponible',
'No categories defined' => 'No se definieron categorías',
'No channel indicated' => 'No se indica canal',
'No chart indicated' => 'No se indicó chart',
'No charts defined yet' => 'No se definieron charts aun',
'no comments' => 'sin comentarios',
'No content id indicated' => 'No se indica bloque de contenido a editar',
'no description' => 'sin descripción',
'No description available' => 'Sin descripción disponible',
'no display' => 'no mostrar',
'No faq indicated' => 'No se indica faq',
'no feeling' => 'sin emoción',
'No file' => 'No archivo',
'No forum_id specified' => 'No se especificó forum_id',
'No forum indicated' => 'No se indica foro',
'No gallery_id specified' => 'No se especificó gallery_id',
'No gallery indicated' => 'No se indica la galería',
'No image indicated' => 'No se indica imágen',
'No image uploaded' => 'No se subio una imágen',
'No image yet, sorry.' => 'Sin imágen aún, lo siento.',
'No individual permissions global permissions apply' => 'No hay permisos individuales, aplican los permisos globales',
'No individual permissions global permissions to all pages apply' => 'No hay permisos individuales, los permisos globales aplican',
'No instance indicated' => 'No se indicaron instancias',
'No instances created yet' => 'No se crearon instancias aun',
'No instances defined yet' => 'No hay instancias definidas aun',
'No item indicated' => 'No se indicó item',
'No items defined yet' => 'No hay items definidos aun',
'No mappings defined yet' => 'No se definieron mapeos aun',
'No menu indicated' => 'No se indica menú',
'No messages queued yet' => 'Sin mensajes en cola aun',
'No messages to display' => 'Sin mensajes para mostrar',
'No more messages' => 'No hay mas mensajes',
'No name indicated for wiki page' => 'No se indicó nombre para la página wiki',
'Non cacheable images' => 'Imágenes no cacheables',
'none' => 'ning',
'None, this is a thread message' => 'Ninguno, este es un mensaje thread',
'No newsletter indicated' => 'No se indica boletin',
'No nickname indicated' => 'No se indica un nickname',
'No note indicated' => 'No se indico nota',
'No notes yet' => 'Sin notas aún',
'Non parsed sections' => 'Secciones no parseadas',
'No page indicated' => 'No se indica una página',
'No pages found' => 'No se encontraron páginas',
'No pages found for title search' => 'No se encontraron páginas en la búsqueda por título',
'No pages indicated' => 'No se indican páginas',
'No pages links to' => 'Ninguna página tiene enlace a',
'No pages matched the search criteria' => 'No se encontraron páginas para el criterio de búsqueda',
'No permission to upload zipped file packages' => 'No tiene permiso para subir paquetes de archivos zipeados',
'No permission to upload zipped image packages' => 'Sin permiso para subir paquete de imagenes zipeado',
'No poll indicated' => 'No se indica votacion',
'No post indicated' => 'No indica post',
'No processes defined yet' => 'No hay procesos definidos aun',
'No process indicated' => 'No se indicó proceso',
'No question indicated' => 'No se indica pregunta',
'No quiz indicated' => 'No se indica cuestionario',
'No records found' => 'No se encontraron registros',
'No records were found. Check the file please!' => 'No se encontraron registros. Chequee el archivo por favor!',
'no reminders' => 'sin recordatorios',
'No repository' => 'Sin repositorio',
'No repository given' => 'No se dió repositorio',
'No result indicated' => 'No se indica resultado',
'normal' => 'normal',
'normal headers' => 'cabezales normales',
'(no roles)' => '(sin roles)',
'No roles are defined yet so no roles can be mapped' => 'No se definieron roles aun por lo que no hay roles a mapear',
'No roles associated to this activity' => 'No hay roles asociados a esta actividad',
'No roles defined yet' => 'No hay roles definidos aun',
'Norwegian' => 'Noruego',
'No scales available' => 'No hay escalas disponibles',
'No server indicated' => 'No se indicó servidor',
'No site indicated' => 'No se indicó sitio',
'No structure indicated' => 'No se indico estructura',
'No subject' => 'Sin tema',
'no such file' => 'no existe archivo',
'No suggested questions' => 'No hay preguntas sugeridas',
'no summary' => 'sin sumario',
'No survey indicated' => 'No se indica encuesta',
'No tasks entered' => 'No se entraron tareas',
'Not displayed until a user chooses it' => 'No mostrado hasta que el usuario lo elije',
'Not enough information to display this page' => 'No hay información suficiente para mostrar esta página',
'Notepad' => 'Block de Notas',
'Notes' => 'Notas',
'Note that this does not affect WikiWord recognition, only page names surrounded by (( and )).' => 'Note que esto no afecta el reconocimiento de WikiWords, sólo nombres de páginas delimitadas por (( y )).',
'note: those parameters are exclusive' => 'nota: esos parámetros son exclusivos',
'No thread indicated' => 'No se indica mensaje',
'Notifications' => 'Notificaciones',
'No topic id specified' => 'No se especificó id de tópico',
'No topics yet' => 'Sin tópico aun',
'No tracker indicated' => 'No se indica tracker',
'No transitions defined yet' => 'No hay transiciones definidas aun',
' not sent' => ' no enviado',
'not specified' => 'no especificada',
'No url indicated' => 'No se indica url',
'No user indicated' => 'No se indica usuario',
'November' => 'Noviembre',
'No version indicated' => 'No se indica una versión',
'Now enter the file URL' => 'Ingrese el URL del archivo',
'Now enter the image URL' => 'Ingrese la URL de la imágen',
'Number of columns per page when listing categories' => 'Numero de columnas por página cuando se listan categorias',
'Number of displayed rows' => 'Numero de filas mostradas',
'Number of posts (desc)' => 'Número de posts (desc)',
'Number of posts to show' => 'Posts a mostrar',
'Number of visited pages to remember' => 'Cantidad de páginas visitadas a recordar',
'Object' => 'Objeto',
'Objects' => 'Objetos',
'objects in category' => 'Objectos en la categoria',
'Objects that can be included' => 'Objetos que pueden incluirse',
'objs' => 'objs',
'October' => 'Octubre',
'of' => 'de',
'Offline operators' => 'Operadores fuera de línea',
'ok' => 'ok',
'Old articles' => 'Artíulos viejos',
'Oldest first' => 'Más viejos primero',
'Old password' => 'Clave actual',
'Old vers' => 'Versiones viejas',
'Old versions' => 'Versiones anteriores',
' on ' => 'en',
'on:' => 'en:',
'One choice' => 'Ona opción',
'one data per line' => 'un dato por línea',
'one definition per line' => 'una definición por línea',
'One page found for title search' => 'Se encontró una página en la búsqueda por título',
'One page links to' => 'Una página tiene enlace a',
'online' => 'en línea',
'Online operators' => 'Operadores en linea',
'online user' => 'usuario en línea',
'online users' => 'usuarios en línea',
'Only an admin can remove a thread.' => 'Solo un admin puede borrar una discusión.',
'Only for users' => 'Solo usuarios',
'Only users with attach permission' => 'Solo usuarios con permiso de adjuntar',
'op' => 'op',
'open' => 'abierta',
'Open a support ticket instead' => 'Abrir un ticket de soporte en su lugar',
'Open client window' => 'Abrir ventana cliente',
'Open external links in new window' => 'Abrir enlaces externos en una ventana nueva',
'open new window' => 'abrir nueva ventana',
'Open operator console' => 'Abrir consola de operador',
'open tasks' => 'abrir tareas',
'Operation' => 'Operación',
'Operator' => 'Operador',
'Operator:' => 'Operador:',
'Option' => 'opción',
'Optional' => 'Opcional',
'options' => 'opciones',
'Options (if apply)' => 'Opciones (si aplica)',
'Options (separated by commas used in dropdowns only)' => 'Opciones (separadas por comas en dropdowns solamente)',
'or' => 'o',
'or create a new category' => 'o cree una nueva categoria',
'or create a new location' => 'or cree una nueva ubicacion',
'order' => 'orden',
'Ordering for forums in the forum listing' => 'Ordenamiento de los foros en la lista de foros',
'Or enter path or URL' => 'O entre camino o URL',
'Organized by' => 'Organizado por',
'Origin' => 'Origen',
'Original' => 'Original',
'original size' => 'tamaño original',
'Originating e-mail address for mails from this forum' => 'Direccion origen de correo para correos de este foro',
'orphan pages' => 'páginas huerfanas',
' or upload a local file from your disk' => 'o suba un archivo desde su disco local',
' or upload a local image from your disk' => ' o suba una imágen desde su disco local',
'Or upload a process using this form' => 'O suba un proceso usando este formulario',
'or use square brackets for an' => 'o usar corchetes para',
'OS' => 'OS',
'Other Polls' => 'Otras encuestas',
'Other users can upload files to this gallery' => 'Otros usuarios pueden subir archivos a esta galería',
'Other users can upload images to this gallery' => 'Permitir a otros usuarios agregar imágenes en esta galería',
'Overview' => 'Resúmen',
'Overwrite' => 'Sobreescribir',
'Overwrite existing pages if the name is the same' => 'Sobreescribir páginas si el nombre coincide',
'overwriting old page' => 'sobreescribiendo vieja página',
'Owner' => 'Dueño',
'Own Image' => 'Imágen propia',
'Own image size x' => 'Imágen propia tamaño x',
'Own image size y' => 'Imágen propia tamaño y',
'Page' => 'Página',
'Page alias' => 'Page alias',
'Page already exists' => 'Página ya existia',
'Page cannot be found' => 'La página no pudo ser encontrada',
'page created' => 'página creada',
'Page creators are admin of their pages' => 'Creadores de páginas son administradores para sus páginas',
'page|desc' => 'página|desc',
'Page generated in' => 'Página generada en',
'Page generation debugging log' => 'Registro de depuración de generación de página',
'page imported' => 'página importada',
'Page must be defined inside a structure to use this feature' => 'La página debe estar definida dentro de una estructura para usar esa funcion',
'Page name' => 'Nombre de página',
'page not added (Exists)' => 'página no agregada (Existe)',
'pages' => 'páginas',
'Pages:' => 'Páginas:',
' pages found for title search' => ' páginas encontradas en la búsqueda por título',
'Pages like' => 'Páginas similares',
'pages link to' => 'páginas tienen enlace a',
'pageviews' => 'pageviews',
'Parameters' => 'Parámetros',
'^Parameters: key=>value,...
' => '^Parámetros: clave=>valor,...
',
'Parent' => 'padre',
'Parent category' => 'Categoria superior',
'Parent page' => 'Página superior',
'Participants' => 'Participantes',
'pass' => 'Password',
'Passcode to register (not your user password)' => 'Código para registrarse (no su clave de usuario)',
'password' => 'clave',
'password for this account is' => 'clave para esta cuenta es',
'Password invalid after days' => 'Invalidar claves luego de dias',
'Password is required' => 'Clave es requerida',
'Password must contain both letters and numbers' => 'La clave debe tener letras y números',
'Password protected' => 'Protegido por clave',
'Password should be at least' => 'La clave debe tener al menos',
'path' => 'camino',
'Path to repository (local filesystem: relative/absolute web root, remote: prefixed with \'http://\')' => 'Camino al repositorio (filesystem local: relativo/absoluto respecto a raiz de web, remoto: prefijado con \'http://\')',
'Path to the tag icon' => 'Camino al ícono del tag',
'Path to where the dumped files are' => 'Camino hacia el volcado',
'pdf' => 'pdf',
'PDF Export' => 'Exportacion PDF',
'PDF generation' => 'Generación de PDF',
'PDF Settings' => 'Configuracion de PDF',
'PEAR::Auth' => 'PEAR::Auth',
'Percentage completed' => 'Porcentaje de completada',
'perm' => 'perm',
'Permalink' => 'Permalink',
'Permanency' => 'Permanencia',
'permanently' => 'permanentemente',
'Permision denied' => 'Permiso negado',
'permission' => 'permiso',
'Permission denied' => 'Permiso denegado',
'Permission denied to use this feature' => 'No tiene permiso para acceder a esta característica',
'Permission denied you can edit images but not in this gallery' => 'No puede editar imágenes de esta galería',
'Permission denied you cannot access this gallery' => 'No tiene permisos para acceder a esta galería o la galería no existe',
'Permission denied you cannot approve submissions' => 'No tiene permisos para aprobar colaboraciones',
'Permission denied you cannot assign permissions for this page' => 'No tiene autorización para asignar permisos a esta página',
'Permission denied you cannot browse this gallery' => 'No tiene permisos para acceder a la galería',
'Permission denied you cannot browse this page history' => 'No tiene permiso para acceder al historial de la página',
'Permission denied you cannot create galleries and so you cant edit them' => 'Permiso rechazado, no puede crear galerías ni editar galerías',
'Permission denied you cannot create or edit blogs' => 'No tiene permiso para crear o editar blogs',
'Permission denied you cannot edit images' => 'No puede editar imágenes',
'Permission denied you cannot edit submissions' => 'No tiene permiso para editar colaboraciones',
'Permission denied you cannot edit this article' => 'No tiene permiso para editar el artículo',
'Permission denied you cannot edit this blog' => 'No tiene permiso para editar este blog',
'Permission denied you cannot edit this file' => 'Permiso denegado no puede editar este archivo',
'Permission denied you cannot edit this gallery' => 'No tiene permiso para editar esta galería',
'Permission denied you cannot edit this page' => 'No se puede editar esta página',
'Permission denied you cannot edit this post' => 'No puede editar este post',
'Permission denied you cannot move images from this gallery' => 'No tiene permisos para mover imágenes de esta galería',
'Permission denied you cannot post' => 'No tiene permiso para postear',
'Permission denied you cannot rebuild thumbnails in this gallery' => 'Permiso denegado no puede reconstruir thumbnails en esta galería',
'Permission denied you cannot remove articles' => 'No tiene permiso para eliminar el artículo',
'Permission denied you cannot remove banners' => 'Permiso denegado no puede eliminar banners',
'Permission denied you cannot remove files from this gallery' => 'Permiso rechazado no puede eliminar archivos de esta galería',
'Permission denied you cannot remove images from this gallery' => 'No tiene permiso para remover imágenes de la galería',
'Permission denied you cannot remove pages' => 'Permiso denegado no puede borrar páginas',
'Permission denied you cannot remove submissions' => 'No tiene permiso para eliminar colaboraciones',
'Permission denied you cannot remove the post' => 'No tiene permiso para eliminar este post',
'Permission denied you cannot remove this blog' => 'No puede remover este blog',
'Permission denied you cannot remove this gallery' => 'No puede remover esta galería',
'Permission denied you cannot remove versions from this page' => 'No puede eliminar versiones de esta página',
'Permission denied you cannot rollback this page' => 'No tiene permiso para reestablecer una versión anterior de la página',
'Permission denied you cannot rotate images in this gallery' => 'Permiso denegado no puede rotar imágenes en esta galería',
'Permission denied you cannot send submissions' => 'No tiene permiso para enviar colaboraciones',
'Permission denied you cannot upload files' => 'Permiso denegado no puede subir archivos',
'Permission denied you cannot upload images' => 'No tiene permisos para subir imágenes',
'Permission denied you cannot view backlinks for this page' => 'Permiso negado no puede ver backlinks hacia esta página',
'Permission denied you cannot view pages' => 'No tiene permiso para ver páginas',
'Permission denied you cannot view pages like this page' => 'No tiene permiso para ver páginas similares a ésta',
'Permission denied you cannot view the calendar' => 'Permiso denegado no puede ver el calendario',
'Permission denied you cannot view this page' => 'No tiene permiso para acceder a la página',
'Permission denied you can not view this section' => 'Permiso denegado no puede ver esta sección',
'Permission denied you cannot view this section' => 'Permiso denegado para acceder a esta sección',
'Permission denied you can\'t upload files so you can\'t edit them' => 'Permiso denegado no puede subir archivos asi que no puede editarlos',
'Permission denied you cant view this section' => 'Permiso denegado para ver esta sección',
'Permission denied you can upload files but not to this file gallery' => 'No puede subir archivos a esta galería',
'Permission denied you can upload images but not to this gallery' => 'Tiene permisos para subir imágenes pero no a esta galería',
'Permissions' => 'permisos',
'perms' => 'perms',
'Personal Wiki Page' => 'Página Personal Wiki',
'phpinfo' => 'phpinfo',
'PhpLayers Dynamic menus' => 'PhpLayers Menús dinámicos',
'phpLayersMenus' => 'phpLayersMenus',
'PHPOpenTracker' => 'PHPOpenTracker',
'Pick avatar from the library' => 'Elija avatar de la biblioteca',
'Pick user Avatar' => 'Elegir avatar',
'Pick your avatar' => 'Elegir avatar',
'picture not found' => 'dibujo no encontrado',
'Pictures' => 'Imágenes',
'Plain text' => 'Texto plano',
'plaintext ellipse circle egg triangle box diamond trapezium parallelogram house hexagon octagon
' => 'plaintext ellipse circle egg triangle box diamond trapezium parallelogram house hexagon octagon
',
'Played' => 'Jugado',
'Please' => 'Por favor',
'Please choose a module' => 'Por favor elija un módulo',
'Please create a category first' => 'Por favor cree una categoría primero',
'please read' => 'por favor lea',
'Please select a chat channel' => 'Elija un canal de chat',
'Please wait 2 minutes between posts' => 'Por favor espere 2 minutos entre mensajes',
'PluginsHelp' => 'AyudaPlugins',
'points' => 'puntos',
'Polish' => 'Polaco',
'poll' => 'poll',
'Poll comments settings' => 'Configuración de los comentarios para encuestas',
'Poll options' => 'Opciones de votaciones',
'Polls' => 'Votaciones',
'Poll settings' => 'Configuraciones de encuestas',
'Poll Stats' => 'Estadísticas de encuestas',
'pop' => 'pop',
'POP3 server' => 'Servidor POP3',
'POP server' => 'Servidor POP',
'popup' => 'popup',
'popup window' => 'ventana popup',
'port' => 'puerto',
'pos' => 'Pos',
'post' => 'Postear',
'Post date' => 'Fecha Post',
'posted by' => 'posteado por',
'Posted comments' => 'Comentarios enviados',
'posted on' => 'posteado en',
'Posting comments' => 'Postear comentarios',
'Post level comments' => 'Comentarios para posts',
'Post new comment' => 'Postear comentario',
'Post or edit a message' => 'Postear o editar mensaje',
'Post recommendation at' => 'Enviar recomendación en',
'posts' => 'posts',
'Posts per day' => 'Posts por día',
'powered by' => 'basado en',
'ppd' => 'ppd',
'pre' => 'pre',
'Preferences' => 'Preferencias',
'Prefs' => 'Prefs',
'Prepare a newsletter to be sent' => 'Preparar boletin para ser enviado',
'Prev' => 'Anterior',
'Prevent automatic/robot registration' => 'Prevenir registración automática/robots',
'Prevent flooding' => 'Prevenir flooding',
'Prevents parsing data' => 'Previene parsear',
'prevents referencing' => 'impide referenciar',
'Prevent users from voting for the same item more than once' => 'Prevenir usuarios de voar por el mismo ítem mas de una vez',
'Prevent users from voting same item more than one time' => 'Prevenir usuarios de votar el mismo item mas de una vez',
'preview' => 'Vista previa',
'Preview menu' => 'Prever menú',
'Preview options' => 'Opción de Prever',
'Preview poll' => 'Prever votacion',
'Preview Results' => 'Resultados de Previsualización',
'prev image' => 'imágen previa',
'Previous' => 'Previo',
'previous chart' => 'chart anterior',
'Previously remove existing page versions' => 'Borrar versiones de páginas existentes previamente',
'Previous page' => 'Página anterior',
'prev topic' => 'tópico ant',
'Print' => 'Imprimir',
'printable' => 'Imprimir',
'Print multiple pages' => 'Imprimir múltiples páginas',
'Print Wiki Pages' => 'Imprimir páginas del Wiki',
'prio' => 'prio',
'priority' => 'prioridad',
'private' => 'privado',
'private message' => 'mensaje privado',
'proc' => 'proc',
'Proceed at your own peril' => 'Proceda a su propio riesgo',
'process' => 'proceso',
'Process:' => 'Proceso:',
'Process activities' => 'Actividades de proceso',
'Process already exists' => 'El proceso ya existia',
'Process %d has been activated' => 'El proceso %d fué activado',
'Process %d has been deactivated' => 'El proceso %d fué desactivado',
'Process does not have a start activity' => 'El proceso no tiene ninguna actividad inicial',
'Process does not have exactly one end activity' => 'El proceso no tiene exactamente una actividad final',
'processes' => 'procesos',
'Process form' => 'Formulario de proceso',
'Process Name' => 'Nombre de proceso',
'Process roles' => 'Procesar roles',
'Process %s has been created' => 'El proceso %s ha sido creado',
'Process %s has been updated' => 'El proceso %s ha sido actualizado',
'Process %s removed' => 'El proceso %s ha sido eliminado',
'Process %s %s imported' => 'Proceso %s %s importado',
'Process Transitions' => 'Procesar Transiciones',
'Program' => 'Programar',
'Program dynamic content for block' => 'Programar contenido dinámico para el bloque',
'Programmed versions' => 'Versiones programadas',
'Promote' => 'Promover',
'Properties' => 'Propiedades',
'Property' => 'Propiedad',
'Provides a list of plugins on this wiki.' => 'Provee una lista de plugins en este wiki.',
'Proxy Host' => 'Servidor Proxy',
'Proxy port' => 'Puerto Proxy',
'Prune old messages after' => 'Eliminar viejos mensajes luego de',
'Prune unreplied messages after' => 'Eliminar mensajes sin respuestas luego de',
'pts' => 'pts',
'public' => 'público',
'Publish' => 'Publicar',
'PublishDate' => 'Fecha publicación',
'Publish Date' => 'Fecha publicación',
'Published' => 'Publicada',
'Publisher' => 'Publicado por',
'Publishing Date' => 'Fecha de Publicación',
'pvs' => 'pvs',
'Q' => 'Q',
'Query' => 'Consulta',
'question' => 'pregunta',
'questions' => 'Preguntas',
'Questions per page' => 'Preguntas por página',
'Queue all posts' => 'Encolar todos los posts',
'Queue anonymous posts' => 'Encolar posts anonimos',
'queued:' => 'en cola:',
'queued messages:' => 'mensajes en cola:',
'Quick edit a Wiki page' => 'Editar una página del wiki',
'Quicklinks' => 'Enlaces rápidos',
'QuickTags' => 'QuickTags',
'Quiz' => 'Cuestionario',
'Quiz can be repeated' => 'El cuestionario puede repetirse',
'Quiz is time limited' => 'El cuestionario tiene un tiempo limite',
'QuizMenu' => 'QuizMenu',
'Quiz result stats' => 'Estadísticas de resultados de cuestionarios',
'Quiz Stats' => 'Estadísticas de Cuestionarios',
'Quiz time limit excedeed quiz cannot be computed' => 'Se excedió el tiempo límite',
'quizzes' => 'cuestionarios',
'Quizzes taken' => 'Cuestionarios tomados',
'quota' => 'quota',
'Quota (Mb)' => 'Quota (Mb)',
'quote' => 'quote',
'random' => 'azar',
'Random Image' => 'Imágen al azar',
'Random image from' => 'Imágen al azar de',
'Random Pages' => 'Páginas al azar',
'Random sub-categories' => 'Random sub-categories',
'Rank 1..10' => 'Rank 1..10',
'Rank 1..5' => 'Rank 1..5',
'Ranking' => 'Ranking',
'Ranking frequency' => 'Ranking frecuencia',
'rankings' => 'rankings',
'Ranking shows' => 'Ranking muestra',
'Ranks' => 'Ranks',
'Rate' => 'Calificación',
'Rate (1..10)' => 'Calificar (1..10)',
'Rate (1..5)' => 'Calificar (1..5)',
'Rating' => 'Rating',
'Ratio' => 'Razon',
'Re:' => 'Re:',
'Read' => 'Leer',
'Reading article from' => 'Leer artículo desde',
'Reading note:' => 'Leyendo nota:',
'Read message' => 'Leer mensaje',
'read more' => 'Leer más',
'reads' => 'lecturas',
'Reads (desc)' => 'Lecturas (desc)',
'Read this first!' => 'Lea esto primero!',
'Real Name' => 'Nombre real',
'Realtime' => 'Tiempo real',
'reason' => 'razón',
'rebuild thumbnails' => 'reconstruir thumbnails',
'Received Articles' => 'Articulos recibidos',
'received articles tpl' => 'artículos recibidos tpl',
'Received objects' => 'Objetos recibidos',
'received pages' => 'páginas recibidas',
'received pages tpl' => 'páginas recibidas tpl',
'Recently visited pages' => 'Páginas recientemente visitadas',
'Record untranslated' => 'Registrar strings no traducidos',
'Redraw' => 'Redibujar',
'Reduce area height' => 'Reducir altura del área',
'Reduce area width' => 'Reducir ancho del área',
'referenced by' => 'referenciado por',
'references' => 'referencias',
'Referer stats' => 'Estadísticas de referers',
'Refresh' => 'Refrescar',
'refresh cache' => 'refrescar cache',
'Refresh rate' => 'Tiempo de Refresco',
'Refresh rate (if dynamic) [secs]' => 'Tiempo de refresco (si es dinámica) [segs]',
'Regex' => 'Regex',
'Regex modifiers' => 'Modificadores de Regex ',
'register' => 'registrarse',
'Register as a new user' => 'Registarse como un nuevo usuario',
'registered at your site' => 'se registró en su sitio',
'Registering does not give you any benefits except one more link to your site.' => 'Registrarse no le dara ningún beneficio excepto un link más a su sitio.',
'Registering is voluntary.' => 'Registrarse es voluntario.',
'Registration code' => 'Código de registración',
'Reg users can change language' => 'Usuarios registrados pueden cambiar lenguaje',
'Reg users can change theme' => 'Usuarios registrados pueden cambiar tema',
'reject' => 'rechazar',
'Rejected users' => 'Usuarios rechazados',
'relate' => 'relacionada',
'related' => 'relacionados',
'Related categories' => 'Categorías relacionadas',
'release instance' => 'liberar instance',
'Relevance' => 'Relevancia',
'Remember me' => 'Recordarme',
'Remember me domain' => 'Dominio para Recordarme',
'Remember me feature' => 'Recordarme',
'Remember me path' => 'Camino para Recordarme',
'Reminders' => 'Recordatorios',
'Remind passwords by email' => 'Recordar passwords por email',
'Remove' => 'Eliminar',
'Remove all cookies' => 'Borrar todas las cookies',
'Remove all versions of this page' => 'Eliminar todas las versiones de esta página',
'Remove a tag' => 'Remover tag',
'remove bookmark' => 'borrar bookmark',
'remove folder' => 'borrar carpeta',
'Remove from structure and remove page too' => 'Borrar de la estructura y la página tambien',
'remove from this page' => 'borrar de ésta página',
'remove from this structure' => 'borrar de ésta estructura',
'Remove images in the system gallery not being used in Wiki pages, articles or blog posts' => 'Remover imágenes en la galería del sistema que no son usadas en el sistema',
'Remove old events' => 'Borrar eventos viejos',
'Remove only from structure' => 'Borrar solo de la estructura',
'Remove page' => 'eliminar página',
'Remove unused pictures' => 'Remover imágenes no usadas',
'Remove with articles' => 'Borrar con artículos',
'>Remove Zones (you lose entered info for the banner)' => 'Eliminar Zonas (pierde la información en el formulario de banners)',
'Remove Zones (you lose entered info for the banner)' => 'Borrar Zonas (perderá información ingresada para el banner)',
'rename' => 'renombrar',
'Rename page' => 'Renombrar página',
'Renders a graph' => 'Genera un gráfico',
'Renders a graph, with linked pages navigation visually figured.
' => 'Renderea un gráfico, con navegación de páginas linkeadas figurando visualmente.
',
'Repeat password' => 'Repetir clave',
'Replace' => 'Reemplazar',
'replace current page' => 'reemplazar la página actual',
'replace current window' => 'reemplazar ventana actual',
'replace window' => 'reemplazar ventana',
'replied' => 'respondido',
'replies' => 'respuestas',
'Replies (desc)' => 'Respuestas (desc)',
'reply' => 'responder',
'replyall' => 'respondertodos',
'reply all' => 'responder a todos',
'Reply to parent comment' => 'Responder a comentario anterior',
'reply to this' => 'responder',
'reported:' => 'reportado:',
'Reported by' => 'Reportado por',
'reported messages:' => 'mensajes reportados:',
'Reported messages for' => 'Mensajes reportados para',
'report this post' => 'reportar este post',
'Repository name can\'t be an empty' => 'El nombre del repositorio no puede estar vacío',
'Requested' => 'Pedido',
'Requested action is not supported on repository' => 'Acción requerida no está soportada por el repositorio',
'requested a reminder of the password for the' => 'pidió un recordatorio de la password para',
'Request live support' => 'Pedir soporte live',
'Request passcode to register' => 'Solicitar código para registrarse',
'Request support' => 'Pedir soporte',
'Required' => 'Requerido',
'Require HTTP Basic authentication' => 'Requiere autenticacion HTTP',
'Require secure (https) login' => 'Requerir login seguro (https)',
'reset' => 'reiniciar',
'reset table' => 'reiniciar tabla',
'restore' => 'recuperar',
'Restore defaults' => 'Recuperar valores por defecto',
'Restore the wiki' => 'Recuperar el wiki',
'Restoring a backup' => 'Recuperar backup',
'Result' => 'resultado',
'Results' => 'Resultados',
'Return to block listing' => 'Volver a la lista de bloques',
'Return to blog' => 'Volver al blog',
'return to gallery' => 'volver a la galería',
'Return to HomePage' => 'Regresar al inicio',
'Return to messages' => 'Volver a mensajes',
'Reuse question' => 'Reusar pregunta',
'Review' => 'Review',
'right' => 'derecha',
'Right column' => 'Columna derecha',
'Right Modules' => 'Módulos Derecha',
'Role' => 'Rol',
'Roles' => 'Roles',
'rollback' => 'rollback',
'Rollback page' => 'Reestablecer versión',
'Rollback_page' => 'Rollback página',
'rolleyes' => 'rolleyes',
'rotate' => 'rotar',
'rotate left' => 'rotar izquierda',
'rotate right' => 'rotar derecha',
'route' => 'ruta',
'routing' => 'Ruteos',
'row1col1' => 'fila1col1',
'row1col2' => 'fila1col2',
'row2col1' => 'fila2col1',
'row2col2' => 'fila2col2',
'rows' => 'líneas',
'RSS' => 'RSS',
'Rss channels' => 'Canales rss',
'RSS feed' => 'RSS feed',
'rss feed disabled' => 'rss feed desactivado',
'RSS feeds' => 'RSS feeds',
'RSS modules' => 'módulos RSS',
'Rule activated by dates' => 'Activación de reglas por fechas',
'Rule active from' => 'Regla activa desde',
'Rule active until' => 'Regla activa hasta',
'Rule order' => 'Orden de reglas',
'Rules' => 'Reglas',
'Rules List' => 'Lista de Reglas',
'Rule title' => 'Título de regla',
'run' => 'hacer',
'run activity' => 'ejecutar actividad',
'Run a sql query' => 'Ejecuta una consulta sql',
'run instance' => 'ejecutar instancia',
'running' => 'ejecutandose',
'Russian' => 'Ruso',
'sad' => 'triste',
'same mystery as above
' => 'mismo misterio que arriba
',
'sandbox' => 'sandbox',
'sat' => 'sab',
'Saturday' => 'Sabado',
'Save' => 'Guardar',
'save a custom copy' => 'guardar una copia personalizada',
'save and approve' => 'salve y apruebe',
'save and exit' => 'guardar y salir',
'Save position' => 'Salvar posición',
'save the banner' => 'guardar el banner',
'Save to notepad' => 'Salvar a block de notas',
'Scale' => 'Escale',
'score' => 'puntos',
'Score (desc)' => 'Puntos (desc)',
'search' => 'Buscar',
'Search by Date' => 'Buscar por fecha',
'search category' => 'buscar categoria',
'searched' => 'buscado',
'Searches' => 'Busquedas',
'Searches performed' => 'Búsquedas hechas',
'Search in' => 'Buscar en',
'Search is mandatory field' => 'Buscar es un campo requerido',
'Search refresh rate' => 'Ritmo de refresco de búsqueda',
'Search results' => 'Resultados de la búsqueda',
'Search settings' => 'Configuración de búsqueda',
'Search stats' => 'Estadísticas de Búsqueda',
'SearchStats' => 'EstadistBúsqueda',
'search stats tpl' => 'estadísticas de búsqueda tpl',
'Search the titles of all pages in this wiki' => 'Buscar los títulos de todas las páginas en este wiki',
'Search Wiki PageName' => 'Buscar Nombre Página Wiki',
'Sea Surfing (CSRF) detected. Operation blocked.' => 'Sea Surfing (CSRF) detectado. Operación bloqueada.',
'second' => 'segundo',
'seconds' => 'segundos',
'Seconds count \'till cached page will be expired' => 'Cuenta de segundos hasta que expiren las páginas cacheadas',
'secs' => 'segs',
'section' => 'sección',
'sections' => 'secciones',
'secure' => 'seguro',
'Security check failed!' => 'Fallo chequeo de seguridad!',
'Select' => 'Seleccionar',
'Select a news server to browse' => 'Seleccionar un servidor de news para recorrer',
'select from address book' => 'elegir desde libreta de direcciones',
'Select news group' => 'Seleccione grupo de news',
'Select ONE method for the banner' => 'Seleccione UN método para el banner',
'Select something to vote on' => 'Seleccionar algo sobre que votar',
'select source' => 'seleccionar fuente',
'Select the language to edit' => 'Elija lenguaje a editar',
'Select the language to Export' => 'Elija el lenguaje a exportar',
'Select the language to Import' => 'Elija el lenguaje a importar',
'Select Wiki Pages' => 'Elija Páginas Wiki',
'select zoom/pan/query and image size' => 'elija zoom/pan/consulta y tamaño de imágen',
'send' => 'enviar',
'Send all to' => 'Enviar todo a ',
'Send a message to' => 'Enviar un mensaje a',
'Send a message to us' => 'Enviarnos mensaje',
'send answers' => 'enviar respuestas',
'Send articles' => 'Enviar artículos',
'Send blog post' => 'Enviar post de blog',
'Send email notifications when this page changes to' => 'Enviar notificación de email cuando esta página cambie a',
'send email to user' => 'enviar email a usuario',
'sender' => 'enviado por',
'Sender Email' => 'Email del que envia',
'send instance' => 'enviar instancia',
'Send me a message' => 'Enviarme un mensaje',
'Send me an email for messages with priority equal or greater than' => 'Envieme un email por mensajes con prioridad mayor o igual a',
'send me my password' => 'enviar mi clave',
'Send message' => 'Enviar mensaje',
'Send Newsletters' => 'Enviar Boletines',
'Send objects' => 'Enviar Objetos',
'Send objects to this site' => 'Enviar objetos a este sitio',
'Send pages' => 'Enviar páginas',
'Send post to this addresses' => 'Enviar post a esta dirección',
'Send this forums posts to this email' => 'Enviar posts de este foro a este email',
'Send trackback pings to:' => 'Enviar pings de trackback pings a:',
'Send Wiki Pages' => 'Enviar páginas Wiki',
'sent' => 'enviado',
'Sent editions' => 'Ediciones enviadas',
'September' => 'Setiembre',
'Serbian' => 'Serbio',
'server' => 'servidor',
'Server load' => 'Carga del servidor',
'Server name (for absolute URIs)' => 'Nombre del servidor (para URLs absolutas)',
'Server time zone' => 'Zona horaria del servidor',
'Session lifetime in minutes' => 'Tiempo de vida de la sesión en minutos',
'Set' => 'Poner',
'set as operator' => 'poner como operador',
'Set features' => 'Setear features',
'Set feeds' => 'Configurar feeds',
'Set home forum' => 'Configurar foro principal',
'Set last poll as current' => 'Poner ultima votacion como actual',
'Set Next act' => 'Configurar siguiente acto',
'Set next user' => 'Configurar siguiente usuario',
'Set prefs' => 'Poner preferencias',
'Set property' => 'Configurar propiedad',
'settings' => 'configuracion',
'Settings for searching content' => 'Configuración para buscar contenido',
'shape of the arrow that come with the link
' => 'forma de la flecha que viene con el enlace
',
'Shared code' => 'Codigo compartido',
'Short date format' => 'Formato de fechas cortas',
'Shortname' => 'Nombre corto',
'Shortname must be 2 Characters' => 'Nombre corto debe de ser de 2 caracteres',
'Short text' => 'Texto breve',
'Short time format' => 'Formato corto para horas',
'Shoutbox' => 'Shoutbox',
'Show after expire date' => 'Mostrar luego de la fecha de expiración',
'Show all' => 'Mostrar todo',
'Show author' => 'Mostrar autor',
'Show avatar' => 'Mostrar avatar',
'Show Average' => 'Mostrar promedio',
'Show Babelfish Translation Logo' => 'Mostrar Logo de Traducción con Babelfish',
'Show Babelfish Translation URLs' => 'Mostrar URL de traducción con Babelfish',
'Show before publish date' => 'Mostrar antes de la fecha de publicación',
'show categories' => 'mostrar categorías',
'Show Category Objects' => 'Mostrar Objetos de categoría',
'Show Category Path' => 'Mostrar camino de categoría',
'Show chart for the last ' => 'Mostrar gráfico para los últimos ',
'Show comments' => 'Mostrar comentarios',
'Show creation date when listing tracker items?' => 'Mostrar fecha de creacion cuando se listan items?',
'Show description' => 'Ver descripcion',
'Show expire date' => 'Mostrar fecha de expiración',
'show feed title' => 'mostrar título del feed',
'Show image' => 'Mostrar imágen',
'Show last_modified date when listing tracker items?' => 'Mostrar fecha de ultima modificacion cuando se listan items?',
'Show Module Controls' => 'Mostrar Controles de Módulo',
'Show number of sites in this category' => 'Mostrar número de sitios en esta categoría',
'Show page title' => 'Mostrar título de la página',
'Show Plugins Help' => 'Ver Ayuda de Plugins',
'Show Post Form' => 'Mostrar formulario para postear',
'Show posts' => 'Mostrar posts',
'show pubdate' => 'mostrar fechapub',
'show publish date' => 'Mostrar fecha de publicación',
'Show reads' => 'Mostrar lecturas',
'Show size' => 'Mostrar tamaño',
'Show status when listing tracker items?' => 'Mostrar status cuando se listan items?',
'show structures' => 'mostrar estructuras',
'Show suggested questions/suggest a question' => 'Mostrar preguntas sugeridas/sugerir pregunta',
'Show Text Formatting Rules' => 'Ver Reglas de Formateo de Texto',
'Show the banner only between these dates' => 'Mostrar el banner solo entre estas fechas',
'Show the banner only in this hours' => 'Mostrar el banner solo en este horario',
'Show the banner only on' => 'Mostrar el banner solo en',
'Show topic summary' => 'Mostrar sumario del tópico',
'Show Votes' => 'Nostrar votos',
'similar' => 'similar',
'Simple box' => 'Caja simple',
'Simple search' => 'Búsqueda simple',
'Simplified Chinese' => 'Chino Simplificado',
'since' => 'desde',
'since this is our registered email address we inform that the' => 'ya que esta es su dirección de mail registrada le informamos que',
'since this is your registered email address we inform that the' => 'ya que esta es su direccion registrada de correo le informamos que',
'Since your last visit' => 'Desde su última visita',
'Since your last visit on' => 'Desde su última visita el',
'site' => 'sitio',
'Site added' => 'Sitio agregado',
'Sites' => 'sitios',
'sites from the directory' => 'sitios desde el directorio',
'Site Stats' => 'Estadísticas del sitio',
'Sites to validate' => 'Sitios a validar',
'Site title' => 'Título (ventana del browser)',
'Size' => 'Tamaño',
'Size of Wiki Pages' => 'Tamaño de las páginas',
'Skip to Content' => 'Saltear a Contenido',
'Skip to navigation' => 'Saltear a navegación',
'slides' => 'slides',
'Slideshows theme' => 'Tema para slideshows',
'Slovak' => 'Eslovaco',
'smaller' => 'menor',
'smile' => 'sonrisa',
'Smileys' => 'Emoticones',
'SMTP requires authentication' => 'SMTP requiere autenticacion',
'SMTP server' => 'Servidor SMTP',
'Somebody or you tried to subscribe this email address at our site:' => 'Alguien o usted intenaron subscribir esta dirección de mail en nuestro sitio:',
'SomeName' => 'AlgunNombre',
'someone from' => 'alguien desde',
'some text' => 'algun texto',
'Some useful URLs' => 'Algunas URLs útiles',
'Sorry no such module' => 'Lo siento no existe módulo',
'sort' => 'ordenar',
'Sort by' => 'Ordernar por',
'Sort Images by' => 'Ordenar imágenes por',
'sortof relative width ??
' => 'un tipo de ancho relativo ??
',
'Sort posts by:' => 'Ordenar posts por:',
'Sorts the plugin content in the wiki page' => 'Ordena el contenido del plugi en la página wiki',
'source' => 'fuente',
'Source repository' => 'Repositorio origen',
'Spanish' => 'Español',
'<span title="{tr}subset of chars: imsxeADSXUu, which is regex modifiers' => '<span title="{tr}subconjunto de caracteres: imsxeADSXUu, que son modificadores de regex',
'special characters' => 'caracteres especiales',
'special chars' => 'caracteres especiales',
'Specification' => 'Especificación',
'Spellcheck' => 'Spellcheck',
'Spellchecking' => 'Spellchecking',
'split' => 'dividir',
'Split a page into rows and columns' => 'Separa una página en filas y columnas',
'sql query' => 'consulta sql',
'SrvMenu' => 'SrvMenu',
'standalone' => 'autónomo',
'standard' => 'standard',
'stars' => 'estrellas',
'start' => 'comenzar',
'Start date' => 'Fecha inicial',
'Started' => 'comenzado',
'Start hour for days' => 'Hora de inicio para dias',
'Start page' => 'Página inicial',
'stat' => 'estad',
'Static' => 'Estática',
'Statistics' => 'Estadísticas',
'stats' => 'Estadísticas',
'Stats for a Quiz' => 'Estadistícas del Cuestionario ',
'Stats for quiz' => 'Estadísticas para cuestionario',
'Stats for quizzes' => 'Estadisticas de cuestionarios',
'Stats for survey' => 'Estadisticas de encuesta',
'Stats for surveys' => 'Estadisticas de encuestas',
'Stats for this quiz Questions ' => 'Estadísticas para las preguntas de este cuestionario ',
'Stats for this survey Questions ' => 'Estadisticas para preguntas de esta encuesta',
'status' => 'estado',
'stay in ssl mode' => 'permanecer en modo ssl',
'sticky' => 'sticky',
'stop' => 'detener',
'stop monitoring this blog' => 'dejar de monitorear este este blog',
'stop monitoring this forum' => 'dejar de monitorear este foro',
'stop monitoring this map' => 'dejar de monitorear este mapa',
'stop monitoring this page' => 'dejar de monitorear esta página',
'stop monitoring this topic' => 'dejar de monitorear este tópico',
'Store attachments in:' => 'Guardar adjuntos en:',
'Store plaintext passwords' => 'Guardar claves en texto plano',
'Store quiz results' => 'Guardar resultados de este cuestionario',
'Store session data in database' => 'Guardar datos de la sesión en la base de datos',
'strict' => 'estricto',
'Strict allows page names with only letters, numbers, underscore, dash, period and semicolon (dash, period and semicolon not allowed at the beginning and the end).' => 'Estricto permite nombres de páginas con solo letras, números, subrayado, guión, punto y punto y coma (guión, punto y punto y coma no son permitidos ni al principio ni al final).',
'Structure' => 'Estuctura',
'Structure ID' => 'ID de Estructura',
'Structure Layout' => 'Armado de la Estructura',
'structures' => 'estructuras',
'Structures:' => 'Estructuras:',
'Style' => 'Estilo',
'style for drawing nodes.
' => 'estilo para dibujar nodos.
',
'Style Sheet' => 'Style Sheet',
'sub categories' => 'subcategorías',
'Subcategories' => 'Subcategorías',
'subject' => 'tema',
'Submissions' => 'Colaboraciones',
'submissions waiting to be examined' => 'colaboraciones esperando ser examinadas',
'Submit' => 'Enviar',
'Submit a new link' => 'Enviar nuevo enlace',
'Submit article' => 'Enviar artículo',
'Submit Notice' => 'Enviar Aviso',
'subs' => 'subs',
'Subscribe' => 'Subscribir',
'subscribed' => 'subscripto',
'Subscribe to newsletter' => 'Subscribirse al boletin',
'Subscription confirmed!' => 'Subscripción confirmada!',
'subscriptions' => 'Subscripciones',
'subset of chars: imsxeADSXUu, which is regex modifiers' => 'subconjunto de caracteres: imsxeADSXUu, que son modificadores de regex',
' successfully sent' => ' exitosamente enviada',
'suggested' => 'sugeridas',
'Suggested questions' => 'Preguntas sugeridas',
'Summary' => 'Sumario',
'sun' => 'dom',
'Sunday' => 'Domingo',
'Support chat transcripts' => 'Suporte de transcripciones de charla',
'Support requests' => 'Pedidos de soporte',
'Support tickets' => 'Suportar tickets',
'surprised' => 'sorprendido',
'Survey' => 'Encuesta',
'Surveys' => 'Encuestas',
'Survey stats' => 'estadisticas',
'Swedish' => 'Sueco',
'switch' => 'cambiar',
'Switch construct' => 'Switch construct',
'Syntax' => 'Sintaxis',
'Syntax highlighting' => 'Destacado de sintaxis',
'System Admin' => 'admin de sistema',
'system admin tpl' => 'admin de sistema tpl',
'System gallery' => 'Galería del sistema',
'table' => 'tabla',
'Tables' => 'Tablas',
'Tables syntax' => 'Sintaxis de tablas',
'Tag already exists' => 'La etiqueta ya existe',
'tagline' => 'tagline',
'Tag Name' => 'Nombre Etiqueta',
'Tag not found' => 'Etiqueta no encontrada',
' tags. Example: {tr}The newsletter was sent to {$sent} email addresses' => ' etiquetas. Ejemplo: {tr}El boletin fue enviado a {$sent} direcciones de correo',
'Take a quiz' => 'Tomar quiz',
'taken' => 'tomado',
'Tasks' => 'Tareas',
'Tasks per page' => 'Tareas por página',
'tbheight' => 'tbheight',
'tbl' => 'tbl',
'Tbl vis' => 'visible en listados',
'Template' => 'Plantilla',
'Template listing' => 'Lista de plantillas',
'Templates' => 'Plantillas',
'Templates compiler' => 'Compilador de Templates',
'Temporary directory' => 'Directorio temporal',
'Tentative' => 'Tentativo',
'term' => 'término',
'Test file from repository to generate preview for (empty = configured start page)' => 'Archivo de prueba del repositorio para la cual generar previsualización (vacío = página inicial configurada)',
'Text' => 'Texto',
'textarea' => 'textarea',
'text field' => 'texto',
'TextFormattingRules' => 'Reglas de formateo de texto',
'Textheight' => 'Altura de texto',
'Text to replace' => 'Texto a reemplazar',
'Text to search for' => 'Texto a buscar',
'Thanks for your subscription. You will receive an email soon to confirm your subscription. No newsletters will be sent to you until the subscription is confirmed.' => 'Gracias por su subscripción. Recibirá un email pronto para confirmarla. No se enviarán newsletters hasta que la subscripción sea confirmada.',
'Thank you for you registration. You may log in now.' => 'Gracias por su registracion. Puede loguearse ahora.',
'That is not an image (or you have php < 4.0.5)' => 'Esta no es una imágen (o tiene php < 4.0.5)',
'the background color, use #rrvvbb color types.
' => 'el color de fondo, use los tipos de color #rrvvbb.
',
'The content on this page is licensed under the terms of the' => 'El contenido de esta página esta licenciado bajo los términos del',
'The copyright management feature is not enabled.' => 'La característica de manejo de copyright no esta activada.',
'The cord' => 'The cord',
'The Directory is not empty' => 'El Directorio no está vacío',
'The file is not a CSV file or has not a correct syntax' => 'El archivo no es un archivo CSV o no tiene la sintaxis correcta',
'The following addresses are not in your address book' => 'Las siguientes direcciones no estan en su libreta de direcciones',
'The following file was successfully uploaded' => 'El siguiente archivo ha sido subido exitosamente',
'The following image was successfully edited' => 'La sigiuente imágen fue editada exitosamente',
'The following image was successfully uploaded' => 'La siguiente imágen ha sido recibida con éxito',
'the following link to login for the first time' => 'el siguiente enlace para loguearse por primera vez',
'The following site was added and validation by admin may be needed before appearing on the lists' => 'El siguiente sitio fue agregado y una validacion por el administrador puede requerirse antes de aparecer en las listas',
'the font size in pts presumably
' => 'el tamaño de letra presumiblemente en pts
',
'theme' => 'tema',
'Theme control' => 'Control de temas',
'ThemeControl' => 'ControlDeTemas',
'Theme Control Center: categories' => 'Centro de Control de Temas: Categorias',
'Theme Control Center: Objects' => 'Centro de Control de Temas: Objectos',
'Theme Control Center: sections' => 'Centro de Control de Temas: Secciones',
'ThemeControl Objects' => 'ControlDeTemas Objetos',
'theme control objects tpl' => 'control de temas objetos tpl',
'theme control sections tpl' => 'secciones de control de temas tpl',
'ThemeControl tpl' => 'ControlDeTemas tpl',
'Theme is selected as follows' => 'El tema fue seleccionado como sigue',
'the name of the font used for labels
' => 'el nombre del tipo de letra usado para etiquetas
',
'The new page content follows below.' => 'El nuevo contenido de la página sigue debajo.',
'The new page content is:' => 'El nuevo contenido de página es:',
'The newsletter was sent to {$sent} email addresses' => 'El boletin fue enviado a {$sent} direcciones de email',
'the number of hops the graph follows
' => 'el numero de saltos que el el gráfico sigue
',
'The original document is available at' => 'El documento original está disponible en',
'The page cannot be found' => 'La página no pudo ser encontrada',
'The passwords didn\'t match' => 'Las claves no coinciden',
'The passwords don\'t match' => 'Las claves no coinciden',
'The passwords dont match' => 'Las claves no coinciden',
'The process name already exists' => 'El nombre de proceso ya existia',
'There are' => 'Hay',
'There are individual permissions set for this blog' => 'Hay permisios individuales configurados para este blog',
'There are individual permissions set for this file gallery' => 'Hay permisos individuales configurados para esta galería de archivos',
'There are individual permissions set for this forum' => 'Existen permisos individuales para este foro',
'There are individual permissions set for this gallery' => 'Hay permisos individuales configurados para esta galería',
'There are individual permissions set for this newsletter' => 'Existen permisos individuales para este boletin',
'There are individual permissions set for this quiz' => 'Existen permisos individuales para esta cuestionarios',
'There are individual permissions set for this survey' => 'Existen permisos individuales para esta encuesta',
'There are individual permissions set for this tracker' => 'Hay permisos individuales configurados para este tracker',
'There are no channels setup, please contact a site admin' => 'No hay canales configurados, contacte al admin del sistema',
'There is an error in the plugin data' => 'Hay un error en los datos del plugin',
'The SandBox is disabled' => 'El SandBox esta deshabilitado',
'the shape of a node. can be ' => 'la forma del nodo, puede ser ',
'the space beetween nodes
' => 'el espacio entre nodos
',
'The thumbnail name must be' => 'El thumbnail debe ser',
'the title of the map
' => 'el título del mapa
',
'The user' => 'El usuario',
'The user has choosen to make his information private' => 'El usuario eligió hacer su informacion privada',
'This email address has been added to the list of subscriptors of:' => 'Esta dirección de email fue agregada a la lista de subscriptores de:',
'This email address has been removed to the list of subscriptors of:' => 'Esta dirección de email ha sido borrada de la lista de los subscriptores de:',
'This feature has been disabled' => 'Esta sección ha sido deshabilitada',
'This feature is disabled' => 'Esta caracteristica esta deshabilitada',
'This is' => 'Esto es',
'This is a cached version of the page.' => 'Esta es la versióon cacheada de la página.',
'This mapfile already exists' => 'Este mapa ya existe',
'This newsletter will be sent to {$subscribers} email addresses.' => 'Este boletin sera enviando a {$subscribers} direcciones de email.',
'this page' => 'ésta página',
'This page is being edited by' => 'Esta página esta siendo editada por',
'this post was reported' => 'este tópico fue reportado',
'This process is invalid' => 'Este proceso es inválido',
'this quiz stats' => 'estadisticas de esta cuestionarios',
'This script cannot be called directly' => 'Este script no puede ser llamado directamente',
'this structure' => 'ésta estructura',
'this survey stats' => 'estadísticas de esta encuesta',
'Threads can be voted' => 'Los threads pueden ser votados',
'Threads (desc)' => 'Mensajes (desc)',
'Threshold' => 'Puntaje minimo',
'thu' => 'jue',
'Thumbnail' => 'Thumbnail',
'Thumbnail (if the game is foo.swf the thumbnail must be named foo.swf.gif or foo.swf.png or foo.swf.jpg)' => 'Thumbnail (si el juego se llama foo.swf la imágen debe ser foo.swf.gif o foo.swf.jpg o foo.swf.png)',
'Thumbnail (optional, overrides automatic thumbnail generation)' => 'Thumbnail (opcional, impide que se genere automaticamente)',
'Thumbnails size X' => 'Tamaño X para thumbnails',
'Thumbnails size Y' => 'Tamaño Y para thumbnails',
'Thursday' => 'Jueves',
'Time' => 'tiempo',
'Time Left' => 'Tiempo',
'time_limit' => 'tiempoLimite',
'times' => 'veces',
'times from the directory' => 'veces desde el directorio',
'Time Zone' => 'Zona Horaria',
'Time Zone Map' => 'Mapa de Zona Horaria',
'title' => 'título',
'Title:' => 'Titulo:',
'Title (asc)' => 'Título (asc)',
'title bar' => 'Barra de título',
'Title_bar' => 'Barra de título',
'Title (desc)' => 'Título (desc)',
'to' => 'a',
'to access full functionalities' => 'para acceder a funcionalidades completas',
'to be used as argument' => 'para ser usado como argumento',
'To date' => 'Hasta fecha',
'Today' => 'Hoy',
'To edit the copyright notices' => 'Para editar los avisos de copyright',
'Toggle display of comment zone' => 'Cambia despliegue de zona de comentarios',
'to group' => 'a grupo',
'to groups' => 'a los grupos',
'to insert a random tagline' => 'para insertar un tagline al azar',
'Tools Calendars' => 'Herramientas de Calendarios',
'top' => 'Top',
'Top 10' => 'Top 10',
'Top 100' => 'Top 100',
'Top 100 items' => 'Top 100 items',
'Top 10 items' => 'Top 10 items',
'Top 20' => 'Top 20',
'Top 20 items' => 'Top 20 items',
'Top 250 items' => 'Top 250 items',
'Top 40 items' => 'Top 40 items',
'Top 50' => 'Top 50',
'Top 50 items' => 'Top 50 items',
'Top active blogs' => 'Blogs mas activos',
'Top article authors' => 'Artículos principales autores',
'Top articles' => 'Artículos mas leídos',
'Top authors' => 'Principales autores',
'Top bar' => 'Barra de encabezado',
'Top File Galleries' => 'Galerías de archivos Top',
'Top Files' => 'Top archivos',
'Top galleries' => 'Galerías Top',
'Top games' => 'Top juegos',
'topic' => 'tópico',
'topic:' => 'tópico:',
'Topic date' => 'Fecha de tópico',
'topic image' => 'imágen de tópico',
'Topic list configuration' => 'Configuración de listado de topico',
'Topic Name' => 'Nombre de topico',
'topics' => 'Temas',
'Topics (desc)' => 'Temas (desc)',
'topics in this forum' => 'tópicos de este foro',
'Topics only' => 'Solo tópicos',
'Topics per page' => 'Temas por página',
'Top Images' => 'Imágenes Top',
'Top `$module_rows` articles' => 'Ultimos `$module_rows` artículos',
'Top `$module_rows` File Galleries' => '`$module_rows` principales Galerías de Archivos',
'Top `$module_rows` files' => '`$module_rows` principales archivos',
'Top `$module_rows` galleries' => '`$module_rows` principales galerías',
'Top `$module_rows` games' => '`$module_rows` principales juegos',
'Top `$module_rows` Images' => '`$module_rows` principales imágenes',
'Top `$module_rows` Pages' => '`$module_rows` principales Páginas',
'Top `$module_rows` Quizzes' => '`$module_rows` principales Cuestionarios',
'Top $module_rows Sites' => '$module_rows principales sitios',
'Top `$module_rows` topics' => '`$module_rows` principales tópicos',
'Top `$module_rows` Visited FAQs' => '`$module_rows` FAQs mas visitadas',
'Top `$module_rws` topics' => '`$module_rws` principales tópicos',
'To Points' => 'Hasta puntos',
'Top page' => 'Página principal',
'Top Pages' => 'Páginas Top',
'Top Quizzes' => 'Top Cuestionarios',
'Top Sites' => 'Top Sites',
'Top topics' => 'Temas top',
'Top visited blogs' => 'Blogs mas visitados',
'Top Visited FAQs' => 'FAQs mas visitadas',
'Top visited file galleries' => 'Galerías más visitadas',
'Total' => 'Total',
'Total articles size' => 'Tamaño total de artículos',
'Total categories' => 'Total categorias',
'Total links' => 'Total enlaces',
'Total links visited' => 'Total enlaces visitados',
'Total pageviews' => 'Pageviews en total',
'Total posts' => 'Cantidad de posts en total',
'Total questions' => 'Preguntas en total',
'Total reads' => 'Cantidad de notas leídas',
'Total size of blog posts' => 'Tamaño total de los posts',
'Total size of files' => 'Cantidad total de archivos',
'Total size of images' => 'Tamaño total de imágenes',
'Total threads' => 'Cantidad de mensajes',
'Total topics' => 'Cantidad de temas',
'Total votes' => 'Cantidad total de votos',
'To the newsletter:' => 'Al boletin:',
'to the registered email address for' => 'a la direccion registrada de mail para',
'to_version' => 'a la versión',
'Trackback pings' => 'Trackback pings',
'Tracker' => 'tracker',
'Tracker fields' => 'Campos',
'Trackeritem' => 'Trackeritem',
'Tracker Items' => 'Tracker Items',
'Tracker items allow attachments?' => 'Se permiten attachments?',
'Tracker items allow comments?' => 'Se permiten comentarios por item?',
'trackers' => 'trackers',
'Tracker was modified at ' => 'Tracker fue modificado en ',
'Traditional Chinese' => 'Chino Tradicional',
'Transcript' => 'Transcripción',
'transcripts' => 'transcripcioness',
'translate' => 'tranducir',
'Translate recorded' => 'Traducción grabada',
'Translation' => 'Traducción',
'Transmission results' => 'Resultados de la transmisión',
'Trash' => 'Basura',
'trckrs' => 'trckrs',
'tree' => 'arbol',
'TrkMenu' => 'TrkMenu',
'try' => 'probar',
'Try to convert HTML to wiki' => 'Intentar convertir HTML a wiki',
'tue' => 'mar',
'Tuesday' => 'Martes',
'twisted' => 'twisted',
'Type' => 'Tipo',
'Type <code>help</code> to get list of available commands' => 'Ponga <code>help</code> para obtener la lista de comandos disponibles',
'ul' => 'su',
'unassign' => 'desasignar',
'Unassign module' => 'Desasignar módulo',
'Unassign this module' => 'Desasignar este módulo',
'unchecked' => 'desmarcado',
'underline' => 'subrayado',
'underlines text' => 'subraya texto',
'undo' => 'undo',
'Unexistant gallery' => 'Galería inexistente',
'Unexistant link' => 'Enlace inexistente',
'Unexistant user' => 'Usuario inexistente',
'Unexistant version' => 'Versión inexistente',
'Unflagg' => 'Desmarcar',
'Unflagged' => 'Desmarcado',
'unicode' => 'unicode',
'Unix' => 'Unix',
'unknown' => 'desconocido',
'Unknown group' => 'Grupo desconocido',
'Unknown language' => 'Lenguaje desconocido',
'Unknown/Other' => 'Otro',
'Unknown user' => 'Usuario desconocido',
'Unlimited' => 'Ilimitado',
'unlock' => 'desbloquear',
'unlocked' => 'desbloqueada',
'unlock selected topics' => 'desbloquear tópicos seleccionados',
'Unread' => 'No leidos',
'Unread Messages' => 'Mensajes no leídos',
' unread private messages' => ' mensajes privados sin leer',
'up' => 'subir',
'Upcoming events' => 'Próximos eventos',
'update' => 'actualizar',
'updated by the phpwiki import process' => 'actualizada por el proceso de importación de phpwiki',
'Update variables' => 'Actualizar variables',
'Upload' => 'subir',
'Upload a backup' => 'Subir un backup',
'Upload a game' => 'Subir un juego',
'Upload a new game' => 'Subir un nuevo juego',
'Upload backup' => 'Subir backup',
'Upload Cookies from textfile' => 'Upload cookies desde un archivo de texto',
'Upload date' => 'Fecha de subida',
'uploaded' => 'subida',
'uploaded by' => 'subida por',
'Uploaded filenames cannot match regex' => 'Archivos subidos no deben matchear esta regex',
'Uploaded filenames must match regex' => 'Archivos subidos deben matchear esta regex',
'Uploaded image names cannot match regex' => 'Nombres de imágenes no deben matchear esta regex',
'Uploaded image names must match regex' => 'Nombres de imágenes deben matchear esta regex',
'Upload failed' => 'Upload erróneo',
'Upload File' => 'subir archivo',
'Upload Files' => 'Subir Archivos',
'Upload from disk' => 'Subir desde disco local',
'Upload from disk:' => 'Subir desde el disco:',
'upload image' => 'subir imágen',
'Upload image for this post' => 'Subir imágen para este post',
'Upload Images' => 'Upload imágen',
'Upload successful!' => 'Imágen recibida correctamente!',
'Upload was not successful' => 'La subida no fue exitosa',
'Upload was not successful (maybe a duplicate file)' => 'Subida no fue exitosa (tal vez archivo duplicado)',
'Upload your own avatar' => 'Upload avatar o foto',
'URI' => 'URI',
'Url' => 'URL',
'URL:' => 'URL:',
'URL already added to the directory. Duplicate site?' => 'La URL ya había sido agregada al directorio. Duplicar sitio? ',
'URL cannot be accessed wrong URL or site is offline and cannot be added to the directory' => 'La URL no puede ser accedida URL incorrecta o sitio fuera de línea y no puede ser agregado al directorio',
'URL cannot be accessed wrong URL or site is offline and cannot be added to the directory. ' => 'La URL no puede ser accedida URL incorrecta o sitio fuera de línea y no puede ser agregado al directorio. ',
'URL cannot be accessed: wrong URL or site is offline and cannot be added to the directory' => 'La URL no puede ser accedida: URL incorrecta o sitio fuera de línea y no puede agregarse al directorio',
'URL to link the banner' => 'URL a donde enlaza el banner',
'URL (use $page to be replaced by the page name in the URL example: http://www.example.com/wiki/index.php?page=$page)' => 'URL (use $page para ser reemplazado por el nombre de página en la URL ejemplo: http://www.ejemplo.com/wiki/index.php?page=$page)',
'Usage chart' => 'Gráfica de uso',
'Usage chart image' => 'Imágen de uso de chart',
'use' => 'usar',
'Use a directory to store files' => 'Usar un directorio para almacenar archivos',
'Use a directory to store images' => 'Usar directorio para guardar imágenes',
'Use a directory to store userfiles' => 'Usar directorio para guardar archivos de usuario',
'use admin email' => 'usar email de admin',
'Use a question from another FAQ' => 'Usar pregunta de otra FAQ',
'use banner zone' => 'usar zona de banners',
'Use cache for external images' => 'Usar cache para páginas internas',
'Use cache for external pages' => 'Usar cache para páginas externas',
'Use challenge/response authentication' => 'Autenticación por challenge/response',
'Use Cookies for unregistered users' => 'Usar Cookies para usuarios no registrados',
'Use database for translation' => 'Usar la base para traducciones',
'Use database to store files' => 'Usar base de datos para guardar archivos',
'Use database to store images' => 'Usar base de datos para guardar imágenes',
'Use database to store userfiles' => 'Usar base de datos para guardar archivos de usuario',
'Use dates' => 'Usar fechas',
'Use Dates?' => 'Usar Fechas?',
'Use dbl click to edit pages' => 'Use dbl click para editar páginas',
'Use direct pagination links' => 'Usar links de paginación directa',
'use dynamic content' => 'usar contenido dinámico',
'use filename' => 'usar nombre de archivo',
'use gallery' => 'usar galería',
'Use group homepages' => 'Usar páginas inicio de grupo',
'Use gzipped output' => 'Enviar contenido zipeado al navegador',
'Use HTML' => 'Usar HTML',
'Use HTML mail' => 'Usar HTML',
'Use Image' => 'Usar imágen',
'Use image generated by URL (the image will be requested at the URL for each impression)' => 'Usar contenido desde un URL (el contenido sera descargado por cada impresión desde la URL indicada)',
'UseImg' => 'UsaImágen',
'use in cms' => 'usar en cms',
'use in HTML pages' => 'usar en páginas HTML',
'use in newsletters' => 'usar en boletines',
'use in wiki' => 'usar en wiki',
'Use {literal}{{/literal}ed id=name} or {literal}{{/literal}ted id=name} to insert dynamic zones' => 'Use {literal}{{/literal}ed id=nombre} o {literal}{{/literal}ted id=nombre} para insertar zonas dinamicas',
'use menu' => 'usar menú',
'Use (:name:) for smileys' => 'Usar (:nombre:) para emoticones',
'Use :nickname:message for private messages' => 'Usar :nickname:mensaje para mensajes privados',
'Use normal editor' => 'Usar editor normal',
'Use own image' => 'Usar imágen propia',
'Use page description' => 'Usar descripciones',
'use ...page... to separate pages' => 'use ...página... para separar páginas',
'Use ...page... to separate pages in a multi-page article' => 'Use ...página... para separar páginas en un artículo de multiples páginas',
'Use ...page... to separate pages in a multi-page post' => 'Use ...página... para separar páginas en un posteo multi-página',
'use phplayermenu' => 'usar phplayermenu',
'Use PHPOpenTracker' => 'Usar PHPOpenTracker',
'use poll' => 'usar votación',
'Use pre-existing page' => 'Use página preexistente',
'Use proxy' => 'Usar proxy',
'User' => 'usuario',
'User:' => 'Usuario:',
'User accounts' => 'Cuentas de mail',
'User activities' => 'Actividades de usuario',
'User already exists' => 'El usuario ya existe',
'User answers' => 'Respuestas de usuario',
'User assigned modules' => 'Módulos asignados por usuario',
'User Assigned Modules tpl' => 'Módulos asignados por usuario tpl',
'User avatar' => 'Avatar de usuario',
'User Blogs' => 'Blogs del usuario',
'User bookmarks' => 'Bookmarks del usuario',
'User Bookmarks tpl' => 'Marcadores de Usuario tpl',
'User doesnt exist' => 'El usuario no existe',
'User Features' => 'Funciones de Usuario',
'userfiles' => 'mis archivos',
'User Files' => 'Archivos de usuario',
'User Galleries' => 'Galerías de usuario',
'User information' => 'Información de usuario',
'User information display' => 'Desplegar información de usuario',
'User instances' => 'instancias de usuarios',
'User/IP' => 'Usuario/IP',
'User is duplicated' => 'El usuario esta duplicado',
'user level' => 'nivel de usuario',
'User login is required' => 'Login de usuario requerido',
'User menu' => 'Menú de Usuario',
'User Messages' => 'Mensajes',
'User Modules' => 'Módulos de usuario',
'Username' => 'Usuario',
'Username cannot contain whitespace' => 'El nombre del usuario no puede tener espacios',
'Username is too long' => 'El nombre del usuario es demasiado largo',
'Username regex matching' => 'Regex matching de usuario',
'User Notepad' => 'Cuaderno de notas',
'user offline' => 'usuario fuera de línea',
'user online' => 'usuario en línea',
'User Pages' => 'Páginas del usuario',
'User Preferences' => 'Preferencias del usuario',
'User Preferences Screen' => 'Pantalla de Preferencias de Usuario',
'UserPreferences tpl' => 'UserPreferences tpl',
'User prefs' => 'Prefs del usuario',
'User processes' => 'procesos de usuario',
'User registration and login' => 'Registracion de usuarios y login',
'Users' => 'Usuarios',
'Users and admins' => 'Usuarios y admins',
'Users can Configure Modules' => 'Usuarios pueden configurar Módulos',
'Users can lock pages (if perm)' => 'Usuarios con permiso pueden lockear páginas',
'Users can register' => 'Usuarios pueden registrarse',
'Users can save pages to notepad' => 'Los usuarios pueden salvar páginas en su notepad',
'Users can subscribe any email address' => 'Usuarios pueden subscribir cualquier dirección de correo',
'Users can subscribe/unsubscribe to this list' => 'Usuarios pueden subscribirse/desubscribirse a esta lista',
'Users can suggest new items' => 'Usuarios pueden sugerir nuevos items',
'Users can suggest questions' => 'Los usuarios pueden sugerir preguntas',
'Users can vote again after' => 'Los usuarios pueden votar en contra luego de',
'Users can vote for only one item from this chart per period' => 'Los usuarios pueden votar por sólo un item de este chart por período',
'Users can vote only one item from this chart per period' => 'Los usuarios pueden votar sólo un item para este chart por período',
'user selector' => 'selector de usuario',
'Users have searched' => 'Usuarios buscaron',
'Users have visited' => 'Usuarios visitaron',
'Users in this channel' => 'Usuarios en este canal',
'use rss module' => 'usar módulo RSS',
'User Stats' => 'Estadísticas de usuarios',
'User tasks' => 'Tareas de Usuario',
'User Tasks tpl' => 'Tareas de Usuario tpl',
'User versions' => 'Versiones del usuario',
'User_versions_for' => 'Versiones del usuario para',
'User Watches' => 'Watches de Usuario',
'Use single spaces to indent structure levels' => 'Usar espacios simples para indentar niveles de estructura',
'Use (:smileyname:) for smileys' => 'Use (:nombreemoticon:) para emoticones',
'use square brackets for an' => 'use corchetes para un',
'Uses Slideshow' => 'Usa Slideshow',
'Use templates' => 'Usar plantilla',
'Use text' => 'Usar texto',
'Use titles in blog posts' => 'Usar títulos en posts de blogs',
'Use topic smileys' => 'Usar emoticones del tópico',
'Use URI as Home Page' => 'Usar URI como PáginaInicio',
'Use [URL|description] or [URL] for links' => 'Usar [URL|descripcion] o [URL] para links',
'Use WikiWords' => 'Use WikiWords',
'Use wysiwyg editor' => 'Usar editor wysiwyg',
'UsrMenu' => 'UsrMenu',
'UTC' => 'UTC',
'val' => 'val',
'Valid' => 'Válido',
'validate' => 'validar',
'Validate email addresses' => 'Validar direccíon de correo',
'Validate email address (may not work)' => 'Validar dirección de email (puede no andar)',
'Validate links' => 'Validar enlaces',
'Validate sites' => 'Validar Sitios',
'Validate URLs' => 'Validar URLs',
'Validate users by email' => 'Validar usuarios por email',
'valid process' => 'proceso válido',
'valid sites' => 'sitios validos',
'value' => 'valor',
'ver' => 'ver',
'ver:' => 'ver:',
'Vers' => 'Vers',
'Version' => 'Versión',
'Versions' => 'Versiones',
'Versions are identical' => 'Las versiones son identicas',
'Very High' => 'Superior',
'view' => 'Ver',
'View a FAQ' => 'Ver FAQ',
'View a forum' => 'Ver foro',
'View All' => 'Ver todos',
'view articles' => 'ver artículos',
'View a thread' => 'Ver mensaje',
'view blog' => 'ver blog',
'view comments' => 'ver comentarios',
'viewed' => 'visto',
'View FAQ' => 'ver faq',
'view faq tpl' => 'ver faq tpl',
'view/hide copy rules dialog' => 'ver/ocultar diálogo de copia de reglas',
'view info' => 'ver info',
'Viewing blog post' => 'Leyendo post de blog',
'View item' => 'Ver item',
'View or vote items not listed in the chart' => 'Ver o votar items que no estan listados en el chart',
'View page' => 'Ver página',
'view repository' => 'ver repositorio',
'View Results' => 'Ver Resultados',
'View source code after rules applied' => 'Ver código fuente después de que las reglas sean aplicadas',
'View submissions' => 'Ver colaboraciones',
'View the blog at:' => 'Ver el blog en:',
'view this repository' => 'ver este repositorio',
'View this tracker items' => 'Ver elementos del tracker',
'View tpl' => 'Ver tpl',
'view webhelp' => 'ver webhelp',
'Visibility' => 'Visibilidad',
'Visible' => 'Visible',
'Visited links' => 'Enlaces visitados',
'visits' => 'visitas',
'Visits (desc)' => 'Visitas (desc)',
'Visits to file galleries' => 'Cantidad de visitas a galerías de archivos',
'Visits to forums' => 'Visitas a los foros',
'Visits to image galleries' => 'Visitas a galerías de imágenes',
'Visits to weblogs' => 'Visitas a los weblogs',
'Visits to wiki pages' => 'Visitas a páginas del wiki',
'visit the site for more games and fun' => 'visite el sitio para mas información o juegos',
'vote' => 'Votar',
'Vote items' => 'Votar items',
'Vote poll' => 'Votar encuesta',
'Votes' => 'Votos',
'Vote this item' => 'Votar este item',
'Voting system' => 'Sistema de votaciones',
'Waiting Submissions' => 'Colaboraciones en espera',
'Warning' => 'Cuidado',
'Warning!' => 'Cuidado!',
'Warn on edit' => 'Prevenir edición simultanea',
'Watches' => 'Watches',
'Watchlist' => 'Watchlist',
'Weblogs' => 'Cantidad de weblogs',
'Webmail' => 'Webmail',
'WebMail accounts' => 'Cuentas de WebMail',
'Webmail Doc' => 'Webmail Doc',
'Webmail Doc tpl' => 'Webmail Doc tpl',
'Webmaster' => 'Webmaster',
'Web Server' => 'Servidor Web',
'wed' => 'mie',
'Wednesday' => 'Miercoles',
'week' => 'semana',
'Weekdays' => 'Días de semana',
'Weekly' => 'Semanal',
'Weeks' => 'Semanas',
'We have' => 'Tenemos',
'Welcome to ' => 'Bienvenido a ',
'Welcome to our newsletter!' => 'Bienvenido a nuestro boletín!',
'WfMenu' => 'WfMenu',
'Whats related' => 'Que esta relacionado',
'wiki' => 'wiki',
'wiki-append' => 'wiki-append',
'Wiki attachments' => 'Adjuntos a Wiki',
'Wiki comments settings' => 'Configuraciones para comentarios del wiki',
'wiki create' => 'crear wiki',
'WikiDiff::apply: line count mismatch: %s != %s' => 'WikiDiff::aplicar: cuenta de líneas no coincide: %s != %s',
'WikiDiff::_check: edit sequence is non-optimal' => 'WikiDiff::_chequeo: secuencia de edición es no optima',
'WikiDiff::_check: failed' => 'WikiDiff::_chequeo: fallo',
'WikiDiff Okay: LCS = %s' => 'WikiDiff Okay: LCS = %s',
'Wiki Discussion' => 'Discusión Wiki',
'Wiki Features' => 'Características Wiki',
'wiki-get' => 'wiki-get',
'wiki help' => 'wiki ayuda',
'Wiki History' => 'Historial',
'Wiki Home' => 'Inicio Wiki',
'Wiki Home Page' => 'Wiki Inicio',
'Wiki Import dump' => 'Importar volcado',
'Wiki last files' => 'Wiki últimos archivos',
'Wiki last images' => 'Wiki últimas imágenes',
'Wiki last pages' => 'Wiki últimas páginas',
'wiki link' => 'enlace wiki',
'Wiki Link Format' => 'Formato de Enlace Wiki',
'WikiMenu' => 'WikiMenu',
'wiki overwrite' => 'sobreescribir wiki',
'Wiki page' => 'Página Wiki',
'Wiki Page for Comments' => 'Página Wiki Page para Comentarios',
'Wiki Page for Help' => 'Página Wiki para Ayuda',
'Wiki page list configuration' => 'Configuración de listado de páginas Wiki',
'Wiki Page Names' => 'Nombres de páginas wiki',
'Wiki Pages' => 'Páginas del wiki',
'wiki pages changed' => 'páginas wiki modificadas',
'wiki-put' => 'wiki-put',
'Wiki quick help' => 'Ayuda rapida Wiki',
'Wiki References' => 'Referencias Wiki',
'Wiki settings' => 'Configuraciones para el Wiki',
'Wiki Stats' => 'Estadísticas del Wiki',
'Wiki top articles' => 'Wiki principales articulos',
'Wiki top authors' => 'Wiki principales autores',
'Wiki top file galleries' => 'Wiki principales galerías de archivos',
'Wiki top files' => 'Wiki principales archivos',
'Wiki top galleries' => 'Wiki principales galerías',
'Wiki top images' => 'Wiki principales imágenes',
'Wiki top pages' => 'Wiki páginas top',
'Wiki Watch' => 'Wiki Watch',
'Will be replaced by the actual value of the dynamic content block with id=n' => 'Sera reemplazado por el valor actual del bloque de contenido dinámico con id=n',
'Will display the text centered' => 'Muestra el texto centrado',
'Will display using the indicated HTML color' => 'Se mostrará usando el color HTML indicado',
'Windows' => 'Windows',
'wink' => 'guiño',
'with checked' => 'con marcados',
'with role' => 'con rol',
'with roles' => 'con roles',
'Word' => 'Palabra',
'Workflow' => 'Workflow',
'Workflow engine' => 'Engine de Workflow',
'Workitem information' => 'Informacion Workitem',
'Workitems' => 'Workitems',
'Worst day' => 'Peor día',
'Write a note' => 'Escribir una nota',
'Write note' => 'Escribir nota',
'Wrong passcode you need to know the passcode to register in this site' => 'Código de registración inválido, necesita un código de registración válido',
'Wrong password. Cannot post comment' => 'Clave incorrecta. No puede ponear comentario',
'Wrong registration code' => 'Código de registración erróneo',
'x' => 'x',
'XMLRPC API' => 'XMLRPC API',
'Year' => 'Año',
'Year:' => 'Año:',
'Yes' => 'si',
'You are about to remove the page' => 'Esta a punto de eliminar la página',
'You are banned from' => 'Está baneado de',
'You are editing block:' => 'Esta editando el bloque:',
'You are not logged in' => 'No esta loggeado',
'You are not logged in and no user indicated' => 'No esta logueado y no hay usuario indicado',
'You are not permitted to edit someone else\'s post!' => 'No tiene permitido editar el post de alguien más!',
'You are not permitted to remove someone else\'s post!' => 'No tiene permitido borrar el post de alguien más!',
'You can access the file gallery using the following URL' => 'Puede acceder a la galería usando esta URL',
'You can access the gallery using the following URL' => 'Puede acceder a la galería usando la URL',
'You can always cancel your subscription using:' => 'Siempre puede cancelar su subscripción usando:',
'You can browse the generated WebHelp here' => 'Puede navegar el WebHelp generado aquí',
'You can browse this site on your mobile device by directing your device\'s browser towards the following URL here on this site:' => 'Puede navegar este sitio con su dispositivo móvil dirigiendo su navegador hacia la siguiente URL en este sitio:',
'You can download this file using' => 'Puede bajar el archivo usando',
'You can edit the map following this link:' => 'Puede editar el mapa siguiendo este enlace:',
'You can edit the page following this link:' => 'Puede editar la página siguiendo este enlace:',
'You can edit the submission following this link:' => 'Puede editar el envío siguiendo este enlace:',
'You can include the image in an Wiki page using' => 'Puede incluir la imágen en una página wiki usando',
'You cannot admin blogs' => 'No tiene permiso para administrar blogs',
'You can not download files' => 'No puede bajar archivos',
'You cannot edit this page because it is a user personal page' => 'No puede editar esta página por ser la página personal de un usuario',
'You cannot take this quiz twice' => 'No puede tomar el cuestionario dos veces',
'You cannot take this survey twice' => 'No puede volver a responder la encuesta',
'You can not use the same password again' => 'No puede usar la misma clave otra vez',
'You cant download files' => 'No puede bajar archivos',
'You cant execute this activity' => 'No puede ejecutar esta actividad',
'You can\'t post in any blog maybe you have to create a blog first' => 'No puede postear, deberia crear un blog antes?',
'You cant use the same password again' => 'No puede volver a usar la mismo clave',
'You can unsubscribe from this newsletter following this link' => 'Puede dessubscribirse de este boletin siguiendo este enlace',
'You can view the page by following this link:
{$mail_machine}/wiki/index.php?page={$mail_page|escape:"url"}' => 'Puede ver la página siguiendo este enlace:
{$mail_machine}/wiki/index.php?page={$mail_page|escape:"url"}',
'You can view the page following this link:' => 'Puede ver la página siguiendo este enlace:',
'You can view the updated map following this link:' => 'Puede ver el mapa actualizado siguiendo este enlace:',
'You can view this image in your browser using' => 'Puede visualizar esta imágen en su navegador usando',
'You can view this map in your browser using' => 'Puede ver este mapa en su navegador usando',
'You do not have permissions to create a directory' => 'No tiene permiso para crear directorios',
'You do not have permissions to create an index file' => 'No tiene permisos para crear archivos de índice',
'You do not have permissions to delete a directory' => 'No tiene permisos para borrar directorios',
'You do not have permissions to delete a file' => 'No tiene permiso para borrar archivos',
'You do not have permissions to view the layers' => 'No tiene permisos para ver las capas',
'You do not have permissions to view the maps' => 'No tiene permiso para ver los mapas',
'You do not have permission to use this feature' => 'No tiene permiso para usar esta función',
'You do not have permission to use this feature.' => 'No tiene permiso para usar esta característica.',
'You don\'t get any emails, we don\'t sell the data about your site.' => 'No recibirá emails, no venderemos los datos acerca de su sitio.',
'You dont have permissions to edit banners' => 'No tiene permiso para editar banners',
'You dont have permission to delete the mapfile' => 'No tiene permiso para borrar el mapa',
'You dont have permission to do that' => 'No tiene permisos',
'You dont have permission to edit messages' => 'No tiene permiso para editar mensajes',
'You dont have permission to edit this banner' => 'No tiene permiso para editar este banner',
'You dont have permission to read the mapfile' => 'No tiene permiso para leer el mapa',
'You dont have permission to read the template' => 'No tiene permiso para leer la plantilla',
'You dont have permission to use this feature' => 'No tiene permiso para usar este módulo',
'You dont have permission to view other users data' => 'No tiene permiso para ver datos de otros usuarios',
'You dont have permission to write the style sheet' => 'No tiene permiso para escribir la style sheet',
'You dont have permission to write the template' => 'No tiene permiso para escribir la plantilla',
'You dont have permission to write to the mapfile' => 'No tiene permiso para escribir en el mapa',
'You have' => 'Tiene',
'you have requested to download the layer:' => 'solicitó bajar la capa:',
'You have to create a gallery first!' => 'Debe crear una galería primero!',
'You have to create a topic first' => 'Tiene que crear un tópico primero',
'You have to enter a title and text' => 'Debe entrar un título y texto',
'You have to provide a hotword and a URL' => 'Tiene que proveer una hotword y una URL',
'You have to provide a name to the file' => 'Debe indicar un nombre de archivo',
'You have to provide a name to the image' => 'Tiene que ingresar un nombre para la imágen',
'You have to type a searchword' => 'Tiene que escribir una palabra a buscar',
'You must be logged in to subscribe to newsletters' => 'Debe estar logeado para poder suscribirse a boletines',
'You must log in to use this feature' => 'Debe estar logeado para usar esta característica',
'You must provide a longname' => 'Debe dar un nombre largo',
'You must specify a page name, it will be created if it doesn\'t exist.' => 'Debe especificar un nombre de página, será creado si no existe.',
'You must supply all the information, including title and year.' => 'Debe dar toda la información, incluyendo título y año.',
'you or someone registered this email address at' => 'usted o alguien regitró esta dirección de mail en',
'Your admin password has been changed' => 'Su clave de admin ha sido cambiada',
'Your current avatar' => 'Su avatar actual',
'Your email address has been added to the list of addresses monitoring this item' => 'Su dirección de correo ha sido agregada a la lista de direcciones monitoreadoras de este item',
'Your email address has been added to the list of addresses monitoring this tracker' => 'Su dirección de correo ha sido borrada de la lista de direcciones monitoreando este tracker',
'Your email address has been removed from the list of addresses monitoring this item' => 'Su dirección de correo ha sido borrada de la lista de direcciones monitoreadoras de este item',
'Your email address has been removed from the list of addresses monitoring this tracker' => 'Su dirección de correo ha sido borrada de la lista de direcciones monitoreando este tracker',
'Your email address was removed from the list of subscriptors.' => 'Su direccion de mail ha sido removida de la lista de subscriptores.',
'Your email could not be validated; make sure you email is correct and click register below.' => 'Su email no puede ser validado; asegúrese que su email es correcto y cliquee registro abajo.',
'Your email was sent' => 'Su email ha sido enviado',
'Your personal Wiki Page' => 'Su página personal en el Wiki',
'Your registration code:' => 'Su código de registración:',
'Your registration information' => 'Su información de registración',
'Your request is being processed' => 'Su pedido está siendo procesado',
'You should first ask that a calendar is created, so you can create events attached to it.' => 'Debe primero preguntar si un calendario esta creado, asi puede asociar eventos a el.',
'You will receive an email with information to login for the first time into this site' => 'Recibirá un email con informacion para loguearse por primera vez en este sitio',
'You will receive an email with your password soon' => 'Recibira un email con su clave pronto',
'You will remove' => 'Usted borrará',
'zone' => 'sección',
];
?>
|