aboutsummaryrefslogtreecommitdiffstats
path: root/util/strings.php
blob: 1fe63b7f78a3cd0a0079408b38d8fb733cb70505 (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
<?php

;
App::$strings["Cannot locate DNS info for database server '%s'"] = "";
App::$strings["Profile Photos"] = "";
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."] = "";
App::$strings["created a new post"] = "";
App::$strings["commented on %s's post"] = "";
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."] = "";
App::$strings["Default privacy group for new contacts"] = "";
App::$strings["All Channels"] = "";
App::$strings["edit"] = "";
App::$strings["Collections"] = "";
App::$strings["Edit collection"] = "";
App::$strings["Add new collection"] = "";
App::$strings["Channels not in any collection"] = "";
App::$strings["add"] = "";
App::$strings["Not a valid email address"] = "";
App::$strings["Your email domain is not among those allowed on this site"] = "";
App::$strings["Your email address is already registered at this site."] = "";
App::$strings["An invitation is required."] = "";
App::$strings["Invitation could not be verified."] = "";
App::$strings["Please enter the required information."] = "";
App::$strings["Failed to store account information."] = "";
App::$strings["Registration confirmation for %s"] = "";
App::$strings["Registration request at %s"] = "";
App::$strings["Administrator"] = "";
App::$strings["your registration password"] = "";
App::$strings["Registration details for %s"] = "";
App::$strings["Account approved."] = "";
App::$strings["Registration revoked for %s"] = "";
App::$strings["Account verified. Please login."] = "";
App::$strings["Click here to upgrade."] = "";
App::$strings["This action exceeds the limits set by your subscription plan."] = "";
App::$strings["This action is not available under your subscription plan."] = "";
App::$strings["Miscellaneous"] = "";
App::$strings["YYYY-MM-DD or MM-DD"] = "";
App::$strings["Required"] = "";
App::$strings["never"] = "";
App::$strings["less than a second ago"] = "";
App::$strings["year"] = "";
App::$strings["years"] = "";
App::$strings["month"] = "";
App::$strings["months"] = "";
App::$strings["week"] = "";
App::$strings["weeks"] = "";
App::$strings["day"] = "";
App::$strings["days"] = "";
App::$strings["hour"] = "";
App::$strings["hours"] = "";
App::$strings["minute"] = "";
App::$strings["minutes"] = "";
App::$strings["second"] = "";
App::$strings["seconds"] = "";
App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "";
App::$strings["%1\$s's birthday"] = "";
App::$strings["Happy Birthday %1\$s"] = "";
App::$strings["New Page"] = "";
App::$strings["Edit"] = "";
App::$strings["View"] = "";
App::$strings["Preview"] = "";
App::$strings["Actions"] = "";
App::$strings["Page Link"] = "";
App::$strings["Title"] = "";
App::$strings["Created"] = "";
App::$strings["Edited"] = "";
App::$strings["Public Timeline"] = "";
App::$strings["Default"] = "";
App::$strings["Directory Options"] = "";
App::$strings["Alphabetic"] = "";
App::$strings["Reverse Alphabetic"] = "";
App::$strings["Newest to Oldest"] = "";
App::$strings["Oldest to Newest"] = "";
App::$strings["Sort"] = "";
App::$strings["Safe Mode"] = "";
App::$strings["Public Forums Only"] = "";
App::$strings["This Website Only"] = "";
App::$strings["l F d, Y \\@ g:i A"] = "";
App::$strings["Starts:"] = "";
App::$strings["Finishes:"] = "";
App::$strings["Location:"] = "";
App::$strings["This event has been added to your calendar."] = "";
App::$strings["Delete this item?"] = "";
App::$strings["Comment"] = "";
App::$strings["[+] show all"] = "";
App::$strings["[-] show less"] = "";
App::$strings["[+] expand"] = "";
App::$strings["[-] collapse"] = "";
App::$strings["Password too short"] = "";
App::$strings["Passwords do not match"] = "";
App::$strings["everybody"] = "";
App::$strings["Secret Passphrase"] = "";
App::$strings["Passphrase hint"] = "";
App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "";
App::$strings["close all"] = "";
App::$strings["Nothing new here"] = "";
App::$strings["Rate This Channel (this is public)"] = "";
App::$strings["Rating"] = "";
App::$strings["Describe (optional)"] = "";
App::$strings["Submit"] = "";
App::$strings["Please enter a link URL"] = "";
App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "";
App::$strings["timeago.prefixAgo"] = "";
App::$strings["timeago.prefixFromNow"] = "";
App::$strings["ago"] = "";
App::$strings["from now"] = "";
App::$strings["less than a minute"] = "";
App::$strings["about a minute"] = "";
App::$strings["%d minutes"] = "";
App::$strings["about an hour"] = "";
App::$strings["about %d hours"] = "";
App::$strings["a day"] = "";
App::$strings["%d days"] = "";
App::$strings["about a month"] = "";
App::$strings["%d months"] = "";
App::$strings["about a year"] = "";
App::$strings["%d years"] = "";
App::$strings[" "] = "";
App::$strings["timeago.numbers"] = "";
App::$strings["parent"] = "";
App::$strings["Collection"] = "";
App::$strings["Principal"] = "";
App::$strings["Addressbook"] = "";
App::$strings["Calendar"] = "";
App::$strings["Schedule Inbox"] = "";
App::$strings["Schedule Outbox"] = "";
App::$strings["Unknown"] = "";
App::$strings["%1\$s used"] = "";
App::$strings["%1\$s used of %2\$s (%3\$s&#37;)"] = "";
App::$strings["Files"] = "";
App::$strings["Total"] = "";
App::$strings["Shared"] = "";
App::$strings["Create"] = "";
App::$strings["Upload"] = "";
App::$strings["Name"] = "";
App::$strings["Type"] = "";
App::$strings["Size"] = "";
App::$strings["Last Modified"] = "";
App::$strings["Delete"] = "";
App::$strings["Create new folder"] = "";
App::$strings["Upload file"] = "";
App::$strings["%1\$s's bookmarks"] = "";
App::$strings["view full size"] = "";
App::$strings["General Features"] = "";
App::$strings["Content Expiration"] = "";
App::$strings["Remove posts/comments and/or private messages at a future time"] = "";
App::$strings["Multiple Profiles"] = "";
App::$strings["Ability to create multiple profiles"] = "";
App::$strings["Advanced Profiles"] = "";
App::$strings["Additional profile sections and selections"] = "";
App::$strings["Profile Import/Export"] = "";
App::$strings["Save and load profile details across sites/channels"] = "";
App::$strings["Web Pages"] = "";
App::$strings["Provide managed web pages on your channel"] = "";
App::$strings["Private Notes"] = "";
App::$strings["Enables a tool to store notes and reminders"] = "";
App::$strings["Navigation Channel Select"] = "";
App::$strings["Change channels directly from within the navigation dropdown menu"] = "";
App::$strings["Photo Location"] = "";
App::$strings["If location data is available on uploaded photos, link this to a map."] = "";
App::$strings["Expert Mode"] = "";
App::$strings["Enable Expert Mode to provide advanced configuration options"] = "";
App::$strings["Premium Channel"] = "";
App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "";
App::$strings["Post Composition Features"] = "";
App::$strings["Use Markdown"] = "";
App::$strings["Allow use of \"Markdown\" to format posts"] = "";
App::$strings["Large Photos"] = "";
App::$strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "";
App::$strings["Channel Sources"] = "";
App::$strings["Automatically import channel content from other channels or feeds"] = "";
App::$strings["Even More Encryption"] = "";
App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "";
App::$strings["Enable voting tools"] = "";
App::$strings["Provide a class of post which others can vote on"] = "";
App::$strings["Network and Stream Filtering"] = "";
App::$strings["Search by Date"] = "";
App::$strings["Ability to select posts by date ranges"] = "";
App::$strings["Collections Filter"] = "";
App::$strings["Enable widget to display Network posts only from selected collections"] = "";
App::$strings["Saved Searches"] = "";
App::$strings["Save search terms for re-use"] = "";
App::$strings["Network Personal Tab"] = "";
App::$strings["Enable tab to display only Network posts that you've interacted on"] = "";
App::$strings["Network New Tab"] = "";
App::$strings["Enable tab to display all new Network activity"] = "";
App::$strings["Affinity Tool"] = "";
App::$strings["Filter stream activity by depth of relationships"] = "";
App::$strings["Suggest Channels"] = "";
App::$strings["Show channel suggestions"] = "";
App::$strings["Post/Comment Tools"] = "";
App::$strings["Tagging"] = "";
App::$strings["Ability to tag existing posts"] = "";
App::$strings["Post Categories"] = "";
App::$strings["Add categories to your posts"] = "";
App::$strings["Saved Folders"] = "";
App::$strings["Ability to file posts under folders"] = "";
App::$strings["Dislike Posts"] = "";
App::$strings["Ability to dislike posts/comments"] = "";
App::$strings["Star Posts"] = "";
App::$strings["Ability to mark special posts with a star indicator"] = "";
App::$strings["Tag Cloud"] = "";
App::$strings["Provide a personal tag cloud on your channel page"] = "";
App::$strings["Categories"] = "";
App::$strings["Apps"] = "";
App::$strings["System"] = "";
App::$strings["Personal"] = "";
App::$strings["Create Personal App"] = "";
App::$strings["Edit Personal App"] = "";
App::$strings["Connect"] = "";
App::$strings["Ignore/Hide"] = "";
App::$strings["Suggestions"] = "";
App::$strings["See more..."] = "";
App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "";
App::$strings["Add New Connection"] = "";
App::$strings["Enter the channel address"] = "";
App::$strings["Example: bob@example.com, http://example.com/barbara"] = "";
App::$strings["Notes"] = "";
App::$strings["Save"] = "";
App::$strings["Remove term"] = "";
App::$strings["Everything"] = "";
App::$strings["Archives"] = "";
App::$strings["Me"] = "";
App::$strings["Family"] = "";
App::$strings["Friends"] = "";
App::$strings["Acquaintances"] = "";
App::$strings["All"] = "";
App::$strings["Refresh"] = "";
App::$strings["Account settings"] = "";
App::$strings["Channel settings"] = "";
App::$strings["Additional features"] = "";
App::$strings["Feature/Addon settings"] = "";
App::$strings["Display settings"] = "";
App::$strings["Connected apps"] = "";
App::$strings["Export channel"] = "";
App::$strings["Connection Default Permissions"] = "";
App::$strings["Premium Channel Settings"] = "";
App::$strings["Settings"] = "";
App::$strings["Messages"] = "";
App::$strings["Check Mail"] = "";
App::$strings["New Message"] = "";
App::$strings["Chat Rooms"] = "";
App::$strings["Bookmarked Chatrooms"] = "";
App::$strings["Suggested Chatrooms"] = "";
App::$strings["photo/image"] = "";
App::$strings["Rate Me"] = "";
App::$strings["View Ratings"] = "";
App::$strings["Public Hubs"] = "";
App::$strings["\$Projectname Notification"] = "";
App::$strings["\$projectname"] = "";
App::$strings["Thank You,"] = "";
App::$strings["%s Administrator"] = "";
App::$strings["%s <!item_type!>"] = "";
App::$strings["[Red:Notify] New mail received at %s"] = "";
App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "";
App::$strings["%1\$s sent you %2\$s."] = "";
App::$strings["a private message"] = "";
App::$strings["Please visit %s to view and/or reply to your private messages."] = "";
App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "";
App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "";
App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "";
App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "";
App::$strings["Please visit %s to view and/or reply to the conversation."] = "";
App::$strings["[Red:Notify] %s posted to your profile wall"] = "";
App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "";
App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "";
App::$strings["[Red:Notify] %s tagged you"] = "";
App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "";
App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "";
App::$strings["[Red:Notify] %1\$s poked you"] = "";
App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "";
App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "";
App::$strings["[Red:Notify] %s tagged your post"] = "";
App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "";
App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "";
App::$strings["[Red:Notify] Introduction received"] = "";
App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "";
App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "";
App::$strings["You may visit their profile at %s"] = "";
App::$strings["Please visit %s to approve or reject the connection request."] = "";
App::$strings["[Red:Notify] Friend suggestion received"] = "";
App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "";
App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "";
App::$strings["Name:"] = "";
App::$strings["Photo:"] = "";
App::$strings["Please visit %s to approve or reject the suggestion."] = "";
App::$strings["[Red:Notify]"] = "";
App::$strings["Frequently"] = "";
App::$strings["Hourly"] = "";
App::$strings["Twice daily"] = "";
App::$strings["Daily"] = "";
App::$strings["Weekly"] = "";
App::$strings["Monthly"] = "";
App::$strings["Friendica"] = "";
App::$strings["OStatus"] = "";
App::$strings["RSS/Atom"] = "";
App::$strings["Email"] = "";
App::$strings["Diaspora"] = "";
App::$strings["Facebook"] = "";
App::$strings["Zot!"] = "";
App::$strings["LinkedIn"] = "";
App::$strings["XMPP/IM"] = "";
App::$strings["MySpace"] = "";
App::$strings["No recipient provided."] = "";
App::$strings["[no subject]"] = "";
App::$strings["Unable to determine sender."] = "";
App::$strings["Stored post could not be verified."] = "";
App::$strings["Channel is blocked on this site."] = "";
App::$strings["Channel location missing."] = "";
App::$strings["Response from remote channel was incomplete."] = "";
App::$strings["Channel was deleted and no longer exists."] = "";
App::$strings["Protocol disabled."] = "";
App::$strings["Channel discovery failed."] = "";
App::$strings["local account not found."] = "";
App::$strings["Cannot connect to yourself."] = "";
App::$strings["Private Message"] = "";
App::$strings["Select"] = "";
App::$strings["Save to Folder"] = "";
App::$strings["I will attend"] = "";
App::$strings["I will not attend"] = "";
App::$strings["I might attend"] = "";
App::$strings["I agree"] = "";
App::$strings["I disagree"] = "";
App::$strings["I abstain"] = "";
App::$strings["View all"] = "";
App::$strings["__ctx:noun__ Like"] = array(
	0 => "",
	1 => "",
);
App::$strings["__ctx:noun__ Dislike"] = array(
	0 => "",
	1 => "",
);
App::$strings["Add Star"] = "";
App::$strings["Remove Star"] = "";
App::$strings["Toggle Star Status"] = "";
App::$strings["starred"] = "";
App::$strings["Message signature validated"] = "";
App::$strings["Message signature incorrect"] = "";
App::$strings["Add Tag"] = "";
App::$strings["I like this (toggle)"] = "";
App::$strings["like"] = "";
App::$strings["I don't like this (toggle)"] = "";
App::$strings["dislike"] = "";
App::$strings["Share This"] = "";
App::$strings["share"] = "";
App::$strings["%d comment"] = array(
	0 => "",
	1 => "",
);
App::$strings["View %s's profile - %s"] = "";
App::$strings["to"] = "";
App::$strings["via"] = "";
App::$strings["Wall-to-Wall"] = "";
App::$strings["via Wall-To-Wall:"] = "";
App::$strings["from %s"] = "";
App::$strings["last edited: %s"] = "";
App::$strings["Expires: %s"] = "";
App::$strings["Save Bookmarks"] = "";
App::$strings["Add to Calendar"] = "";
App::$strings["Mark all seen"] = "";
App::$strings["__ctx:noun__ Likes"] = "";
App::$strings["__ctx:noun__ Dislikes"] = "";
App::$strings["Close"] = "";
App::$strings["Please wait"] = "";
App::$strings["This is you"] = "";
App::$strings["Bold"] = "";
App::$strings["Italic"] = "";
App::$strings["Underline"] = "";
App::$strings["Quote"] = "";
App::$strings["Code"] = "";
App::$strings["Image"] = "";
App::$strings["Insert Link"] = "";
App::$strings["Video"] = "";
App::$strings["Encrypt text"] = "";
App::$strings["New window"] = "";
App::$strings["Open the selected location in a different window or browser tab"] = "";
App::$strings["User '%s' deleted"] = "";
App::$strings["Attachments:"] = "";
App::$strings["\$Projectname event notification:"] = "";
App::$strings["prev"] = "";
App::$strings["first"] = "";
App::$strings["last"] = "";
App::$strings["next"] = "";
App::$strings["older"] = "";
App::$strings["newer"] = "";
App::$strings["No connections"] = "";
App::$strings["%d Connection"] = array(
	0 => "",
	1 => "",
);
App::$strings["View Connections"] = "";
App::$strings["Search"] = "";
App::$strings["poke"] = "";
App::$strings["poked"] = "";
App::$strings["ping"] = "";
App::$strings["pinged"] = "";
App::$strings["prod"] = "";
App::$strings["prodded"] = "";
App::$strings["slap"] = "";
App::$strings["slapped"] = "";
App::$strings["finger"] = "";
App::$strings["fingered"] = "";
App::$strings["rebuff"] = "";
App::$strings["rebuffed"] = "";
App::$strings["happy"] = "";
App::$strings["sad"] = "";
App::$strings["mellow"] = "";
App::$strings["tired"] = "";
App::$strings["perky"] = "";
App::$strings["angry"] = "";
App::$strings["stupified"] = "";
App::$strings["puzzled"] = "";
App::$strings["interested"] = "";
App::$strings["bitter"] = "";
App::$strings["cheerful"] = "";
App::$strings["alive"] = "";
App::$strings["annoyed"] = "";
App::$strings["anxious"] = "";
App::$strings["cranky"] = "";
App::$strings["disturbed"] = "";
App::$strings["frustrated"] = "";
App::$strings["depressed"] = "";
App::$strings["motivated"] = "";
App::$strings["relaxed"] = "";
App::$strings["surprised"] = "";
App::$strings["Monday"] = "";
App::$strings["Tuesday"] = "";
App::$strings["Wednesday"] = "";
App::$strings["Thursday"] = "";
App::$strings["Friday"] = "";
App::$strings["Saturday"] = "";
App::$strings["Sunday"] = "";
App::$strings["January"] = "";
App::$strings["February"] = "";
App::$strings["March"] = "";
App::$strings["April"] = "";
App::$strings["May"] = "";
App::$strings["June"] = "";
App::$strings["July"] = "";
App::$strings["August"] = "";
App::$strings["September"] = "";
App::$strings["October"] = "";
App::$strings["November"] = "";
App::$strings["December"] = "";
App::$strings["unknown.???"] = "";
App::$strings["bytes"] = "";
App::$strings["remove category"] = "";
App::$strings["remove from file"] = "";
App::$strings["Click to open/close"] = "";
App::$strings["Link to Source"] = "";
App::$strings["default"] = "";
App::$strings["Page layout"] = "";
App::$strings["You can create your own with the layouts tool"] = "";
App::$strings["Page content type"] = "";
App::$strings["Select an alternate language"] = "";
App::$strings["photo"] = "";
App::$strings["event"] = "";
App::$strings["status"] = "";
App::$strings["comment"] = "";
App::$strings["activity"] = "";
App::$strings["Design Tools"] = "";
App::$strings["Blocks"] = "";
App::$strings["Menus"] = "";
App::$strings["Layouts"] = "";
App::$strings["Pages"] = "";
App::$strings["Logout"] = "";
App::$strings["End this session"] = "";
App::$strings["Home"] = "";
App::$strings["Your posts and conversations"] = "";
App::$strings["View Profile"] = "";
App::$strings["Your profile page"] = "";
App::$strings["Edit Profiles"] = "";
App::$strings["Manage/Edit profiles"] = "";
App::$strings["Edit Profile"] = "";
App::$strings["Edit your profile"] = "";
App::$strings["Photos"] = "";
App::$strings["Your photos"] = "";
App::$strings["Your files"] = "";
App::$strings["Chat"] = "";
App::$strings["Your chatrooms"] = "";
App::$strings["Bookmarks"] = "";
App::$strings["Your bookmarks"] = "";
App::$strings["Webpages"] = "";
App::$strings["Your webpages"] = "";
App::$strings["Login"] = "";
App::$strings["Sign in"] = "";
App::$strings["%s - click to logout"] = "";
App::$strings["Remote authentication"] = "";
App::$strings["Click to authenticate to your home hub"] = "";
App::$strings["Home Page"] = "";
App::$strings["Register"] = "";
App::$strings["Create an account"] = "";
App::$strings["Help"] = "";
App::$strings["Help and documentation"] = "";
App::$strings["Applications, utilities, links, games"] = "";
App::$strings["Search site content"] = "";
App::$strings["Directory"] = "";
App::$strings["Channel Directory"] = "";
App::$strings["Matrix"] = "";
App::$strings["Your matrix"] = "";
App::$strings["Mark all matrix notifications seen"] = "";
App::$strings["Channel Home"] = "";
App::$strings["Channel home"] = "";
App::$strings["Mark all channel notifications seen"] = "";
App::$strings["Connections"] = "";
App::$strings["Notices"] = "";
App::$strings["Notifications"] = "";
App::$strings["See all notifications"] = "";
App::$strings["Mark all system notifications seen"] = "";
App::$strings["Mail"] = "";
App::$strings["Private mail"] = "";
App::$strings["See all private messages"] = "";
App::$strings["Mark all private messages seen"] = "";
App::$strings["Inbox"] = "";
App::$strings["Outbox"] = "";
App::$strings["Events"] = "";
App::$strings["Event Calendar"] = "";
App::$strings["See all events"] = "";
App::$strings["Mark all events seen"] = "";
App::$strings["Channel Manager"] = "";
App::$strings["Manage Your Channels"] = "";
App::$strings["Account/Channel Settings"] = "";
App::$strings["Admin"] = "";
App::$strings["Site Setup and Configuration"] = "";
App::$strings["Loading..."] = "";
App::$strings["@name, #tag, content"] = "";
App::$strings["Please wait..."] = "";
App::$strings["Tags"] = "";
App::$strings["Keywords"] = "";
App::$strings["have"] = "";
App::$strings["has"] = "";
App::$strings["want"] = "";
App::$strings["wants"] = "";
App::$strings["likes"] = "";
App::$strings["dislikes"] = "";
App::$strings[" and "] = "";
App::$strings["public profile"] = "";
App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
App::$strings["Visit %1\$s's %2\$s"] = "";
App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
App::$strings["Permission denied"] = "";
App::$strings["(Unknown)"] = "";
App::$strings["Visible to anybody on the internet."] = "";
App::$strings["Visible to you only."] = "";
App::$strings["Visible to anybody in this network."] = "";
App::$strings["Visible to anybody authenticated."] = "";
App::$strings["Visible to anybody on %s."] = "";
App::$strings["Visible to all connections."] = "";
App::$strings["Visible to approved connections."] = "";
App::$strings["Visible to specific connections."] = "";
App::$strings["Item not found."] = "";
App::$strings["Permission denied."] = "";
App::$strings["Collection not found."] = "";
App::$strings["Collection is empty."] = "";
App::$strings["Collection: %s"] = "";
App::$strings["Connection: %s"] = "";
App::$strings["Connection not found."] = "";
App::$strings["Can view my normal stream and posts"] = "";
App::$strings["Can view my default channel profile"] = "";
App::$strings["Can view my photo albums"] = "";
App::$strings["Can view my connections"] = "";
App::$strings["Can view my file storage"] = "";
App::$strings["Can view my webpages"] = "";
App::$strings["Can send me their channel stream and posts"] = "";
App::$strings["Can post on my channel page (\"wall\")"] = "";
App::$strings["Can comment on or like my posts"] = "";
App::$strings["Can send me private mail messages"] = "";
App::$strings["Can post photos to my photo albums"] = "";
App::$strings["Can like/dislike stuff"] = "";
App::$strings["Profiles and things other than posts/comments"] = "";
App::$strings["Can forward to all my channel contacts via post @mentions"] = "";
App::$strings["Advanced - useful for creating group forum channels"] = "";
App::$strings["Can chat with me (when available)"] = "";
App::$strings["Can write to my file storage"] = "";
App::$strings["Can edit my webpages"] = "";
App::$strings["Can source my public posts in derived channels"] = "";
App::$strings["Somewhat advanced - very useful in open communities"] = "";
App::$strings["Can administer my channel resources"] = "";
App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "";
App::$strings["Social Networking"] = "";
App::$strings["Mostly Public"] = "";
App::$strings["Restricted"] = "";
App::$strings["Private"] = "";
App::$strings["Community Forum"] = "";
App::$strings["Feed Republish"] = "";
App::$strings["Special Purpose"] = "";
App::$strings["Celebrity/Soapbox"] = "";
App::$strings["Group Repository"] = "";
App::$strings["Other"] = "";
App::$strings["Custom/Expert Mode"] = "";
App::$strings["channel"] = "";
App::$strings["%1\$s likes %2\$s's %3\$s"] = "";
App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "";
App::$strings["%1\$s is now connected with %2\$s"] = "";
App::$strings["%1\$s poked %2\$s"] = "";
App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "";
App::$strings["__ctx:title__ Likes"] = "";
App::$strings["__ctx:title__ Dislikes"] = "";
App::$strings["__ctx:title__ Agree"] = "";
App::$strings["__ctx:title__ Disagree"] = "";
App::$strings["__ctx:title__ Abstain"] = "";
App::$strings["__ctx:title__ Attending"] = "";
App::$strings["__ctx:title__ Not attending"] = "";
App::$strings["__ctx:title__ Might attend"] = "";
App::$strings["View %s's profile @ %s"] = "";
App::$strings["Categories:"] = "";
App::$strings["Filed under:"] = "";
App::$strings["View in context"] = "";
App::$strings["remove"] = "";
App::$strings["Delete Selected Items"] = "";
App::$strings["View Source"] = "";
App::$strings["Follow Thread"] = "";
App::$strings["View Status"] = "";
App::$strings["View Photos"] = "";
App::$strings["Matrix Activity"] = "";
App::$strings["Edit Contact"] = "";
App::$strings["Send PM"] = "";
App::$strings["Poke"] = "";
App::$strings["%s likes this."] = "";
App::$strings["%s doesn't like this."] = "";
App::$strings["<span  %1\$s>%2\$d people</span> like this."] = array(
	0 => "",
	1 => "",
);
App::$strings["<span  %1\$s>%2\$d people</span> don't like this."] = array(
	0 => "",
	1 => "",
);
App::$strings["and"] = "";
App::$strings[", and %d other people"] = array(
	0 => "",
	1 => "",
);
App::$strings["%s like this."] = "";
App::$strings["%s don't like this."] = "";
App::$strings["Visible to <strong>everybody</strong>"] = "";
App::$strings["Please enter a link URL:"] = "";
App::$strings["Please enter a video link/URL:"] = "";
App::$strings["Please enter an audio link/URL:"] = "";
App::$strings["Tag term:"] = "";
App::$strings["Save to Folder:"] = "";
App::$strings["Where are you right now?"] = "";
App::$strings["Expires YYYY-MM-DD HH:MM"] = "";
App::$strings["Share"] = "";
App::$strings["Page link name"] = "";
App::$strings["Post as"] = "";
App::$strings["Upload photo"] = "";
App::$strings["upload photo"] = "";
App::$strings["Attach file"] = "";
App::$strings["attach file"] = "";
App::$strings["Insert web link"] = "";
App::$strings["web link"] = "";
App::$strings["Insert video link"] = "";
App::$strings["video link"] = "";
App::$strings["Insert audio link"] = "";
App::$strings["audio link"] = "";
App::$strings["Set your location"] = "";
App::$strings["set location"] = "";
App::$strings["Toggle voting"] = "";
App::$strings["Clear browser location"] = "";
App::$strings["clear location"] = "";
App::$strings["Title (optional)"] = "";
App::$strings["Categories (optional, comma-separated list)"] = "";
App::$strings["Permission settings"] = "";
App::$strings["permissions"] = "";
App::$strings["Public post"] = "";
App::$strings["Example: bob@example.com, mary@example.com"] = "";
App::$strings["Set expiration date"] = "";
App::$strings["OK"] = "";
App::$strings["Cancel"] = "";
App::$strings["Discover"] = "";
App::$strings["Imported public streams"] = "";
App::$strings["Commented Order"] = "";
App::$strings["Sort by Comment Date"] = "";
App::$strings["Posted Order"] = "";
App::$strings["Sort by Post Date"] = "";
App::$strings["Posts that mention or involve you"] = "";
App::$strings["New"] = "";
App::$strings["Activity Stream - by date"] = "";
App::$strings["Starred"] = "";
App::$strings["Favourite Posts"] = "";
App::$strings["Spam"] = "";
App::$strings["Posts flagged as SPAM"] = "";
App::$strings["Channel"] = "";
App::$strings["Status Messages and Posts"] = "";
App::$strings["About"] = "";
App::$strings["Profile Details"] = "";
App::$strings["Photo Albums"] = "";
App::$strings["Files and Storage"] = "";
App::$strings["Chatrooms"] = "";
App::$strings["Saved Bookmarks"] = "";
App::$strings["Manage Webpages"] = "";
App::$strings["__ctx:noun__ Attending"] = array(
	0 => "",
	1 => "",
);
App::$strings["__ctx:noun__ Not Attending"] = array(
	0 => "",
	1 => "",
);
App::$strings["__ctx:noun__ Undecided"] = array(
	0 => "",
	1 => "",
);
App::$strings["__ctx:noun__ Agree"] = array(
	0 => "",
	1 => "",
);
App::$strings["__ctx:noun__ Disagree"] = array(
	0 => "",
	1 => "",
);
App::$strings["__ctx:noun__ Abstain"] = array(
	0 => "",
	1 => "",
);
App::$strings["Image/photo"] = "";
App::$strings["Encrypted content"] = "";
App::$strings["Install design element: "] = "";
App::$strings["QR code"] = "";
App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "";
App::$strings["post"] = "";
App::$strings["Different viewers will see this text differently"] = "";
App::$strings["$1 spoiler"] = "";
App::$strings["$1 wrote:"] = "";
App::$strings["Image exceeds website size limit of %lu bytes"] = "";
App::$strings["Image file is empty."] = "";
App::$strings["Unable to process image"] = "";
App::$strings["Photo storage failed."] = "";
App::$strings["Upload New Photos"] = "";
App::$strings["Invalid data packet"] = "";
App::$strings["Unable to verify channel signature"] = "";
App::$strings["Unable to verify site signature for %s"] = "";
App::$strings["Embedded content"] = "";
App::$strings["Embedding disabled"] = "";
App::$strings["Logged out."] = "";
App::$strings["Failed authentication"] = "";
App::$strings["Login failed."] = "";
App::$strings["%d invitation available"] = array(
	0 => "",
	1 => "",
);
App::$strings["Advanced"] = "";
App::$strings["Find Channels"] = "";
App::$strings["Enter name or interest"] = "";
App::$strings["Connect/Follow"] = "";
App::$strings["Examples: Robert Morgenstein, Fishing"] = "";
App::$strings["Find"] = "";
App::$strings["Channel Suggestions"] = "";
App::$strings["Random Profile"] = "";
App::$strings["Invite Friends"] = "";
App::$strings["Advanced example: name=fred and country=iceland"] = "";
App::$strings["%d connection in common"] = array(
	0 => "",
	1 => "",
);
App::$strings["show more"] = "";
App::$strings["Visible to your default audience"] = "";
App::$strings["Show"] = "";
App::$strings["Don't show"] = "";
App::$strings["Permissions"] = "";
App::$strings["Item was not found."] = "";
App::$strings["No source file."] = "";
App::$strings["Cannot locate file to replace"] = "";
App::$strings["Cannot locate file to revise/update"] = "";
App::$strings["File exceeds size limit of %d"] = "";
App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "";
App::$strings["File upload failed. Possible system limit or action terminated."] = "";
App::$strings["Stored file could not be verified. Upload failed."] = "";
App::$strings["Path not available."] = "";
App::$strings["Empty pathname"] = "";
App::$strings["duplicate filename or path"] = "";
App::$strings["Path not found."] = "";
App::$strings["mkdir failed."] = "";
App::$strings["database storage failed."] = "";
App::$strings["Unable to obtain identity information from database"] = "";
App::$strings["Empty name"] = "";
App::$strings["Name too long"] = "";
App::$strings["No account identifier"] = "";
App::$strings["Nickname is required."] = "";
App::$strings["Reserved nickname. Please choose another."] = "";
App::$strings["Nickname has unsupported characters or is already being used on this site."] = "";
App::$strings["Unable to retrieve created identity"] = "";
App::$strings["Default Profile"] = "";
App::$strings["Requested channel is not available."] = "";
App::$strings["Requested profile is not available."] = "";
App::$strings["Change profile photo"] = "";
App::$strings["Profiles"] = "";
App::$strings["Manage/edit profiles"] = "";
App::$strings["Create New Profile"] = "";
App::$strings["Profile Image"] = "";
App::$strings["visible to everybody"] = "";
App::$strings["Edit visibility"] = "";
App::$strings["Gender:"] = "";
App::$strings["Status:"] = "";
App::$strings["Homepage:"] = "";
App::$strings["Online Now"] = "";
App::$strings["g A l F d"] = "";
App::$strings["F d"] = "";
App::$strings["[today]"] = "";
App::$strings["Birthday Reminders"] = "";
App::$strings["Birthdays this week:"] = "";
App::$strings["[No description]"] = "";
App::$strings["Event Reminders"] = "";
App::$strings["Events this week:"] = "";
App::$strings["Profile"] = "";
App::$strings["Full Name:"] = "";
App::$strings["Like this channel"] = "";
App::$strings["j F, Y"] = "";
App::$strings["j F"] = "";
App::$strings["Birthday:"] = "";
App::$strings["Age:"] = "";
App::$strings["for %1\$d %2\$s"] = "";
App::$strings["Sexual Preference:"] = "";
App::$strings["Hometown:"] = "";
App::$strings["Tags:"] = "";
App::$strings["Political Views:"] = "";
App::$strings["Religion:"] = "";
App::$strings["About:"] = "";
App::$strings["Hobbies/Interests:"] = "";
App::$strings["Likes:"] = "";
App::$strings["Dislikes:"] = "";
App::$strings["Contact information and Social Networks:"] = "";
App::$strings["My other channels:"] = "";
App::$strings["Musical interests:"] = "";
App::$strings["Books, literature:"] = "";
App::$strings["Television:"] = "";
App::$strings["Film/dance/culture/entertainment:"] = "";
App::$strings["Love/Romance:"] = "";
App::$strings["Work/employment:"] = "";
App::$strings["School/education:"] = "";
App::$strings["Like this thing"] = "";
App::$strings["Male"] = "";
App::$strings["Female"] = "";
App::$strings["Currently Male"] = "";
App::$strings["Currently Female"] = "";
App::$strings["Mostly Male"] = "";
App::$strings["Mostly Female"] = "";
App::$strings["Transgender"] = "";
App::$strings["Intersex"] = "";
App::$strings["Transsexual"] = "";
App::$strings["Hermaphrodite"] = "";
App::$strings["Neuter"] = "";
App::$strings["Non-specific"] = "";
App::$strings["Undecided"] = "";
App::$strings["Males"] = "";
App::$strings["Females"] = "";
App::$strings["Gay"] = "";
App::$strings["Lesbian"] = "";
App::$strings["No Preference"] = "";
App::$strings["Bisexual"] = "";
App::$strings["Autosexual"] = "";
App::$strings["Abstinent"] = "";
App::$strings["Virgin"] = "";
App::$strings["Deviant"] = "";
App::$strings["Fetish"] = "";
App::$strings["Oodles"] = "";
App::$strings["Nonsexual"] = "";
App::$strings["Single"] = "";
App::$strings["Lonely"] = "";
App::$strings["Available"] = "";
App::$strings["Unavailable"] = "";
App::$strings["Has crush"] = "";
App::$strings["Infatuated"] = "";
App::$strings["Dating"] = "";
App::$strings["Unfaithful"] = "";
App::$strings["Sex Addict"] = "";
App::$strings["Friends/Benefits"] = "";
App::$strings["Casual"] = "";
App::$strings["Engaged"] = "";
App::$strings["Married"] = "";
App::$strings["Imaginarily married"] = "";
App::$strings["Partners"] = "";
App::$strings["Cohabiting"] = "";
App::$strings["Common law"] = "";
App::$strings["Happy"] = "";
App::$strings["Not looking"] = "";
App::$strings["Swinger"] = "";
App::$strings["Betrayed"] = "";
App::$strings["Separated"] = "";
App::$strings["Unstable"] = "";
App::$strings["Divorced"] = "";
App::$strings["Imaginarily divorced"] = "";
App::$strings["Widowed"] = "";
App::$strings["Uncertain"] = "";
App::$strings["It's complicated"] = "";
App::$strings["Don't care"] = "";
App::$strings["Ask me"] = "";
App::$strings["Site Admin"] = "";
App::$strings["Address Book"] = "";
App::$strings["Mood"] = "";
App::$strings["Probe"] = "";
App::$strings["Suggest"] = "";
App::$strings["Random Channel"] = "";
App::$strings["Invite"] = "";
App::$strings["Features"] = "";
App::$strings["Language"] = "";
App::$strings["Post"] = "";
App::$strings["Profile Photo"] = "";
App::$strings["Update"] = "";
App::$strings["Install"] = "";
App::$strings["Purchase"] = "";
App::$strings["Missing room name"] = "";
App::$strings["Duplicate room name"] = "";
App::$strings["Invalid room specifier."] = "";
App::$strings["Room not found."] = "";
App::$strings["Room is full"] = "";
App::$strings["Please choose"] = "";
App::$strings["Agree"] = "";
App::$strings["Disagree"] = "";
App::$strings["Abstain"] = "";
App::$strings["projectname"] = "";
App::$strings["Some blurb about what to do when you're new here"] = "";
App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "";
App::$strings["Create a new channel"] = "";
App::$strings["Current Channel"] = "";
App::$strings["Switch to one of your channels by selecting it."] = "";
App::$strings["Default Channel"] = "";
App::$strings["Make Default"] = "";
App::$strings["%d new messages"] = "";
App::$strings["%d new introductions"] = "";
App::$strings["Delegated Channels"] = "";
App::$strings["Name is required"] = "";
App::$strings["Key and Secret are required"] = "";
App::$strings["Diaspora Policy Settings updated."] = "";
App::$strings["Passwords do not match. Password unchanged."] = "";
App::$strings["Empty passwords are not allowed. Password unchanged."] = "";
App::$strings["Password changed."] = "";
App::$strings["Password update failed. Please try again."] = "";
App::$strings["Not valid email."] = "";
App::$strings["Protected email address. Cannot change to that email."] = "";
App::$strings["System failure storing new email. Please try again."] = "";
App::$strings["Settings updated."] = "";
App::$strings["No"] = "";
App::$strings["Yes"] = "";
App::$strings["Add application"] = "";
App::$strings["Name of application"] = "";
App::$strings["Consumer Key"] = "";
App::$strings["Automatically generated - change if desired. Max length 20"] = "";
App::$strings["Consumer Secret"] = "";
App::$strings["Redirect"] = "";
App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "";
App::$strings["Icon url"] = "";
App::$strings["Optional"] = "";
App::$strings["You can't edit this application."] = "";
App::$strings["Connected Apps"] = "";
App::$strings["Client key starts with"] = "";
App::$strings["No name"] = "";
App::$strings["Remove authorization"] = "";
App::$strings["No feature settings configured"] = "";
App::$strings["Feature/Addon Settings"] = "";
App::$strings["Settings for the built-in Diaspora emulator"] = "";
App::$strings["Allow any Diaspora member to comment on your public posts"] = "";
App::$strings["Diaspora Policy Settings"] = "";
App::$strings["Prevent your hashtags from being redirected to other sites"] = "";
App::$strings["Account Settings"] = "";
App::$strings["Enter New Password:"] = "";
App::$strings["Confirm New Password:"] = "";
App::$strings["Leave password fields blank unless changing"] = "";
App::$strings["Email Address:"] = "";
App::$strings["Remove Account"] = "";
App::$strings["Remove this account including all its channels"] = "";
App::$strings["Off"] = "";
App::$strings["On"] = "";
App::$strings["Additional Features"] = "";
App::$strings["Connector Settings"] = "";
App::$strings["No special theme for mobile devices"] = "";
App::$strings["%s - (Experimental)"] = "";
App::$strings["mobile"] = "";
App::$strings["Display Settings"] = "";
App::$strings["Display Theme:"] = "";
App::$strings["Mobile Theme:"] = "";
App::$strings["Enable user zoom on mobile devices"] = "";
App::$strings["Update browser every xx seconds"] = "";
App::$strings["Minimum of 10 seconds, no maximum"] = "";
App::$strings["Maximum number of conversations to load at any time:"] = "";
App::$strings["Maximum of 100 items"] = "";
App::$strings["Show emoticons (smilies) as images"] = "";
App::$strings["Link post titles to source"] = "";
App::$strings["System Page Layout Editor - (advanced)"] = "";
App::$strings["Use blog/list mode on channel page"] = "";
App::$strings["(comments displayed separately)"] = "";
App::$strings["Use blog/list mode on matrix page"] = "";
App::$strings["Channel page max height of content (in pixels)"] = "";
App::$strings["click to expand content exceeding this height"] = "";
App::$strings["Matrix page max height of content (in pixels)"] = "";
App::$strings["Nobody except yourself"] = "";
App::$strings["Only those you specifically allow"] = "";
App::$strings["Approved connections"] = "";
App::$strings["Any connections"] = "";
App::$strings["Anybody on this website"] = "";
App::$strings["Anybody in this network"] = "";
App::$strings["Anybody authenticated"] = "";
App::$strings["Anybody on the internet"] = "";
App::$strings["Publish your default profile in the network directory"] = "";
App::$strings["Allow us to suggest you as a potential friend to new members?"] = "";
App::$strings["or"] = "";
App::$strings["Your channel address is"] = "";
App::$strings["Channel Settings"] = "";
App::$strings["Basic Settings"] = "";
App::$strings["Your Timezone:"] = "";
App::$strings["Default Post Location:"] = "";
App::$strings["Geographical location to display on your posts"] = "";
App::$strings["Use Browser Location:"] = "";
App::$strings["Adult Content"] = "";
App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "";
App::$strings["Security and Privacy Settings"] = "";
App::$strings["Your permissions are already configured. Click to view/adjust"] = "";
App::$strings["Hide my online presence"] = "";
App::$strings["Prevents displaying in your profile that you are online"] = "";
App::$strings["Simple Privacy Settings:"] = "";
App::$strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "";
App::$strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "";
App::$strings["Private - <em>default private, never open or public</em>"] = "";
App::$strings["Blocked - <em>default blocked to/from everybody</em>"] = "";
App::$strings["Allow others to tag your posts"] = "";
App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "";
App::$strings["Advanced Privacy Settings"] = "";
App::$strings["Expire other channel content after this many days"] = "";
App::$strings["0 or blank prevents expiration"] = "";
App::$strings["Maximum Friend Requests/Day:"] = "";
App::$strings["May reduce spam activity"] = "";
App::$strings["Default Post Permissions"] = "";
App::$strings["(click to open/close)"] = "";
App::$strings["Channel permissions category:"] = "";
App::$strings["Maximum private messages per day from unknown people:"] = "";
App::$strings["Useful to reduce spamming"] = "";
App::$strings["Notification Settings"] = "";
App::$strings["By default post a status message when:"] = "";
App::$strings["accepting a friend request"] = "";
App::$strings["joining a forum/community"] = "";
App::$strings["making an <em>interesting</em> profile change"] = "";
App::$strings["Send a notification email when:"] = "";
App::$strings["You receive a connection request"] = "";
App::$strings["Your connections are confirmed"] = "";
App::$strings["Someone writes on your profile wall"] = "";
App::$strings["Someone writes a followup comment"] = "";
App::$strings["You receive a private message"] = "";
App::$strings["You receive a friend suggestion"] = "";
App::$strings["You are tagged in a post"] = "";
App::$strings["You are poked/prodded/etc. in a post"] = "";
App::$strings["Show visual notifications including:"] = "";
App::$strings["Unseen matrix activity"] = "";
App::$strings["Unseen channel activity"] = "";
App::$strings["Unseen private messages"] = "";
App::$strings["Recommended"] = "";
App::$strings["Upcoming events"] = "";
App::$strings["Events today"] = "";
App::$strings["Upcoming birthdays"] = "";
App::$strings["Not available in all themes"] = "";
App::$strings["System (personal) notifications"] = "";
App::$strings["System info messages"] = "";
App::$strings["System critical alerts"] = "";
App::$strings["New connections"] = "";
App::$strings["System Registrations"] = "";
App::$strings["Also show new wall posts, private messages and connections under Notices"] = "";
App::$strings["Notify me of events this many days in advance"] = "";
App::$strings["Must be greater than 0"] = "";
App::$strings["Advanced Account/Page Type Settings"] = "";
App::$strings["Change the behaviour of this account for special situations"] = "";
App::$strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "";
App::$strings["Miscellaneous Settings"] = "";
App::$strings["Personal menu to display in your channel pages"] = "";
App::$strings["Remove Channel"] = "";
App::$strings["Remove this channel."] = "";
App::$strings["Xchan Lookup"] = "";
App::$strings["Lookup xchan beginning with (or webbie): "] = "";
App::$strings["Not found."] = "";
App::$strings["Authorize application connection"] = "";
App::$strings["Return to your app and insert this Securty Code:"] = "";
App::$strings["Please login to continue."] = "";
App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
App::$strings["Page Title"] = "";
App::$strings["Channel added."] = "";
App::$strings["Tag removed"] = "";
App::$strings["Remove Item Tag"] = "";
App::$strings["Select a tag to remove: "] = "";
App::$strings["Remove"] = "";
App::$strings["Continue"] = "";
App::$strings["Premium Channel Setup"] = "";
App::$strings["Enable premium channel connection restrictions"] = "";
App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "";
App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "";
App::$strings["Potential connections will then see the following text before proceeding:"] = "";
App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "";
App::$strings["(No specific instructions have been provided by the channel owner.)"] = "";
App::$strings["Restricted or Premium Channel"] = "";
App::$strings["Thing updated"] = "";
App::$strings["Object store: failed"] = "";
App::$strings["Thing added"] = "";
App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "";
App::$strings["Show Thing"] = "";
App::$strings["item not found."] = "";
App::$strings["Edit Thing"] = "";
App::$strings["Select a profile"] = "";
App::$strings["Post an activity"] = "";
App::$strings["Only sends to viewers of the applicable profile"] = "";
App::$strings["Name of thing e.g. something"] = "";
App::$strings["URL of thing (optional)"] = "";
App::$strings["URL for photo of thing (optional)"] = "";
App::$strings["Add Thing to your Profile"] = "";
App::$strings["Item not available."] = "";
App::$strings["Fetching URL returns error: %1\$s"] = "";
App::$strings["\$Projectname"] = "";
App::$strings["Welcome to %s"] = "";
App::$strings["Image uploaded but image cropping failed."] = "";
App::$strings["Image resize failed."] = "";
App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
App::$strings["Image exceeds size limit of %d"] = "";
App::$strings["Unable to process image."] = "";
App::$strings["Photo not available."] = "";
App::$strings["Upload File:"] = "";
App::$strings["Select a profile:"] = "";
App::$strings["Upload Profile Photo"] = "";
App::$strings["skip this step"] = "";
App::$strings["select a photo from your photo albums"] = "";
App::$strings["Crop Image"] = "";
App::$strings["Please adjust the image cropping for optimum viewing."] = "";
App::$strings["Done Editing"] = "";
App::$strings["Image uploaded successfully."] = "";
App::$strings["Image upload failed."] = "";
App::$strings["Image size reduction [%s] failed."] = "";
App::$strings["Invalid item."] = "";
App::$strings["Channel not found."] = "";
App::$strings["Page not found."] = "";
App::$strings["Like/Dislike"] = "";
App::$strings["This action is restricted to members."] = "";
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."] = "";
App::$strings["Invalid request."] = "";
App::$strings["thing"] = "";
App::$strings["Channel unavailable."] = "";
App::$strings["Previous action reversed."] = "";
App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "";
App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "";
App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "";
App::$strings["%1\$s is attending %2\$s's %3\$s"] = "";
App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "";
App::$strings["%1\$s may attend %2\$s's %3\$s"] = "";
App::$strings["Action completed."] = "";
App::$strings["Thank you."] = "";
App::$strings["Event can not end before it has started."] = "";
App::$strings["Unable to generate preview."] = "";
App::$strings["Event title and start time are required."] = "";
App::$strings["Event not found."] = "";
App::$strings["l, F j"] = "";
App::$strings["Edit event"] = "";
App::$strings["Delete event"] = "";
App::$strings["Create New Event"] = "";
App::$strings["Previous"] = "";
App::$strings["Next"] = "";
App::$strings["Export"] = "";
App::$strings["Event removed"] = "";
App::$strings["Failed to remove event"] = "";
App::$strings["Event details"] = "";
App::$strings["Starting date and Title are required."] = "";
App::$strings["Categories (comma-separated list)"] = "";
App::$strings["Event Starts:"] = "";
App::$strings["Finish date/time is not known or not relevant"] = "";
App::$strings["Event Finishes:"] = "";
App::$strings["Adjust for viewer timezone"] = "";
App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "";
App::$strings["Description:"] = "";
App::$strings["Title:"] = "";
App::$strings["Share this event"] = "";
App::$strings["%1\$s is following %2\$s's %3\$s"] = "";
App::$strings["Public Sites"] = "";
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."] = "";
App::$strings["Rate this hub"] = "";
App::$strings["Site URL"] = "";
App::$strings["Access Type"] = "";
App::$strings["Registration Policy"] = "";
App::$strings["Location"] = "";
App::$strings["View hub ratings"] = "";
App::$strings["Rate"] = "";
App::$strings["View ratings"] = "";
App::$strings["Edit post"] = "";
App::$strings["\$Projectname channel"] = "";
App::$strings["Collection created."] = "";
App::$strings["Could not create collection."] = "";
App::$strings["Collection updated."] = "";
App::$strings["Create a collection of channels."] = "";
App::$strings["Collection Name: "] = "";
App::$strings["Members are visible to other channels"] = "";
App::$strings["Collection removed."] = "";
App::$strings["Unable to remove collection."] = "";
App::$strings["Collection Editor"] = "";
App::$strings["Members"] = "";
App::$strings["All Connected Channels"] = "";
App::$strings["Click on a channel to add or remove."] = "";
App::$strings["Version %s"] = "";
App::$strings["Installed plugins/addons/apps:"] = "";
App::$strings["No installed plugins/addons/apps"] = "";
App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "";
App::$strings["Tag: "] = "";
App::$strings["Last background fetch: "] = "";
App::$strings["Running at web location"] = "";
App::$strings["Please visit <a href=\"https://redmatrix.me\">redmatrix.me</a> to learn more about \$Projectname."] = "";
App::$strings["Bug reports and issues: please visit"] = "";
App::$strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = "";
App::$strings["Site Administrators"] = "";
App::$strings["Help:"] = "";
App::$strings["Not Found"] = "";
App::$strings["\$Projectname Server - Setup"] = "";
App::$strings["Could not connect to database."] = "";
App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "";
App::$strings["Could not create table."] = "";
App::$strings["Your site database has been installed."] = "";
App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "";
App::$strings["Please see the file \"install/INSTALL.txt\"."] = "";
App::$strings["System check"] = "";
App::$strings["Check again"] = "";
App::$strings["Database connection"] = "";
App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "";
App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "";
App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "";
App::$strings["Database Server Name"] = "";
App::$strings["Default is localhost"] = "";
App::$strings["Database Port"] = "";
App::$strings["Communication port number - use 0 for default"] = "";
App::$strings["Database Login Name"] = "";
App::$strings["Database Login Password"] = "";
App::$strings["Database Name"] = "";
App::$strings["Database Type"] = "";
App::$strings["Site administrator email address"] = "";
App::$strings["Your account email address must match this in order to use the web admin panel."] = "";
App::$strings["Website URL"] = "";
App::$strings["Please use SSL (https) URL if available."] = "";
App::$strings["Please select a default timezone for your website"] = "";
App::$strings["Site settings"] = "";
App::$strings["Could not find a command line version of PHP in the web server PATH."] = "";
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."] = "";
App::$strings["PHP executable path"] = "";
App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
App::$strings["Command line PHP"] = "";
App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "";
App::$strings["This is required for message delivery to work."] = "";
App::$strings["PHP register_argc_argv"] = "";
App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "";
App::$strings["Generate encryption keys"] = "";
App::$strings["libCurl PHP module"] = "";
App::$strings["GD graphics PHP module"] = "";
App::$strings["OpenSSL PHP module"] = "";
App::$strings["mysqli or postgres PHP module"] = "";
App::$strings["mb_string PHP module"] = "";
App::$strings["mcrypt PHP module"] = "";
App::$strings["Apache mod_rewrite module"] = "";
App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "";
App::$strings["proc_open"] = "";
App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "";
App::$strings["Error: libCURL PHP module required but not installed."] = "";
App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "";
App::$strings["Error: openssl PHP module required but not installed."] = "";
App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "";
App::$strings["Error: mb_string PHP module required but not installed."] = "";
App::$strings["Error: mcrypt PHP module required but not installed."] = "";
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."] = "";
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."] = "";
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."] = "";
App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "";
App::$strings[".htconfig.php is writable"] = "";
App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
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."] = "";
App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
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."] = "";
App::$strings["%s is writable"] = "";
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"] = "";
App::$strings["store is writable"] = "";
App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "";
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!"] = "";
App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "";
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."] = "";
App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "";
App::$strings["Providers are available that issue free certificates which are browser-valid."] = "";
App::$strings["SSL certificate validation"] = "";
App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "";
App::$strings["Url rewrite is working"] = "";
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."] = "";
App::$strings["Errors encountered creating database tables."] = "";
App::$strings["<h1>What next</h1>"] = "";
App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
App::$strings["No channel."] = "";
App::$strings["Common connections"] = "";
App::$strings["No connections in common."] = "";
App::$strings["This site is not a directory server"] = "";
App::$strings["Could not access contact record."] = "";
App::$strings["Could not locate selected profile."] = "";
App::$strings["Connection updated."] = "";
App::$strings["Failed to update connection record."] = "";
App::$strings["Blocked"] = "";
App::$strings["Ignored"] = "";
App::$strings["Hidden"] = "";
App::$strings["Archived"] = "";
App::$strings["Suggest new connections"] = "";
App::$strings["New Connections"] = "";
App::$strings["Show pending (new) connections"] = "";
App::$strings["All Connections"] = "";
App::$strings["Show all connections"] = "";
App::$strings["Unblocked"] = "";
App::$strings["Only show unblocked connections"] = "";
App::$strings["Only show blocked connections"] = "";
App::$strings["Only show ignored connections"] = "";
App::$strings["Only show archived connections"] = "";
App::$strings["Only show hidden connections"] = "";
App::$strings["%1\$s [%2\$s]"] = "";
App::$strings["Edit connection"] = "";
App::$strings["Search your connections"] = "";
App::$strings["Finding: "] = "";
App::$strings["Block Name"] = "";
App::$strings["Block Title"] = "";
App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
App::$strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "";
App::$strings["Page owner information could not be retrieved."] = "";
App::$strings["Album not found."] = "";
App::$strings["Delete Album"] = "";
App::$strings["Delete Photo"] = "";
App::$strings["Public access denied."] = "";
App::$strings["No photos selected"] = "";
App::$strings["Access to this item is restricted."] = "";
App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "";
App::$strings["%1$.2f MB photo storage used."] = "";
App::$strings["Upload Photos"] = "";
App::$strings["Enter a new album name"] = "";
App::$strings["or select an existing one (doubleclick)"] = "";
App::$strings["Create a status post for this upload"] = "";
App::$strings["Album name could not be decoded"] = "";
App::$strings["Contact Photos"] = "";
App::$strings["Show Newest First"] = "";
App::$strings["Show Oldest First"] = "";
App::$strings["View Photo"] = "";
App::$strings["Edit Album"] = "";
App::$strings["Permission denied. Access to this item may be restricted."] = "";
App::$strings["Photo not available"] = "";
App::$strings["Use as profile photo"] = "";
App::$strings["Private Photo"] = "";
App::$strings["View Full Size"] = "";
App::$strings["Edit photo"] = "";
App::$strings["Rotate CW (right)"] = "";
App::$strings["Rotate CCW (left)"] = "";
App::$strings["Caption"] = "";
App::$strings["Add a Tag"] = "";
App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "";
App::$strings["Flag as adult in album view"] = "";
App::$strings["In This Photo:"] = "";
App::$strings["Map"] = "";
App::$strings["View Album"] = "";
App::$strings["Recent Photos"] = "";
App::$strings["Profile Match"] = "";
App::$strings["No keywords to match. Please add keywords to your default profile."] = "";
App::$strings["is interested in:"] = "";
App::$strings["No matches"] = "";
App::$strings["Away"] = "";
App::$strings["Online"] = "";
App::$strings["Select a bookmark folder"] = "";
App::$strings["Save Bookmark"] = "";
App::$strings["URL of bookmark"] = "";
App::$strings["Description"] = "";
App::$strings["Or enter new bookmark folder name"] = "";
App::$strings["No more system notifications."] = "";
App::$strings["System Notifications"] = "";
App::$strings["network"] = "";
App::$strings["RSS"] = "";
App::$strings["Layout updated."] = "";
App::$strings["Edit System Page Description"] = "";
App::$strings["Layout not found."] = "";
App::$strings["Module Name:"] = "";
App::$strings["Layout Help"] = "";
App::$strings["- select -"] = "";
App::$strings["Your service plan only allows %d channels."] = "";
App::$strings["Nothing to import."] = "";
App::$strings["Unable to download data from old server"] = "";
App::$strings["Imported file is empty."] = "";
App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "";
App::$strings["Unable to create a unique channel address. Import failed."] = "";
App::$strings["Channel clone failed. Import failed."] = "";
App::$strings["Cloned channel not found. Import failed."] = "";
App::$strings["Import completed."] = "";
App::$strings["You must be logged in to use this feature."] = "";
App::$strings["Import Channel"] = "";
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. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "";
App::$strings["File to Upload"] = "";
App::$strings["Or provide the old server/hub details"] = "";
App::$strings["Your old identity address (xyz@example.com)"] = "";
App::$strings["Your old login email address"] = "";
App::$strings["Your old login password"] = "";
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."] = "";
App::$strings["Make this hub my primary location"] = "";
App::$strings["Import existing posts if possible"] = "";
App::$strings["Item not found"] = "";
App::$strings["Edit Layout"] = "";
App::$strings["Delete layout?"] = "";
App::$strings["Insert YouTube video"] = "";
App::$strings["Insert Vorbis [.ogg] video"] = "";
App::$strings["Insert Vorbis [.ogg] audio"] = "";
App::$strings["Layout Description (Optional)"] = "";
App::$strings["Layout Name"] = "";
App::$strings["You must be logged in to see this page."] = "";
App::$strings["Room not found"] = "";
App::$strings["Leave Room"] = "";
App::$strings["Delete This Room"] = "";
App::$strings["I am away right now"] = "";
App::$strings["I am online"] = "";
App::$strings["Bookmark this room"] = "";
App::$strings["New Chatroom"] = "";
App::$strings["Chatroom Name"] = "";
App::$strings["%1\$s's Chatrooms"] = "";
App::$strings["Delete webpage?"] = "";
App::$strings["Page link title"] = "";
App::$strings["Edit Webpage"] = "";
App::$strings["This directory server requires an access token"] = "";
App::$strings["No valid account found."] = "";
App::$strings["Password reset request issued. Check your email."] = "";
App::$strings["Site Member (%s)"] = "";
App::$strings["Password reset requested at %s"] = "";
App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "";
App::$strings["Password Reset"] = "";
App::$strings["Your password has been reset as requested."] = "";
App::$strings["Your new password is"] = "";
App::$strings["Save or copy your new password - and then"] = "";
App::$strings["click here to login"] = "";
App::$strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "";
App::$strings["Your password has changed at %s"] = "";
App::$strings["Forgot your Password?"] = "";
App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "";
App::$strings["Email Address"] = "";
App::$strings["Reset"] = "";
App::$strings["Website:"] = "";
App::$strings["Remote Channel [%s] (not yet known on this site)"] = "";
App::$strings["Rating (this information is public)"] = "";
App::$strings["Optionally explain your rating (this information is public)"] = "";
App::$strings["Item is not editable"] = "";
App::$strings["Delete item?"] = "";
App::$strings["Total invitation limit exceeded."] = "";
App::$strings["%s : Not a valid email address."] = "";
App::$strings["Please join us on Red"] = "";
App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "";
App::$strings["%s : Message delivery failed."] = "";
App::$strings["%d message sent."] = array(
	0 => "",
	1 => "",
);
App::$strings["You have no more invitations available"] = "";
App::$strings["Send invitations"] = "";
App::$strings["Enter email addresses, one per line:"] = "";
App::$strings["Your message:"] = "";
App::$strings["Please join my community on \$Projectname."] = "";
App::$strings["You will need to supply this invitation code: "] = "";
App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "";
App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "";
App::$strings["or visit "] = "";
App::$strings["3. Click [Connect]"] = "";
App::$strings["Location not found."] = "";
App::$strings["Primary location cannot be removed."] = "";
App::$strings["No locations found."] = "";
App::$strings["Manage Channel Locations"] = "";
App::$strings["Location (address)"] = "";
App::$strings["Primary Location"] = "";
App::$strings["Drop location"] = "";
App::$strings["Failed to create source. No channel selected."] = "";
App::$strings["Source created."] = "";
App::$strings["Source updated."] = "";
App::$strings["*"] = "";
App::$strings["Manage remote sources of content for your channel."] = "";
App::$strings["New Source"] = "";
App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "";
App::$strings["Only import content with these words (one per line)"] = "";
App::$strings["Leave blank to import all public content"] = "";
App::$strings["Channel Name"] = "";
App::$strings["Source not found."] = "";
App::$strings["Edit Source"] = "";
App::$strings["Delete Source"] = "";
App::$strings["Source removed"] = "";
App::$strings["Unable to remove source."] = "";
App::$strings["Unable to update menu."] = "";
App::$strings["Unable to create menu."] = "";
App::$strings["Menu Name"] = "";
App::$strings["Unique name (not visible on webpage) - required"] = "";
App::$strings["Menu Title"] = "";
App::$strings["Visible on webpage - leave empty for no title"] = "";
App::$strings["Allow Bookmarks"] = "";
App::$strings["Menu may be used to store saved bookmarks"] = "";
App::$strings["Submit and proceed"] = "";
App::$strings["Drop"] = "";
App::$strings["Bookmarks allowed"] = "";
App::$strings["Delete this menu"] = "";
App::$strings["Edit menu contents"] = "";
App::$strings["Edit this menu"] = "";
App::$strings["Menu could not be deleted."] = "";
App::$strings["Menu not found."] = "";
App::$strings["Edit Menu"] = "";
App::$strings["Add or remove entries to this menu"] = "";
App::$strings["Menu name"] = "";
App::$strings["Must be unique, only seen by you"] = "";
App::$strings["Menu title"] = "";
App::$strings["Menu title as seen by others"] = "";
App::$strings["Allow bookmarks"] = "";
App::$strings["Modify"] = "";
App::$strings["Permission Denied."] = "";
App::$strings["File not found."] = "";
App::$strings["Edit file permissions"] = "";
App::$strings["Set/edit permissions"] = "";
App::$strings["Include all files and sub folders"] = "";
App::$strings["Return to file list"] = "";
App::$strings["Copy/paste this code to attach file to a post"] = "";
App::$strings["Copy/paste this URL to link file from a web page"] = "";
App::$strings["Share this file"] = "";
App::$strings["Show URL to this file"] = "";
App::$strings["Notify your contacts about this file"] = "";
App::$strings["Contact not found."] = "";
App::$strings["Friend suggestion sent."] = "";
App::$strings["Suggest Friends"] = "";
App::$strings["Suggest a friend for %s"] = "";
App::$strings["Hub not found."] = "";
App::$strings["Poke/Prod"] = "";
App::$strings["poke, prod or do other things to somebody"] = "";
App::$strings["Recipient"] = "";
App::$strings["Choose what you wish to do to recipient"] = "";
App::$strings["Make this post private"] = "";
App::$strings["Invalid profile identifier."] = "";
App::$strings["Profile Visibility Editor"] = "";
App::$strings["Click on a contact to add or remove."] = "";
App::$strings["Visible To"] = "";
App::$strings["webpage"] = "";
App::$strings["block"] = "";
App::$strings["layout"] = "";
App::$strings["%s element installed"] = "";
App::$strings["Profile not found."] = "";
App::$strings["Profile deleted."] = "";
App::$strings["Profile-"] = "";
App::$strings["New profile created."] = "";
App::$strings["Profile unavailable to clone."] = "";
App::$strings["Profile unavailable to export."] = "";
App::$strings["Profile Name is required."] = "";
App::$strings["Marital Status"] = "";
App::$strings["Romantic Partner"] = "";
App::$strings["Likes"] = "";
App::$strings["Dislikes"] = "";
App::$strings["Work/Employment"] = "";
App::$strings["Religion"] = "";
App::$strings["Political Views"] = "";
App::$strings["Gender"] = "";
App::$strings["Sexual Preference"] = "";
App::$strings["Homepage"] = "";
App::$strings["Interests"] = "";
App::$strings["Address"] = "";
App::$strings["Profile updated."] = "";
App::$strings["Hide your contact/friend list from viewers of this profile?"] = "";
App::$strings["Edit Profile Details"] = "";
App::$strings["View this profile"] = "";
App::$strings["Change Profile Photo"] = "";
App::$strings["Create a new profile using these settings"] = "";
App::$strings["Clone this profile"] = "";
App::$strings["Delete this profile"] = "";
App::$strings["Import profile from file"] = "";
App::$strings["Export profile to file"] = "";
App::$strings["Profile Name:"] = "";
App::$strings["Your Full Name:"] = "";
App::$strings["Title/Description:"] = "";
App::$strings["Your Gender:"] = "";
App::$strings["Birthday :"] = "";
App::$strings["Street Address:"] = "";
App::$strings["Locality/City:"] = "";
App::$strings["Postal/Zip Code:"] = "";
App::$strings["Country:"] = "";
App::$strings["Region/State:"] = "";
App::$strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "";
App::$strings["Who: (if applicable)"] = "";
App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "";
App::$strings["Since [date]:"] = "";
App::$strings["Homepage URL:"] = "";
App::$strings["Religious Views:"] = "";
App::$strings["Keywords:"] = "";
App::$strings["Example: fishing photography software"] = "";
App::$strings["Used in directory listings"] = "";
App::$strings["Tell us about yourself..."] = "";
App::$strings["Hobbies/Interests"] = "";
App::$strings["Contact information and Social Networks"] = "";
App::$strings["My other channels"] = "";
App::$strings["Musical interests"] = "";
App::$strings["Books, literature"] = "";
App::$strings["Television"] = "";
App::$strings["Film/dance/culture/entertainment"] = "";
App::$strings["Love/romance"] = "";
App::$strings["Work/employment"] = "";
App::$strings["School/education"] = "";
App::$strings["This is your default profile."] = "";
App::$strings["Age: "] = "";
App::$strings["Edit/Manage Profiles"] = "";
App::$strings["Add profile things"] = "";
App::$strings["Include desirable objects in your profile"] = "";
App::$strings["No ratings"] = "";
App::$strings["Ratings"] = "";
App::$strings["Rating: "] = "";
App::$strings["Website: "] = "";
App::$strings["Description: "] = "";
App::$strings["Source of Item"] = "";
App::$strings["OpenID protocol error. No ID returned."] = "";
App::$strings["Welcome %s. Remote authentication successful."] = "";
App::$strings["%d rating"] = array(
	0 => "",
	1 => "",
);
App::$strings["Gender: "] = "";
App::$strings["Status: "] = "";
App::$strings["Homepage: "] = "";
App::$strings["Hometown: "] = "";
App::$strings["About: "] = "";
App::$strings["Public Forum:"] = "";
App::$strings["Keywords: "] = "";
App::$strings["Common connections: %s"] = "";
App::$strings["Finding:"] = "";
App::$strings["next page"] = "";
App::$strings["previous page"] = "";
App::$strings["No entries (some entries may be hidden)."] = "";
App::$strings["Export Channel"] = "";
App::$strings["Export your basic channel information to a small 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 hub, but\tdoes not contain your content."] = "";
App::$strings["Export Content"] = "";
App::$strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large.  Please be patient - it may take several minutes for this download to begin."] = "";
App::$strings["No connections."] = "";
App::$strings["Visit %s's profile [%s]"] = "";
App::$strings["invalid target signature"] = "";
App::$strings["Theme settings updated."] = "";
App::$strings["Site"] = "";
App::$strings["Accounts"] = "";
App::$strings["Channels"] = "";
App::$strings["Plugins"] = "";
App::$strings["Themes"] = "";
App::$strings["Inspect queue"] = "";
App::$strings["Profile Config"] = "";
App::$strings["DB updates"] = "";
App::$strings["Logs"] = "";
App::$strings["Plugin Features"] = "";
App::$strings["User registrations waiting for confirmation"] = "";
App::$strings["# Accounts"] = "";
App::$strings["# blocked accounts"] = "";
App::$strings["# expired accounts"] = "";
App::$strings["# expiring accounts"] = "";
App::$strings["# Channels"] = "";
App::$strings["# primary"] = "";
App::$strings["# clones"] = "";
App::$strings["Message queues"] = "";
App::$strings["Administration"] = "";
App::$strings["Summary"] = "";
App::$strings["Registered accounts"] = "";
App::$strings["Pending registrations"] = "";
App::$strings["Registered channels"] = "";
App::$strings["Active plugins"] = "";
App::$strings["Version"] = "";
App::$strings["Site settings updated."] = "";
App::$strings["experimental"] = "";
App::$strings["unsupported"] = "";
App::$strings["Yes - with approval"] = "";
App::$strings["My site is not a public server"] = "";
App::$strings["My site has paid access only"] = "";
App::$strings["My site has free access only"] = "";
App::$strings["My site offers free accounts with optional paid upgrades"] = "";
App::$strings["Registration"] = "";
App::$strings["File upload"] = "";
App::$strings["Policies"] = "";
App::$strings["Site name"] = "";
App::$strings["Banner/Logo"] = "";
App::$strings["Administrator Information"] = "";
App::$strings["Contact information for site administrators.  Displayed on siteinfo page.  BBCode can be used here"] = "";
App::$strings["System language"] = "";
App::$strings["System theme"] = "";
App::$strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
App::$strings["Mobile system theme"] = "";
App::$strings["Theme for mobile devices"] = "";
App::$strings["Enable Diaspora Protocol"] = "";
App::$strings["Communicate with Diaspora and Friendica - experimental"] = "";
App::$strings["Allow Feeds as Connections"] = "";
App::$strings["(Heavy system resource usage)"] = "";
App::$strings["Maximum image size"] = "";
App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
App::$strings["Does this site allow new member registration?"] = "";
App::$strings["Which best describes the types of account offered by this hub?"] = "";
App::$strings["Register text"] = "";
App::$strings["Will be displayed prominently on the registration page."] = "";
App::$strings["Accounts abandoned after x days"] = "";
App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
App::$strings["Allowed friend domains"] = "";
App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
App::$strings["Allowed email domains"] = "";
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"] = "";
App::$strings["Not allowed email domains"] = "";
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."] = "";
App::$strings["Block public"] = "";
App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
App::$strings["Verify Email Addresses"] = "";
App::$strings["Check to verify email addresses used in account registration (recommended)."] = "";
App::$strings["Force publish"] = "";
App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "";
App::$strings["Disable discovery tab"] = "";
App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "";
App::$strings["No login on Homepage"] = "";
App::$strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "";
App::$strings["Proxy user"] = "";
App::$strings["Proxy URL"] = "";
App::$strings["Network timeout"] = "";
App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
App::$strings["Delivery interval"] = "";
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."] = "";
App::$strings["Poll interval"] = "";
App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
App::$strings["Maximum Load Average"] = "";
App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
App::$strings["Expiration period in days for imported (matrix/network) content"] = "";
App::$strings["0 for no expiration of imported content"] = "";
App::$strings["No server found"] = "";
App::$strings["ID"] = "";
App::$strings["for channel"] = "";
App::$strings["on server"] = "";
App::$strings["Status"] = "";
App::$strings["Server"] = "";
App::$strings["Update has been marked successful"] = "";
App::$strings["Executing %s failed. Check system logs."] = "";
App::$strings["Update %s was successfully applied."] = "";
App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "";
App::$strings["Update function %s could not be found."] = "";
App::$strings["No failed updates."] = "";
App::$strings["Failed Updates"] = "";
App::$strings["Mark success (if update was manually applied)"] = "";
App::$strings["Attempt to execute this update step automatically"] = "";
App::$strings["Queue Statistics"] = "";
App::$strings["Total Entries"] = "";
App::$strings["Priority"] = "";
App::$strings["Destination URL"] = "";
App::$strings["Mark hub permanently offline"] = "";
App::$strings["Empty queue for this hub"] = "";
App::$strings["Last known contact"] = "";
App::$strings["%s user blocked/unblocked"] = array(
	0 => "",
	1 => "",
);
App::$strings["%s user deleted"] = array(
	0 => "",
	1 => "",
);
App::$strings["Account not found"] = "";
App::$strings["User '%s' blocked"] = "";
App::$strings["User '%s' unblocked"] = "";
App::$strings["Users"] = "";
App::$strings["select all"] = "";
App::$strings["User registrations waiting for confirm"] = "";
App::$strings["Request date"] = "";
App::$strings["No registrations."] = "";
App::$strings["Approve"] = "";
App::$strings["Deny"] = "";
App::$strings["Block"] = "";
App::$strings["Unblock"] = "";
App::$strings["Register date"] = "";
App::$strings["Last login"] = "";
App::$strings["Expires"] = "";
App::$strings["Service Class"] = "";
App::$strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
App::$strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
App::$strings["%s channel censored/uncensored"] = array(
	0 => "",
	1 => "",
);
App::$strings["%s channel deleted"] = array(
	0 => "",
	1 => "",
);
App::$strings["Channel not found"] = "";
App::$strings["Channel '%s' deleted"] = "";
App::$strings["Channel '%s' uncensored"] = "";
App::$strings["Channel '%s' censored"] = "";
App::$strings["Censor"] = "";
App::$strings["Uncensor"] = "";
App::$strings["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?"] = "";
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?"] = "";
App::$strings["Plugin %s disabled."] = "";
App::$strings["Plugin %s enabled."] = "";
App::$strings["Disable"] = "";
App::$strings["Enable"] = "";
App::$strings["Toggle"] = "";
App::$strings["Author: "] = "";
App::$strings["Maintainer: "] = "";
App::$strings["No themes found."] = "";
App::$strings["Screenshot"] = "";
App::$strings["[Experimental]"] = "";
App::$strings["[Unsupported]"] = "";
App::$strings["Log settings updated."] = "";
App::$strings["Clear"] = "";
App::$strings["Debugging"] = "";
App::$strings["Log file"] = "";
App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "";
App::$strings["Log level"] = "";
App::$strings["New Profile Field"] = "";
App::$strings["Field nickname"] = "";
App::$strings["System name of field"] = "";
App::$strings["Input type"] = "";
App::$strings["Field Name"] = "";
App::$strings["Label on profile pages"] = "";
App::$strings["Help text"] = "";
App::$strings["Additional info (optional)"] = "";
App::$strings["Field definition not found"] = "";
App::$strings["Edit Profile Field"] = "";
App::$strings["Unable to find your hub."] = "";
App::$strings["Post successful."] = "";
App::$strings["Edit Block"] = "";
App::$strings["Delete block?"] = "";
App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "";
App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "";
App::$strings["Passwords do not match."] = "";
App::$strings["Registration successful. Please check your email for validation instructions."] = "";
App::$strings["Your registration is pending approval by the site owner."] = "";
App::$strings["Your registration can not be processed."] = "";
App::$strings["Registration on this site/hub is by approval only."] = "";
App::$strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "";
App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
App::$strings["Terms of Service"] = "";
App::$strings["I accept the %s for this website"] = "";
App::$strings["I am over 13 years of age and accept the %s for this website"] = "";
App::$strings["Membership on this site is by invitation only."] = "";
App::$strings["Please enter your invitation code"] = "";
App::$strings["Your email address"] = "";
App::$strings["Choose a password"] = "";
App::$strings["Please re-enter your password"] = "";
App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "";
App::$strings["Remove This Account"] = "";
App::$strings["WARNING: "] = "";
App::$strings["This account and all its channels will be completely removed from the network. "] = "";
App::$strings["This action is permanent and can not be undone!"] = "";
App::$strings["Please enter your password for verification:"] = "";
App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "";
App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "";
App::$strings["Unable to locate original post."] = "";
App::$strings["Empty post discarded."] = "";
App::$strings["Executable content type not permitted to this channel."] = "";
App::$strings["System error. Post not saved."] = "";
App::$strings["Unable to obtain post information from database."] = "";
App::$strings["You have reached your limit of %1$.0f top level posts."] = "";
App::$strings["You have reached your limit of %1$.0f webpages."] = "";
App::$strings["[Embedded content - reload page to view]"] = "";
App::$strings["Remote privacy information not available."] = "";
App::$strings["Visible to:"] = "";
App::$strings["Comanche page description language help"] = "";
App::$strings["Layout Description"] = "";
App::$strings["Download PDL file"] = "";
App::$strings["First Name"] = "";
App::$strings["Last Name"] = "";
App::$strings["Nickname"] = "";
App::$strings["Full Name"] = "";
App::$strings["Profile Photo 16px"] = "";
App::$strings["Profile Photo 32px"] = "";
App::$strings["Profile Photo 48px"] = "";
App::$strings["Profile Photo 64px"] = "";
App::$strings["Profile Photo 80px"] = "";
App::$strings["Profile Photo 128px"] = "";
App::$strings["Timezone"] = "";
App::$strings["Homepage URL"] = "";
App::$strings["Birth Year"] = "";
App::$strings["Birth Month"] = "";
App::$strings["Birth Day"] = "";
App::$strings["Birthdate"] = "";
App::$strings["Conversation removed."] = "";
App::$strings["No messages."] = "";
App::$strings["Delete conversation"] = "";
App::$strings["D, d M Y - g:i A"] = "";
App::$strings["Unable to create element."] = "";
App::$strings["Unable to update menu element."] = "";
App::$strings["Unable to add menu element."] = "";
App::$strings["Menu Item Permissions"] = "";
App::$strings["Link Name"] = "";
App::$strings["Link or Submenu Target"] = "";
App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "";
App::$strings["Use magic-auth if available"] = "";
App::$strings["Open link in new window"] = "";
App::$strings["Order in list"] = "";
App::$strings["Higher numbers will sink to bottom of listing"] = "";
App::$strings["Submit and finish"] = "";
App::$strings["Submit and continue"] = "";
App::$strings["Menu:"] = "";
App::$strings["Link Target"] = "";
App::$strings["Edit menu"] = "";
App::$strings["Edit element"] = "";
App::$strings["Drop element"] = "";
App::$strings["New element"] = "";
App::$strings["Edit this menu container"] = "";
App::$strings["Add menu element"] = "";
App::$strings["Delete this menu item"] = "";
App::$strings["Edit this menu item"] = "";
App::$strings["Menu item not found."] = "";
App::$strings["Menu item deleted."] = "";
App::$strings["Menu item could not be deleted."] = "";
App::$strings["Edit Menu Element"] = "";
App::$strings["Link text"] = "";
App::$strings["Set your current mood and tell your friends"] = "";
App::$strings["Total votes"] = "";
App::$strings["Average Rating"] = "";
App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "";
App::$strings["Remove This Channel"] = "";
App::$strings["This channel will be completely removed from the network. "] = "";
App::$strings["Remove this channel and all its clones from the network"] = "";
App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "";
App::$strings["is now connected to"] = "";
App::$strings["Could not access address book record."] = "";
App::$strings["Refresh failed - channel is currently unavailable."] = "";
App::$strings["Channel has been unblocked"] = "";
App::$strings["Channel has been blocked"] = "";
App::$strings["Unable to set address book parameters."] = "";
App::$strings["Channel has been unignored"] = "";
App::$strings["Channel has been ignored"] = "";
App::$strings["Channel has been unarchived"] = "";
App::$strings["Channel has been archived"] = "";
App::$strings["Channel has been unhidden"] = "";
App::$strings["Channel has been hidden"] = "";
App::$strings["Channel has been approved"] = "";
App::$strings["Channel has been unapproved"] = "";
App::$strings["Connection has been removed."] = "";
App::$strings["View %s's profile"] = "";
App::$strings["Refresh Permissions"] = "";
App::$strings["Fetch updated permissions"] = "";
App::$strings["Recent Activity"] = "";
App::$strings["View recent posts and comments"] = "";
App::$strings["Block (or Unblock) all communications with this connection"] = "";
App::$strings["Unignore"] = "";
App::$strings["Ignore"] = "";
App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "";
App::$strings["Unarchive"] = "";
App::$strings["Archive"] = "";
App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "";
App::$strings["Unhide"] = "";
App::$strings["Hide"] = "";
App::$strings["Hide or Unhide this connection from your other connections"] = "";
App::$strings["Delete this connection"] = "";
App::$strings["Approve this connection"] = "";
App::$strings["Accept connection to allow communication"] = "";
App::$strings["Connections: settings for %s"] = "";
App::$strings["Apply these permissions automatically"] = "";
App::$strings["Apply the permissions indicated on this page to all new connections."] = "";
App::$strings["Slide to adjust your degree of friendship"] = "";
App::$strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may <em>not</em> be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "";
App::$strings["inherited"] = "";
App::$strings["Connection has no individual permissions!"] = "";
App::$strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "";
App::$strings["Profile Visibility"] = "";
App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "";
App::$strings["Contact Information / Notes"] = "";
App::$strings["Edit contact notes"] = "";
App::$strings["Their Settings"] = "";
App::$strings["My Settings"] = "";
App::$strings["Default permissions for this channel type have (just) been applied. They have <em>not</em> been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "";
App::$strings["Clear/Disable Automatic Permissions"] = "";
App::$strings["Forum Members"] = "";
App::$strings["Soapbox"] = "";
App::$strings["Full Sharing (typical social network permissions)"] = "";
App::$strings["Cautious Sharing "] = "";
App::$strings["Follow Only"] = "";
App::$strings["Individual Permissions"] = "";
App::$strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "";
App::$strings["Advanced Permissions"] = "";
App::$strings["Simple Permissions (select one and submit)"] = "";
App::$strings["Visit %s's profile - %s"] = "";
App::$strings["Block/Unblock contact"] = "";
App::$strings["Ignore contact"] = "";
App::$strings["Repair URL settings"] = "";
App::$strings["View conversations"] = "";
App::$strings["Delete contact"] = "";
App::$strings["Last update:"] = "";
App::$strings["Update public posts"] = "";
App::$strings["Update now"] = "";
App::$strings["Currently blocked"] = "";
App::$strings["Currently ignored"] = "";
App::$strings["Currently archived"] = "";
App::$strings["Currently pending"] = "";
App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
App::$strings["The error message was:"] = "";
App::$strings["Authentication failed."] = "";
App::$strings["Remote Authentication"] = "";
App::$strings["Enter your channel address (e.g. channel@example.com)"] = "";
App::$strings["Authenticate"] = "";
App::$strings["Unable to lookup recipient."] = "";
App::$strings["Unable to communicate with requested channel."] = "";
App::$strings["Cannot verify requested channel."] = "";
App::$strings["Selected channel has private message restrictions. Send failed."] = "";
App::$strings["Message deleted."] = "";
App::$strings["Message recalled."] = "";
App::$strings["Send Private Message"] = "";
App::$strings["To:"] = "";
App::$strings["Subject:"] = "";
App::$strings["Send"] = "";
App::$strings["Message not found."] = "";
App::$strings["Delete message"] = "";
App::$strings["Recall message"] = "";
App::$strings["Message has been recalled."] = "";
App::$strings["Private Conversation"] = "";
App::$strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
App::$strings["Send Reply"] = "";
App::$strings["Invalid request identifier."] = "";
App::$strings["Discard"] = "";
App::$strings["Please login."] = "";
App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "";
App::$strings["Add a Channel"] = "";
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."] = "";
App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "";
App::$strings["Choose a short nickname"] = "";
App::$strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "";
App::$strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "";
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"] = "";
App::$strings["Channel Type"] = "";
App::$strings["Read more about roles"] = "";
App::$strings["App installed."] = "";
App::$strings["Malformed app."] = "";
App::$strings["Embed code"] = "";
App::$strings["Edit App"] = "";
App::$strings["Create App"] = "";
App::$strings["Name of app"] = "";
App::$strings["Location (URL) of app"] = "";
App::$strings["Photo icon URL"] = "";
App::$strings["80 x 80 pixels - optional"] = "";
App::$strings["Version ID"] = "";
App::$strings["Price of app"] = "";
App::$strings["Location (URL) to purchase app"] = "";
App::$strings["sent you a private message"] = "";
App::$strings["added your channel"] = "";
App::$strings["posted an event"] = "";
App::$strings["No such group"] = "";
App::$strings["No such channel"] = "";
App::$strings["Search Results For:"] = "";
App::$strings["Collection is empty"] = "";
App::$strings["Collection: "] = "";
App::$strings["Connection: "] = "";
App::$strings["Invalid connection."] = "";
App::$strings["Ipsum Lorem"] = "";
App::$strings["Bookmark added"] = "";
App::$strings["My Bookmarks"] = "";
App::$strings["My Connections Bookmarks"] = "";
App::$strings["Insufficient permissions.  Request redirected to profile page."] = "";
App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
App::$strings["Poll"] = "";
App::$strings["View Results"] = "";
App::$strings["No service class restrictions found."] = "";
App::$strings["Files: shared with me"] = "";
App::$strings["NEW"] = "";
App::$strings["Remove all files"] = "";
App::$strings["Remove this file"] = "";
App::$strings["Schema Default"] = "";
App::$strings["Sans-Serif"] = "";
App::$strings["Monospace"] = "";
App::$strings["Theme settings"] = "";
App::$strings["Set scheme"] = "";
App::$strings["Set font-size for posts and comments"] = "";
App::$strings["Set font face"] = "";
App::$strings["Set iconset"] = "";
App::$strings["Set big shadow size, default 15px 15px 15px"] = "";
App::$strings["Set small shadow size, default 5px 5px 5px"] = "";
App::$strings["Set shadow color, default #000"] = "";
App::$strings["Set radius size, default 5px"] = "";
App::$strings["Set line-height for posts and comments"] = "";
App::$strings["Set background image"] = "";
App::$strings["Set background attachment"] = "";
App::$strings["Set background color"] = "";
App::$strings["Set section background image"] = "";
App::$strings["Set section background color"] = "";
App::$strings["Set color of items - use hex"] = "";
App::$strings["Set color of links - use hex"] = "";
App::$strings["Set max-width for items.  Default 400px"] = "";
App::$strings["Set min-width for items.  Default 240px"] = "";
App::$strings["Set the generic content wrapper width.  Default 48%"] = "";
App::$strings["Set color of fonts - use hex"] = "";
App::$strings["Set background-size element"] = "";
App::$strings["Item opacity"] = "";
App::$strings["Display post previews only"] = "";
App::$strings["Display side bar on channel page"] = "";
App::$strings["Colour of the navigation bar"] = "";
App::$strings["Item float"] = "";
App::$strings["Left offset of the section element"] = "";
App::$strings["Right offset of the section element"] = "";
App::$strings["Section width"] = "";
App::$strings["Left offset of the aside"] = "";
App::$strings["Right offset of the aside element"] = "";
App::$strings["Light (Hubzilla default)"] = "";
App::$strings["Select scheme"] = "";
App::$strings["Narrow navbar"] = "";
App::$strings["Navigation bar background color"] = "";
App::$strings["Navigation bar gradient top color"] = "";
App::$strings["Navigation bar gradient bottom color"] = "";
App::$strings["Navigation active button gradient top color"] = "";
App::$strings["Navigation active button gradient bottom color"] = "";
App::$strings["Navigation bar border color "] = "";
App::$strings["Navigation bar icon color "] = "";
App::$strings["Navigation bar active icon color "] = "";
App::$strings["link color"] = "";
App::$strings["Set font-color for banner"] = "";
App::$strings["Set the background color"] = "";
App::$strings["Set the background image"] = "";
App::$strings["Set the background color of items"] = "";
App::$strings["Set the background color of comments"] = "";
App::$strings["Set the border color of comments"] = "";
App::$strings["Set the indent for comments"] = "";
App::$strings["Set the basic color for item icons"] = "";
App::$strings["Set the hover color for item icons"] = "";
App::$strings["Set font-size for the entire application"] = "";
App::$strings["Example: 14px"] = "";
App::$strings["Set font-color for posts and comments"] = "";
App::$strings["Set radius of corners"] = "";
App::$strings["Set shadow depth of photos"] = "";
App::$strings["Set maximum width of content region in pixel"] = "";
App::$strings["Leave empty for default width"] = "";
App::$strings["Center page content"] = "";
App::$strings["Set minimum opacity of nav bar - to hide it"] = "";
App::$strings["Set size of conversation author photo"] = "";
App::$strings["Set size of followup author photos"] = "";
App::$strings["Update %s failed. See error logs."] = "";
App::$strings["Update Error at %s"] = "";
App::$strings["Create an account to access services and applications within the Hubzilla"] = "";
App::$strings["Password"] = "";
App::$strings["Remember me"] = "";
App::$strings["Forgot your password?"] = "";
App::$strings["toggle mobile"] = "";
App::$strings["Website SSL certificate is not valid. Please correct."] = "";
App::$strings["[red] Website SSL error for %s"] = "";
App::$strings["Cron/Scheduled tasks not running."] = "";
App::$strings["[red] Cron tasks not running on %s"] = "";