aboutsummaryrefslogtreecommitdiffstats
path: root/view/es-es/strings.php
blob: 0f5587c56cc937056e5c3f09706fca56a3efe0da (plain) (blame)
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
<?php

if(! function_exists("string_plural_select_es")) {
function string_plural_select_es($n){
	return ($n != 1);;
}}
;
App::$strings["Cannot locate DNS info for database server '%s'"] = "No se ha podido localizar información de DNS para el servidor de base de datos “%s”";
App::$strings["Profile Photos"] = "Fotos de perfil";
App::$strings["Edit"] = "Editar";
App::$strings["Frequently"] = "Frecuentemente";
App::$strings["Hourly"] = "Cada hora";
App::$strings["Twice daily"] = "Dos veces al día";
App::$strings["Daily"] = "Diariamente";
App::$strings["Weekly"] = "Semanalmente";
App::$strings["Monthly"] = "Mensualmente";
App::$strings["Friendica"] = "Friendica";
App::$strings["OStatus"] = "OStatus";
App::$strings["RSS/Atom"] = "RSS/Atom";
App::$strings["Email"] = "Correo electrónico";
App::$strings["Diaspora"] = "Diaspora";
App::$strings["Facebook"] = "Facebook";
App::$strings["Zot!"] = "Zot!";
App::$strings["LinkedIn"] = "LinkedIn";
App::$strings["XMPP/IM"] = "XMPP/IM";
App::$strings["MySpace"] = "MySpace";
App::$strings["created a new post"] = "ha creado una nueva entrada";
App::$strings["commented on %s's post"] = "ha comentado la entrada de %s";
App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero importado.";
App::$strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación.";
App::$strings["Import completed."] = "Importación completada.";
App::$strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. <strong>Es posible</strong> que los permisos existentes  sean aplicados a este grupo y sus futuros miembros. Si no quiere esto por favor cree otro grupo con un nombre diferente.";
App::$strings["Default privacy group for new contacts"] = "Privacidad de grupo por defecto para nuevos contactos ";
App::$strings["All Channels"] = "Todos los canales";
App::$strings["edit"] = "editar";
App::$strings["Collections"] = "Colecciones";
App::$strings["Edit collection"] = "Editar colección";
App::$strings["Add new collection"] = "Añadir nueva colección";
App::$strings["Channels not in any collection"] = "El canal no se encuentra en ninguna colección";
App::$strings["add"] = "añadir";
App::$strings["Not a valid email address"] = "Dirección de correo no válida";
App::$strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a los dominios permitidos en este sitio.";
App::$strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio.";
App::$strings["An invitation is required."] = "Es obligatorio que le inviten.";
App::$strings["Invitation could not be verified."] = "No se ha podido verificar su invitación.";
App::$strings["Please enter the required information."] = "Por favor introduzca la información requerida.";
App::$strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar.";
App::$strings["Registration confirmation for %s"] = "Confirmación de registro para %s";
App::$strings["Registration request at %s"] = "Solicitud de registro en %s";
App::$strings["Administrator"] = "Administrador";
App::$strings["your registration password"] = "su contraseña de registro";
App::$strings["Registration details for %s"] = "Detalles del registro de %s";
App::$strings["Account approved."] = "Cuenta aprobada.";
App::$strings["Registration revoked for %s"] = "Registro revocado para %s";
App::$strings["Account verified. Please login."] = "Cuenta verificada. Por favor, inicie sesión.";
App::$strings["Click here to upgrade."] = "Pulse aquí para actualizar";
App::$strings["This action exceeds the limits set by your subscription plan."] = "Esta acción supera los límites establecidos por su plan de suscripción ";
App::$strings["This action is not available under your subscription plan."] = "Esta acción no está disponible en su plan de suscripción.";
App::$strings["Miscellaneous"] = "Varios";
App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD";
App::$strings["Required"] = "Obligatorio";
App::$strings["never"] = "nunca";
App::$strings["less than a second ago"] = "hace un instante";
App::$strings["year"] = "año";
App::$strings["years"] = "años";
App::$strings["month"] = "mes";
App::$strings["months"] = "meses";
App::$strings["week"] = "semana";
App::$strings["weeks"] = "semanas";
App::$strings["day"] = "día";
App::$strings["days"] = "días";
App::$strings["hour"] = "hora";
App::$strings["hours"] = "horas";
App::$strings["minute"] = "minuto";
App::$strings["minutes"] = "minutos";
App::$strings["second"] = "segundo";
App::$strings["seconds"] = "segundos";
App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s";
App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s";
App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s";
App::$strings["Directory Options"] = "Opciones del directorio";
App::$strings["Safe Mode"] = "Modo seguro";
App::$strings["No"] = "No";
App::$strings["Yes"] = "Sí";
App::$strings["Public Forums Only"] = "Solo foros públicos";
App::$strings["This Website Only"] = "Solo este sitio web";
App::$strings["New Page"] = "Nueva página";
App::$strings["View"] = "Ver";
App::$strings["Preview"] = "Previsualizar";
App::$strings["Actions"] = "Acciones";
App::$strings["Page Link"] = "Vínculo de la página";
App::$strings["Title"] = "Título";
App::$strings["Created"] = "Creado";
App::$strings["Edited"] = "Editado";
App::$strings["Public Timeline"] = "Cronología pública";
App::$strings["Default"] = "Predeterminado";
App::$strings["Delete this item?"] = "¿Borrar este elemento?";
App::$strings["Comment"] = "Comentar";
App::$strings["[+] show all"] = "[+] mostrar todo:";
App::$strings["[-] show less"] = "[-] mostrar menos";
App::$strings["[+] expand"] = "[+] expandir";
App::$strings["[-] collapse"] = "[-] contraer";
App::$strings["Password too short"] = "Contraseña demasiado corta";
App::$strings["Passwords do not match"] = "Las contraseñas no cinciden";
App::$strings["everybody"] = "cualquiera";
App::$strings["Secret Passphrase"] = "Contraseña secreta";
App::$strings["Passphrase hint"] = "Pista de contraseña";
App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Aviso: los permisos han cambiado pero aún no han sido enviados.";
App::$strings["close all"] = "cerrar todo";
App::$strings["Nothing new here"] = "Nada nuevo por aquí";
App::$strings["Rate This Channel (this is public)"] = "Valorar este canal (esto es público)";
App::$strings["Rating"] = "Valoración";
App::$strings["Describe (optional)"] = "Describir (opcional)";
App::$strings["Submit"] = "Enviar";
App::$strings["Please enter a link URL"] = "Por favor, introduzca una dirección de enlace";
App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Cambios no guardados. ¿Está seguro de que desea abandonar la página?";
App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo";
App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
App::$strings["ago"] = "de su publicación";
App::$strings["from now"] = "desde ahora";
App::$strings["less than a minute"] = "menos de un minuto";
App::$strings["about a minute"] = "alrededor de un minuto";
App::$strings["%d minutes"] = "%d minutos";
App::$strings["about an hour"] = "alrededor de una hora";
App::$strings["about %d hours"] = "alrededor de %d horas";
App::$strings["a day"] = "un día";
App::$strings["%d days"] = "%d días";
App::$strings["about a month"] = "alrededor de un mes";
App::$strings["%d months"] = "%d meses";
App::$strings["about a year"] = "alrededor de un año";
App::$strings["%d years"] = "%d años";
App::$strings[" "] = " ";
App::$strings["timeago.numbers"] = "timeago.numbers";
App::$strings["prev"] = "anterior";
App::$strings["first"] = "primera";
App::$strings["last"] = "última";
App::$strings["next"] = "próxima";
App::$strings["older"] = "más antiguas";
App::$strings["newer"] = "más recientes";
App::$strings["No connections"] = "Sin conexiones";
App::$strings["%d Connection"] = array(
	0 => "%d Conexión",
	1 => "%d Conexiones",
);
App::$strings["View Connections"] = "Ver conexiones";
App::$strings["Search"] = "Buscar";
App::$strings["Save"] = "Guardar";
App::$strings["poke"] = "un toque";
App::$strings["poked"] = "ha recibido un toque";
App::$strings["ping"] = "un \"ping\"";
App::$strings["pinged"] = "avisado/a";
App::$strings["prod"] = "incitar";
App::$strings["prodded"] = "incitado/a";
App::$strings["slap"] = "abofetear";
App::$strings["slapped"] = "abofeteado/a";
App::$strings["finger"] = "un \"finger\"";
App::$strings["fingered"] = "ha recibido un \"finger\"";
App::$strings["rebuff"] = "un rechazo";
App::$strings["rebuffed"] = "ha sido rechazado/a";
App::$strings["happy"] = "feliz";
App::$strings["sad"] = "triste";
App::$strings["mellow"] = "amable";
App::$strings["tired"] = "cansado/a";
App::$strings["perky"] = "fesco/a";
App::$strings["angry"] = "enfadado/a";
App::$strings["stupified"] = "estupefacto/a";
App::$strings["puzzled"] = "perplejo/a";
App::$strings["interested"] = "interesado/a";
App::$strings["bitter"] = "amargado/a";
App::$strings["cheerful"] = "alegre";
App::$strings["alive"] = "vivo/a";
App::$strings["annoyed"] = "molesto/a";
App::$strings["anxious"] = "ansioso/a";
App::$strings["cranky"] = "de mal humor";
App::$strings["disturbed"] = "perturbado/a";
App::$strings["frustrated"] = "frustrado/a";
App::$strings["depressed"] = "deprimido/a";
App::$strings["motivated"] = "motivado/a";
App::$strings["relaxed"] = "relajado/a";
App::$strings["surprised"] = "sorprendido/a";
App::$strings["Monday"] = "lunes";
App::$strings["Tuesday"] = "martes";
App::$strings["Wednesday"] = "miércoles";
App::$strings["Thursday"] = "jueves";
App::$strings["Friday"] = "viernes";
App::$strings["Saturday"] = "sábado";
App::$strings["Sunday"] = "domingo";
App::$strings["January"] = "enero";
App::$strings["February"] = "febrero";
App::$strings["March"] = "marzo";
App::$strings["April"] = "abril";
App::$strings["May"] = "mayo";
App::$strings["June"] = "junio";
App::$strings["July"] = "julio";
App::$strings["August"] = "agosto";
App::$strings["September"] = "septiembre";
App::$strings["October"] = "octubre";
App::$strings["November"] = "noviembre";
App::$strings["December"] = "diciembre";
App::$strings["unknown.???"] = "desconocido???";
App::$strings["bytes"] = "bytes";
App::$strings["remove category"] = "eliminar categoría";
App::$strings["remove from file"] = "eliminar del fichero";
App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar";
App::$strings["Link to Source"] = "Enlazar con la entrada en su ubicación original";
App::$strings["default"] = "por defecto";
App::$strings["Page layout"] = "Formato de la página";
App::$strings["You can create your own with the layouts tool"] = "Puede crear su propio formato gráfico con las herramientas de diseño";
App::$strings["Page content type"] = "Tipo de contenido de página";
App::$strings["Select an alternate language"] = "Selecciona un idioma alternativo";
App::$strings["photo"] = "foto";
App::$strings["event"] = "evento";
App::$strings["status"] = "el mensaje de estado";
App::$strings["comment"] = "comentario";
App::$strings["activity"] = "actividad";
App::$strings["Design Tools"] = "Herramientas de diseño";
App::$strings["Blocks"] = "Bloques";
App::$strings["Menus"] = "Menús";
App::$strings["Layouts"] = "Formato gráfico";
App::$strings["Pages"] = "Páginas";
App::$strings["Collection"] = "Colección";
App::$strings["parent"] = "padre";
App::$strings["Principal"] = "Principal";
App::$strings["Addressbook"] = "Libreta de direcciones";
App::$strings["Calendar"] = "Calendario";
App::$strings["Schedule Inbox"] = "Programar bandeja de entrada";
App::$strings["Schedule Outbox"] = "Programar bandeja de salida";
App::$strings["Unknown"] = "Desconocido";
App::$strings["%1\$s used"] = "%1\$s usado";
App::$strings["%1\$s used of %2\$s (%3\$s&#37;)"] = "%1\$s usado de %2\$s (%3\$s&#37;)";
App::$strings["Files"] = "Ficheros";
App::$strings["Total"] = "Total";
App::$strings["Shared"] = "Compartido";
App::$strings["Create"] = "Crear";
App::$strings["Upload"] = "Subir";
App::$strings["Name"] = "Nombre";
App::$strings["Type"] = "Tipo";
App::$strings["Size"] = "Tamaño";
App::$strings["Last Modified"] = "Última modificación";
App::$strings["Delete"] = "Borrar";
App::$strings["Create new folder"] = "Crear nueva carpeta";
App::$strings["Upload file"] = "Subir fichero";
App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s";
App::$strings["view full size"] = "Ver en el tamaño original";
App::$strings["\$Projectname Notification"] = "Notificación de \$Projectname";
App::$strings["\$projectname"] = "\$projectname";
App::$strings["Thank You,"] = "Gracias,";
App::$strings["%s Administrator"] = "Administrador de %s";
App::$strings["No Subject"] = "Sin asunto";
App::$strings["General Features"] = "Características generales";
App::$strings["Content Expiration"] = "Caducidad del contenido";
App::$strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante";
App::$strings["Multiple Profiles"] = "Múltiples perfiles";
App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles";
App::$strings["Advanced Profiles"] = "Perfiles avanzados";
App::$strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales";
App::$strings["Profile Import/Export"] = "Importar/Exportar perfil";
App::$strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales";
App::$strings["Web Pages"] = "Páginas web";
App::$strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal";
App::$strings["Private Notes"] = "Notas privadas";
App::$strings["Enables a tool to store notes and reminders"] = "Activar una herramienta para almacenar notas y recordatorios";
App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales";
App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar canales directamente desde el menú de navegación desplegable";
App::$strings["Photo Location"] = "Ubicación de las fotos";
App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlaza estas a un mapa.";
App::$strings["Expert Mode"] = "Modo de experto";
App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Habilitar el modo de experto para acceder a opciones avanzadas de configuración";
App::$strings["Premium Channel"] = "Canal premium";
App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Les permite configurar restricciones y normas de uso a aquellos que conectan con su canal";
App::$strings["Post Composition Features"] = "Características de composición de entradas";
App::$strings["Use Markdown"] = "Usar Markdown";
App::$strings["Allow use of \"Markdown\" to format posts"] = "Permitir el uso de \"Markdown\" para formatear publicaciones";
App::$strings["Large Photos"] = "Fotos de gran tamaño";
App::$strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (640px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (320px)";
App::$strings["Channel Sources"] = "Orígenes de los contenidos del canal";
App::$strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\"";
App::$strings["Even More Encryption"] = "Más cifrado todavía";
App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido punto-a-punto con una clave secreta compartida.";
App::$strings["Enable voting tools"] = "Activar herramientas de votación";
App::$strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar";
App::$strings["Network and Stream Filtering"] = "Filtrado del contenido";
App::$strings["Search by Date"] = "Buscar por fecha";
App::$strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas";
App::$strings["Collections Filter"] = "Filtrado de colecciones";
App::$strings["Enable widget to display Network posts only from selected collections"] = "Habilitar la muestra de entradas eligiendo colecciones";
App::$strings["Saved Searches"] = "Búsquedas guardadas";
App::$strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización";
App::$strings["Network Personal Tab"] = "Pestaña de red personal";
App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado.";
App::$strings["Network New Tab"] = "Nueva pestaña de red";
App::$strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre toda la actividad de la red";
App::$strings["Affinity Tool"] = "Herramienta de afinidad";
App::$strings["Filter stream activity by depth of relationships"] = "Filtrar la actividad del flujo por profundidad de relaciones";
App::$strings["Connection Filtering"] = "Filtrado de conexiones";
App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones basadas en palabras clave / contenido";
App::$strings["Suggest Channels"] = "Sugerir canales";
App::$strings["Show channel suggestions"] = "Mostrar sugerencias de canales";
App::$strings["Post/Comment Tools"] = "Herramientas de entradas/comentarios";
App::$strings["Tagging"] = "Etiquetado";
App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes";
App::$strings["Post Categories"] = "Categorías de entradas";
App::$strings["Add categories to your posts"] = "Añadir categorías a sus publicaciones";
App::$strings["Saved Folders"] = "Carpetas guardadas";
App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas";
App::$strings["Dislike Posts"] = "Desagrado de publicaciones";
App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de  entradas y comentarios";
App::$strings["Star Posts"] = "Entradas destacadas";
App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella";
App::$strings["Tag Cloud"] = "Nube de etiquetas";
App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal";
App::$strings["Categories"] = "Categorías";
App::$strings["Apps"] = "Aplicaciones";
App::$strings["System"] = "Sistema";
App::$strings["Personal"] = "Personales";
App::$strings["Create Personal App"] = "Crear una aplicación personal";
App::$strings["Edit Personal App"] = "Editar una aplicación personal";
App::$strings["Connect"] = "Conectar";
App::$strings["Ignore/Hide"] = "Ignorar/Ocultar";
App::$strings["Suggestions"] = "Sugerencias";
App::$strings["See more..."] = "Ver más...";
App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tiene %1$.0f de %2$.0f conexiones permitidas.";
App::$strings["Add New Connection"] = "Añadir nueva conexión";
App::$strings["Enter the channel address"] = "Introducir la dirección del canal";
App::$strings["Example: bob@example.com, http://example.com/barbara"] = "Ejemplo: paco@ejemplo.com, http://ejemplo.com/paco";
App::$strings["Notes"] = "Notas";
App::$strings["Remove term"] = "Eliminar término";
App::$strings["Everything"] = "Todo";
App::$strings["Archives"] = "Hemeroteca";
App::$strings["Me"] = "Yo";
App::$strings["Family"] = "Familia";
App::$strings["Friends"] = "Amigos";
App::$strings["Acquaintances"] = "Conocidos/as";
App::$strings["All"] = "Todas";
App::$strings["Refresh"] = "Recargar";
App::$strings["Account settings"] = "Configuración de la cuenta";
App::$strings["Channel settings"] = "Configuración del canal";
App::$strings["Additional features"] = "Características adicionales";
App::$strings["Feature/Addon settings"] = "Configuración de características o complementos";
App::$strings["Display settings"] = "Ajustes de visualización";
App::$strings["Connected apps"] = "Aplicaciones conectadas";
App::$strings["Export channel"] = "Exportar canal";
App::$strings["Connection Default Permissions"] = "Permisos predeterminados de conexión";
App::$strings["Premium Channel Settings"] = "Configuración del canal premium";
App::$strings["Settings"] = "Ajustes";
App::$strings["Messages"] = "Mensajes";
App::$strings["Check Mail"] = "Comprobar correo";
App::$strings["New Message"] = "Nuevo mensaje";
App::$strings["Chat Rooms"] = "Salas de chat";
App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas";
App::$strings["Suggested Chatrooms"] = "Salas de chat sugeridas";
App::$strings["photo/image"] = "foto/imagen";
App::$strings["Rate Me"] = "Valorar este canal";
App::$strings["View Ratings"] = "Mostrar las valoraciones";
App::$strings["Public Hubs"] = "Servidores públicos";
App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i";
App::$strings["Starts:"] = "Comienza:";
App::$strings["Finishes:"] = "Finaliza:";
App::$strings["Location:"] = "Ubicación:";
App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario.";
App::$strings["%s <!item_type!>"] = "%s <!item_type!>";
App::$strings["[Red:Notify] New mail received at %s"] = "[Red:Aviso] Nuevo correo recibido en %s";
App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s le ha enviado un nuevo mensaje privado en %3\$s.";
App::$strings["%1\$s sent you %2\$s."] = "%1\$s le envió %2\$s.";
App::$strings["a private message"] = "un mensaje privado";
App::$strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado.";
App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado sobre [zrl=%3\$s]%4\$s[/zrl]";
App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%5\$s de %4\$s[/zrl]";
App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s creado por usted[/zrl]";
App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Aviso] Nuevo comentario de %2\$s en la conversación #%1\$d";
App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s comentó un elemento/conversación que ha estado siguiendo.";
App::$strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s";
App::$strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Aviso] %s escribió en su página de perfil";
App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s publicó en su página de perfil en %3\$s";
App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s publicó en [zrl=%3\$s]su página de perfil[/zrl]";
App::$strings["[Red:Notify] %s tagged you"] = "[Red:Aviso] %s le etiquetó";
App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le etiquetó en %3\$s";
App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl].";
App::$strings["[Red:Notify] %1\$s poked you"] = "[Red:Aviso]  %1\$s le ha dado un toque";
App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le dio un toque en %3\$s";
App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le dio un toque[/zrl].";
App::$strings["[Red:Notify] %s tagged your post"] = "[Red:Aviso]  %s etiquetó su entrada";
App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha etiquetado su publicación en %3\$s";
App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha etiquetado [zrl=%3\$s]su publicación[/zrl]";
App::$strings["[Red:Notify] Introduction received"] = "[Red:Aviso] Solicitud de conexión recibida";
App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en  %3\$s";
App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una nueva solicitud de conexión[/zrl] de %3\$s.";
App::$strings["You may visit their profile at %s"] = "Puede visitar su perfil en %s";
App::$strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para permitir o rechazar la solicitad de conexión.";
App::$strings["[Red:Notify] Friend suggestion received"] = "[Red:Aviso] recibió una sugerencia de conexión";
App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una sugerencia de conexión de '%2\$s' en %3\$s";
App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una sugerencia de conexión[/zrl] para %3\$s de %4\$s.";
App::$strings["Name:"] = "Nombre:";
App::$strings["Photo:"] = "Foto:";
App::$strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprobar o rechazar la sugerencia.";
App::$strings["[Red:Notify]"] = "[Red:Aviso]";
App::$strings["No recipient provided."] = "No se ha especificado ningún destinatario.";
App::$strings["[no subject]"] = "[sin asunto]";
App::$strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. ";
App::$strings["Stored post could not be verified."] = "No se han podido verificar las entradas guardadas.";
App::$strings["%1\$s likes %2\$s's %3\$s"] = "a %1\$s le gusta el %3\$s de %2\$s";
App::$strings["Please choose"] = "Por favor, elija";
App::$strings["Agree"] = "De acuerdo";
App::$strings["Disagree"] = "En desacuerdo";
App::$strings["Abstain"] = "Abstención";
App::$strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio.";
App::$strings["Channel location missing."] = "Falta la ubicación del canal.";
App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal.";
App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe.";
App::$strings["Protocol disabled."] = "Protocolo deshabilitado.";
App::$strings["Protocol blocked for this channel."] = "Protocolo bloqueado para este canal.";
App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado.";
App::$strings["local account not found."] = "No se ha encontrado la cuenta local.";
App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo.";
App::$strings["Private Message"] = "Mensaje Privado";
App::$strings["Select"] = "Seleccionar";
App::$strings["Save to Folder"] = "Guardar en carpeta";
App::$strings["I will attend"] = "Participaré";
App::$strings["I will not attend"] = "No participaré";
App::$strings["I might attend"] = "Quizá participe";
App::$strings["I agree"] = "Estoy de acuerdo";
App::$strings["I disagree"] = "No estoy de acuerdo";
App::$strings["I abstain"] = "Me abstengo";
App::$strings["View all"] = "Ver todo";
App::$strings["__ctx:noun__ Like"] = array(
	0 => "Me gusta",
	1 => "Me gusta",
);
App::$strings["__ctx:noun__ Dislike"] = array(
	0 => "No me gusta",
	1 => "No me gusta",
);
App::$strings["Add Star"] = "Destacar añadiendo una estrella";
App::$strings["Remove Star"] = "Eliminar estrella";
App::$strings["Toggle Star Status"] = "Activar o desactivar el estado de entrada preferida";
App::$strings["starred"] = "preferidas";
App::$strings["Message signature validated"] = "Firma de mensaje validada";
App::$strings["Message signature incorrect"] = "Firma de mensaje incorrecta";
App::$strings["Add Tag"] = "Añadir etiqueta";
App::$strings["I like this (toggle)"] = "me gusta (cambiar)";
App::$strings["like"] = "me gusta";
App::$strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)";
App::$strings["dislike"] = "no me gusta";
App::$strings["Share This"] = "Compartir esto";
App::$strings["share"] = "compartir";
App::$strings["%d comment"] = array(
	0 => "%d comentario",
	1 => "%d comentarios",
);
App::$strings["View %s's profile - %s"] = "Ver el perfil de %s - %s";
App::$strings["to"] = "a";
App::$strings["via"] = "mediante";
App::$strings["Wall-to-Wall"] = "De página de perfil a página de perfil (de Muro a Muro)";
App::$strings["via Wall-To-Wall:"] = "Mediante el procedimiento página de perfil a página de perfil (de Muro a Muro)";
App::$strings["from %s"] = "desde %s";
App::$strings["last edited: %s"] = "último cambio: %s";
App::$strings["Expires: %s"] = "Caduca: %s";
App::$strings["Save Bookmarks"] = "Guardar en Marcadores";
App::$strings["Add to Calendar"] = "Añadir al calendario";
App::$strings["Mark all seen"] = "Marcar todo como visto";
App::$strings["__ctx:noun__ Likes"] = "Me gusta";
App::$strings["__ctx:noun__ Dislikes"] = "No me gusta";
App::$strings["Close"] = "Cerrar";
App::$strings["Please wait"] = "Espera por favor";
App::$strings["This is you"] = "Este es usted";
App::$strings["Bold"] = "Negrita";
App::$strings["Italic"] = "Itálico ";
App::$strings["Underline"] = "Subrayar";
App::$strings["Quote"] = "Citar";
App::$strings["Code"] = "Código";
App::$strings["Image"] = "Imagen";
App::$strings["Insert Link"] = "Insertar enlace";
App::$strings["Video"] = "Vídeo";
App::$strings["Encrypt text"] = "Cifrar texto";
App::$strings["New window"] = "Nueva ventana";
App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la ubicación seleccionada en una ventana o pestaña aparte";
App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado";
App::$strings["Attachments:"] = "Ficheros adjuntos:";
App::$strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:";
App::$strings["Logout"] = "Finalizar sesión";
App::$strings["End this session"] = "Finalizar esta sesión";
App::$strings["Home"] = "Inicio";
App::$strings["Your posts and conversations"] = "Sus entradas y conversaciones";
App::$strings["View Profile"] = "Ver el perfil";
App::$strings["Your profile page"] = "Su página de perfil";
App::$strings["Edit Profiles"] = "Editar perfiles";
App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles";
App::$strings["Edit Profile"] = "Editar perfil";
App::$strings["Edit your profile"] = "Editar su perfil";
App::$strings["Photos"] = "Fotos";
App::$strings["Your photos"] = "Sus fotos";
App::$strings["Your files"] = "Sus ficheros";
App::$strings["Chat"] = "Chat";
App::$strings["Your chatrooms"] = "Sus salas de chat";
App::$strings["Bookmarks"] = "Marcadores";
App::$strings["Your bookmarks"] = "Sus marcadores";
App::$strings["Webpages"] = "Páginas web";
App::$strings["Your webpages"] = "Sus páginas web";
App::$strings["Login"] = "Iniciar sesión";
App::$strings["Sign in"] = "Acceder";
App::$strings["%s - click to logout"] = "%s - pulsar para finalizar sesión";
App::$strings["Remote authentication"] = "Acceder desde su servidor";
App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio";
App::$strings["Home Page"] = "Página de inicio";
App::$strings["Register"] = "Registrarse";
App::$strings["Create an account"] = "Crear una cuenta";
App::$strings["Help"] = "Ayuda";
App::$strings["Help and documentation"] = "Ayuda y documentación";
App::$strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos";
App::$strings["Search site content"] = "Buscar contenido del sitio";
App::$strings["Directory"] = "Directorio";
App::$strings["Channel Directory"] = "Directorio de canales";
App::$strings["Matrix"] = "RedMatrix";
App::$strings["Your matrix"] = "Su red";
App::$strings["Mark all matrix notifications seen"] = "Marcar todas las notificaciones de la red como leídas";
App::$strings["Channel Home"] = "Mi canal";
App::$strings["Channel home"] = "Mi canal";
App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas";
App::$strings["Connections"] = "Conexiones";
App::$strings["Notices"] = "Avisos";
App::$strings["Notifications"] = "Notificaciones";
App::$strings["See all notifications"] = "Ver todas las notificaciones";
App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas";
App::$strings["Mail"] = "Correo";
App::$strings["Private mail"] = "Correo privado";
App::$strings["See all private messages"] = "Ver todas los mensajes privados";
App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos";
App::$strings["Inbox"] = "Bandeja de entrada";
App::$strings["Outbox"] = "Bandeja de salida";
App::$strings["Events"] = "Eventos";
App::$strings["Event Calendar"] = "Calendario de eventos";
App::$strings["See all events"] = "Ver todos los eventos";
App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos";
App::$strings["Channel Manager"] = "Administración de canales";
App::$strings["Manage Your Channels"] = "Gestionar sus canales";
App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales";
App::$strings["Admin"] = "Administrador";
App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio";
App::$strings["Loading..."] = "Cargando...";
App::$strings["@name, #tag, content"] = "@nombre, #etiqueta, contenido";
App::$strings["Please wait..."] = "Espere por favor…";
App::$strings["Tags"] = "Etiquetas";
App::$strings["Keywords"] = "Palabras clave";
App::$strings["have"] = "tener";
App::$strings["has"] = "tiene";
App::$strings["want"] = "quiero";
App::$strings["wants"] = "quiere";
App::$strings["likes"] = "le gusta";
App::$strings["dislikes"] = "no le gusta";
App::$strings[" and "] = "y";
App::$strings["public profile"] = "perfil público";
App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s cambió %2\$s a &ldquo;%3\$s&rdquo;";
App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s";
App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s actualizó %2\$s,  %3\$s cambió.";
App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado";
App::$strings["Can view my normal stream and posts"] = "Pueden verse mi flujo de actividad y publicaciones normales";
App::$strings["Can view my default channel profile"] = "Puede verse mi perfil de canal predeterminado.";
App::$strings["Can view my photo albums"] = "Pueden verse mis álbumes de fotos";
App::$strings["Can view my connections"] = "Pueden verse mis conexiones";
App::$strings["Can view my file storage"] = "Puede verse mi repositorio de ficheros";
App::$strings["Can view my webpages"] = "Pueden verse mis páginas web";
App::$strings["Can send me their channel stream and posts"] = "Me pueden enviar sus entradas y flujo de actividad su canal";
App::$strings["Can post on my channel page (\"wall\")"] = "Pueden crear entradas en mi página de inicio del canal (“muro”)";
App::$strings["Can comment on or like my posts"] = "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'.";
App::$strings["Can send me private mail messages"] = "Se me pueden enviar mensajes privados";
App::$strings["Can post photos to my photo albums"] = "Pueden publicarse fotos en mis álbumes";
App::$strings["Can like/dislike stuff"] = "Puede marcarse contenido como me gustar/no me gusta.";
App::$strings["Profiles and things other than posts/comments"] = "Perfiles y otras cosas aparte de publicaciones/comentarios";
App::$strings["Can forward to all my channel contacts via post @mentions"] = "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención";
App::$strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foro o grupos";
App::$strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)";
App::$strings["Can write to my file storage"] = "Puede escribirse en mi repositorio de ficheros";
App::$strings["Can edit my webpages"] = "Puede editar mis páginas web";
App::$strings["Can source my public posts in derived channels"] = "Pueden utilizarse mis publicaciones públicas como origen de contenidos  en canales derivados";
App::$strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas";
App::$strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal";
App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo.";
App::$strings["Social Networking"] = "Redes sociales";
App::$strings["Mostly Public"] = "Público en su mayor parte";
App::$strings["Restricted"] = "Restringido";
App::$strings["Private"] = "Privado";
App::$strings["Community Forum"] = "Foro de discusión";
App::$strings["Feed Republish"] = "Republicar un \"feed\"";
App::$strings["Special Purpose"] = "Propósito especial";
App::$strings["Celebrity/Soapbox"] = "Página para fans";
App::$strings["Group Repository"] = "Repositorio de grupo";
App::$strings["Other"] = "Otro";
App::$strings["Custom/Expert Mode"] = "Modo personalizado/experto";
App::$strings["channel"] = "canal";
App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "a %1\$s no le gusta el %3\$s de %2\$s";
App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado con %2\$s";
App::$strings["%1\$s poked %2\$s"] = "%1\$s dio un toque a %2\$s";
App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s";
App::$strings["__ctx:title__ Likes"] = "Me gusta";
App::$strings["__ctx:title__ Dislikes"] = "No me gusta";
App::$strings["__ctx:title__ Agree"] = "De acuerdo";
App::$strings["__ctx:title__ Disagree"] = "En desacuerdo";
App::$strings["__ctx:title__ Abstain"] = "Abstención";
App::$strings["__ctx:title__ Attending"] = "Participaré";
App::$strings["__ctx:title__ Not attending"] = "No participaré";
App::$strings["__ctx:title__ Might attend"] = "Quizá participe";
App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s";
App::$strings["Categories:"] = "Categorías:";
App::$strings["Filed under:"] = "Archivado bajo:";
App::$strings["View in context"] = "Mostrar en su contexto";
App::$strings["remove"] = "eliminar";
App::$strings["Delete Selected Items"] = "Eliminar elementos seleccionados";
App::$strings["View Source"] = "Ver la fuente original de la entrada";
App::$strings["Follow Thread"] = "Seguir el hilo";
App::$strings["View Status"] = "Estado actual";
App::$strings["View Photos"] = "Ver fotos";
App::$strings["Matrix Activity"] = "Actividad en la red de esta conexión";
App::$strings["Edit Contact"] = "Editar contacto";
App::$strings["Send PM"] = "Enviar Mensaje Privado";
App::$strings["Poke"] = "Toques y otras cosas";
App::$strings["%s likes this."] = "a %s le gusta esto.";
App::$strings["%s doesn't like this."] = "a %s no le gusta esto.";
App::$strings["<span  %1\$s>%2\$d people</span> like this."] = array(
	0 => "a <span %1\$s>%2\$d personas</span> le gusta esto.",
	1 => "a <span  %1\$s>%2\$d personas</span> les gusta esto.",
);
App::$strings["<span  %1\$s>%2\$d people</span> don't like this."] = array(
	0 => "a <span %1\$s>%2\$d personas</span> no les gusta esto.",
	1 => "a <span  %1\$s>%2\$d personas</span> no les gusta esto.",
);
App::$strings["and"] = "y";
App::$strings[", and %d other people"] = array(
	0 => ", y %d persona más",
	1 => ", y %d personas más",
);
App::$strings["%s like this."] = "a %s le gusta esto.";
App::$strings["%s don't like this."] = "a %s no le gusta esto.";
App::$strings["Visible to <strong>everybody</strong>"] = "Visible para <strong>cualquiera</strong>";
App::$strings["Please enter a link URL:"] = "Por favor, introduzca la dirección del enlace:";
App::$strings["Please enter a video link/URL:"] = "Por favor, introduzca un enlace de vídeo:";
App::$strings["Please enter an audio link/URL:"] = "Por favor, introduzca un enlace de audio:";
App::$strings["Tag term:"] = "Término de la etiqueta:";
App::$strings["Save to Folder:"] = "Guardar en carpeta:";
App::$strings["Where are you right now?"] = "¿Donde está ahora?";
App::$strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM";
App::$strings["Share"] = "Compartir";
App::$strings["Page link name"] = "Nombre de enlace de página";
App::$strings["Post as"] = "Publicar como";
App::$strings["Upload photo"] = "Subir foto";
App::$strings["upload photo"] = "subir foto";
App::$strings["Attach file"] = "Adjuntar fichero";
App::$strings["attach file"] = "adjuntar fichero";
App::$strings["Insert web link"] = "Insertar enlace web";
App::$strings["web link"] = "enlace web";
App::$strings["Insert video link"] = "Insertar enlace de vídeo";
App::$strings["video link"] = "enlace de vídeo";
App::$strings["Insert audio link"] = "Insertar enlace de audio";
App::$strings["audio link"] = "enlace de audio";
App::$strings["Set your location"] = "Configure su localización";
App::$strings["set location"] = "configure localización";
App::$strings["Toggle voting"] = "Cambiar votación";
App::$strings["Clear browser location"] = "Eliminar localización del navegador";
App::$strings["clear location"] = "eliminar localización";
App::$strings["Title (optional)"] = "Título (opcional)";
App::$strings["Categories (optional, comma-separated list)"] = "Categorías (opcional, lista separada por comas)";
App::$strings["Permission settings"] = "Configuración de permisos";
App::$strings["permissions"] = "permisos";
App::$strings["Public post"] = "Entrada pública";
App::$strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: roberto@ejemplo.com, maría@ejemplo.com";
App::$strings["Set expiration date"] = "Configurar fecha de caducidad";
App::$strings["OK"] = "OK";
App::$strings["Cancel"] = "Cancelar";
App::$strings["Discover"] = "Descubrir";
App::$strings["Imported public streams"] = "Flujos públicos importados";
App::$strings["Commented Order"] = "Comentarios recientes";
App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario";
App::$strings["Posted Order"] = "Publicaciones recientes";
App::$strings["Sort by Post Date"] = "Ordenar por fecha de publicación";
App::$strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran";
App::$strings["New"] = "Nuevas";
App::$strings["Activity Stream - by date"] = "Flujo de actividad - por fecha";
App::$strings["Starred"] = "Preferidas";
App::$strings["Favourite Posts"] = "Publicaciones favoritas";
App::$strings["Spam"] = "Correo basura";
App::$strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura";
App::$strings["Channel"] = "Canal";
App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones";
App::$strings["About"] = "Sobre mí";
App::$strings["Profile Details"] = "Detalles del perfil";
App::$strings["Photo Albums"] = "Álbumes de fotos";
App::$strings["Files and Storage"] = "Repositorio de ficheros";
App::$strings["Chatrooms"] = "Salas de chat";
App::$strings["Saved Bookmarks"] = "Marcadores guardados";
App::$strings["Manage Webpages"] = "Administrar páginas web";
App::$strings["__ctx:noun__ Attending"] = array(
	0 => "Asistir",
	1 => "Participaré",
);
App::$strings["__ctx:noun__ Not Attending"] = array(
	0 => "No asistir",
	1 => "No participaré",
);
App::$strings["__ctx:noun__ Undecided"] = array(
	0 => "Indeciso/a",
	1 => "Indecisos/as",
);
App::$strings["__ctx:noun__ Agree"] = array(
	0 => "Está de acuerdo",
	1 => "Están de acuerdo",
);
App::$strings["__ctx:noun__ Disagree"] = array(
	0 => "No está de acuerdo",
	1 => "No están de acuerdo",
);
App::$strings["__ctx:noun__ Abstain"] = array(
	0 => "se abstiene",
	1 => "Se abstienen",
);
App::$strings["Permission denied"] = "Permiso denegado";
App::$strings["(Unknown)"] = "(Desconocido)";
App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet.";
App::$strings["Visible to you only."] = "Visible sólo para usted.";
App::$strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red.";
App::$strings["Visible to anybody authenticated."] = "Visible para cualquiera que haya sido autenticado.";
App::$strings["Visible to anybody on %s."] = "Visible para cualquiera en %s.";
App::$strings["Visible to all connections."] = "Visible para todas las conexiones.";
App::$strings["Visible to approved connections."] = "Visible para las conexiones permitidas.";
App::$strings["Visible to specific connections."] = "Visible para conexiones específicas.";
App::$strings["Item not found."] = "Elemento no encontrado.";
App::$strings["Permission denied."] = "Acceso denegado.";
App::$strings["Collection not found."] = "Colección no encontrada.";
App::$strings["Collection is empty."] = "La colección está vacía.";
App::$strings["Collection: %s"] = "Colección: %s";
App::$strings["Connection: %s"] = "Conexión: %s";
App::$strings["Connection not found."] = "Conexión no encontrada";
App::$strings["Invalid data packet"] = "Paquete de datos no válido";
App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la signatura del canal";
App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la signatura del sitio para %s";
App::$strings["Embedded content"] = "Contenido incorporado";
App::$strings["Embedding disabled"] = "Incrustación deshabilitada";
App::$strings["Logged out."] = "Desconectado.";
App::$strings["Failed authentication"] = "Autenticación fallida.";
App::$strings["Login failed."] = "El acceso ha fallado.";
App::$strings["%d invitation available"] = array(
	0 => "%d invitación pendiente",
	1 => "%d invitaciones disponibles",
);
App::$strings["Advanced"] = "Avanzado";
App::$strings["Find Channels"] = "Encontrar canales";
App::$strings["Enter name or interest"] = "Introducir nombre o interés";
App::$strings["Connect/Follow"] = "Conectar/Seguir";
App::$strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: José Fernández, Pesca";
App::$strings["Find"] = "Encontrar";
App::$strings["Channel Suggestions"] = "Sugerencias de canales";
App::$strings["Random Profile"] = "Perfil aleatorio";
App::$strings["Invite Friends"] = "Invitar a amigos";
App::$strings["Advanced example: name=fred and country=iceland"] = "Ejemplo avanzado: nombre=juan y país=españa";
App::$strings["%d connection in common"] = array(
	0 => "%d conexión en común",
	1 => "%d conexiones en común",
);
App::$strings["show more"] = "mostrar más";
App::$strings["Visible to your default audience"] = "Visible para su público predeterminado.";
App::$strings["Show"] = "Mostrar";
App::$strings["Don't show"] = "No mostrar";
App::$strings["Permissions"] = "Permisos";
App::$strings["Item was not found."] = "Elemento no encontrado.";
App::$strings["No source file."] = "Ningún fichero de origen";
App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido.";
App::$strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar";
App::$strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d";
App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos.";
App::$strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite de sistema o porque la acción ha finalizado.";
App::$strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado.";
App::$strings["Path not available."] = "Ruta no disponible.";
App::$strings["Empty pathname"] = "Ruta vacía";
App::$strings["duplicate filename or path"] = "Nombre de ruta o fichero duplicados";
App::$strings["Path not found."] = "Ruta no encontrada";
App::$strings["mkdir failed."] = "mkdir ha fallado.";
App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado.";
App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener los datos de identidad desde la base de datos";
App::$strings["Empty name"] = "Nombre vacío";
App::$strings["Name too long"] = "Nombre demasiado largo";
App::$strings["No account identifier"] = "Ningún identificador de la cuenta";
App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias).";
App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro.";
App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros usuarios de este sitio.";
App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada";
App::$strings["Default Profile"] = "Perfil principal";
App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible.";
App::$strings["Requested profile is not available."] = "El perfil solicitado no está disponible.";
App::$strings["Change profile photo"] = "Cambiar foto de perfil";
App::$strings["Profiles"] = "Perfiles";
App::$strings["Manage/edit profiles"] = "Administrar/editar perfiles";
App::$strings["Create New Profile"] = "Crear nuevo perfil";
App::$strings["Profile Image"] = "Imagen de perfil";
App::$strings["visible to everybody"] = "visible para cualquiera";
App::$strings["Edit visibility"] = "Editar visibilidad";
App::$strings["Gender:"] = "Género:";
App::$strings["Status:"] = "Estado:";
App::$strings["Homepage:"] = "Página personal:";
App::$strings["Online Now"] = "Ahora en línea";
App::$strings["g A l F d"] = "g A l d F";
App::$strings["F d"] = "d F";
App::$strings["[today]"] = "[hoy]";
App::$strings["Birthday Reminders"] = "Recordatorios de cumpleaños";
App::$strings["Birthdays this week:"] = "Cumpleaños esta semana:";
App::$strings["[No description]"] = "[Sin descripción]";
App::$strings["Event Reminders"] = "Recordatorios de eventos";
App::$strings["Events this week:"] = "Eventos de esta semana:";
App::$strings["Profile"] = "Perfil";
App::$strings["Full Name:"] = "Nombre completo:";
App::$strings["Like this channel"] = "Me gusta este canal";
App::$strings["j F, Y"] = "j F Y";
App::$strings["j F"] = "j F";
App::$strings["Birthday:"] = "Cumpleaños:";
App::$strings["Age:"] = "Edad:";
App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s";
App::$strings["Sexual Preference:"] = "Orientación sexual:";
App::$strings["Hometown:"] = "Ciudad de origen:";
App::$strings["Tags:"] = "Etiquetas:";
App::$strings["Political Views:"] = "Posición política:";
App::$strings["Religion:"] = "Religión:";
App::$strings["About:"] = "Sobre mí:";
App::$strings["Hobbies/Interests:"] = "Aficciones/Intereses:";
App::$strings["Likes:"] = "Me gusta:";
App::$strings["Dislikes:"] = "No me gusta:";
App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:";
App::$strings["My other channels:"] = "Mis otros canales:";
App::$strings["Musical interests:"] = "Intereses musicales:";
App::$strings["Books, literature:"] = "Libros, literatura:";
App::$strings["Television:"] = "Televisión:";
App::$strings["Film/dance/culture/entertainment:"] = "Cine/danza/cultura/entretenimiento:";
App::$strings["Love/Romance:"] = "Vida sentimental/amorosa:";
App::$strings["Work/employment:"] = "Trabajo:";
App::$strings["School/education:"] = "Estudios:";
App::$strings["Like this thing"] = "Me gusta esto";
App::$strings["Male"] = "Hombre";
App::$strings["Female"] = "Mujer";
App::$strings["Currently Male"] = "Actualmente hombre";
App::$strings["Currently Female"] = "Actualmente mujer";
App::$strings["Mostly Male"] = "Generalmente hombre";
App::$strings["Mostly Female"] = "Generalmente mujer";
App::$strings["Transgender"] = "Transgénero";
App::$strings["Intersex"] = "Intersexual";
App::$strings["Transsexual"] = "Transexual";
App::$strings["Hermaphrodite"] = "Hermafrodita";
App::$strings["Neuter"] = "Neutral";
App::$strings["Non-specific"] = "No especificado";
App::$strings["Undecided"] = "Indeciso";
App::$strings["Males"] = "Hombres";
App::$strings["Females"] = "Mujeres";
App::$strings["Gay"] = "Gay";
App::$strings["Lesbian"] = "Lesbiana";
App::$strings["No Preference"] = "Sin preferencias";
App::$strings["Bisexual"] = "Bisexual";
App::$strings["Autosexual"] = "Autosexual";
App::$strings["Abstinent"] = "Casto";
App::$strings["Virgin"] = "Virgen";
App::$strings["Deviant"] = "Fuera de lo común";
App::$strings["Fetish"] = "Fetichista";
App::$strings["Oodles"] = "Orgías";
App::$strings["Nonsexual"] = "Asexual";
App::$strings["Single"] = "Soltero/a";
App::$strings["Lonely"] = "Solo/a";
App::$strings["Available"] = "Disponible";
App::$strings["Unavailable"] = "No disponible";
App::$strings["Has crush"] = "Enamorado/a";
App::$strings["Infatuated"] = "Apasionado";
App::$strings["Dating"] = "Saliendo con alguien";
App::$strings["Unfaithful"] = "Infiel";
App::$strings["Sex Addict"] = "Con adicción al sexo";
App::$strings["Friends/Benefits"] = "Amistad beneficiosa";
App::$strings["Casual"] = "Casual";
App::$strings["Engaged"] = "Prometido/a";
App::$strings["Married"] = "Casado/a";
App::$strings["Imaginarily married"] = "Casado/a en sueños";
App::$strings["Partners"] = "Pareja";
App::$strings["Cohabiting"] = "Cohabitando";
App::$strings["Common law"] = "Matrimonio tradicional";
App::$strings["Happy"] = "Felíz";
App::$strings["Not looking"] = "No estoy buscando";
App::$strings["Swinger"] = "Infiel";
App::$strings["Betrayed"] = "Engañado/a";
App::$strings["Separated"] = "Separado/a";
App::$strings["Unstable"] = "Inestable";
App::$strings["Divorced"] = "Divorciado/a";
App::$strings["Imaginarily divorced"] = "Divorciado/a en sueños";
App::$strings["Widowed"] = "Viudo/a";
App::$strings["Uncertain"] = "Indeterminado";
App::$strings["It's complicated"] = "Es complicado";
App::$strings["Don't care"] = "No me importa";
App::$strings["Ask me"] = "Pregúnteme";
App::$strings["Site Admin"] = "Adminstrador del sitio";
App::$strings["Address Book"] = "Libreta de direcciones";
App::$strings["Mood"] = "Estado de ánimo";
App::$strings["Probe"] = "Probar";
App::$strings["Suggest"] = "Sugerir";
App::$strings["Random Channel"] = "Canal aleatorio";
App::$strings["Invite"] = "Invitar";
App::$strings["Features"] = "Características";
App::$strings["Language"] = "Idioma";
App::$strings["Post"] = "Publicación";
App::$strings["Profile Photo"] = "Foto de perfil";
App::$strings["Update"] = "Actualizar";
App::$strings["Install"] = "Instalar";
App::$strings["Purchase"] = "Comprar";
App::$strings["Image/photo"] = "Imagen/foto";
App::$strings["Encrypted content"] = "Contenido cifrado";
App::$strings["Install %s element: "] = "Instalar el elemento %s:";
App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio.";
App::$strings["webpage"] = "página web";
App::$strings["layout"] = "disposición";
App::$strings["block"] = "bloque";
App::$strings["menu"] = "menú";
App::$strings["QR code"] = "Código QR";
App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió la siguiente %2\$s %3\$s";
App::$strings["post"] = "entrada";
App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma diferente";
App::$strings["$1 spoiler"] = "$1 spoiler";
App::$strings["$1 wrote:"] = "$1 escribió";
App::$strings["Missing room name"] = "Nombre de sala desaparecido.";
App::$strings["Duplicate room name"] = "Nombre de sala duplicado.";
App::$strings["Invalid room specifier."] = "Especificador de sala no válido.";
App::$strings["Room not found."] = "Sala no encontrada.";
App::$strings["Room is full"] = "La sala está llena.";
App::$strings["Image exceeds website size limit of %lu bytes"] = "La imagen es demasiado grande (%lu demás)";
App::$strings["Image file is empty."] = "El fichero de imagen está vacío. ";
App::$strings["Unable to process image"] = "No ha sido posible procesar la imagen";
App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada.";
App::$strings["Upload New Photos"] = "Subir nuevas fotos";
App::$strings["Some blurb about what to do when you're new here"] = "Algunas propuestas para el nuevo usuario sobre qué se puede hacer  aquí";
App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos.";
App::$strings["Create a new channel"] = "Crear un nuevo canal";
App::$strings["Current Channel"] = "Canal actual";
App::$strings["Switch to one of your channels by selecting it."] = "Cambiar a uno de sus canales seleccionándolo.";
App::$strings["Default Channel"] = "Canal principal";
App::$strings["Make Default"] = "Convertir en predeterminado";
App::$strings["%d new messages"] = "%d mensajes nuevos";
App::$strings["%d new introductions"] = "%d nuevas isolicitudes de conexión";
App::$strings["Delegated Channels"] = "Canales delegados";
App::$strings["Public access denied."] = "Acceso público denegado.";
App::$strings["%d rating"] = array(
	0 => "%d valoración",
	1 => "%d valoraciones",
);
App::$strings["Gender: "] = "Género:";
App::$strings["Status: "] = "Estado:";
App::$strings["Homepage: "] = "Página personal:";
App::$strings["Description:"] = "Descripción:";
App::$strings["Public Forum:"] = "Foro público:";
App::$strings["Keywords: "] = "Palabras clave:";
App::$strings["Don't suggest"] = "No sugerir:";
App::$strings["Common connections:"] = "Conexiones comunes:";
App::$strings["Global Directory"] = "Directorio global:";
App::$strings["Local Directory"] = "Directorio local:";
App::$strings["Finding:"] = "Encontrar:";
App::$strings["next page"] = "siguiente página";
App::$strings["previous page"] = "página anterior";
App::$strings["Sort options"] = "Ordenar opciones";
App::$strings["Alphabetic"] = "Alfabético";
App::$strings["Reverse Alphabetic"] = "Alfabético inverso";
App::$strings["Newest to Oldest"] = "De más nuevo a más antiguo";
App::$strings["Oldest to Newest"] = "De más antiguo a más nuevo";
App::$strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas).";
App::$strings["Xchan Lookup"] = "Búsqueda de canales";
App::$strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:";
App::$strings["Not found."] = "No encontrado.";
App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación";
App::$strings["Return to your app and insert this Securty Code:"] = "Volver a su aplicación e introducir este código de seguridad:";
App::$strings["Please login to continue."] = "Por favor inicia sesión para continuar.";
App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?";
App::$strings["Page Title"] = "Título de página";
App::$strings["Channel added."] = "Canal añadido.";
App::$strings["Tag removed"] = "Etiqueta eliminada.";
App::$strings["Remove Item Tag"] = "Eliminar etiqueta del elemento.";
App::$strings["Select a tag to remove: "] = "Seleccionar una etiqueta para eliminar:";
App::$strings["Remove"] = "Eliminar";
App::$strings["Continue"] = "Continuar";
App::$strings["Premium Channel Setup"] = "Configuración del canal premium";
App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium";
App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo paypal, normas de uso, etc.";
App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:";
App::$strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán por tanto el siguiente texto antes de proceder:";
App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las intrucciones proporcionadas en esta página.";
App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)";
App::$strings["Restricted or Premium Channel"] = "Canal premium o restringido";
App::$strings["Thing updated"] = "Elemento actualizado.";
App::$strings["Object store: failed"] = "Guardar objeto: ha fallado";
App::$strings["Thing added"] = "Elemento añadido";
App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
App::$strings["Show Thing"] = "Mostrar elemento";
App::$strings["item not found."] = "elemento no encontrado.";
App::$strings["Edit Thing"] = "Editar elemento";
App::$strings["Select a profile"] = "Seleccionar un perfil";
App::$strings["Post an activity"] = "Publicar una actividad";
App::$strings["Only sends to viewers of the applicable profile"] = "Sólo envíos a espectadores del perfil pertinente.";
App::$strings["Name of thing e.g. something"] = "Nombre del elemento p. ej.:. \"algo\"";
App::$strings["URL of thing (optional)"] = "Dirección del elemento (opcional)";
App::$strings["URL for photo of thing (optional)"] = "Dirección para la foto o elemento (opcional)";
App::$strings["Add Thing to your Profile"] = "Añadir elemento a su perfil";
App::$strings["Item not available."] = "Elemento no disponible";
App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s";
App::$strings["Image uploaded but image cropping failed."] = "Imagen actualizada, pero el recorte de la imagen ha fallado. ";
App::$strings["Image resize failed."] = "El ajuste del tamaño de la imagen ha fallado.";
App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente.";
App::$strings["Image exceeds size limit of %d"] = "La imagen supera el tamaño límite de %d";
App::$strings["Unable to process image."] = "No ha sido posible procesar la imagen.";
App::$strings["Photo not available."] = "Foto no disponible.";
App::$strings["Upload File:"] = "Subir fichero:";
App::$strings["Select a profile:"] = "Seleccionar un perfil:";
App::$strings["Upload Profile Photo"] = "Subir foto de perfil";
App::$strings["or"] = "o";
App::$strings["skip this step"] = "Omitir este paso";
App::$strings["select a photo from your photo albums"] = "Seleccione una foto de sus álbumes";
App::$strings["Crop Image"] = "Recortar imagen";
App::$strings["Please adjust the image cropping for optimum viewing."] = "Por favor ajuste el recorte de la imagen para una visión óptima.";
App::$strings["Done Editing"] = "Edición completada";
App::$strings["Image uploaded successfully."] = "Imagen subida correctamente.";
App::$strings["Image upload failed."] = "Subida de imagen fallida.";
App::$strings["Image size reduction [%s] failed."] = "La reducción de la imagen [%s] ha fallado.";
App::$strings["Invalid item."] = "Elemento no válido.";
App::$strings["Channel not found."] = "Canal no encontrado.";
App::$strings["Page not found."] = "Página no encontrada.";
App::$strings["Like/Dislike"] = "Me gusta/No me gusta";
App::$strings["This action is restricted to members."] = "Esta acción está restringida solo para miembros.";
App::$strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "Por favor, <a href=\"rmagic\">identifíquese con su \$Projectname ID</a> o <a href=\"register\">rregístrese como un nuevo \$Projectname member</a> para continuar.";
App::$strings["Invalid request."] = "Solicitud incorrecta.";
App::$strings["thing"] = "elemento";
App::$strings["Channel unavailable."] = "Canal no disponible.";
App::$strings["Previous action reversed."] = "Acción anterior revocada.";
App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s está de acuerdo con %3\$s de %2\$s";
App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s no está de acuerdo con %3\$s de %2\$s";
App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s se abstiene en %3\$s de %2\$s";
App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s participará en el %3\$s de %2\$s";
App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s no participará en el %3\$s de %2\$s";
App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s tal vez participe en el %3\$s de %2\$s";
App::$strings["Action completed."] = "Acción completada.";
App::$strings["Thank you."] = "Gracias.";
App::$strings["Calendar entries imported."] = "Entradas de calendario importadas.";
App::$strings["No calendar entries found."] = "No encontradas entradas de calendario.";
App::$strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado.";
App::$strings["Unable to generate preview."] = "No se puede crear la vista previa.";
App::$strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio.";
App::$strings["Event not found."] = "Evento no encontrado.";
App::$strings["l, F j"] = "l j F";
App::$strings["Edit event"] = "Editar evento";
App::$strings["Delete event"] = "Borrar evento";
App::$strings["calendar"] = "calendario";
App::$strings["Create New Event"] = "Crear Nuevo Evento";
App::$strings["Previous"] = "Anterior";
App::$strings["Next"] = "Siguiente";
App::$strings["Export"] = "Exportar";
App::$strings["Import"] = "Importar";
App::$strings["Event removed"] = "Evento borrado";
App::$strings["Failed to remove event"] = "Error al borrar el evento";
App::$strings["Event details"] = "Detalles del evento";
App::$strings["Starting date and Title are required."] = "Se requieren fecha y título.";
App::$strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)";
App::$strings["Event Starts:"] = "Inicio del evento:";
App::$strings["Finish date/time is not known or not relevant"] = "La fecha / hora de finalización no se conocen o no son relevantes";
App::$strings["Event Finishes:"] = "Finalización del evento:";
App::$strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de zona horaria";
App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales.";
App::$strings["Title:"] = "Título:";
App::$strings["Share this event"] = "Compartir este evento";
App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo %2\$s de %3\$s";
App::$strings["Public Sites"] = "Sitios públicos";
App::$strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "Los sitios listados permiten el registro público de la red \$Projectname. Todos los sitios de la red están vinculados entre sí por lo que sus miembros, en ninguna de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los enlaces de los proveedores <strong> pueden </strong> proporcionar detalles adicionales.";
App::$strings["Rate this hub"] = "Valorar este sitio";
App::$strings["Site URL"] = "Dirección del sitio";
App::$strings["Access Type"] = "Tipo de Acceso";
App::$strings["Registration Policy"] = "Normas de Registro";
App::$strings["Location"] = "Localización";
App::$strings["Project"] = "Proyecto";
App::$strings["View hub ratings"] = "Ver las valoraciones del sitio";
App::$strings["Rate"] = "Valorar";
App::$strings["View ratings"] = "Ver valoraciones";
App::$strings["Edit post"] = "Editar entrada";
App::$strings["\$Projectname channel"] = "canal \$Projectname";
App::$strings["Collection created."] = "Colección creada.";
App::$strings["Could not create collection."] = "No se puede crear colección.";
App::$strings["Collection updated."] = "Colección actualizada.";
App::$strings["Create a collection of channels."] = "Crear una colección de canales.";
App::$strings["Collection Name: "] = "Nombre de la colección:";
App::$strings["Members are visible to other channels"] = "Los miembros son visibles para otros canales";
App::$strings["Collection removed."] = "Colección eliminada.";
App::$strings["Unable to remove collection."] = "No ha sido posible de eliminar la colección.";
App::$strings["Collection Editor"] = "Editor de colecciones";
App::$strings["Members"] = "Miembros";
App::$strings["All Connected Channels"] = "Todos los canales conectados";
App::$strings["Click on a channel to add or remove."] = "Haga clic en un canal para agregarlo o quitarlo.";
App::$strings["Version %s"] = "Versión %s";
App::$strings["Installed plugins/addons/apps:"] = "Extensiones/Aplicaciones instaladas:";
App::$strings["No installed plugins/addons/apps"] = "Extensiones/Aplicaciones no instaladas:";
App::$strings["\$Projectname"] = "\$Projectname";
App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada.";
App::$strings["Tag: "] = "Etiqueta:";
App::$strings["Last background fetch: "] = "Última actualización en segundo plano:";
App::$strings["Running at web location"] = "Corriendo en el sitio web";
App::$strings["Please visit <a href=\"https://redmatrix.me\">redmatrix.me</a> to learn more about \$Projectname."] = "Por favor, visite <a href=\"https://redmatrix.me\">redmatrix.me </a> para aprender más sobre \$Projectname.";
App::$strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por favor visite";
App::$strings["\$projectname issues"] = "Problemas en \$projectname";
App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com";
App::$strings["Site Administrators"] = "Administradores del sitio";
App::$strings["Unable to locate original post."] = "No ha sido posible encontrar la entrada original.";
App::$strings["Empty post discarded."] = "Desechada entrada vacía.";
App::$strings["Executable content type not permitted to this channel."] = "Contenido de tipo ejecutable no permitido en este canal.";
App::$strings["System error. Post not saved."] = "Error del sistema. Entrada no salvada.";
App::$strings["Unable to obtain post information from database."] = "No ha sido posible obtener información de la entrada en la base de datos.";
App::$strings["You have reached your limit of %1$.0f top level posts."] = "Ha alcanzado su límite de %1$.0f tope máximo de entradas";
App::$strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web.";
App::$strings["No such group"] = "No se encuentra el grupo";
App::$strings["No such channel"] = "No se encuentra el  canal";
App::$strings["Search Results For:"] = "Buscar resultados para:";
App::$strings["Collection is empty"] = "La colección está vacía";
App::$strings["Collection: "] = "Colección:";
App::$strings["Connection: "] = "Conexión:";
App::$strings["Invalid connection."] = "Conexión no válida.";
App::$strings["No channel."] = "Ningún canal.";
App::$strings["Common connections"] = "Conexiones comunes";
App::$strings["No connections in common."] = "Ninguna  conexión en común.";
App::$strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio";
App::$strings["Blocked"] = "Bloqueadas";
App::$strings["Ignored"] = "Ignoradas";
App::$strings["Hidden"] = "Ocultas";
App::$strings["Archived"] = "Archivadas";
App::$strings["Suggest new connections"] = "Sugerir nuevas conexiones";
App::$strings["New Connections"] = "Nuevas conexiones";
App::$strings["Show pending (new) connections"] = "Mostrar conexiones (nuevas) pendientes";
App::$strings["All Connections"] = "Todas las conexiones";
App::$strings["Show all connections"] = "Mostrar todas las conexiones";
App::$strings["Unblocked"] = "Desbloqueadas";
App::$strings["Only show unblocked connections"] = "Mostrar solo las conexiones desbloqueadas";
App::$strings["Only show blocked connections"] = "Mostrar solo las conexiones bloqueadas";
App::$strings["Only show ignored connections"] = "Mostrar solo conexiones ignoradas";
App::$strings["Only show archived connections"] = "Mostrar solo las conexiones archivadas";
App::$strings["Only show hidden connections"] = "Mostrar solo las conexiones ocultas";
App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
App::$strings["Edit connection"] = "Editar conexión";
App::$strings["Search your connections"] = "Buscar sus conexiones";
App::$strings["Finding: "] = "Búsqueda:";
App::$strings["Block Name"] = "Nombre del bloque";
App::$strings["Block Title"] = "Título del bloque";
App::$strings["Item not found"] = "Elemento no encontrado";
App::$strings["Item is not editable"] = "El elemento no es editable";
App::$strings["Delete item?"] = "¿Borrar el elemento?";
App::$strings["Insert YouTube video"] = "Insertar vídeo de YouTube";
App::$strings["Insert Vorbis [.ogg] video"] = "Insertar vídeo Vorbis [.ogg]";
App::$strings["Insert Vorbis [.ogg] audio"] = "Insertar audio Vorbis [.ogg]";
App::$strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "\$Projectname - Invitados: Nombre de usuario: {su dirección de correo electrónico}, Contraseña: +++";
App::$strings["Page owner information could not be retrieved."] = "La información del propietario de la página no pudo ser recuperada.";
App::$strings["Album not found."] = "Álbum no encontrado.";
App::$strings["Delete Album"] = "Borrar álbum";
App::$strings["Delete Photo"] = "Borrar foto";
App::$strings["No photos selected"] = "No hay fotos seleccionadas";
App::$strings["Access to this item is restricted."] = "El acceso a este elemento está restringido.";
App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB de %2$.2f MB usados de la capacidad de almacenamiento de fotos.";
App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB utilizados de la capacidad de almacenamiento de fotos.";
App::$strings["Upload Photos"] = "Subir fotos";
App::$strings["Enter a new album name"] = "Introducir un nuevo nombre de álbum";
App::$strings["or select an existing one (doubleclick)"] = "o seleccionar uno (doble click) existente";
App::$strings["Create a status post for this upload"] = "Crear una entrada de estado para esta subida";
App::$strings["Album name could not be decoded"] = "El nombre del álbum no ha podido ser descifrado";
App::$strings["Contact Photos"] = "Fotos de contacto";
App::$strings["Show Newest First"] = "Mostrar lo más reciente primero";
App::$strings["Show Oldest First"] = "Mostrar lo más antiguo primero";
App::$strings["View Photo"] = "Ver foto";
App::$strings["Edit Album"] = "Editar álbum";
App::$strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido.";
App::$strings["Photo not available"] = "Foto no disponible";
App::$strings["Use as profile photo"] = "Usar como foto de perfil";
App::$strings["Private Photo"] = "Foto privada";
App::$strings["View Full Size"] = "Ver tamaño completo";
App::$strings["Edit photo"] = "Editar foto";
App::$strings["Rotate CW (right)"] = "Girar CW (a la derecha)";
App::$strings["Rotate CCW (left)"] = "Girar CCW (a la izquierda)";
App::$strings["Caption"] = "Título";
App::$strings["Add a Tag"] = "Añadir una etiqueta";
App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Ejemplo: @bob, @Barbara_Gómez, @juan@ejemplo.com";
App::$strings["Flag as adult in album view"] = "Marcar como \"solo para adultos\" en el álbum";
App::$strings["In This Photo:"] = "En esta foto:";
App::$strings["Map"] = "Mapa";
App::$strings["View Album"] = "Ver álbum";
App::$strings["Recent Photos"] = "Fotos recientes";
App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s";
App::$strings["Search results for: %s"] = "Resultados de la búsqueda para: %s";
App::$strings["Profile Match"] = "Perfil compatible";
App::$strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal.";
App::$strings["is interested in:"] = "está interesado en:";
App::$strings["No matches"] = "No se han encontrado perfiles compatibles";
App::$strings["Away"] = "Ausente";
App::$strings["Online"] = "Conectado";
App::$strings["Select a bookmark folder"] = "Seleccionar una carpeta de marcadores";
App::$strings["Save Bookmark"] = "Guardar marcador";
App::$strings["URL of bookmark"] = "Dirección del marcador";
App::$strings["Description"] = "Descripción";
App::$strings["Or enter new bookmark folder name"] = "O introduzca un nuevo nombre para la carpeta de marcadores";
App::$strings["No more system notifications."] = "No hay más notificaciones del sistema";
App::$strings["System Notifications"] = "Notificaciones de sistema";
App::$strings["network"] = "red";
App::$strings["RSS"] = "RSS";
App::$strings["Layout updated."] = "Formato actualizado";
App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas";
App::$strings["Layout not found."] = "Formato no encontrado";
App::$strings["Module Name:"] = "Nombre del módulo:";
App::$strings["Layout Help"] = "Ayuda para el diseño de la página";
App::$strings["- select -"] = "- seleccionar -";
App::$strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales.";
App::$strings["Nothing to import."] = "No hay nada para importar.";
App::$strings["Unable to download data from old server"] = "No se han podido descargar datos de su antiguo servidor";
App::$strings["Imported file is empty."] = "El fichero importado está vacío.";
App::$strings["The data provided is not compatible with this project."] = "Los datos proporcionados no son compatibles con este proyecto.";
App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones.";
App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No se ha podido crear el canal porque el identificador del canal no se ha podido duplicar en este servidor.";
App::$strings["Channel clone failed. Import failed."] = "No se ha podido importar el canal porque el canal no se ha podido clonar.";
App::$strings["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado.";
App::$strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad.";
App::$strings["Import Channel"] = "Importar canal";
App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación.";
App::$strings["File to Upload"] = "Fichero para subir";
App::$strings["Or provide the old server/hub details"] = "O proporcione los detalles de su antiguo servidor/hub";
App::$strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor  (canal@ejemplo.com)";
App::$strings["Your old login email address"] = "Su antigua dirección de correo electrónico";
App::$strings["Your old login password"] = "Su antigua contraseña";
App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua ubicación debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos.";
App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria";
App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible";
App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine.";
App::$strings["Delete layout?"] = "¿Borrar formato?";
App::$strings["Layout Description (Optional)"] = "Descripción del formato gráfico (opcional)";
App::$strings["Layout Name"] = "Nombre del formato";
App::$strings["Edit Layout"] = "Modificar formato";
App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página.";
App::$strings["Room not found"] = "Sala no encontrada";
App::$strings["Leave Room"] = "Abandonar sala";
App::$strings["Delete This Room"] = "Eliminar esta sala";
App::$strings["I am away right now"] = "Estoy ausente momentáneamente";
App::$strings["I am online"] = "Estoy conectado";
App::$strings["Bookmark this room"] = "Añadir esta sala a Marcadores";
App::$strings["New Chatroom"] = "Nueva sala de chat";
App::$strings["Chatroom Name"] = "Nombre de sala de chat";
App::$strings["%1\$s's Chatrooms"] = "Sala de chat de %1\$s";
App::$strings["Menu not found."] = "Menú no encontrado";
App::$strings["Unable to create element."] = "Imposible crear el elemento.";
App::$strings["Unable to update menu element."] = "No es posible actualizar el elemento del menú.";
App::$strings["Unable to add menu element."] = "No es posible añadir el elemento al menú";
App::$strings["Menu Item Permissions"] = "Permisos del elemento del menú";
App::$strings["(click to open/close)"] = "(pulse para abrir/cerrar)";
App::$strings["Link Name"] = "Nombre del enlace";
App::$strings["Link or Submenu Target"] = "Destino del enlace o submenú";
App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Introduzca la dirección del enlace o seleccione el nombre de un submenú";
App::$strings["Use magic-auth if available"] = "Usar la autenticación mágica si está disponible";
App::$strings["Open link in new window"] = "Abrir el enlace en una nueva ventana";
App::$strings["Order in list"] = "Orden en la lista";
App::$strings["Higher numbers will sink to bottom of listing"] = "Los números más altos irán al final de la lista";
App::$strings["Submit and finish"] = "Enviar y terminar";
App::$strings["Submit and continue"] = "Enviar y continuar";
App::$strings["Menu:"] = "Menú:";
App::$strings["Link Target"] = "Destino del enlace";
App::$strings["Edit menu"] = "Editar menú";
App::$strings["Edit element"] = "Editar elemento";
App::$strings["Drop element"] = "Eliminar el elemento";
App::$strings["New element"] = "Nuevo elemento";
App::$strings["Edit this menu container"] = "Modificar el contenedor del menú";
App::$strings["Add menu element"] = "Añadir un elemento al menú";
App::$strings["Delete this menu item"] = "Eliminar este elemento del menú";
App::$strings["Edit this menu item"] = "Modificar este elemento del menú";
App::$strings["Menu item not found."] = "Este elemento del menú no se ha encontrado";
App::$strings["Menu item deleted."] = "Este elemento del menú ha sido borrado";
App::$strings["Menu item could not be deleted."] = "Este elemento del menú no puede ser borrado.";
App::$strings["Edit Menu Element"] = "Editar elemento del menú";
App::$strings["Link text"] = "Texto del enlace";
App::$strings["Delete webpage?"] = "¿Eliminar página web?";
App::$strings["Page link title"] = "Título del enlace de la página";
App::$strings["Edit Webpage"] = "Editar página web";
App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso";
App::$strings["No valid account found."] = "No se ha encontrado una cuenta válida.";
App::$strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico.";
App::$strings["Site Member (%s)"] = "Usuario del sitio (%s)";
App::$strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s";
App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado.";
App::$strings["Password Reset"] = "Restablecer la contraseña";
App::$strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó.";
App::$strings["Your new password is"] = "Su nueva contraseña es";
App::$strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después";
App::$strings["click here to login"] = "Pulse aquí para conectarse";
App::$strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Puede cambiar la contraseña en la página <em>Ajustes</em> una vez iniciada la sesión.";
App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada";
App::$strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?";
App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones.";
App::$strings["Email Address"] = "Dirección de correo electrónico";
App::$strings["Reset"] = "Reiniciar";
App::$strings["Website:"] = "Sitio web:";
App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)";
App::$strings["Rating (this information is public)"] = "Valoración (esta información es pública)";
App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)";
App::$strings["Delete block?"] = "¿Borrar este bloque?";
App::$strings["Edit Block"] = "Modificar este bloque";
App::$strings["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones.";
App::$strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. ";
App::$strings["Please join us on Red"] = "Únase a nosotros en RedMatrix";
App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio.";
App::$strings["%s : Message delivery failed."] = "%s : Falló la entrega del mensaje.";
App::$strings["%d message sent."] = array(
	0 => "%d mensajes enviados.",
	1 => "%d mensajes enviados.",
);
App::$strings["You have no more invitations available"] = "No tiene más invitaciones disponibles";
App::$strings["Send invitations"] = "Enviar invitaciones";
App::$strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónica, una por línea:";
App::$strings["Your message:"] = "Su mensaje:";
App::$strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname.";
App::$strings["You will need to supply this invitation code: "] = "Debe proporcionar este código de invitación:";
App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier lugar del \$Projectname (están todos interconectados)";
App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Introduzca mi dirección \$Projectname en la caja de búsqueda del sitio.";
App::$strings["or visit "] = "o visite";
App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]";
App::$strings["Location not found."] = "Localización no encontrada.";
App::$strings["Primary location cannot be removed."] = "La localización primaria no puede ser eliminada.";
App::$strings["No locations found."] = "Ninguna localización encontrada.";
App::$strings["Manage Channel Locations"] = "Gestionar localizaciones del canal";
App::$strings["Location (address)"] = "Localización (dirección)";
App::$strings["Primary Location"] = "Localización primaria";
App::$strings["Drop location"] = "Eliminar localización";
App::$strings["Failed to create source. No channel selected."] = "Imposible crear el origen de los clontenidos. Ningún canal ha sido seleccionado.";
App::$strings["Source created."] = "Fuente creada.";
App::$strings["Source updated."] = "Fuente actualizada.";
App::$strings["*"] = "*";
App::$strings["Manage remote sources of content for your channel."] = "Gestionar contenido de origen remoto para su canal.";
App::$strings["New Source"] = "Nueva fuente";
App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar todo el contenido o una selección de los siguientes canales en este canal, y distribuirlo de acuerdo con sus ajustes.";
App::$strings["Only import content with these words (one per line)"] = "Importar solo contenido que contenga estas palabras (una por línea)";
App::$strings["Leave blank to import all public content"] = "Dejar en blanco para importar todo el contenido público";
App::$strings["Channel Name"] = "Nombre del canal";
App::$strings["Source not found."] = "Fuente no encontrada";
App::$strings["Edit Source"] = "Editar fuente";
App::$strings["Delete Source"] = "Eliminar fuente";
App::$strings["Source removed"] = "Fuente eliminada";
App::$strings["Unable to remove source."] = "Imposible eliminar la fuente.";
App::$strings["Unable to update menu."] = "No se puede actualizar el menú.";
App::$strings["Unable to create menu."] = "No se puede crear el menú.";
App::$strings["Menu Name"] = "Nombre del menú";
App::$strings["Unique name (not visible on webpage) - required"] = "Nombre único (no será visible en la página web) - requerido";
App::$strings["Menu Title"] = "Título del menú";
App::$strings["Visible on webpage - leave empty for no title"] = "Visible en la página web - no ponga nada si no desea un título";
App::$strings["Allow Bookmarks"] = "Permitir marcadores";
App::$strings["Menu may be used to store saved bookmarks"] = "El menú se puede usar para guardar marcadores";
App::$strings["Submit and proceed"] = "Enviar y proceder";
App::$strings["Drop"] = "Eliminar";
App::$strings["Bookmarks allowed"] = "Marcadores permitidos";
App::$strings["Delete this menu"] = "Borrar este menú";
App::$strings["Edit menu contents"] = "Editar los contenidos del menú";
App::$strings["Edit this menu"] = "Modificar este menú";
App::$strings["Menu could not be deleted."] = "El menú no puede ser eliminado.";
App::$strings["Edit Menu"] = "Modificar el menú";
App::$strings["Add or remove entries to this menu"] = "Añadir o quitar entradas en este menú";
App::$strings["Menu name"] = "Nombre del menú";
App::$strings["Must be unique, only seen by you"] = "Debe ser único, solo será visible para usted";
App::$strings["Menu title"] = "Título del menú";
App::$strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás";
App::$strings["Allow bookmarks"] = "Permitir marcadores";
App::$strings["Permission Denied."] = "Permiso denegado";
App::$strings["File not found."] = "Fichero no encontrado.";
App::$strings["Edit file permissions"] = "Modificar los permisos del fichero";
App::$strings["Set/edit permissions"] = "Establecer/editar los permisos";
App::$strings["Include all files and sub folders"] = "Incluir todos los ficheros y subcarpetas";
App::$strings["Return to file list"] = "Volver a la lista de ficheros";
App::$strings["Copy/paste this code to attach file to a post"] = "Copiar/pegar este código para adjuntar el fichero al envío";
App::$strings["Copy/paste this URL to link file from a web page"] = "Copiar/pegar esta dirección para enlazar el fichero desde una página web";
App::$strings["Share this file"] = "Compartir este fichero";
App::$strings["Show URL to this file"] = "Mostrar la dirección de este fichero";
App::$strings["Notify your contacts about this file"] = "Avisar a sus contactos sobre este fichero";
App::$strings["Contact not found."] = "Contacto no encontrado";
App::$strings["Friend suggestion sent."] = "Enviar sugerencia a un amigo.";
App::$strings["Suggest Friends"] = "Sugerir amigos";
App::$strings["Suggest a friend for %s"] = "Sugerir un amigo a %s";
App::$strings["Hub not found."] = "Servidor no encontrado";
App::$strings["Poke/Prod"] = "Toque/Incitación";
App::$strings["poke, prod or do other things to somebody"] = "dar un toque, incitar u otras cosas a alguien";
App::$strings["Recipient"] = "Destinatario";
App::$strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario";
App::$strings["Make this post private"] = "Convertir en privado este envío";
App::$strings["Invalid profile identifier."] = "Identificador de perfil no válido";
App::$strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil";
App::$strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadir o eliminar.";
App::$strings["Visible To"] = "Visible para";
App::$strings["%s element installed"] = "%s elemento instalado";
App::$strings["%s element installation failed"] = "Elemento con instalación fallida: %s";
App::$strings["Profile not found."] = "Perfil no encontrado.";
App::$strings["Profile deleted."] = "Perfil eliminado.";
App::$strings["Profile-"] = "Perfil-";
App::$strings["New profile created."] = "Creado el nuevo perfil.";
App::$strings["Profile unavailable to clone."] = "Perfil no disponible para clonar.";
App::$strings["Profile unavailable to export."] = "Perfil no disponible para exportar.";
App::$strings["Profile Name is required."] = "Se necesita el nombre del perfil.";
App::$strings["Marital Status"] = "Estado civil";
App::$strings["Romantic Partner"] = "Pareja sentimental";
App::$strings["Likes"] = "Me gusta";
App::$strings["Dislikes"] = "No me gusta";
App::$strings["Work/Employment"] = "Trabajo:";
App::$strings["Religion"] = "Religión";
App::$strings["Political Views"] = "Ideas políticas";
App::$strings["Gender"] = "Género";
App::$strings["Sexual Preference"] = "Preferencia sexual";
App::$strings["Homepage"] = "Página personal";
App::$strings["Interests"] = "Intereses";
App::$strings["Address"] = "Dirección";
App::$strings["Profile updated."] = "Perfil actualizado.";
App::$strings["Hide your contact/friend list from viewers of this profile?"] = "¿Ocultar su lista de contactos a los visitantes de este perfil?";
App::$strings["Edit Profile Details"] = "Modificar los detalles de este perfil";
App::$strings["View this profile"] = "Ver este perfil";
App::$strings["Change Profile Photo"] = "Cambiar la foto del perfil";
App::$strings["Create a new profile using these settings"] = "Crear un nuevo perfil usando estos ajustes";
App::$strings["Clone this profile"] = "Clonar este perfil";
App::$strings["Delete this profile"] = "Eliminar este perfil";
App::$strings["Import profile from file"] = "Importar perfil desde un fichero";
App::$strings["Export profile to file"] = "Exportar perfil a un fichero";
App::$strings["Profile Name:"] = "Nombre del perfil:";
App::$strings["Your Full Name:"] = "Su nombre completo:";
App::$strings["Title/Description:"] = "Título/Descripción:";
App::$strings["Your Gender:"] = "Su género:";
App::$strings["Birthday :"] = "Cumpleaños:";
App::$strings["Street Address:"] = "Calle:";
App::$strings["Locality/City:"] = "Ciudad:";
App::$strings["Postal/Zip Code:"] = "Código postal:";
App::$strings["Country:"] = "País:";
App::$strings["Region/State:"] = "Región/Estado:";
App::$strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Estado sentimental:";
App::$strings["Who: (if applicable)"] = "Quién: (si es aplicable)";
App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Por ejemplo: ana123, María González, sara@ejemplo.com";
App::$strings["Since [date]:"] = "Desde [fecha]:";
App::$strings["Homepage URL:"] = "Dirección de la página personal:";
App::$strings["Religious Views:"] = "Creencias religiosas:";
App::$strings["Keywords:"] = "Palabras clave:";
App::$strings["Example: fishing photography software"] = "Por ejemplo: software de fotografía submarina";
App::$strings["Used in directory listings"] = "Visible en el directorio público del canal";
App::$strings["Tell us about yourself..."] = "Háblenos de usted...";
App::$strings["Hobbies/Interests"] = "Aficiones/Intereses";
App::$strings["Contact information and Social Networks"] = "Información de contacto y redes sociales";
App::$strings["My other channels"] = "Mis otros canales";
App::$strings["Musical interests"] = "Preferencias musicales";
App::$strings["Books, literature"] = "Libros, literatura";
App::$strings["Television"] = "Televisión";
App::$strings["Film/dance/culture/entertainment"] = "Cine/danza/cultura/entretenimiento";
App::$strings["Love/romance"] = "Vida sentimental/amorosa";
App::$strings["Work/employment"] = "Trabajo";
App::$strings["School/education"] = "Estudios";
App::$strings["This is your default profile."] = "Este es su perfil principal.";
App::$strings["Age: "] = "Edad:";
App::$strings["Edit/Manage Profiles"] = "Modificar/gestionar perfiles";
App::$strings["Add profile things"] = "Añadir cosas al perfil";
App::$strings["Include desirable objects in your profile"] = "Añadir objetos interesantes en su perfil";
App::$strings["No ratings"] = "Ninguna valoración";
App::$strings["Ratings"] = "Valoraciones";
App::$strings["Rating: "] = "Valoración:";
App::$strings["Website: "] = "Sitio web:";
App::$strings["Description: "] = "Descripción:";
App::$strings["Source of Item"] = "Origen del elemento";
App::$strings["\$Projectname Server - Setup"] = "Servidor \$Projectname  - Instalación";
App::$strings["Could not connect to database."] = "No se ha podido conectar a la base de datos.";
App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS.";
App::$strings["Could not create table."] = "No se puede crear la tabla.";
App::$strings["Your site database has been installed."] = "La base de datos del sitio ha sido instalada.";
App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos.";
App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Por favor, lea el fichero \"install/INSTALL.txt\".";
App::$strings["System check"] = "Verificación del sistema";
App::$strings["Check again"] = "Verificar de nuevo";
App::$strings["Database connection"] = "Conexión a la base de datos";
App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Para instalar \$Projectname es necesario saber cómo conectar con su base de datos.";
App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes.";
App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir.";
App::$strings["Database Server Name"] = "Nombre del servidor de base de datos";
App::$strings["Default is localhost"] = "Por defecto es localhost";
App::$strings["Database Port"] = "Puerto de la base de datos";
App::$strings["Communication port number - use 0 for default"] = "Número del puerto de comunicaciones - usar 0 como valor por defecto";
App::$strings["Database Login Name"] = "Nombre de acceso a la base de datos";
App::$strings["Database Login Password"] = "Contraseña de acceso a la base de datos";
App::$strings["Database Name"] = "Nombre de la base de datos";
App::$strings["Database Type"] = "Tipo de base de datos";
App::$strings["Site administrator email address"] = "Dirección de correo electrónico del administrador del sitio";
App::$strings["Your account email address must match this in order to use the web admin panel."] = "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web.";
App::$strings["Website URL"] = "Dirección del sitio web";
App::$strings["Please use SSL (https) URL if available."] = "Por favor, use SSL (https) si está disponible.";
App::$strings["Please select a default timezone for your website"] = "Por favor, selecciones la zona horaria por defecto de su sitio web";
App::$strings["Site settings"] = "Ajustes del sitio";
App::$strings["Could not find a command line version of PHP in the web server PATH."] = "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web.";
App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá ejecutar votaciones en segundo plano vía cron.";
App::$strings["PHP executable path"] = "ruta del ejecutable PHP";
App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación.";
App::$strings["Command line PHP"] = "PHP en línea de comandos";
App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\".";
App::$strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la entrega de mensajes.";
App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv";
App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez.";
App::$strings["You can adjust these settings in the servers php.ini."] = "Puede ajustar estos valores en el fichero php.ini de su servidor.";
App::$strings["PHP upload limits"] = "Límites PHP de subida";
App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado.";
App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\".";
App::$strings["Generate encryption keys"] = "Generar claves de cifrado";
App::$strings["libCurl PHP module"] = "módulo libCurl PHP";
App::$strings["GD graphics PHP module"] = "módulo PHP GD graphics";
App::$strings["OpenSSL PHP module"] = "módulo PHP OpenSSL";
App::$strings["mysqli or postgres PHP module"] = "módulo PHP mysqli o postgres";
App::$strings["mb_string PHP module"] = "módulo PHP mb_string";
App::$strings["mcrypt PHP module"] = "módulo PHP mcrypt ";
App::$strings["xml PHP module"] = "módulo PHP xml";
App::$strings["Apache mod_rewrite module"] = "módulo Apache mod_rewrite ";
App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado.";
App::$strings["proc_open"] = "proc_open";
App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini";
App::$strings["Error: libCURL PHP module required but not installed."] = "Error: se necesita el módulo PHP libCURL pero no está instalado.";
App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el módulo PHP GD graphics es necesario, pero no está instalado.";
App::$strings["Error: openssl PHP module required but not installed."] = "Error: el módulo PHP openssl es necesario, pero no está instalado.";
App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: el módulo PHP mysqli o postgres es necesario pero no ninguno de los dos está instalado.";
App::$strings["Error: mb_string PHP module required but not installed."] = "Error: el módulo PHP mb_string es necesario, pero no está instalado.";
App::$strings["Error: mcrypt PHP module required but not installed."] = "Error: el módulo PHP mcrypt es necesario, pero no está instalado.";
App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: el módulo PHP xml es necesario para DAV, pero no está instalado.";
App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor.";
App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos.";
App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Red.";
App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones.";
App::$strings[".htconfig.php is writable"] = ".htconfig.php tiene permisos de escritura";
App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP.";
App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al subdirectorio %s en el directorio de instalación de Red.";
App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data).";
App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s -no al fichero de plantilla (.tpl) que contiene.";
App::$strings["%s is writable"] = "%s tiene permisos de escritura";
App::$strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalación.";
App::$strings["store is writable"] = "\"store\" tiene permisos de escritura";
App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio.";
App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo.";
App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor.";
App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web.";
App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos.";
App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos.";
App::$strings["SSL certificate validation"] = "validación del certificado SSL";
App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:";
App::$strings["Url rewrite is working"] = "La reescritura de la direcciones funciona correctamente";
App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor.";
App::$strings["Errors encountered creating database tables."] = "Se han encontrado errores al crear las tablas de la base de datos.";
App::$strings["<h1>What next</h1>"] = "<h1>Siguiente paso</h1>";
App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Debe crear [manualmente] una tarea programada para las actualizaciones.";
App::$strings["OpenID protocol error. No ID returned."] = "Error del protocolo OpenID. Ningún ID recibido como respuesta.";
App::$strings["Welcome %s. Remote authentication successful."] = "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente.";
App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado la %3\$s de %2\$s con %4\$s";
App::$strings["No connections."] = "Sin conexiones.";
App::$strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]";
App::$strings["invalid target signature"] = "La firma recibida no es válida";
App::$strings["Theme settings updated."] = "Ajustes del tema actualizados.";
App::$strings["Site"] = "Sitio";
App::$strings["Accounts"] = "Cuentas";
App::$strings["Channels"] = "Canales";
App::$strings["Plugins"] = "Extensiones";
App::$strings["Themes"] = "Temas";
App::$strings["Inspect queue"] = "Examinar la cola";
App::$strings["Profile Config"] = "Ajustes del perfil";
App::$strings["DB updates"] = "Actualizaciones de la base de datos";
App::$strings["Logs"] = "Informes";
App::$strings["Plugin Features"] = "Ajustes de la extensión";
App::$strings["User registrations waiting for confirmation"] = "Registros de usuarios pendientes de confirmación";
App::$strings["# Accounts"] = "# Cuentas";
App::$strings["# blocked accounts"] = "# cuentas bloqueadas";
App::$strings["# expired accounts"] = "# cuentas caducadas";
App::$strings["# expiring accounts"] = "# cuentas que caducan";
App::$strings["# Channels"] = "# Canales";
App::$strings["# primary"] = "# primario";
App::$strings["# clones"] = "# clones";
App::$strings["Message queues"] = "Mensajes en cola";
App::$strings["Administration"] = "Administración";
App::$strings["Summary"] = "Sumario";
App::$strings["Registered accounts"] = "Cuentas registradas";
App::$strings["Pending registrations"] = "Registros pendientes";
App::$strings["Registered channels"] = "Canales registrados";
App::$strings["Active plugins"] = "Extensiones activas";
App::$strings["Version"] = "Versión";
App::$strings["Site settings updated."] = "Ajustes del sitio actualizados.";
App::$strings["mobile"] = "móvil";
App::$strings["experimental"] = "experimental";
App::$strings["unsupported"] = "no soportado";
App::$strings["Yes - with approval"] = "Sí - con aprobación";
App::$strings["My site is not a public server"] = "Mi sitio no es un servidor público";
App::$strings["My site has paid access only"] = "Mi sitio es un servicio de pago";
App::$strings["My site has free access only"] = "Mi sitio es un servicio gratuito";
App::$strings["My site offers free accounts with optional paid upgrades"] = "Mi sitio ofrece cuentas gratuitas con opciones extra de pago";
App::$strings["Registration"] = "Registro";
App::$strings["File upload"] = "Fichero subido";
App::$strings["Policies"] = "Políticas";
App::$strings["Site name"] = "Nombre del sitio";
App::$strings["Banner/Logo"] = "Banner/Logo";
App::$strings["Administrator Information"] = "Información del Administrador";
App::$strings["Contact information for site administrators.  Displayed on siteinfo page.  BBCode can be used here"] = "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode";
App::$strings["System language"] = "Idioma del sistema";
App::$strings["System theme"] = "Tema gráfico del sistema";
App::$strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - <a href='#' id='cnftheme'>modificar ajustes del tema</a>";
App::$strings["Mobile system theme"] = "Tema del sistema para móviles";
App::$strings["Theme for mobile devices"] = "Tema para aparatos móviles";
App::$strings["Enable Diaspora Protocol"] = "Activar el protocolo de la red social Diaspora";
App::$strings["Communicate with Diaspora and Friendica - experimental"] = "Comunicar con Diaspora y Friendica - experimental";
App::$strings["Allow Feeds as Connections"] = "Permitir flujos RSS como conexiones";
App::$strings["(Heavy system resource usage)"] = "(Uso intenso de los recursos del sistema)";
App::$strings["Maximum image size"] = "Tamaño máximo de imagen";
App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites.";
App::$strings["Does this site allow new member registration?"] = "¿Debe este sitio permitir el registro de nuevos miembros?";
App::$strings["Which best describes the types of account offered by this hub?"] = "¿Cómo describiría el tipo de servicio ofrecido por este servidor?";
App::$strings["Register text"] = "Texto del registro";
App::$strings["Will be displayed prominently on the registration page."] = "Se mostrará de forma destacada en la página de registro.";
App::$strings["Site homepage to show visitors (default: login box)"] = "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)";
App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "ejemplo: 'public' para mostrar contenido público de los usuarios, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero.";
App::$strings["Preserve site homepage URL"] = "Preservar la dirección de la página personal";
App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla.";
App::$strings["Accounts abandoned after x days"] = "Cuentas abandonados después de x días";
App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo.";
App::$strings["Allowed friend domains"] = "Dominios amigos permitidos";
App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio.";
App::$strings["Allowed email domains"] = "Se aceptan dominios de correo electrónico";
App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. ";
App::$strings["Not allowed email domains"] = "No se permiten dominios de correo electrónico";
App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado.";
App::$strings["Block public"] = "Bloquear página pública";
App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Activar para bloquear el acceso público a todas las páginas públicas personales en este sitio salvo que estén identificadas en el sistema.";
App::$strings["Verify Email Addresses"] = "Verificar direcciones de correo electrónico";
App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado).";
App::$strings["Force publish"] = "Forzar la publicación";
App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio.";
App::$strings["Disable discovery tab"] = "Desactivar la pestaña \"Descubrir\"";
App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Quitar la pestaña para ver contenido público extraído de las fuentes elegidas por este sitio.";
App::$strings["login on Homepage"] = "acceso a la página personal";
App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido.";
App::$strings["Proxy user"] = "Usuario del proxy";
App::$strings["Proxy URL"] = "Dirección del proxy";
App::$strings["Network timeout"] = "Tiempo de espera de la red";
App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)";
App::$strings["Delivery interval"] = "Intervalo de entrega";
App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Retrasar los procesos de entrega en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para hosts compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados.";
App::$strings["Poll interval"] = "Intervalo de sondeo";
App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Retrasar el sondeo en segundo plano en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, se usará el intervalo de entrega.";
App::$strings["Maximum Load Average"] = "Carga media máxima";
App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que los procesos de entrega y sondeo se hayan retardado - por defecto, 50.";
App::$strings["Expiration period in days for imported (matrix/network) content"] = "Periodo de caducidad en días para el contenido importado (red)";
App::$strings["0 for no expiration of imported content"] = "0 para que no caduque el contenido importado";
App::$strings["No server found"] = "Servidor no encontrado";
App::$strings["ID"] = "ID";
App::$strings["for channel"] = "por canal";
App::$strings["on server"] = "en el servidor";
App::$strings["Status"] = "Estado";
App::$strings["Server"] = "Servidor";
App::$strings["Update has been marked successful"] = "La actualización ha sido marcada como exitosa";
App::$strings["Executing %s failed. Check system logs."] = "La ejecución de %s ha fallado. Mirar en los informes del sistema.";
App::$strings["Update %s was successfully applied."] = "La actualización de %s se ha realizado exitosamente.";
App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito.";
App::$strings["Update function %s could not be found."] = "No se encuentra la función de actualización de %s.";
App::$strings["No failed updates."] = "No ha fallado ninguna actualización.";
App::$strings["Failed Updates"] = "Han fallado las actualizaciones";
App::$strings["Mark success (if update was manually applied)"] = "Marcar como exitosa (si la actualización se ha hecho manualmente)";
App::$strings["Attempt to execute this update step automatically"] = "Intentar ejecutar este paso de actualización automáticamente";
App::$strings["Queue Statistics"] = "Estadísticas de la cola";
App::$strings["Total Entries"] = "Total de entradas";
App::$strings["Priority"] = "Prioridad";
App::$strings["Destination URL"] = "Dirección de destino";
App::$strings["Mark hub permanently offline"] = "Marcar el servidor como permanentemente fuera de línea";
App::$strings["Empty queue for this hub"] = "Vaciar la cola para este servidor";
App::$strings["Last known contact"] = "Último contacto conocido";
App::$strings["%s account blocked/unblocked"] = array(
	0 => "%s cuenta bloqueada/desbloqueada",
	1 => "%s cuenta bloqueada/desbloqueada",
);
App::$strings["%s account deleted"] = array(
	0 => "%s cuentas eliminadas",
	1 => "%s cuentas eliminadas",
);
App::$strings["Account not found"] = "Cuenta no encontrada";
App::$strings["Account '%s' deleted"] = "La cuenta '%s' ha sido eliminada";
App::$strings["Account '%s' blocked"] = "La cuenta '%s' ha sido bloqueada";
App::$strings["Account '%s' unblocked"] = "La cuenta '%s' ha sido desbloqueada";
App::$strings["Users"] = "Usuarios";
App::$strings["select all"] = "seleccionar todo";
App::$strings["User registrations waiting for confirm"] = "Registros de usuario en espera de aprobación";
App::$strings["Request date"] = "Fecha de solicitud";
App::$strings["No registrations."] = "Sin registros.";
App::$strings["Approve"] = "Aprobar";
App::$strings["Deny"] = "Rechazar";
App::$strings["Block"] = "Bloquear";
App::$strings["Unblock"] = "Desbloquear";
App::$strings["Register date"] = "Fecha de registro";
App::$strings["Last login"] = "Último acceso";
App::$strings["Expires"] = "Caduca";
App::$strings["Service Class"] = "Clase de servicio";
App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?";
App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?";
App::$strings["%s channel censored/uncensored"] = array(
	0 => "%s canales censurados/no censurados",
	1 => "%s canales censurados/no censurados",
);
App::$strings["%s channel code allowed/disallowed"] = array(
	0 => "%s código permitido/no permitido al canal",
	1 => "%s código permitido/no permitido al canal",
);
App::$strings["%s channel deleted"] = array(
	0 => "%s canales eliminados",
	1 => "%s canales eliminados",
);
App::$strings["Channel not found"] = "Canal no encontrado";
App::$strings["Channel '%s' deleted"] = "Canal '%s' eliminado";
App::$strings["Channel '%s' censored"] = "Canal '%s' censurado";
App::$strings["Channel '%s' uncensored"] = "Canal '%s' no censurado";
App::$strings["Channel '%s' code allowed"] = "Código permitido al canal '%s'";
App::$strings["Channel '%s' code disallowed"] = "Código no permitido al canal '%s'";
App::$strings["Censor"] = "Censurar";
App::$strings["Uncensor"] = "No censurar";
App::$strings["Allow Code"] = "Permitir código";
App::$strings["Disallow Code"] = "No permitir código";
App::$strings["UID"] = "UID";
App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?";
App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?";
App::$strings["Plugin %s disabled."] = "Extensión %s desactivada.";
App::$strings["Plugin %s enabled."] = "Extensión %s activada.";
App::$strings["Disable"] = "Desactivar";
App::$strings["Enable"] = "Activar";
App::$strings["Toggle"] = "Cambiar";
App::$strings["Author: "] = "Autor:";
App::$strings["Maintainer: "] = "Mantenedor:";
App::$strings["No themes found."] = "No se han encontrado temas.";
App::$strings["Screenshot"] = "Instantánea de pantalla";
App::$strings["[Experimental]"] = "[Experimental]";
App::$strings["[Unsupported]"] = "[No soportado]";
App::$strings["Log settings updated."] = "Actualizado el informe de configuraciones.";
App::$strings["Clear"] = "Vaciar";
App::$strings["Debugging"] = "Depuración";
App::$strings["Log file"] = "Fichero de informe";
App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "Debe tener permisos de escritura para el servidor web. Ruta relativa al directorio raíz de Red.";
App::$strings["Log level"] = "Nivel de depuración";
App::$strings["New Profile Field"] = "Nuevo campo en el perfil";
App::$strings["Field nickname"] = "Alias del campo";
App::$strings["System name of field"] = "Nombre del campo en el sistema";
App::$strings["Input type"] = "Tipo de entrada";
App::$strings["Field Name"] = "Nombre del campo";
App::$strings["Label on profile pages"] = "Etiqueta a mostrar en las páginas del perfil";
App::$strings["Help text"] = "Texto de ayuda";
App::$strings["Additional info (optional)"] = "Información adicional (opcional)";
App::$strings["Field definition not found"] = "Definición del campo no encontrada";
App::$strings["Edit Profile Field"] = "Modificar el campo del perfil";
App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor.";
App::$strings["Post successful."] = "Enviado con éxito.";
App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana.";
App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado.";
App::$strings["Passwords do not match."] = "Las contraseñas no coinciden.";
App::$strings["Registration successful. Please check your email for validation instructions."] = "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo.";
App::$strings["Your registration is pending approval by the site owner."] = "Su registro está pendiente de aprobación por el propietario del sitio.";
App::$strings["Your registration can not be processed."] = "Su registro no puede ser procesado.";
App::$strings["Registration on this site/hub is by approval only."] = "El registro en este servidor/hub está sometido a aprobación previa.";
App::$strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "<a href=\"pubsites\">Inscribirse en un servidor/hub afiliado</a>";
App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana.";
App::$strings["Terms of Service"] = "Términos del servicio";
App::$strings["I accept the %s for this website"] = "Acepto los %s de este sitio";
App::$strings["I am over 13 years of age and accept the %s for this website"] = "Tengo más de 13 años de edad y acepto los %s de este sitio";
App::$strings["Membership on this site is by invitation only."] = "Para registrarse en este sitio es necesaria una invitación.";
App::$strings["Please enter your invitation code"] = "Por favor, introduzca el código de su invitación";
App::$strings["Your email address"] = "Su dirección de correo electrónico";
App::$strings["Choose a password"] = "Elija una contraseña";
App::$strings["Please re-enter your password"] = "Por favor, vuelva a escribir su contraseña";
App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña.";
App::$strings["Remove This Account"] = "Eliminar esta cuenta";
App::$strings["WARNING: "] = "ATENCIÓN:";
App::$strings["This account and all its channels will be completely removed from the network. "] = "Esta cuenta y todos sus canales van a ser eliminados de la red.";
App::$strings["This action is permanent and can not be undone!"] = "¡Esta acción tiene carácter definitivo y no se puede deshacer!";
App::$strings["Please enter your password for verification:"] = "Por favor, introduzca su contraseña para su verificación:";
App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Remover esta cuenta, todos sus canales y clones de la red";
App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red";
App::$strings["Remove Account"] = "Eliminar cuenta";
App::$strings["Help:"] = "Ayuda:";
App::$strings["Not Found"] = "No encontrado";
App::$strings["\$Projectname Documentation"] = "Documentación de \$Projectname";
App::$strings["[Embedded content - reload page to view]"] = "[Contenido incorporado - recargue la página para poder verlo]";
App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible.";
App::$strings["Visible to:"] = "Visible para:";
App::$strings["Name is required"] = "El nombre es obligatorio";
App::$strings["Key and Secret are required"] = "Clave y Secreto son obligatorios";
App::$strings["Diaspora Policy Settings updated."] = "Configuración de directivas de Diaspora actualizada.";
App::$strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no se ha cambiado.";
App::$strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no se ha cambiado.";
App::$strings["Password changed."] = "Constraseña cambiada.";
App::$strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo.";
App::$strings["Not valid email."] = "Correo electrónico no válido.";
App::$strings["Protected email address. Cannot change to that email."] = "Dirección de correo electrónico protegida. No se puede cambiar a ella.";
App::$strings["System failure storing new email. Please try again."] = "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo.";
App::$strings["Settings updated."] = "Ajustes actualizados.";
App::$strings["Add application"] = "Añadir aplicación";
App::$strings["Name of application"] = "Nombre de la aplicación";
App::$strings["Consumer Key"] = "Clave de consumidor";
App::$strings["Automatically generated - change if desired. Max length 20"] = "Generado automáticamente - si lo desea,  cámbielo. Longitud máxima: 20";
App::$strings["Consumer Secret"] = "Clave secreta de consumidor";
App::$strings["Redirect"] = "Redirigir";
App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera";
App::$strings["Icon url"] = "dirección del icono";
App::$strings["Optional"] = "Opcional";
App::$strings["You can't edit this application."] = "No puede modificar esta aplicación.";
App::$strings["Connected Apps"] = "Aplicaciones conectadas";
App::$strings["Client key starts with"] = "La clave de cliente empieza por";
App::$strings["No name"] = "Sin nombre";
App::$strings["Remove authorization"] = "Eliminar autorización";
App::$strings["No feature settings configured"] = "No se ha establecido la configuración de características";
App::$strings["Feature/Addon Settings"] = "Ajustes de la característica o el complemento";
App::$strings["Settings for the built-in Diaspora emulator"] = "Configuración para el emulador de Diaspora incorporado";
App::$strings["Allow any Diaspora member to comment on your public posts"] = "Permitir a cualquier miembro de Diaspora comentar en sus publicaciones públicas";
App::$strings["Enable the Diaspora protocol for this channel"] = "Activar el protocolo de Diaspora para este canal";
App::$strings["Diaspora Policy Settings"] = "Configuración de directivas de Diaspora";
App::$strings["Prevent your hashtags from being redirected to other sites"] = "Impedir que sus \"hashtags\" sean redirigidos a otros sitios ";
App::$strings["Account Settings"] = "Configuración de la cuenta";
App::$strings["Enter New Password:"] = "Introduzca la nueva contraseña:";
App::$strings["Confirm New Password:"] = "Confirme la nueva contraseña:";
App::$strings["Leave password fields blank unless changing"] = "Dejar en blanco los campos de contraseña a menos que cambie";
App::$strings["Email Address:"] = "Dirección de correo electrónico:";
App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales";
App::$strings["Off"] = "Desactivado";
App::$strings["On"] = "Activado";
App::$strings["Additional Features"] = "Características adicionales";
App::$strings["Connector Settings"] = "Configuración del conector";
App::$strings["No special theme for mobile devices"] = "Sin tema especial para dispositivos móviles";
App::$strings["%s - (Experimental)"] = "%s - (Experimental)";
App::$strings["Display Settings"] = "Ajustes de visualización";
App::$strings["Theme Settings"] = "Ajustes del tema";
App::$strings["Custom Theme Settings"] = "Ajustes personalizados del tema";
App::$strings["Content Settings"] = "Ajustes del contenido";
App::$strings["Display Theme:"] = "Tema gráfico del perfil:";
App::$strings["Mobile Theme:"] = "Tema para el móvil:";
App::$strings["Enable user zoom on mobile devices"] = "Habilitar zoom de usuario en dispositivos móviles";
App::$strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos";
App::$strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sin máximo";
App::$strings["Maximum number of conversations to load at any time:"] = "Máximo número de conversaciones a cargar en cualquier momento:";
App::$strings["Maximum of 100 items"] = "Máximo de 100 elementos";
App::$strings["Show emoticons (smilies) as images"] = "Mostrar emoticonos (smilies) como imágenes";
App::$strings["Link post titles to source"] = "Enlazar título de la publicación a la fuente original";
App::$strings["System Page Layout Editor - (advanced)"] = "Editor de diseño de página del sistema - (avanzado)";
App::$strings["Use blog/list mode on channel page"] = "Usar modo blog/lista en la página de inicio del canal";
App::$strings["(comments displayed separately)"] = "(comentarios mostrados de forma separada)";
App::$strings["Use blog/list mode on matrix page"] = "Mostrar la red en modo blog/lista";
App::$strings["Channel page max height of content (in pixels)"] = "Altura máxima del contenido de la página del canal (en píxeles)";
App::$strings["click to expand content exceeding this height"] = "Pulsa para expandir el contenido que excede esta altura";
App::$strings["Matrix page max height of content (in pixels)"] = "Altura máxima del contenido de la página de la red (en píxeles)";
App::$strings["Nobody except yourself"] = "Nadie excepto tú";
App::$strings["Only those you specifically allow"] = "Solo aquellos a los que usted permita explícitamente";
App::$strings["Approved connections"] = "Conexiones aprobadas";
App::$strings["Any connections"] = "Cualquier conexión";
App::$strings["Anybody on this website"] = "Cualquiera en este sitio web";
App::$strings["Anybody in this network"] = "Cualquiera en esta red";
App::$strings["Anybody authenticated"] = "Cualquiera que esté autenticado";
App::$strings["Anybody on the internet"] = "Cualquiera en internet";
App::$strings["Publish your default profile in the network directory"] = "Publicar su perfil principal en el directorio de la red";
App::$strings["Allow us to suggest you as a potential friend to new members?"] = "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?";
App::$strings["Your channel address is"] = "Su dirección de canal es";
App::$strings["Channel Settings"] = "Ajustes del canal";
App::$strings["Basic Settings"] = "Configuración básica";
App::$strings["Your Timezone:"] = "Su zona horaria:";
App::$strings["Default Post Location:"] = "Ubicación de publicación predeterminada:";
App::$strings["Geographical location to display on your posts"] = "Ubicación geográfica que debe mostrarse en sus publicaciones";
App::$strings["Use Browser Location:"] = "Usar la localización del navegador:";
App::$strings["Adult Content"] = "Contenido solo para adultos";
App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)";
App::$strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad";
App::$strings["Your permissions are already configured. Click to view/adjust"] = "Sus permisos ya están configurados. Pulse para ver/ajustar";
App::$strings["Hide my online presence"] = "Ocultra mi presencia en línea";
App::$strings["Prevents displaying in your profile that you are online"] = "Evitar mostrar en su perfil que está en línea";
App::$strings["Simple Privacy Settings:"] = "Configuración de privacidad sencilla:";
App::$strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Muy Público - <em>extremadamente permisivo (debería ser usado con precaución)</em>";
App::$strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Típico - <em>por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)</em>";
App::$strings["Private - <em>default private, never open or public</em>"] = "Privado - <em>por defecto, privado, nunca abierto o público</em>";
App::$strings["Blocked - <em>default blocked to/from everybody</em>"] = "Bloqueado - <em>por defecto, bloqueado/a para cualquiera</em>";
App::$strings["Allow others to tag your posts"] = "Permitir a otros etiquetar sus publicaciones";
App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva.";
App::$strings["Advanced Privacy Settings"] = "Configuración de privacidad avanzada";
App::$strings["Expire other channel content after this many days"] = "Caducar contenido de otro canal después de este número de días";
App::$strings["0 or blank prevents expiration"] = "0 o en claro evitan la caducidad";
App::$strings["Maximum Friend Requests/Day:"] = "Máximo de solicitudes de amistad por día:";
App::$strings["May reduce spam activity"] = "Podría reducir la actividad de spam";
App::$strings["Default Post Permissions"] = "Permidos de publicación predeterminados";
App::$strings["Channel permissions category:"] = "Categoría de permisos del canal:";
App::$strings["Maximum private messages per day from unknown people:"] = "Máximo de mensajes privados por día de gente desconocida:";
App::$strings["Useful to reduce spamming"] = "Útil para reducir el envío de correo no deseado";
App::$strings["Notification Settings"] = "Configuración de notificaciones";
App::$strings["By default post a status message when:"] = "Por defecto, enviar un mensaje de estado cuando:";
App::$strings["accepting a friend request"] = "acepte una solicitud de amistad";
App::$strings["joining a forum/community"] = "al unirse a un foro o comunidad";
App::$strings["making an <em>interesting</em> profile change"] = "realice un cambio <em>interesante</em> en su perfil";
App::$strings["Send a notification email when:"] = "Enviar una notificación por correo electrónico cuando:";
App::$strings["You receive a connection request"] = "Reciba una solicitud de conexión";
App::$strings["Your connections are confirmed"] = "Sus conexiones hayan sido confirmadas";
App::$strings["Someone writes on your profile wall"] = "Alguien escriba en la página de su perfil (muro)";
App::$strings["Someone writes a followup comment"] = "Alguien escriba un comentario sobre sus publicaciones";
App::$strings["You receive a private message"] = "Reciba un mensaje privado";
App::$strings["You receive a friend suggestion"] = "Reciba una sugerencia de amistad";
App::$strings["You are tagged in a post"] = "Usted ha sido etiquetado en una publicación";
App::$strings["You are poked/prodded/etc. in a post"] = "Reciba un toque o incitación en una entrada";
App::$strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:";
App::$strings["Unseen matrix activity"] = "Actividad no vista en la red";
App::$strings["Unseen channel activity"] = "Actividad no vista en el canal";
App::$strings["Unseen private messages"] = "Mensajes privados no leídos";
App::$strings["Recommended"] = "Recomendado";
App::$strings["Upcoming events"] = "Próximos eventos";
App::$strings["Events today"] = "Eventos de hoy";
App::$strings["Upcoming birthdays"] = "Próximos cumpleaños";
App::$strings["Not available in all themes"] = "No disponible en todos los temas";
App::$strings["System (personal) notifications"] = "Notificaciones del sistema (personales)";
App::$strings["System info messages"] = "Mensajes de información del sistema";
App::$strings["System critical alerts"] = "Alertas críticas del sistema";
App::$strings["New connections"] = "Nuevas conexiones";
App::$strings["System Registrations"] = "Registros del sistema";
App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones";
App::$strings["Notify me of events this many days in advance"] = "Avisarme de los eventos con algunos días de antelación";
App::$strings["Must be greater than 0"] = "Debe ser mayor que 0";
App::$strings["Advanced Account/Page Type Settings"] = "Ajustes avanzados de la cuenta y de los tipos de página";
App::$strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta en situaciones especiales";
App::$strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "Activar modo experto (en <a href=\"settings/features\">Ajustes > Características Adicionales</a>) para ajustar.";
App::$strings["Miscellaneous Settings"] = "Ajustes diversos";
App::$strings["Personal menu to display in your channel pages"] = "Menú personal que debe mostrarse en las páginas de su canal";
App::$strings["Remove Channel"] = "Eliminar canal";
App::$strings["Remove this channel."] = "Eliminar este canal.";
App::$strings["First Name"] = "Nombre";
App::$strings["Last Name"] = "Apellido";
App::$strings["Nickname"] = "Sobrenombre o Alias";
App::$strings["Full Name"] = "Nombre completo";
App::$strings["Profile Photo 16px"] = "Foto de perfil 16px";
App::$strings["Profile Photo 32px"] = "Foto de perfil 32px";
App::$strings["Profile Photo 48px"] = "Foto de perfil 48px";
App::$strings["Profile Photo 64px"] = "Foto de perfil 64px";
App::$strings["Profile Photo 80px"] = "Foto de perfil 80px";
App::$strings["Profile Photo 128px"] = "Foto de perfil 128px";
App::$strings["Timezone"] = "Zona horaria";
App::$strings["Homepage URL"] = "Dirección de la página personal";
App::$strings["Birth Year"] = "Año de nacimiento";
App::$strings["Birth Month"] = "Mes de nacimiento";
App::$strings["Birth Day"] = "Día de nacimiento";
App::$strings["Birthdate"] = "Fecha de nacimiento";
App::$strings["Conversation removed."] = "Conversación eliminada.";
App::$strings["No messages."] = "Sin mensajes.";
App::$strings["Delete conversation"] = "Eliminar conversación";
App::$strings["D, d M Y - g:i A"] = "D d M Y - G:i";
App::$strings["Export Channel"] = "Exportar el canal";
App::$strings["Export your basic channel information to a file.  This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido.";
App::$strings["Export Content"] = "Exportar contenidos";
App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large.  Please be patient - it may take several minutes for this download to begin."] = "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar.";
App::$strings["Export your posts from a given year or month:"] = "Exporta sus entradas de un año o mes determinados.";
App::$strings["You may also export your posts and conversations for a particular year or month. Click on one of the recent years or months below."] = "También puede exportar sus entradas y conversaciones de un año o mes en particular. Hágalo en primer lugar con uno de los años o meses más recientes.";
App::$strings["Jan"] = "Ene";
App::$strings["Feb"] = "Feb";
App::$strings["Mar"] = "Mar";
App::$strings["Apr"] = "Abr";
App::$strings["Jun"] = "Jun";
App::$strings["Jul"] = "Jul";
App::$strings["Aug"] = "Ago";
App::$strings["Sep"] = "Sep";
App::$strings["Oct"] = "Oct";
App::$strings["Nov"] = "Nov";
App::$strings["Dec"] = "Dic";
App::$strings["If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, inténtelo de nuevo seleccionando un rango de fechas más pequeño.";
App::$strings["Or adjust the date in your browser location bar to select other dates. For example the year 2013; <a href=\"%1\$s/2013\">%1\$s/2013</a> or the month September 2013; <a href=\"%1\$s/2013/9\">%1\$s/2013/9</a>"] = "Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Por ejemlo, el año 2013:  <a href=\"%1\$s/2013\">%1\$s/2013</a> o el mes de septiembre de 2013: <a href=\"%1\$s/2013/9\">%1\$s/2013/9</a>";
App::$strings["Please visit"] = "Por favor, visite";
App::$strings["on another hub to import the backup files(s)."] = "en otro servidor hub para importar el fichero (s) de copia de seguridad.";
App::$strings["We advise you to clone the channel on the new hub first and than to import the backup file(s) (from the same channel) in chronological order. Importing the backup files into another channel will certainly give permission issues."] = "Aviso: al clonar el canal en un nuevo servidor hub, en primer lugar tiene que importar el fichero (s) con las copias de seguridad (desde el mismo canal) en orden cronológico.  Importar los ficheros de copia de seguridad en otro canal le dará, con toda seguridad, problemas de permisos.";
App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos";
App::$strings["Total votes"] = "Total de votos";
App::$strings["Average Rating"] = "Valoración media";
App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña.";
App::$strings["Remove This Channel"] = "Eliminar este canal";
App::$strings["This channel will be completely removed from the network. "] = "Este canal va a ser completamente eliminado de la red.";
App::$strings["Remove this channel and all its clones from the network"] = "Eliminar este canal y todos sus clones de la red";
App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red";
App::$strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto.";
App::$strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado.";
App::$strings["Connection updated."] = "Conexión actualizada.";
App::$strings["Failed to update connection record."] = "Error al actualizar el registro de la conexión.";
App::$strings["is now connected to"] = "ahora está conectado a";
App::$strings["Could not access address book record."] = "No se pudo acceder a la entrada en su libreta de direcciones.";
App::$strings["Refresh failed - channel is currently unavailable."] = "Recarga fallida - no se puede encontrar actualmente el canal";
App::$strings["Unable to set address book parameters."] = "No ha sido posible establecer los parámetros de la libreta de direcciones.";
App::$strings["Connection has been removed."] = "La conexión ha sido eliminada.";
App::$strings["View %s's profile"] = "Ver el perfil de %s";
App::$strings["Refresh Permissions"] = "Recargar los permisos";
App::$strings["Fetch updated permissions"] = "Obtener los permisos actualizados";
App::$strings["Recent Activity"] = "Actividad reciente";
App::$strings["View recent posts and comments"] = "Ver publicaciones y comentarios recientes";
App::$strings["Block (or Unblock) all communications with this connection"] = "Bloquear (o desbloquear) todas las comunicaciones con esta conexión";
App::$strings["This connection is blocked!"] = "¡Esta conexión está bloqueada!";
App::$strings["Unignore"] = "Dejar de ignorar";
App::$strings["Ignore"] = "Ignorar";
App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión";
App::$strings["This connection is ignored!"] = "¡Esta conexión es ignorada!";
App::$strings["Unarchive"] = "Desarchivar";
App::$strings["Archive"] = "Archivar";
App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos";
App::$strings["This connection is archived!"] = "¡Esta conexión está archivada!";
App::$strings["Unhide"] = "Mostrar";
App::$strings["Hide"] = "Ocultar";
App::$strings["Hide or Unhide this connection from your other connections"] = "Ocultar o mostrar esta conexión a sus otras conexiones";
App::$strings["This connection is hidden!"] = "¡Esta conexión está oculta!";
App::$strings["Delete this connection"] = "Eliminar esta conexión";
App::$strings["Approve this connection"] = "Aprobar esta conexión";
App::$strings["Accept connection to allow communication"] = "Aceptar la conexión para permitir la comunicación";
App::$strings["Set Affinity"] = "Ajustar Afinidad";
App::$strings["Set Profile"] = "Ajustar Perfil";
App::$strings["Set Affinity & Profile"] = "Ajustar Afinidad y Perfil";
App::$strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente";
App::$strings["This connection's address is"] = "La dirección de esta conexión es";
App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones.";
App::$strings["Slide to adjust your degree of friendship"] = "Deslizar para ajustar el grado de amistad";
App::$strings["Slide to adjust your rating"] = "Deslizar para ajustar su valoración";
App::$strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración";
App::$strings["Custom Filter"] = "Filtro Personalizado";
App::$strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto";
App::$strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = "Palabras, una por línea o #etiquetas o /patrones/, dejar en blanco para importar todas las entradas";
App::$strings["Do not import posts with this text"] = "No importar entradas que contienen este texto";
App::$strings["This information is public!"] = "¡Esta información es pública!";
App::$strings["Connection Pending Approval"] = "Conexión pendiente de aprobación";
App::$strings["Connection Request"] = "Solicitud de conexión";
App::$strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) desearía conectar con usted. por favor, apruebe esta conexión para permitir la comunicación.";
App::$strings["Approve Later"] = "Aprobar más tarde";
App::$strings["inherited"] = "heredado";
App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura.";
App::$strings["Their Settings"] = "Sus ajustes";
App::$strings["My Settings"] = "Mis ajustes";
App::$strings["Individual Permissions"] = "Permisos individuales";
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can <strong>not</strong> change those settings here."] = "Algunos permisos pueden ser heredados de los <a href=\"settings\"><strong>ajustes de privacidad</strong></a> de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. <strong>No</strong> puede cambiar estos ajustes aquí.";
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Algunos permisos pueden ser heredados de los <a href=\"settings\"><strong>ajustes de privacidad</strong></a> de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún impacto hasta que cambie los ajustes heredados.";
App::$strings["Last update:"] = "Última actualización:";
App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. por favor, compruebe que la ID está correctamente escrita.";
App::$strings["The error message was:"] = "El mensaje de error fue:";
App::$strings["Authentication failed."] = "Falló la autenticación.";
App::$strings["Remote Authentication"] = "Acceso desde su servidor";
App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)";
App::$strings["Authenticate"] = "Acceder";
App::$strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario.";
App::$strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado.";
App::$strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado.";
App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló.";
App::$strings["Message deleted."] = "Mensaje eliminado.";
App::$strings["Message recalled."] = "Mensaje revocado.";
App::$strings["Send Private Message"] = "Enviar un mensaje privado";
App::$strings["To:"] = "Para:";
App::$strings["Subject:"] = "Asunto:";
App::$strings["Send"] = "Enviar";
App::$strings["Message not found."] = "No se encuentra el mensaje.";
App::$strings["Delete message"] = "Mensaje eliminado";
App::$strings["Recall message"] = "Revocar el mensaje";
App::$strings["Message has been recalled."] = "El mensaje ha sido revocado.";
App::$strings["Private Conversation"] = "Conversación privada";
App::$strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero <strong>puede</strong> responder desde la página de perfil del remitente.";
App::$strings["Send Reply"] = "Responder";
App::$strings["Invalid request identifier."] = "Petición inválida del identificador.";
App::$strings["Discard"] = "Descartar";
App::$strings["Please login."] = "Por favor, inicie sesión.";
App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo.";
App::$strings["Add a Channel"] = "Añadir un canal";
App::$strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Un canal está formado por su propia colección de páginas web relacionadas. Se puede utilizar para almacenar los perfiles sociales de la red, blogs, grupos de conversación y foros, páginas de famosos y mucho más. Puede crear tantos canales como su proveedor de servicio permita.";
App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Ejemplos: \"Juan García\", \"Isabel y sus caballos\", \"Fútbol\", \"Grupo de parapente\" ";
App::$strings["Choose a short nickname"] = "Elija un alias corto";
App::$strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Su alias podrá usarse para crear una dirección de canal fácilmente memorizable (como una dirección de correo electrónico) que puede ser compartido con otros.";
App::$strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "O <a href=\"import\">importar un canal existente</a> de otro lugar";
App::$strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Elija el tipo de canal (como red social o foro de discusión) y la privacidad que requiera, así podremos seleccionar el mejor conjunto de permisos para usted";
App::$strings["Channel Type"] = "Tipo de canal";
App::$strings["Read more about roles"] = "Leer más sobre los roles";
App::$strings["App installed."] = "Aplicación instalada.";
App::$strings["Malformed app."] = "Aplicación con errores";
App::$strings["Embed code"] = "código incorporado";
App::$strings["Edit App"] = "Modificar la aplicación";
App::$strings["Create App"] = "Crear una aplicación";
App::$strings["Name of app"] = "Nombre de la aplicación";
App::$strings["Location (URL) of app"] = "Ubicación (URL) de la aplicación";
App::$strings["Photo icon URL"] = "Dirección del icono que se va a utilizar para esta foto";
App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional";
App::$strings["Version ID"] = "Versión";
App::$strings["Price of app"] = "Precio de la aplicación";
App::$strings["Location (URL) to purchase app"] = "Ubicación (URL) donde adquirir la aplicación";
App::$strings["sent you a private message"] = "enviarle un mensaje privado";
App::$strings["added your channel"] = "añadió este canal a sus conexiones";
App::$strings["posted an event"] = "publicó un evento";
App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche";
App::$strings["Layout Description"] = "Descripción del formato";
App::$strings["Download PDL file"] = "Descargar el fichero PDL";
App::$strings["Welcome to %s"] = "Bienvenido a %s";
App::$strings["Lorem Ipsum"] = "Lorem Ipsum";
App::$strings["Bookmark added"] = "Marcador añadido";
App::$strings["My Bookmarks"] = "Mis Marcadores";
App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones";
App::$strings["Insufficient permissions.  Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil.";
App::$strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada.";
App::$strings["Configuration Editor"] = "Editor de configuración";
App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Atención: El cambio de algunos ajustes puede volver inoperante su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica.";
App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo.";
App::$strings["Poll"] = "Sondear";
App::$strings["View Results"] = "Mostrar resultados";
App::$strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio.";
App::$strings["Files: shared with me"] = "Ficheros: compartidos conmigo";
App::$strings["NEW"] = "NUEVO";
App::$strings["Remove all files"] = "Borrar todos los ficheros";
App::$strings["Remove this file"] = "Borrar este fichero";
App::$strings["Schema Default"] = "Esquema predeterminado";
App::$strings["Sans-Serif"] = "Sans-Serif";
App::$strings["Monospace"] = "Monospace";
App::$strings["Theme settings"] = "Ajustes del tema";
App::$strings["Set scheme"] = "Ajustar esquema";
App::$strings["Set font-size for posts and comments"] = "Ajustar el tamaño del tipo de letra para entradas y comentarios";
App::$strings["Set font face"] = "Ajustar el tipo de letra";
App::$strings["Set iconset"] = "Ajustar el conjunto de iconos";
App::$strings["Set big shadow size, default 15px 15px 15px"] = "Ajustar el sombreado grande, por defecto 15px 15px 15px";
App::$strings["Set small shadow size, default 5px 5px 5px"] = "Ajustar el sombreado pequeño, por defecto 5px 5px 5px";
App::$strings["Set shadow color, default #000"] = "Ajustar el color del sombreado, predeterminado a #000";
App::$strings["Set radius size, default 5px"] = "Ajusta el tamaño del radio, predeterminado a 5px";
App::$strings["Set line-height for posts and comments"] = "Ajustar la altura de linea para entradas y comentarios";
App::$strings["Set background image"] = "Ajustar la imagen de fondo";
App::$strings["Set background attachment"] = "Ajustar el fondo adjuntado";
App::$strings["Set background color"] = "Ajustar el color de fondo";
App::$strings["Set section background image"] = "Ajustar la imagen de la sección del fondo";
App::$strings["Set section background color"] = "Ajustar el color de la sección del fondo";
App::$strings["Set color of items - use hex"] = "Ajustar el color de los elementos - utilizar código hexadecimal";
App::$strings["Set color of links - use hex"] = "Ajusta el color de los enlaces - utilizar código hexadecimal";
App::$strings["Set max-width for items.  Default 400px"] = "Ajustar la anchura máxima para los elementos. Predeterminado a 400px";
App::$strings["Set min-width for items.  Default 240px"] = "Ajustar la anchura mínima para los elementos. Predeterminado a 240px";
App::$strings["Set the generic content wrapper width.  Default 48%"] = "Ajustar el ancho de la envoltura del contenido genérico. Predeterminado 48%";
App::$strings["Set color of fonts - use hex"] = "Ajustar el color del tipo de letra - utiliza código hexadecimal";
App::$strings["Set background-size element"] = "Ajustar el tamaño de fondo del elemento";
App::$strings["Item opacity"] = "Opacidad del elemento";
App::$strings["Display post previews only"] = "Mostrar solo las previsualizaciones de las entradas";
App::$strings["Display side bar on channel page"] = "Muestra la barra lateral en la página del canal";
App::$strings["Colour of the navigation bar"] = "Color de la barra de navegación";
App::$strings["Item float"] = "Elemento flotante";
App::$strings["Left offset of the section element"] = "Desplazamiento izquierdo del elemento de la sección";
App::$strings["Right offset of the section element"] = "Desplazamiento derecho del elemento de la sección";
App::$strings["Section width"] = "Ancho de la sección";
App::$strings["Left offset of the aside"] = "Desplazamiento izquierdo del panel lateral";
App::$strings["Right offset of the aside element"] = "Desplazamiento derecho del elemento del panel lateral";
App::$strings["Light (Red Matrix default)"] = "Ligero (predeterminado de RedMatrix)";
App::$strings["Select scheme"] = "Elegir un esquema";
App::$strings["Narrow navbar"] = "Estrechar la barra de navegación";
App::$strings["Navigation bar background color"] = "Color de fondo de la barra de navegación";
App::$strings["Navigation bar gradient top color"] = "Color superior del gradiente de la barra de navegación";
App::$strings["Navigation bar gradient bottom color"] = "Color inferior del gradiente de la barra de navegación";
App::$strings["Navigation active button gradient top color"] = "Color superior del gradiente del botón activo de navegación";
App::$strings["Navigation active button gradient bottom color"] = "Color inferior del gradiente del botón activo de navegación";
App::$strings["Navigation bar border color "] = "Color del borde de la barra de navegación";
App::$strings["Navigation bar icon color "] = "Color del icono de la barra de navegación";
App::$strings["Navigation bar active icon color "] = "Color del icono activo de la barra de navegación";
App::$strings["link color"] = "Color del enlace";
App::$strings["Set font-color for banner"] = "Ajustar el color del tipo de letra para el \"banner\"";
App::$strings["Set the background color"] = "Ajustar el color de fondo";
App::$strings["Set the background image"] = "Ajustar la imagen de fondo";
App::$strings["Set the background color of items"] = "Ajustar el color de los elementos de fondo";
App::$strings["Set the background color of comments"] = "Ajustar el color de fondo de los comentarios";
App::$strings["Set the border color of comments"] = "Ajustar el color del borde de los comentarios";
App::$strings["Set the indent for comments"] = "Ajustar la indentación de los comentarios";
App::$strings["Set the basic color for item icons"] = "Ajustar el color básico para los iconos de los elementos";
App::$strings["Set the hover color for item icons"] = "Ajustar el color flotante para los iconos de los elementos";
App::$strings["Set font-size for the entire application"] = "Ajustar el tamaño de letra para toda la aplicación";
App::$strings["Example: 14px"] = "Ejemplo: 14px";
App::$strings["Set font-color for posts and comments"] = "Establecer el color de la letra para publicaciones y comentarios";
App::$strings["Set radius of corners"] = "Establecer el radio de curvatura de las esquinas";
App::$strings["Set shadow depth of photos"] = "Ajustar la profundidad de sombras de las fotos";
App::$strings["Set maximum width of content region in pixel"] = "Ajustar la anchura máxima de la región de contenido, en pixels";
App::$strings["Leave empty for default width"] = "Dejar en blanco para la anchura predeterminada";
App::$strings["Center page content"] = "Contenido del centro de la página";
App::$strings["Set minimum opacity of nav bar - to hide it"] = "Ajustar la opacidad mínima de la barra de navegación - para ocultarla";
App::$strings["Set size of conversation author photo"] = "Ajustar el tamaño de la foto del autor de la conversación";
App::$strings["Set size of followup author photos"] = "Ajustar el tamaño de foto de los seguidores del autor";
App::$strings["Update %s failed. See error logs."] = "La actualización %s ha fallado. Mire el informe de errores.";
App::$strings["Update Error at %s"] = "Error de Actualización en %s";
App::$strings["Create an account to access services and applications within the Red Matrix"] = "Crear una cuenta para acceder a los servicios y aplicaciones dentro de la red";
App::$strings["Password"] = "Contraseña";
App::$strings["Remember me"] = "Recordarme";
App::$strings["Forgot your password?"] = "¿Olvidó su contraseña?";
App::$strings["toggle mobile"] = "cambiar a modo móvil";
App::$strings["Website SSL certificate is not valid. Please correct."] = "El certificado SSL del sitio web no es válido. Por favor, corríjalo.";
App::$strings["[red] Website SSL error for %s"] = "[red] Error SSL del sitio web en %s";
App::$strings["Cron/Scheduled tasks not running."] = "Las tareas del Planificador/Cron no están funcionando.";
App::$strings["[red] Cron tasks not running on %s"] = "[red] Las tareas de Cron no están funcionando en %s";