aboutsummaryrefslogblamecommitdiffstats
path: root/view/he/strings.php
blob: cd071e37762ddddf82ed54ee500104c543c59823 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168























































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                                                                                                                                                             
<?php

if(! function_exists("string_plural_select_he")) {
function string_plural_select_he($n){
	return ($n != 1);;
}}
;
App::$strings["No username found in import file."] = "";
App::$strings["Unable to create a unique channel address. Import failed."] = "";
App::$strings["Import completed."] = "יבוא הושלם.";
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["Edit"] = "ערוך";
App::$strings["Delete"] = "מחק";
App::$strings["Create new folder"] = "צור תיקייה חדשה";
App::$strings["Upload file"] = "העלה קובץ";
App::$strings["Cannot locate DNS info for database server '%s'"] = "לא ניתן לאתר מידע DNS עבור שרת מסד נתונים  '%s'";
App::$strings["Profile Photos"] = "תצלומי פרופיל";
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"] = "%s - לחץ כדי להתנתק";
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["Apps"] = "אפליקציות";
App::$strings["Applications, utilities, links, games"] = "";
App::$strings["Search"] = "חיפוש";
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["New Message"] = "הודעה חדשה";
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["Settings"] = "הגדרות";
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["view full size"] = "";
App::$strings["\$Projectname Notification"] = "";
App::$strings["\$projectname"] = "";
App::$strings["Thank You,"] = "תודה,";
App::$strings["%s Administrator"] = "הנהלת %s";
App::$strings["Administrator"] = "מנהל";
App::$strings["No Subject"] = "אין נושא";
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 => "חיבור %d",
	1 => "%d חיבורים",
);
App::$strings["View Connections"] = "צפה בחיבורים";
App::$strings["Save"] = "שמור";
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["Categories"] = "קטגוריות";
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["Remove term"] = "";
App::$strings["Saved Searches"] = "";
App::$strings["add"] = "להוסיף";
App::$strings["Saved Folders"] = "";
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["Channel Sources"] = "מקורות ערוץ";
App::$strings["Messages"] = "הודעות";
App::$strings["Check Mail"] = "בדוק דואר";
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["New window"] = "חלון חדש";
App::$strings["Open the selected location in a different window or browser tab"] = "פתח את המיקום הנבחר בתוך חלון או סימניית דפדפן אחרים";
App::$strings["User '%s' deleted"] = "משתמש '%s' נמחק";
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["Invalid data packet"] = "";
App::$strings["Unable to verify channel signature"] = "";
App::$strings["Unable to verify site signature for %s"] = "";
App::$strings["created a new post"] = "צור פוסט חדש";
App::$strings["commented on %s's post"] = "הגיב/ה על פוסט של %s";
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["[+] show all"] = "[+] הצג הכל";
App::$strings["This is you"] = "זה את/ה";
App::$strings["Comment"] = "תגובה";
App::$strings["Submit"] = "שלח";
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["Preview"] = "תצוגה מקדימה";
App::$strings["Encrypt text"] = "הצפן טקסט";
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"] = "אימות רישום עבור %s";
App::$strings["Registration request at %s"] = "בקשת רישום אצל %s";
App::$strings["your registration password"] = "סיסמת רישום שלך";
App::$strings["Registration details for %s"] = "פרטי רישום עבור %s";
App::$strings["Account approved."] = "חשבון אושר.";
App::$strings["Registration revoked for %s"] = "רישום בוטל עבור %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["Embedded content"] = "";
App::$strings["Embedding disabled"] = "";
App::$strings["Visible to your default audience"] = "";
App::$strings["Show"] = "הצג";
App::$strings["Don't show"] = "אל תציג";
App::$strings["Permissions"] = "הרשאות";
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["Public Timeline"] = "ציר זמן פומבי";
App::$strings["Site Admin"] = "מנהל אתר";
App::$strings["Address Book"] = "פנקס כתובות";
App::$strings["Profile"] = "פרופיל";
App::$strings["Mood"] = "מצב רוח";
App::$strings["Poke"] = "";
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["Permission denied."] = "הרשאה נדחתה.";
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."] = "mkdir נכשל.";
App::$strings["database storage failed."] = "";
App::$strings["Logged out."] = "מנותק.";
App::$strings["Failed authentication"] = "אימות נכשל";
App::$strings["Login failed."] = "התחברות נכשלה.";
App::$strings["Attachments:"] = "תצריפים:";
App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
App::$strings["\$Projectname event notification:"] = "";
App::$strings["Starts:"] = "מתחיל:";
App::$strings["Finishes:"] = "נגמר:";
App::$strings["Location:"] = "מיקום:";
App::$strings["Image/photo"] = "תמונה/תצלום";
App::$strings["Encrypted content"] = "תוכן מוצפן";
App::$strings["Install %s element: "] = "";
App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "";
App::$strings["webpage"] = "עמוד רשת";
App::$strings["layout"] = "";
App::$strings["block"] = "";
App::$strings["menu"] = "תפריט";
App::$strings["QR code"] = "קוד QR";
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:"] = "$1 כתב(ה):";
App::$strings["%1\$s's bookmarks"] = "";
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["Default"] = "ברירת מחדל";
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["Frequently"] = "באופן תדיר";
App::$strings["Hourly"] = "כל שעה";
App::$strings["Twice daily"] = "פעמיים ביום";
App::$strings["Daily"] = "יומי";
App::$strings["Weekly"] = "שבועי";
App::$strings["Monthly"] = "חודשי";
App::$strings["Friendica"] = "Friendica";
App::$strings["OStatus"] = "OStatus";
App::$strings["RSS/Atom"] = "RSS/Atom";
App::$strings["Email"] = "דוא״ל";
App::$strings["Diaspora"] = "Diaspora";
App::$strings["Facebook"] = "פייסבוק";
App::$strings["Zot!"] = "Zot!";
App::$strings["LinkedIn"] = "LinkedIn";
App::$strings["XMPP/IM"] = "XMPP/IM";
App::$strings["MySpace"] = "MySpace";
App::$strings["%d invitation available"] = array(
	0 => "הזמנה %d זמינה",
	1 => "%d הזמנות זמינות",
);
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"] = "דוגמא מתקדמת: name=פרד וגם country=איסלנד";
App::$strings["%d connection in common"] = array(
	0 => "",
	1 => "",
);
App::$strings["show more"] = "הצג עוד";
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["%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["Miscellaneous"] = "שונות";
App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD או 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"] = "לפני %1\$d %2\$s";
App::$strings["%1\$s's birthday"] = "";
App::$strings["Happy Birthday %1\$s"] = "";
App::$strings["Please choose"] = "לבחירתך";
App::$strings["Agree"] = "מסכים/ה";
App::$strings["Disagree"] = "לא מסכים/ה";
App::$strings["Abstain"] = "נמנע/ת";
App::$strings["Nickname has unsupported characters or is already being used on this site."] = "";
App::$strings["Directory Options"] = "";
App::$strings["Safe Mode"] = "מצב בטוח";
App::$strings["No"] = "לא";
App::$strings["Yes"] = "כן";
App::$strings["Public Forums Only"] = "";
App::$strings["This Website Only"] = "";
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["This event has been added to your calendar."] = "אירוע זה התווסף ללוח שנה שלך.";
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["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["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["Connection Filtering"] = "";
App::$strings["Filter incoming posts from connections based on keywords/content"] = "";
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["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["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["Protocol blocked for this channel."] = "";
App::$strings["Channel discovery failed."] = "";
App::$strings["local account not found."] = "";
App::$strings["Cannot connect to yourself."] = "";
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["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["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["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["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."] = "נראה לכל אחד אצל %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["Collection not found."] = "אוסף לא נמצא.";
App::$strings["Collection is empty."] = "אוסף הינו ריק.";
App::$strings["Collection: %s"] = "אוסף: %s";
App::$strings["Connection: %s"] = "חיבור: %s";
App::$strings["Connection not found."] = "חיבור לא נמצא.";
App::$strings["Delete this item?"] = "למחוק את פריט זה?";
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["Please enter a link URL"] = "";
App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "";
App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo";
App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
App::$strings["ago"] = "לפני";
App::$strings["from now"] = "מעכשיו";
App::$strings["less than a minute"] = "פחות מדקה";
App::$strings["about a minute"] = "דקה לערך";
App::$strings["%d minutes"] = "%d דקות";
App::$strings["about an hour"] = "שעה לערך";
App::$strings["about %d hours"] = " %d שעות לערך";
App::$strings["a day"] = "יום";
App::$strings["%d days"] = "%d ימים";
App::$strings["about a month"] = "חודש לערך";
App::$strings["%d months"] = "%d חודשים";
App::$strings["about a year"] = "שנה לערך";
App::$strings["%d years"] = "%d שנים";
App::$strings[" "] = " ";
App::$strings["timeago.numbers"] = "timeago.numbers";
App::$strings["New Page"] = "עמוד חדש";
App::$strings["View"] = "תצוגה";
App::$strings["Actions"] = "פעולות";
App::$strings["Page Link"] = "קישור עמוד";
App::$strings["Title"] = "כותרת";
App::$strings["Created"] = "נוצר";
App::$strings["Edited"] = "נערך";
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["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["Tags"] = "תגיות";
App::$strings["Keywords"] = "מילות מפתח";
App::$strings["have"] = "";
App::$strings["has"] = "";
App::$strings["want"] = "";
App::$strings["wants"] = "";
App::$strings["likes"] = "";
App::$strings["dislikes"] = "";
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["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["Your message:"] = "הודעתך:";
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["Delete 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["Hub not found."] = "";
App::$strings["Some blurb about what to do when you're new here"] = "";
App::$strings["Invalid item."] = "פריט שגוי.";
App::$strings["Channel not found."] = "";
App::$strings["Page not found."] = "עמוד לא נמצא.";
App::$strings["Lorem Ipsum"] = "";
App::$strings["network"] = "רשת";
App::$strings["RSS"] = "RSS";
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["mobile"] = "";
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"] = "אפשר פרוטוקול Diaspora";
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["Site homepage to show visitors (default: login box)"] = "";
App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "";
App::$strings["Preserve site homepage URL"] = "";
App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "";
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["login on Homepage"] = "";
App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "";
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 account blocked/unblocked"] = array(
	0 => "",
	1 => "",
);
App::$strings["%s account deleted"] = array(
	0 => "",
	1 => "",
);
App::$strings["Account not found"] = "חשבון לא נמצא";
App::$strings["Account '%s' deleted"] = "חשבון '%s' נמחק";
App::$strings["Account '%s' blocked"] = "חשבון '%s' נחסם";
App::$strings["Account '%s' unblocked"] = "חשבון '%s' נפתח";
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 accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
App::$strings["%s channel censored/uncensored"] = array(
	0 => "",
	1 => "",
);
App::$strings["%s channel code allowed/disallowed"] = 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' censored"] = "";
App::$strings["Channel '%s' uncensored"] = "";
App::$strings["Channel '%s' code allowed"] = "";
App::$strings["Channel '%s' code disallowed"] = "";
App::$strings["Censor"] = "";
App::$strings["Uncensor"] = "";
App::$strings["Allow Code"] = "";
App::$strings["Disallow Code"] = "";
App::$strings["UID"] = "";
App::$strings["Address"] = "כתובת";
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["This setting requires special processing and editing has been blocked."] = "";
App::$strings["Configuration Editor"] = "עורך תצורה";
App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "";
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["Layout updated."] = "";
App::$strings["Edit System Page Description"] = "";
App::$strings["Layout not found."] = "";
App::$strings["Module Name:"] = "";
App::$strings["Layout Help"] = "";
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["Description"] = "תיאור";
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["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["Previous"] = "קודם";
App::$strings["View Full Size"] = "";
App::$strings["Next"] = "הבא";
App::$strings["Remove"] = "הסר";
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["Item not available."] = "פריט לא נמצא.";
App::$strings["sent you a private message"] = "";
App::$strings["added your channel"] = "";
App::$strings["posted an event"] = "";
App::$strings["Block Name"] = "";
App::$strings["Block Title"] = "";
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["Bookmark added"] = "סימנייה התווספה";
App::$strings["My Bookmarks"] = "הסימניות שלי";
App::$strings["My Connections Bookmarks"] = "סימניות החיבורים שלי";
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"] = "%d הודעות חדשות";
App::$strings["%d new introductions"] = "";
App::$strings["Delegated Channels"] = "";
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["Members"] = "חברים";
App::$strings["All Connected Channels"] = "";
App::$strings["Click on a channel to add or remove."] = "";
App::$strings["Poll"] = "הצבעה";
App::$strings["View Results"] = "צפה בתוצאות";
App::$strings["You must be logged in to see this page."] = "";
App::$strings["Insufficient permissions.  Request redirected to profile page."] = "";
App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "";
App::$strings["Welcome %s. Remote authentication successful."] = "";
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"] = "חדרי שיחה של %1\$s";
App::$strings["Away"] = "נעדר";
App::$strings["Online"] = "מקוון";
App::$strings["Fetching URL returns error: %1\$s"] = "";
App::$strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "";
App::$strings["No channel."] = "אין ערוץ.";
App::$strings["Common connections"] = "חיבורים מצויים";
App::$strings["No connections in common."] = "";
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["or"] = "או";
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["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["Invalid request identifier."] = "";
App::$strings["Discard"] = "";
App::$strings["Ignore"] = "התעלמות";
App::$strings["No more system notifications."] = "";
App::$strings["System Notifications"] = "";
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["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["Location"] = "מיקום";
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["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["is now connected to"] = "";
App::$strings["Could not access address book record."] = "";
App::$strings["Refresh failed - channel is currently unavailable."] = "";
App::$strings["Unable to set address book parameters."] = "";
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["This connection is blocked!"] = "";
App::$strings["Unignore"] = "";
App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "";
App::$strings["This connection is ignored!"] = "";
App::$strings["Unarchive"] = "";
App::$strings["Archive"] = "";
App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "";
App::$strings["This connection is archived!"] = "";
App::$strings["Unhide"] = "";
App::$strings["Hide"] = "הסתר";
App::$strings["Hide or Unhide this connection from your other connections"] = "";
App::$strings["This connection is hidden!"] = "חיבור זה הינו מוסתר!";
App::$strings["Delete this connection"] = "מחק את חיבור זה";
App::$strings["Approve this connection"] = "אשר את חיבור זה";
App::$strings["Accept connection to allow communication"] = "אשר חיבור כדי להתיר תקשורת";
App::$strings["Set Affinity"] = "";
App::$strings["Set Profile"] = "";
App::$strings["Set Affinity & Profile"] = "";
App::$strings["Apply these permissions automatically"] = "";
App::$strings["This connection's address is"] = "";
App::$strings["The permissions indicated on this page will be applied to all new connections."] = "";
App::$strings["Slide to adjust your degree of friendship"] = "";
App::$strings["Slide to adjust your rating"] = "";
App::$strings["Optionally explain your rating"] = "";
App::$strings["Custom Filter"] = "";
App::$strings["Only import posts with this text"] = "";
App::$strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = "";
App::$strings["Do not import posts with this text"] = "";
App::$strings["This information is public!"] = "";
App::$strings["Connection Pending Approval"] = "";
App::$strings["Connection Request"] = "";
App::$strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "";
App::$strings["Approve Later"] = "";
App::$strings["inherited"] = "";
App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "";
App::$strings["Their Settings"] = "ההגדרות שלהם";
App::$strings["My Settings"] = "ההגדרות שלי";
App::$strings["Individual Permissions"] = "";
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can <strong>not</strong> change those settings here."] = "";
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "";
App::$strings["Last update:"] = "";
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["\$Projectname channel"] = "ערוץ \$Projectname";
App::$strings["%d rating"] = array(
	0 => "",
	1 => "",
);
App::$strings["Gender: "] = "מין: ";
App::$strings["Status: "] = "מצב: ";
App::$strings["Homepage: "] = "עמוד בית: ";
App::$strings["Description:"] = "תיאור:";
App::$strings["Public Forum:"] = "פורום פומבי:";
App::$strings["Keywords: "] = "מילות מפתח: ";
App::$strings["Don't suggest"] = "אל תציע";
App::$strings["Common connections:"] = "חיבורים שכיחים:";
App::$strings["Global Directory"] = "ספרייה גלובלית";
App::$strings["Local Directory"] = "ספרייה מקומית";
App::$strings["Finding:"] = "";
App::$strings["next page"] = "עמוד הבא";
App::$strings["previous page"] = "עמוד קודם";
App::$strings["Sort options"] = "אפשרויות מיון";
App::$strings["Alphabetic"] = "אלפבתי";
App::$strings["Reverse Alphabetic"] = "";
App::$strings["Newest to Oldest"] = "";
App::$strings["Oldest to Newest"] = "";
App::$strings["No entries (some entries may be hidden)."] = "";
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"] = "URL אתר";
App::$strings["Access Type"] = "טיפוס גישה";
App::$strings["Registration Policy"] = "מדיניות רישום";
App::$strings["Project"] = "פרויקט";
App::$strings["View hub ratings"] = "";
App::$strings["Rate"] = "";
App::$strings["View ratings"] = "";
App::$strings["This site is not a directory server"] = "";
App::$strings["This directory server requires an access token"] = "";
App::$strings["Item not found"] = "פריט לא נמצא";
App::$strings["Delete block?"] = "";
App::$strings["Insert YouTube video"] = "הכנס וידאו YouTube";
App::$strings["Insert Vorbis [.ogg] video"] = "הכנס וידאו Vorbis [.ogg]&lrm;";
App::$strings["Insert Vorbis [.ogg] audio"] = "הכנס אודיו Vorbis [.ogg]&lrm;";
App::$strings["Edit Block"] = "";
App::$strings["Delete layout?"] = "";
App::$strings["Layout Description (Optional)"] = "";
App::$strings["Layout Name"] = "";
App::$strings["Edit Layout"] = "";
App::$strings["Item is not editable"] = "פריט אינו עריך.";
App::$strings["Delete item?"] = "למחוק פריט?";
App::$strings["Edit post"] = "ערוך פוסט";
App::$strings["Unable to find your hub."] = "";
App::$strings["Post successful."] = "";
App::$strings["Delete webpage?"] = "למחוק עמוד רשת?";
App::$strings["Page link title"] = "";
App::$strings["Edit Webpage"] = "ערוך עמוד רשת";
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["Calendar entries imported."] = "";
App::$strings["No calendar entries found."] = "";
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"] = "l, F j";
App::$strings["Edit event"] = "ערוך אירוע";
App::$strings["Delete event"] = "מחק אירוע";
App::$strings["calendar"] = "לוח שנה";
App::$strings["Create New Event"] = "צור אירוע חדש";
App::$strings["Export"] = "יצא";
App::$strings["Import"] = "יבא";
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["Title:"] = "כותרת:";
App::$strings["Share this event"] = "שתף את אירוע זה";
App::$strings["No ratings"] = "";
App::$strings["Ratings"] = "";
App::$strings["Rating: "] = "";
App::$strings["Website: "] = "אתר רשת:";
App::$strings["Description: "] = "תיאור: ";
App::$strings["Select a bookmark folder"] = "";
App::$strings["Save Bookmark"] = "";
App::$strings["URL of bookmark"] = "";
App::$strings["Or enter new bookmark folder name"] = "";
App::$strings["- select -"] = "- בחר -";
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"] = "הצג URL לקובץ זה";
App::$strings["Notify your contacts about this file"] = "";
App::$strings["Channel added."] = "";
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"] = "אני מקבל את ה%s לאתר רשת זה";
App::$strings["I am over 13 years of age and accept the %s for this website"] = "גילי מעל 13 שנה ואני מקבל את ה%s לאתר רשת זה";
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["Contact not found."] = "איש קשר לא נמצא.";
App::$strings["Friend suggestion sent."] = "";
App::$strings["Suggest Friends"] = "";
App::$strings["Suggest a friend for %s"] = "";
App::$strings["Please login."] = "אנא התחבר.";
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["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["Remove Account"] = "הסר חשבון";
App::$strings["Help:"] = "עזרה:";
App::$strings["Not Found"] = "לא נמצא";
App::$strings["\$Projectname Documentation"] = "תיעוד \$Projectname";
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["Remove Channel"] = "הסר ערוץ";
App::$strings["\$Projectname"] = "\$Projectname";
App::$strings["Welcome to %s"] = "ברוכים הבאים אל %s";
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["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["%s element installed"] = "";
App::$strings["%s element installation failed"] = "";
App::$strings["Items tagged with: %s"] = "";
App::$strings["Search results for: %s"] = "";
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["The data provided is not compatible with this project."] = "";
App::$strings["Warning: Database versions differ by %1\$d updates."] = "";
App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "";
App::$strings["Channel clone failed. Import failed."] = "";
App::$strings["Cloned channel not found. Import failed."] = "";
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."] = "";
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 (experimental - limited by available memory"] = "";
App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "";
App::$strings["No service class restrictions found."] = "";
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["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]"] = "3. לחץ [התחבר]";
App::$strings["Name is required"] = "נדרש שם";
App::$strings["Key and Secret are required"] = "";
App::$strings["Diaspora Policy Settings updated."] = "הגדרות פוליסת Diaspora עודכנו.";
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["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["Enable the Diaspora protocol for this channel"] = "";
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 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["Display Settings"] = "";
App::$strings["Theme Settings"] = "";
App::$strings["Custom Theme Settings"] = "";
App::$strings["Content 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["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 this channel."] = "הסר את ערוץ זה.";
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["\$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["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "";
App::$strings["You can adjust these settings in the servers php.ini."] = "";
App::$strings["PHP upload limits"] = "";
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["xml 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["Error: xml PHP module required for DAV 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"] = ".htconfig.php הינו כתיב";
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"] = "%s הינו כתיב";
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"] = "הוכחת תקפות של תעודת SSL";
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>"] = "<h1>מה הלאה</h1>";
App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
App::$strings["Comanche page description language help"] = "";
App::$strings["Layout Description"] = "";
App::$strings["Download PDL file"] = "הורד קובץ PDL";
App::$strings["Files: shared with me"] = "";
App::$strings["NEW"] = "חדש";
App::$strings["Remove all files"] = "הסר את כל הקבצים";
App::$strings["Remove this file"] = "הסר את קובץ זה";
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["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=\"http://hubzilla.org\">hubzilla.org</a> to learn more about \$Projectname."] = "";
App::$strings["Bug reports and issues: please visit"] = "";
App::$strings["\$projectname issues"] = "סוגיות \$projectname";
App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "";
App::$strings["Site Administrators"] = "מנהלי אתר";
App::$strings["Remote privacy information not available."] = "";
App::$strings["Visible to:"] = "";
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["No valid account found."] = "";
App::$strings["Password reset request issued. Check your email."] = "";
App::$strings["Site Member (%s)"] = "חבר אתר (%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["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["Not found."] = "לא נמצא.";
App::$strings["Conversation removed."] = "";
App::$strings["No messages."] = "אין הודעות.";
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["%1\$s is following %2\$s's %3\$s"] = "";
App::$strings["Set your current mood and tell your friends"] = "";
App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
App::$strings["Tag removed"] = "";
App::$strings["Remove Item Tag"] = "";
App::$strings["Select a tag to remove: "] = "";
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["OpenID protocol error. No ID returned."] = "";
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["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["Export Channel"] = "";
App::$strings["Export your basic channel information to a file.  This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "";
App::$strings["Export Content"] = "";
App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large.  Please be patient - it may take several minutes for this download to begin."] = "";
App::$strings["Export your posts from a given year or month:"] = "";
App::$strings["You may also export your posts and conversations for a particular year or month. Click on one of the recent years or months below."] = "";
App::$strings["Jan"] = "";
App::$strings["Feb"] = "";
App::$strings["Mar"] = "";
App::$strings["Apr"] = "";
App::$strings["Jun"] = "";
App::$strings["Jul"] = "";
App::$strings["Aug"] = "";
App::$strings["Sep"] = "";
App::$strings["Oct"] = "";
App::$strings["Nov"] = "";
App::$strings["Dec"] = "";
App::$strings["If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "";
App::$strings["Or adjust the date in your browser location bar to select other dates. For example the year 2013; <a href=\"%1\$s/2013\">%1\$s/2013</a> or the month September 2013; <a href=\"%1\$s/2013/9\">%1\$s/2013/9</a>"] = "";
App::$strings["Please visit"] = "אנא בקר";
App::$strings["on another hub to import the backup files(s)."] = "";
App::$strings["We advise you to clone the channel on the new hub first and than to import the backup file(s) (from the same channel) in chronological order. Importing the backup files into another channel will certainly give permission issues."] = "";
App::$strings["[Embedded content - reload page to view]"] = "";
App::$strings["No connections."] = "אין חיבורים.";
App::$strings["Visit %s's profile [%s]"] = "";
App::$strings["Source of Item"] = "";
App::$strings["Total votes"] = "";
App::$strings["Average Rating"] = "";
App::$strings["Page Title"] = "כותרת עמוד";
App::$strings["Xchan Lookup"] = "";
App::$strings["Lookup xchan beginning with (or webbie): "] = "";
App::$strings["invalid target signature"] = "";
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 (Red Matrix 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 Red Matrix"] = "";
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"] = "";