~alexharrington/xibo/pyclient-1.1.0a22

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
msgid ""
msgstr ""
"Project-Id-Version: Xibo Digital Signage\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-11-26 18:52-0000\n"
"PO-Revision-Date: \n"
"Last-Translator: Dan Garner <dan@xibo.org.uk>\n"
"Language-Team:  <info@xibo.org.uk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: English\n"
"X-Poedit-Country: UNITED KINGDOM\n"
"X-Poedit-Basepath: C:\\wamp\\www\\Series 1.1\\110-translations-part2\\\n"
"X-Poedit-KeywordsList: __\n"
"X-Poedit-SearchPath-0: server\n"
"X-Poedit-SearchPath-1: server/lib/pages\n"
"X-Poedit-SearchPath-2: server/lib/app\n"
"X-Poedit-SearchPath-3: server/template\n"
"X-Poedit-SearchPath-4: server/template/pages\n"
"X-Poedit-SearchPath-5: server/modules\n"

#: server/install.php:65
msgid "Welcome to the Xibo Installer!"
msgstr ""

#: server/install.php:66
msgid "The installer will take you through setting up Xibo one step at a time."
msgstr ""

#: server/install.php:67
#: server/upgrade.php:91
msgid "Lets get started!"
msgstr ""

#: server/install.php:70
#: server/install.php:99
#: server/install.php:107
#: server/install.php:341
#: server/install.php:357
#: server/install.php:396
#: server/install.php:425
#: server/install.php:528
#: server/upgrade.php:97
#: server/upgrade.php:150
#: server/upgrade.php:157
#: server/upgrade.php:226
msgid "Next"
msgstr ""

#: server/install.php:79
#: server/upgrade.php:129
msgid "First we need to check if your server meets Xibo's requirements."
msgstr ""

#: server/install.php:87
#: server/install.php:95
#: server/upgrade.php:139
#: server/upgrade.php:147
msgid "Retest"
msgstr ""

#: server/install.php:118
msgid "Xibo needs to setup a new database."
msgstr ""

#: server/install.php:119
msgid "If you have not yet created an empty database and database user for Xibo to use, and know the username/password of a MySQL administrator, click the \"Create New\" button, otherwise click \"Use Existing\"."
msgstr ""

#: server/install.php:120
msgid "Note that any existing database must be empty"
msgstr ""

#: server/install.php:124
msgid "Create New"
msgstr ""

#: server/install.php:128
msgid "Use Existing"
msgstr ""

#: server/install.php:136
msgid "Since no empty database has been created for Xibo to use, we need the username and password of a MySQL administrator to create a new database, and database user for Xibo."
msgstr ""

#: server/install.php:137
msgid "Additionally, please give us a new username and password to create in MySQL for Xibo to use. Xibo will create this automatically for you."
msgstr ""

#: server/install.php:142
#: server/install.php:163
msgid "Host:"
msgstr ""

#: server/install.php:143
msgid "Admin Username:"
msgstr ""

#: server/install.php:144
msgid "Admin Password:"
msgstr ""

#: server/install.php:145
#: server/install.php:164
msgid "Xibo Database Name:"
msgstr ""

#: server/install.php:146
#: server/install.php:165
msgid "Xibo Database Username:"
msgstr ""

#: server/install.php:147
#: server/install.php:166
msgid "Xibo Database Password:"
msgstr ""

#: server/install.php:150
#: server/install.php:169
msgid "Create"
msgstr ""

#: server/install.php:158
msgid "Please enter the details of the database and user you have created for Xibo."
msgstr ""

#: server/install.php:178
msgid "Something went wrong"
msgstr ""

#: server/install.php:195
#: server/install.php:253
msgid "A field was blank. Please fill in all fields."
msgstr ""

#: server/install.php:201
msgid "Could not connect to MySQL with the administrator details. Please check and try again."
msgstr ""

#: server/install.php:201
#: server/install.php:241
#: server/install.php:261
#: server/install.php:307
#: server/install.php:377
#: server/install.php:385
#: server/install.php:487
#: server/install.php:495
#: server/install.php:501
#: server/install.php:507
#: server/install.php:513
#: server/install.php:517
#: server/upgrade.php:62
#: server/upgrade.php:63
#: server/upgrade.php:114
#: server/upgrade.php:294
msgid "MySQL Error:"
msgstr ""

#: server/install.php:205
msgid "Creating new database."
msgstr ""

#: server/install.php:213
msgid "Could not create a new database with the administrator details. Please check and try again."
msgstr ""

#: server/install.php:223
msgid "Creating new user"
msgstr ""

#: server/install.php:241
msgid "Could not create a new user with the administrator details. Please check and try again."
msgstr ""

#: server/install.php:261
msgid "Could not connect to MySQL with the Xibo User account details. Please check and try again."
msgstr ""

#: server/install.php:307
#: server/upgrade.php:294
msgid "An error occured populating the database."
msgstr ""

#: server/install.php:318
#: server/install.php:330
msgid "Unable to write to settings.php. We already checked this was possible earlier, so something changed."
msgstr ""

#: server/install.php:349
msgid "Xibo needs to set the \"xibo_admin\" user password. Please enter a password for this account below."
msgstr ""

#: server/install.php:354
msgid "Password:"
msgstr ""

#: server/install.php:355
msgid "Retype Password:"
msgstr ""

#: server/install.php:367
msgid "Please input a new password. Ensure both password fields are identical."
msgstr ""

#: server/install.php:377
#: server/install.php:487
msgid "Could not connect to MySQL with the Xibo User account details saved in settings.php. Please check and try again."
msgstr ""

#: server/install.php:385
msgid "An error occured changing the xibo_admin password."
msgstr ""

#: server/install.php:392
msgid "Successfully changed the xibo_admin password. We're nearly there now. Just a couple more steps!"
msgstr ""

#: server/install.php:407
msgid "Library Location"
msgstr ""

#: server/install.php:408
msgid "Xibo needs somewhere to store the things you upload to be shown. Ideally, this should be somewhere outside the root of your webserver - that is such that is not accessible by a web browser. Please input the full path to this folder. If the folder does not already exist, Xibo will attempt to create it for you."
msgstr ""

#: server/install.php:411
msgid "Library Location:"
msgstr ""

#: server/install.php:413
msgid "Server Key"
msgstr ""

#: server/install.php:414
msgid "Xibo needs you to choose a \"key\". This will be required each time you setup a new client. It should be complicated, and hard to remember. It is visible in the admin interface, so it need not be written down separately."
msgstr ""

#: server/install.php:416
msgid "Server Key:"
msgstr ""

#: server/install.php:418
msgid "Statistics"
msgstr ""

#: server/install.php:419
msgid "We'd love to know you're running Xibo. If you're happy for us to collect anonymous statistics (version number, number of displays) then please leave the box ticked. Please untick the box if your server does not have direct access to the internet."
msgstr ""

#: server/install.php:421
msgid "Anonymous Statistics:"
msgstr ""

#: server/install.php:440
msgid "A field was blank. Please make sure you complete all fields"
msgstr ""

#: server/install.php:453
msgid "A file exists with the name you gave for the Library Location. Please choose another location"
msgstr ""

#: server/install.php:460
msgid "Could not create the Library Location directory for you. Please ensure the webserver has permission to create a folder in this location, or create the folder manually and grant permission for the webserver to write to the folder."
msgstr ""

#: server/install.php:468
msgid "The Library Location you gave is not writable by the webserver. Please fix the permissions and try again."
msgstr ""

#: server/install.php:473
msgid "The Library Location you gave is not empty. Please give the location of an empty folder"
msgstr ""

#: server/install.php:495
msgid "An error occured changing the library location."
msgstr ""

#: server/install.php:501
msgid "An error occured changing the server key."
msgstr ""

#: server/install.php:507
msgid "An error occured setting the default timezone."
msgstr ""

#: server/install.php:513
#: server/install.php:517
msgid "An error occured setting anonymous statistics."
msgstr ""

#: server/install.php:524
msgid "Successfully set library location and server key."
msgstr ""

#: server/install.php:536
msgid "Unable to delete install.php. Please ensure the webserver has permission to unlink this file and retry"
msgstr ""

#: server/install.php:536
#: server/install.php:539
msgid "Retry"
msgstr ""

#: server/install.php:539
msgid "Unable to delete upgrade.php. Please ensure the webserver has permission to unlink this file and retry"
msgstr ""

#: server/install.php:543
msgid "Xibo was successfully installed."
msgstr ""

#: server/install.php:544
msgid "Please click"
msgstr ""

#: server/install.php:544
msgid "here"
msgstr ""

#: server/install.php:544
msgid "to logon to Xibo as \"xibo_admin\" with the password you chose earlier."
msgstr ""

#: server/install.php:549
#: server/upgrade.php:330
msgid "A required parameter was missing. Please go through the installer sequentially!"
msgstr ""

#: server/install.php:549
msgid "Start Again"
msgstr ""

#: server/settings.php:11
msgid "Sorry, you are not allowed to directly access this page."
msgstr ""

#: server/settings.php:11
msgid "Please press the back button in your browser."
msgstr ""

#: server/upgrade.php:62
msgid "Unable to connect to the MySQL database using the settings stored in settings.php."
msgstr ""

#: server/upgrade.php:63
msgid "Unable to select the MySQL database using the settings stored in settings.php."
msgstr ""

#: server/upgrade.php:89
msgid "Welcome to the Xibo Upgrade!"
msgstr ""

#: server/upgrade.php:90
msgid "The upgrade program will take you through the process one step at a time."
msgstr ""

#: server/upgrade.php:92
msgid "Please enter your xibo_admin password:"
msgstr ""

#: server/upgrade.php:114
msgid "An error occured checking your password."
msgstr ""

#: server/upgrade.php:119
msgid "Password incorrect. Please try again."
msgstr ""

#: server/upgrade.php:188
msgid "Unable to calculate the upgradeTo value. Check for non-numeric SQL and PHP files in the 'install/database' directory."
msgstr ""

#: server/upgrade.php:211
msgid "Warning: We included "
msgstr ""

#: server/upgrade.php:211
msgid "but it did not include a class of appropriate name."
msgstr ""

#: server/upgrade.php:217
msgid "Perform automatic database backup?"
msgstr ""

#: server/upgrade.php:258
msgid "FAIL:"
msgstr ""

#: server/upgrade.php:268
msgid "Backing up your database"
msgstr ""

#: server/upgrade.php:272
msgid "Skipping database backup"
msgstr ""

#: server/upgrade.php:300
msgid "Step"
msgstr ""

#: server/upgrade.php:312
msgid "Unable to delete install.php. Please remove this file manually."
msgstr ""

#: server/upgrade.php:315
msgid "Unable to delete upgrade.php. Please remove this file manually."
msgstr ""

#: server/upgrade.php:318
msgid "Upgrade is complete!"
msgstr ""

#: server/upgrade.php:320
msgid "Login"
msgstr ""

#: server/upgrade.php:324
msgid "There was an error during the upgrade. Please take a screenshot of this page and seek help!"
msgstr ""

#: server/upgrade.php:377
msgid "You must authenticate to run the upgrade."
msgstr ""

#: server/config/config.class.php:128
msgid "PHP Version 5.2.4 or later"
msgstr ""

#: server/config/config.class.php:149
msgid "Xibo requires PHP version 5.2.4 or later."
msgstr ""

#: server/config/config.class.php:153
msgid "Filesystem Permissions"
msgstr ""

#: server/config/config.class.php:164
msgid "Xibo needs to be able to write to the following:"
msgstr ""

#: server/config/config.class.php:172
msgid "Please fix this, and retest."
msgstr ""

#: server/config/config.class.php:176
msgid "Xibo requires a MySQL database. Ensure PHP MySQL client extension is installed"
msgstr ""

#: server/config/config.class.php:195
msgid "JSON Extension"
msgstr ""

#: server/config/config.class.php:206
msgid "Xibo needs the PHP JSON extension to function."
msgstr ""

#: server/config/config.class.php:210
msgid "GD Extension"
msgstr ""

#: server/config/config.class.php:221
msgid "Xibo needs the PHP GD extension to function."
msgstr ""

#: server/config/config.class.php:225
msgid "Session"
msgstr ""

#: server/config/config.class.php:236
msgid "Xibo needs the PHP session support to function."
msgstr ""

#: server/config/config.class.php:240
msgid "PCRE"
msgstr ""

#: server/config/config.class.php:251
msgid "Xibo needs PHP PCRE support to function."
msgstr ""

#: server/config/config.class.php:255
msgid "Gettext"
msgstr ""

#: server/config/config.class.php:273
msgid "Calendar Extension"
msgstr ""

#: server/config/config.class.php:284
msgid "Xibo needs the PHP Calendar extension to function."
msgstr ""

#: server/config/config.class.php:288
msgid "DOM Extension"
msgstr ""

#: server/config/config.class.php:299
msgid "Xibo needs the PHP DOM core functionality enabled."
msgstr ""

#: server/config/config.class.php:303
msgid "DOM XML Extension"
msgstr ""

#: server/config/config.class.php:314
msgid "Xibo needs the PHP DOM XML extension to function."
msgstr ""

#: server/config/config.class.php:318
msgid "Allow PHP to open external URLs"
msgstr ""

#: server/config/config.class.php:329
msgid "You must have allow_url_fopen = On in your PHP.ini file for anonymous statistics gathering to function."
msgstr ""

#: server/config/config.class.php:330
msgid "If you do not intend to enable anonymous statistics gathering you need not worry about this problem."
msgstr ""

#: server/lib/app/formmanager.class.php:55
msgid "Query Error"
msgstr ""

#: server/lib/app/formmanager.class.php:60
msgid "No selections available"
msgstr ""

#: server/lib/app/helpmanager.class.php:54
msgid "Help"
msgstr ""

#: server/lib/app/menumanager.class.php:49
msgid "No menu provided"
msgstr ""

#: server/lib/app/menumanager.class.php:55
msgid "No permissions for this menu."
msgstr ""

#: server/lib/app/pagemanager.class.php:105
msgid "You do not have permission to access this page."
msgstr ""

#: server/lib/data/display.data.class.php:73
msgid "Could not add display"
msgstr ""

#: server/lib/data/display.data.class.php:83
#: server/lib/data/displaygroup.data.class.php:311
msgid "Could not add a display group for the new display."
msgstr ""

#: server/lib/data/display.data.class.php:91
#: server/lib/data/displaygroup.data.class.php:319
msgid "Could not link the new display with its group."
msgstr ""

#: server/lib/data/display.data.class.php:99
#: server/lib/data/display.data.class.php:158
msgid "Could not update display with default layout."
msgstr ""

#: server/lib/data/display.data.class.php:139
#: server/lib/data/displaygroup.data.class.php:401
#: server/lib/data/displaygroup.data.class.php:414
#: server/lib/data/displaygroup.data.class.php:426
msgid "Could not update display"
msgstr ""

#: server/lib/data/display.data.class.php:139
#: server/lib/data/displaygroup.data.class.php:401
msgid "Stage 1"
msgstr ""

#: server/lib/data/display.data.class.php:150
#: server/lib/data/display.data.class.php:242
msgid "Could not update this display with a new name."
msgstr ""

#: server/lib/data/display.data.class.php:188
msgid "Could not delete this display."
msgstr ""

#: server/lib/data/display.data.class.php:204
msgid "Unable to delete display record. However it is no longer usable."
msgstr ""

#: server/lib/data/display.data.class.php:231
#: server/lib/data/display.data.class.php:271
msgid "Error updating this displays last accessed information."
msgstr ""

#: server/lib/data/displaygroup.data.class.php:64
msgid "Could not add Display Group"
msgstr ""

#: server/lib/data/displaygroup.data.class.php:97
msgid "Could not edit Display Group"
msgstr ""

#: server/lib/data/displaygroup.data.class.php:124
msgid "Unable to delete Display Group."
msgstr ""

#: server/lib/data/displaygroup.data.class.php:155
#: server/lib/data/displaygroup.data.class.php:166
#: server/lib/data/displaygroup.data.class.php:294
#: server/lib/data/displaygroup.data.class.php:368
#: server/lib/data/displaygroup.data.class.php:378
msgid "Unable to get the DisplayGroup for this Display"
msgstr ""

#: server/lib/data/displaygroup.data.class.php:176
msgid "Unable to delete Schedule records for this DisplayGroup."
msgstr ""

#: server/lib/data/displaygroup.data.class.php:188
msgid "Unable to delete Display Group Links."
msgstr ""

#: server/lib/data/displaygroup.data.class.php:230
msgid "Could not Link Display Group to Display"
msgstr ""

#: server/lib/data/displaygroup.data.class.php:260
msgid "Could not Unlink Display Group from Display"
msgstr ""

#: server/lib/data/displaygroup.data.class.php:334
msgid "Unable to update the DisplayGroup for this Display"
msgstr ""

#: server/lib/data/displaygroup.data.class.php:414
#: server/lib/data/displaygroup.data.class.php:426
msgid "Stage 2"
msgstr ""

#: server/lib/data/displaygroupsecurity.data.class.php:59
msgid "Could not Link Display Group to Group"
msgstr ""

#: server/lib/data/displaygroupsecurity.data.class.php:89
msgid "Could not Unlink Display Group from Group"
msgstr ""

#: server/lib/data/schedule.data.class.php:85
msgid "Could not INSERT a new Schedule"
msgstr ""

#: server/lib/data/schedule.data.class.php:230
msgid "Unable to delete schedule record for this Event."
msgstr ""

#: server/lib/data/schedule.data.class.php:291
#: server/lib/data/schedule.data.class.php:324
msgid "Could not update Layout on Schedule"
msgstr ""

#: server/lib/data/schedule.data.class.php:352
msgid "Unable to delete schedule records for this Display Group."
msgstr ""

#: server/lib/data/schedule.data.class.php:380
#: server/lib/data/schedule.data.class.php:436
msgid "Unable to delete schedule records for this Event."
msgstr ""

#: server/lib/data/schedule.data.class.php:408
msgid "Unable to delete schedule records for this Event and DisplayGroup."
msgstr ""

#: server/lib/data/schedule.data.class.php:458
msgid "Error retriving information necessary to delete this event"
msgstr ""

#: server/lib/data/schedule.data.class.php:489
msgid "Unable to edit the display groups for this Event."
msgstr ""

#: server/lib/data/setting.data.class.php:34
msgid "Update of settings failed"
msgstr ""

#: server/lib/modules/module.class.php:100
msgid "Unable to create Module [No type given] - please refer to the Module Documentation."
msgstr ""

#: server/lib/modules/module.class.php:108
msgid "Unable to create Module [Cannot find type in the database] - please refer to the Module Documentation."
msgstr ""

#: server/lib/modules/module.class.php:114
msgid "Unable to create Module [No registered modules of this type] - please refer to the Module Documentation."
msgstr ""

#: server/lib/modules/module.class.php:168
msgid "Cannot find this media item. Please refresh the region options."
msgstr ""

#: server/lib/modules/module.class.php:395
msgid "Unable to Remove this media from the Layout"
msgstr ""

#: server/lib/modules/module.class.php:406
msgid "Unable to assign to the Region"
msgstr ""

#: server/lib/modules/module.class.php:415
msgid "Error adding this media to the library"
msgstr ""

#: server/lib/modules/module.class.php:447
msgid "Return to the Region Options"
msgstr ""

#: server/lib/modules/module.class.php:448
msgid "Are you sure you want to remove this item from Xibo?"
msgstr ""

#: server/lib/modules/module.class.php:449
msgid "It will be lost"
msgstr ""

#: server/lib/modules/module.class.php:464
msgid "Delete Item"
msgstr ""

#: server/lib/modules/module.class.php:501
#: server/lib/modules/module.class.php:519
msgid "Not yet implemented by this module."
msgstr ""

#: server/lib/modules/module.class.php:505
#: server/lib/modules/module.class.php:522
msgid "Add Item"
msgstr ""

#: server/lib/modules/module.class.php:537
msgid "Add Media has not been implemented for this module."
msgstr ""

#: server/lib/modules/module.class.php:549
msgid "Edit Media has not been implemented for this module."
msgstr ""

#: server/lib/pages/admin.class.php:51
#: server/lib/pages/admin.class.php:202
msgid "Settings"
msgstr ""

#: server/lib/pages/admin.class.php:69
msgid "Only admin users are allowed to modify settings"
msgstr ""

#: server/lib/pages/admin.class.php:79
#: server/lib/pages/admin.class.php:84
msgid "Cannot find the Library Location Setting - this is serious."
msgstr ""

#: server/lib/pages/admin.class.php:111
#: server/lib/pages/content.class.php:646
msgid "The Library Location you have picked is not writable to the Xibo Server."
msgstr ""

#: server/lib/pages/admin.class.php:120
msgid "Update of settings failed."
msgstr ""

#: server/lib/pages/admin.class.php:124
msgid "Settings changed"
msgstr ""

#: server/lib/pages/admin.class.php:149
msgid "Can't get the setting catagories"
msgstr ""

#: server/lib/pages/admin.class.php:171
#: server/lib/pages/display.class.php:237
#: server/lib/pages/display.class.php:307
#: server/lib/pages/displaygroup.class.php:109
#: server/lib/pages/displaygroup.class.php:183
#: server/lib/pages/displaygroup.class.php:249
#: server/lib/pages/displaygroup.class.php:377
#: server/lib/pages/displaygroup.class.php:459
msgid "Save"
msgstr ""

#: server/lib/pages/admin.class.php:216
#: server/lib/pages/admin.class.php:262
#: server/lib/pages/admin.class.php:295
#: server/lib/pages/admin.class.php:336
msgid "Can not get settings"
msgstr ""

#: server/lib/pages/admin.class.php:280
msgid "Test Email"
msgstr ""

#: server/lib/pages/admin.class.php:462
msgid "Cannot set debug to On"
msgstr ""

#: server/lib/pages/admin.class.php:467
msgid "Cannot set audit to On"
msgstr ""

#: server/lib/pages/admin.class.php:470
msgid "Debugging switched On."
msgstr ""

#: server/lib/pages/admin.class.php:486
msgid "Cannot set debug to Off"
msgstr ""

#: server/lib/pages/admin.class.php:491
msgid "Cannot set audit to Off"
msgstr ""

#: server/lib/pages/admin.class.php:494
msgid "Debugging switched Off."
msgstr ""

#: server/lib/pages/admin.class.php:510
#: server/lib/pages/admin.class.php:529
msgid "Cannot switch modes."
msgstr ""

#: server/lib/pages/admin.class.php:513
msgid "Server switched to Production Mode"
msgstr ""

#: server/lib/pages/admin.class.php:532
msgid "Server switched to Test Mode"
msgstr ""

#: server/lib/pages/clock.class.php:60
msgid "System Information"
msgstr ""

#: server/lib/pages/clock.class.php:62
msgid "Local Time"
msgstr ""

#: server/lib/pages/clock.class.php:63
msgid "System Time"
msgstr ""

#: server/lib/pages/clock.class.php:64
msgid "Local Date"
msgstr ""

#: server/lib/pages/clock.class.php:65
msgid "System Date"
msgstr ""

#: server/lib/pages/clock.class.php:68
#: server/lib/pages/clock.class.php:84
msgid "Date / Time Information"
msgstr ""

#: server/lib/pages/content.class.php:68
msgid "Library"
msgstr ""

#: server/lib/pages/content.class.php:114
#: server/lib/pages/content.class.php:234
#: server/lib/pages/content.class.php:444
#: server/lib/pages/content.class.php:541
#: server/lib/pages/displaygroup.class.php:181
#: server/lib/pages/displaygroup.class.php:247
msgid "Name"
msgstr ""

#: server/lib/pages/content.class.php:115
#: server/lib/pages/content.class.php:235
#: server/lib/pages/content.class.php:445
#: server/lib/pages/content.class.php:542
msgid "Type"
msgstr ""

#: server/lib/pages/content.class.php:116
#: server/lib/pages/content.class.php:236
msgid "Retired"
msgstr ""

#: server/lib/pages/content.class.php:117
#: server/lib/pages/content.class.php:237
#: server/lib/pages/content.class.php:544
msgid "Owner"
msgstr ""

#: server/lib/pages/content.class.php:118
#: server/lib/pages/content.class.php:238
#: server/lib/pages/content.class.php:545
msgid "Shared"
msgstr ""

#: server/lib/pages/content.class.php:230
#: server/lib/pages/content.class.php:537
msgid "Cant get content list"
msgstr ""

#: server/lib/pages/content.class.php:239
#: server/lib/pages/display.class.php:309
#: server/lib/pages/displaygroup.class.php:111
msgid "Action"
msgstr ""

#: server/lib/pages/content.class.php:286
msgid "You do not have permission to edit this media"
msgstr ""

#: server/lib/pages/content.class.php:298
#: server/lib/pages/display.class.php:312
#: server/lib/pages/displaygroup.class.php:112
msgid "Edit"
msgstr ""

#: server/lib/pages/content.class.php:299
#: server/lib/pages/display.class.php:313
#: server/lib/pages/displaygroup.class.php:113
msgid "Delete"
msgstr ""

#: server/lib/pages/content.class.php:306
msgid "No available actions."
msgstr ""

#: server/lib/pages/content.class.php:349
msgid "Add"
msgstr ""

#: server/lib/pages/content.class.php:374
msgid "Add Media to the Library"
msgstr ""

#: server/lib/pages/content.class.php:379
msgid "Close"
msgstr ""

#: server/lib/pages/content.class.php:395
#: server/lib/pages/display.class.php:378
msgid "You do not have permissions to access this page"
msgstr ""

#: server/lib/pages/content.class.php:483
msgid "Assign an item from the Library"
msgstr ""

#: server/lib/pages/content.class.php:486
#: server/lib/pages/display.class.php:236
#: server/lib/pages/display.class.php:308
#: server/lib/pages/displaygroup.class.php:110
#: server/lib/pages/displaygroup.class.php:184
#: server/lib/pages/displaygroup.class.php:250
#: server/lib/pages/displaygroup.class.php:376
#: server/lib/pages/displaygroup.class.php:458
msgid "Cancel"
msgstr ""

#: server/lib/pages/content.class.php:487
msgid "Assign"
msgstr ""

#: server/lib/pages/content.class.php:543
msgid "Duration"
msgstr ""

#: server/lib/pages/content.class.php:546
msgid "Select"
msgstr ""

#: server/lib/pages/dashboard.class.php:47
msgid "Dashboard"
msgstr ""

#: server/lib/pages/display.class.php:59
msgid "You do not have permissions to edit this display"
msgstr ""

#: server/lib/pages/display.class.php:81
msgid "Can not get the display information for display"
msgstr ""

#: server/lib/pages/display.class.php:106
msgid "Display Administration"
msgstr ""

#: server/lib/pages/display.class.php:138
msgid "Can not have a display without a name"
msgstr ""

#: server/lib/pages/display.class.php:145
msgid "Cannot Edit this Display"
msgstr ""

#: server/lib/pages/display.class.php:148
msgid "Display Saved."
msgstr ""

#: server/lib/pages/display.class.php:174
msgid "The Name of the Display - (1 - 50 characters)."
msgstr ""

#: server/lib/pages/display.class.php:175
msgid "The Default Layout to Display where there is no other content."
msgstr ""

#: server/lib/pages/display.class.php:176
msgid "Whether to always put the default into the cycle."
msgstr ""

#: server/lib/pages/display.class.php:177
msgid "Control the licensing on this display."
msgstr ""

#: server/lib/pages/display.class.php:178
msgid "Collect auditing from this client. Should only be used if there is a problem with the display."
msgstr ""

#: server/lib/pages/display.class.php:190
msgid "Will use one of the available licenses for this display"
msgstr ""

#: server/lib/pages/display.class.php:190
msgid "License Display"
msgstr ""

#: server/lib/pages/display.class.php:196
msgid "Revoke License"
msgstr ""

#: server/lib/pages/display.class.php:196
msgid "Make the license available for another display."
msgstr ""

#: server/lib/pages/display.class.php:201
#: server/lib/pages/display.class.php:302
msgid "Display"
msgstr ""

#: server/lib/pages/display.class.php:202
#: server/lib/pages/display.class.php:303
msgid "Default Layout"
msgstr ""

#: server/lib/pages/display.class.php:203
#: server/lib/pages/display.class.php:304
msgid "Interleave Default"
msgstr ""

#: server/lib/pages/display.class.php:204
#: server/lib/pages/display.class.php:305
msgid "Auditing"
msgstr ""

#: server/lib/pages/display.class.php:205
#: server/lib/pages/display.class.php:306
msgid "License"
msgstr ""

#: server/lib/pages/display.class.php:234
msgid "Edit a Display"
msgstr ""

#: server/lib/pages/display.class.php:298
#: server/lib/pages/display.class.php:418
msgid "Can not list displays"
msgstr ""

#: server/lib/pages/display.class.php:310
msgid "Last Accessed"
msgstr ""

#: server/lib/pages/display.class.php:311
msgid "Logged In"
msgstr ""

#: server/lib/pages/display.class.php:314
#: server/lib/pages/displaygroup.class.php:116
msgid "Group Security"
msgstr ""

#: server/lib/pages/display.class.php:452
msgid "Currently Playing"
msgstr ""

#: server/lib/pages/display.class.php:488
msgid "Nothing"
msgstr ""

#: server/lib/pages/display.class.php:525
msgid "Unable to access displays"
msgstr ""

#: server/lib/pages/display.class.php:551
msgid "You will only be able to delete this display if there is no associated information contained in Xibo."
msgstr ""

#: server/lib/pages/display.class.php:552
msgid "Are you sure you want to delete this display?"
msgstr ""

#: server/lib/pages/display.class.php:553
#: server/lib/pages/display.class.php:567
#: server/lib/pages/displaygroup.class.php:298
msgid "Yes"
msgstr ""

#: server/lib/pages/display.class.php:554
#: server/lib/pages/display.class.php:566
#: server/lib/pages/displaygroup.class.php:297
msgid "No"
msgstr ""

#: server/lib/pages/display.class.php:564
msgid "Delete this Display?"
msgstr ""

#: server/lib/pages/display.class.php:579
msgid "No Display selected for Deletion."
msgstr ""

#: server/lib/pages/display.class.php:587
msgid "Cannot delete this display. You may unlicense it to hide it from view."
msgstr ""

#: server/lib/pages/display.class.php:590
msgid "The Display has been Deleted"
msgstr ""

#: server/lib/pages/displaygroup.class.php:44
msgid "Display Group Administration"
msgstr ""

#: server/lib/pages/displaygroup.class.php:106
msgid "Can not list Display Groups"
msgstr ""

#: server/lib/pages/displaygroup.class.php:114
msgid "Display Group"
msgstr ""

#: server/lib/pages/displaygroup.class.php:115
msgid "Group Members"
msgstr ""

#: server/lib/pages/displaygroup.class.php:139
msgid "No available Actions"
msgstr ""

#: server/lib/pages/displaygroup.class.php:178
#: server/lib/pages/displaygroup.class.php:244
msgid "The Name of this Group."
msgstr ""

#: server/lib/pages/displaygroup.class.php:179
#: server/lib/pages/displaygroup.class.php:245
msgid "A short description of this Group."
msgstr ""

#: server/lib/pages/displaygroup.class.php:182
#: server/lib/pages/displaygroup.class.php:248
msgid "Description"
msgstr ""

#: server/lib/pages/displaygroup.class.php:201
msgid "Add Display Group"
msgstr ""

#: server/lib/pages/displaygroup.class.php:228
msgid "Error getting Display Group"
msgstr ""

#: server/lib/pages/displaygroup.class.php:234
msgid "No display group found."
msgstr ""

#: server/lib/pages/displaygroup.class.php:268
msgid "Edit Display Group"
msgstr ""

#: server/lib/pages/displaygroup.class.php:285
msgid "Are you sure you want to delete?"
msgstr ""

#: server/lib/pages/displaygroup.class.php:295
msgid "Delete Display Group"
msgstr ""

#: server/lib/pages/displaygroup.class.php:324
#: server/lib/pages/displaygroup.class.php:343
#: server/lib/pages/displaygroup.class.php:406
#: server/lib/pages/displaygroup.class.php:425
#: server/lib/pages/displaygroup.class.php:601
msgid "Error getting Displays"
msgstr ""

#: server/lib/pages/displaygroup.class.php:374
msgid "Manage Membership"
msgstr ""

#: server/lib/pages/displaygroup.class.php:456
msgid "Manage Group Security for "
msgstr ""

#: server/lib/pages/displaygroup.class.php:478
#: server/lib/pages/displaygroup.class.php:523
msgid "Please enter a display group name"
msgstr ""

#: server/lib/pages/displaygroup.class.php:483
#: server/lib/pages/displaygroup.class.php:528
msgid "Description can not be longer than 254 characters"
msgstr ""

#: server/lib/pages/displaygroup.class.php:492
#: server/lib/pages/displaygroup.class.php:537
#, php-format
msgid "You already own a display group called '%s'."
msgstr ""

#: server/lib/pages/displaygroup.class.php:492
#: server/lib/pages/displaygroup.class.php:537
msgid "Please choose another."
msgstr ""

#: server/lib/pages/displaygroup.class.php:503
msgid "Display Group Added"
msgstr ""

#: server/lib/pages/displaygroup.class.php:549
msgid "Display Group Edited"
msgstr ""

#: server/lib/pages/displaygroup.class.php:572
msgid "Display Group Deleted"
msgstr ""

#: server/lib/pages/displaygroup.class.php:636
msgid "Group membership set"
msgstr ""

#: server/lib/pages/displaygroup.class.php:666
msgid "Error getting Groups with Security permissions for this Display Group."
msgstr ""

#: server/lib/pages/displaygroup.class.php:701
msgid "Group security set"
msgstr ""

#: server/lib/pages/error.class.php:41
msgid "Application Error"
msgstr ""

#: server/lib/pages/error.class.php:49
msgid "Unknown Error"
msgstr ""

#: server/lib/pages/error.class.php:51
msgid "There has been an application error."
msgstr ""

#: server/lib/pages/fault.class.php:49
msgid "Report a Fault"
msgstr ""

#: server/lib/pages/fault.class.php:61
msgid "Report a fault with Xibo"
msgstr ""

#: server/lib/pages/fault.class.php:62
msgid "Before reporting a fault it would be appreciated if you follow the below steps."
msgstr ""

#: server/lib/pages/fault.class.php:66
msgid "Check that the Environment passes all the Xibo Environment checks."
msgstr ""

#: server/lib/pages/fault.class.php:70
msgid "Turn ON full auditing and debugging."
msgstr ""

#: server/lib/pages/fault.class.php:73
msgid "Turn ON Debugging"
msgstr ""

#: server/lib/pages/fault.class.php:77
msgid "Recreate the Problem in a new window."
msgstr ""

#: server/lib/pages/fault.class.php:80
msgid "Automatically collect and export relevant information into a text file."
msgstr ""

#: server/lib/pages/fault.class.php:80
msgid "Please save this file to your PC."
msgstr ""

#: server/lib/pages/fault.class.php:81
msgid "Collect and Save Data"
msgstr ""

#: server/lib/pages/fault.class.php:84
msgid "Turn full auditing and debugging OFF."
msgstr ""

#: server/lib/pages/fault.class.php:87
msgid "Turn OFF Debugging"
msgstr ""

#: server/lib/pages/fault.class.php:91
msgid "Click on the below link to open the bug report page for this Xibo release."
msgstr ""

#: server/lib/pages/fault.class.php:91
msgid "Describe the problem and upload the file you obtained earlier."
msgstr ""

#: server/lib/pages/fault.class.php:92
msgid "File a bug report in Launchpad"
msgstr ""

#: server/lib/pages/fault.class.php:100
msgid "We will do our best to use the information collected above to solve your issue."
msgstr ""

#: server/lib/pages/fault.class.php:101
msgid "However sometimes this will not be enough and you will be asked to put your Xibo installation into \"Test\" mode."
msgstr ""

#: server/lib/pages/fault.class.php:105
msgid "Switch to Test Mode."
msgstr ""

#: server/lib/pages/fault.class.php:108
msgid "Switch to Test Mode"
msgstr ""

#: server/lib/pages/fault.class.php:112
msgid "Recreate the Problem in a new window and Capture a screenshot."
msgstr ""

#: server/lib/pages/fault.class.php:112
msgid "You should send your screenshot to info@xibo.org.uk with a reference to the Launchpad Question/Bug you have created previously."
msgstr ""

#: server/lib/pages/fault.class.php:115
msgid "Switch to Production Mode."
msgstr ""

#: server/lib/pages/fault.class.php:118
msgid "Switch to Production Mode"
msgstr ""

#: server/lib/pages/group.class.php:68
msgid "Can not get Group information."
msgstr ""

#: server/lib/pages/group.class.php:84
msgid "Group Admin"
msgstr ""

#: server/lib/pages/group.class.php:163
msgid "Can not get group information."
msgstr ""

#: server/lib/pages/group.class.php:169
#: server/lib/pages/group.class.php:336
msgid "Page Security"
msgstr ""

#: server/lib/pages/group.class.php:170
msgid "Menu Security"
msgstr ""

#: server/lib/pages/group.class.php:171
msgid "Display Security"
msgstr ""

#: server/lib/pages/group.class.php:289
msgid "Add/Edit Group"
msgstr ""

#: server/lib/pages/group.class.php:339
#: server/lib/pages/group.class.php:671
#: server/lib/pages/group.class.php:729
msgid "Assign / Unassign"
msgstr ""

#: server/lib/pages/group.class.php:377
msgid "Can't get this groups information"
msgstr ""

#: server/lib/pages/group.class.php:386
msgid "Security Group"
msgstr ""

#: server/lib/pages/group.class.php:387
#: server/lib/pages/group.class.php:728
msgid "Assigned"
msgstr ""

#: server/lib/pages/group.class.php:448
msgid "Are you sure you want to delete"
msgstr ""

#: server/lib/pages/group.class.php:459
msgid "Delete Group"
msgstr ""

#: server/lib/pages/group.class.php:481
#: server/lib/pages/group.class.php:518
msgid "Group Name cannot be empty."
msgstr ""

#: server/lib/pages/group.class.php:491
msgid "Error adding a new group."
msgstr ""

#: server/lib/pages/group.class.php:497
msgid "Added the Group"
msgstr ""

#: server/lib/pages/group.class.php:526
msgid "Unexpected error editing the Group"
msgstr ""

#: server/lib/pages/group.class.php:532
msgid "Edited the Group"
msgstr ""

#: server/lib/pages/group.class.php:551
msgid "You can not delete this group. There are either page permissions assigned, or users with this group."
msgstr ""

#: server/lib/pages/group.class.php:557
msgid "Deleted the Group"
msgstr ""

#: server/lib/pages/group.class.php:584
#: server/lib/pages/group.class.php:599
msgid "Can't assign this page to this group"
msgstr ""

#: server/lib/pages/group.class.php:610
msgid "Can't remove this page from this group"
msgstr ""

#: server/lib/pages/group.class.php:619
msgid "Edited the Group Page Security"
msgstr ""

#: server/lib/pages/group.class.php:638
msgid "Menu"
msgstr ""

#: server/lib/pages/group.class.php:668
msgid "Menu Item Security"
msgstr ""

#: server/lib/pages/group.class.php:719
#: server/lib/pages/group.class.php:724
msgid "Cannot get the menu items for this Group."
msgstr ""

#: server/lib/pages/group.class.php:727
msgid "Menu Item"
msgstr ""

#: server/lib/pages/group.class.php:807
msgid "Can't assign this menu item to this group"
msgstr ""

#: server/lib/pages/group.class.php:818
msgid "Can't remove this menu item from this group"
msgstr ""

#: server/lib/pages/group.class.php:826
msgid "Edited the MenuItem Group Security"
msgstr ""

#: server/lib/pages/help.class.php:50
msgid "Error getting Help Link"
msgstr ""

#: server/lib/pages/help.class.php:63
#, php-format
msgid "No help file found for Topic %s and Category %s."
msgstr ""

#: server/lib/pages/help.class.php:68
msgid "You must specify a help page."
msgstr ""

#: server/lib/pages/index.class.php:80
msgid "Incorrect Login Information."
msgstr ""

#: server/lib/pages/index.class.php:89
msgid "Form expired. Please refresh and try again."
msgstr ""

#: server/lib/pages/index.class.php:128
msgid "Please Login to access this page."
msgstr ""

#: server/lib/pages/index.class.php:296
msgid "About Xibo"
msgstr ""

#: server/lib/pages/layout.class.php:78
msgid "Cannot retrieve the Information relating to this layout. The layout may be corrupt."
msgstr ""

#: server/lib/pages/layout.class.php:100
msgid "You do not have permissions to edit this layout"
msgstr ""

#: server/lib/pages/layout.class.php:113
#: server/locale/dbtranslate.php:37
msgid "Layouts"
msgstr ""

#: server/lib/pages/layout.class.php:167
#: server/lib/pages/layout.class.php:790
msgid "Tags"
msgstr ""

#: server/lib/pages/layout.class.php:232
#: server/lib/pages/layout.class.php:363
msgid "Layout Name must be between 1 and 50 characters"
msgstr ""

#: server/lib/pages/layout.class.php:244
#: server/lib/pages/layout.class.php:375
msgid "Tags can not be longer than 254 characters"
msgstr ""

#: server/lib/pages/layout.class.php:254
#: server/lib/pages/layout.class.php:385
#, php-format
msgid "You already own a layout called '%s'. Please choose another."
msgstr ""

#: server/lib/pages/layout.class.php:281
msgid "Error getting this template."
msgstr ""

#: server/lib/pages/layout.class.php:292
msgid "Unknown error adding layout."
msgstr ""

#: server/lib/pages/layout.class.php:308
#: server/lib/pages/layout.class.php:430
#: server/lib/pages/layout.class.php:1001
msgid "Layout Details Changed."
msgstr ""

#: server/lib/pages/layout.class.php:414
#, php-format
msgid "Unknown error editing %s"
msgstr ""

#: server/lib/pages/layout.class.php:450
msgid "Can not get layout information"
msgstr ""

#: server/lib/pages/layout.class.php:459
msgid "Are you sure you want to delete this layout? All media will be unassigned. Any layout specific media such as text/rss will be lost."
msgstr ""

#: server/lib/pages/layout.class.php:473
msgid "Sorry, unable to delete this layout."
msgstr ""

#: server/lib/pages/layout.class.php:474
msgid "Retire this layout instead?"
msgstr ""

#: server/lib/pages/layout.class.php:487
msgid "Delete this layout?"
msgstr ""

#: server/lib/pages/layout.class.php:502
#: server/lib/pages/layout.class.php:541
msgid "No Layout selected"
msgstr ""

#: server/lib/pages/layout.class.php:511
msgid "Cannot unassign this layouts media. Please manually unassign."
msgstr ""

#: server/lib/pages/layout.class.php:521
msgid "Cannot delete this layout. You may retire it from the Edit form."
msgstr ""

#: server/lib/pages/layout.class.php:525
msgid "The Layout has been Deleted"
msgstr ""

#: server/lib/pages/layout.class.php:552
msgid "Failed to retire, Unknown Error."
msgstr ""

#: server/lib/pages/layout.class.php:556
msgid "Layout Retired."
msgstr ""

#: server/lib/pages/layout.class.php:631
msgid "An Unknown error occured when listing the layouts."
msgstr ""

#: server/lib/pages/layout.class.php:679
msgid "You do not have permission to design this layout"
msgstr ""

#: server/lib/pages/layout.class.php:705
msgid "None"
msgstr ""

#: server/lib/pages/layout.class.php:735
#: server/lib/pages/layout.class.php:787
msgid "The Name of the Layout - (1 - 50 characters)"
msgstr ""

#: server/lib/pages/layout.class.php:736
#: server/lib/pages/layout.class.php:789
msgid "An optional description of the Layout. (1 - 250 characters)"
msgstr ""

#: server/lib/pages/layout.class.php:737
#: server/lib/pages/layout.class.php:791
msgid "Tags for this layout - used when searching for it. Space delimited. (1 - 250 characters)"
msgstr ""

#: server/lib/pages/layout.class.php:738
#: server/lib/pages/layout.class.php:793
msgid "The permissions to associate with this Layout"
msgstr ""

#: server/lib/pages/layout.class.php:739
msgid "Retire this layout or not? It will no longer be visible in lists"
msgstr ""

#: server/lib/pages/layout.class.php:740
msgid "Template to create this layout with."
msgstr ""

#: server/lib/pages/layout.class.php:821
msgid "Add/Edit a Layout."
msgstr ""

#: server/lib/pages/layout.class.php:878
#: server/lib/pages/layout.class.php:959
msgid "Unable to get the Resolution information"
msgstr ""

#: server/lib/pages/layout.class.php:888
#: server/lib/pages/layout.class.php:899
msgid "Pick the resolution"
msgstr ""

#: server/lib/pages/layout.class.php:889
msgid "Select the background image from the library."
msgstr ""

#: server/lib/pages/layout.class.php:890
msgid "Use the color picker to select the background color."
msgstr ""

#: server/lib/pages/layout.class.php:894
msgid "Background Color"
msgstr ""

#: server/lib/pages/layout.class.php:895
msgid "Use the color picker to select the background color"
msgstr ""

#: server/lib/pages/layout.class.php:896
msgid "Background Image"
msgstr ""

#: server/lib/pages/layout.class.php:897
msgid "Select the background image from the library"
msgstr ""

#: server/lib/pages/layout.class.php:898
msgid "Resolution"
msgstr ""

#: server/lib/pages/layout.class.php:927
msgid "Change the Background Properties"
msgstr ""

#: server/lib/pages/layout.class.php:997
msgid "Unable to update background information"
msgstr ""

#: server/lib/pages/layout.class.php:1021
msgid "No layout information available, please refresh the page."
msgstr ""

#: server/lib/pages/layout.class.php:1034
msgid "Region Added."
msgstr ""

#: server/lib/pages/layout.class.php:1053
msgid "No layout/region information available, please refresh the page and try again."
msgstr ""

#: server/lib/pages/layout.class.php:1068
msgid "Region Deleted."
msgstr ""

#: server/lib/pages/layout.class.php:1152
msgid "Order Changed"
msgstr ""

#: server/lib/pages/layout.class.php:1168
msgid "Are you sure you want to remove this region?"
msgstr ""

#: server/lib/pages/layout.class.php:1169
msgid "All media files will be unassigned and any context saved to the region itself (such as Text, Tickers) will be lost permanently."
msgstr ""

#: server/lib/pages/layout.class.php:1184
msgid "Delete this region?"
msgstr ""

#: server/lib/pages/layout.class.php:1254
msgid "Options"
msgstr ""

#: server/lib/pages/layout.class.php:1256
msgid "Set as Home"
msgstr ""

#: server/lib/pages/layout.class.php:1258
msgid "Add Region"
msgstr ""

#: server/lib/pages/layout.class.php:1259
msgid "Edit Background"
msgstr ""

#: server/lib/pages/layout.class.php:1260
msgid "Properties"
msgstr ""

#: server/lib/pages/layout.class.php:1261
msgid "Save Template"
msgstr ""

#: server/lib/pages/layout.class.php:1410
msgid "Media Controlled"
msgstr ""

#: server/lib/pages/layout.class.php:1550
msgid "Region Options"
msgstr ""

#: server/lib/pages/layout.class.php:1603
msgid "Error getting type from a media item."
msgstr ""

#: server/lib/pages/layout.class.php:1622
msgid "Cannot set region information."
msgstr ""

#: server/lib/pages/layout.class.php:1701
msgid "Empty Region"
msgstr ""

#: server/lib/pages/license.class.php:43
msgid "License Management"
msgstr ""

#: server/lib/pages/mediamanager.class.php:62
msgid "Incorrect home page setting, please contact your system admin."
msgstr ""

#: server/lib/pages/module.class.php:104
msgid "This Module does not exist"
msgstr ""

#: server/lib/pages/region.class.php:51
msgid "Unable to Query for that layout, there is a database error."
msgstr ""

#: server/lib/pages/region.class.php:76
msgid "Unable to Update that layouts XML with a new Media Node"
msgstr ""

#: server/lib/pages/region.class.php:129
msgid "No region ID provided, cannot delete"
msgstr ""

#: server/lib/pages/region.class.php:234
msgid "Database error adding this link record."
msgstr ""

#: server/lib/pages/region.class.php:256
msgid "Database error updating this link record."
msgstr ""

#: server/lib/pages/region.class.php:276
msgid "Database error deleting this link record."
msgstr ""

#: server/lib/pages/region.class.php:484
msgid "Non numerics, try refreshing the browser"
msgstr ""

#: server/lib/pages/report.class.php:89
msgid "From Date"
msgstr ""

#: server/lib/pages/report.class.php:177
msgid "Can not query for current sessions"
msgstr ""

#: server/lib/pages/report.class.php:182
msgid "Active"
msgstr ""

#: server/lib/pages/report.class.php:183
msgid "User Name"
msgstr ""

#: server/lib/pages/report.class.php:184
msgid "Last Page"
msgstr ""

#: server/lib/pages/report.class.php:185
msgid "IP Address"
msgstr ""

#: server/lib/pages/report.class.php:186
msgid "Browser"
msgstr ""

#: server/lib/pages/report.class.php:246
msgid "Are you sure you want to logout this user?"
msgstr ""

#: server/lib/pages/report.class.php:280
msgid "Unable to log out this user"
msgstr ""

#: server/lib/pages/report.class.php:283
msgid "User Logged Out."
msgstr ""

#: server/lib/pages/report.class.php:398
msgid "Can not query the log"
msgstr ""

#: server/lib/pages/report.class.php:403
msgid "Log Date"
msgstr ""

#: server/lib/pages/report.class.php:404
msgid "Page"
msgstr ""

#: server/lib/pages/report.class.php:405
msgid "Function"
msgstr ""

#: server/lib/pages/report.class.php:406
msgid "Message"
msgstr ""

#: server/lib/pages/schedule.class.php:92
msgid "The Calendar doesnt support this view."
msgstr ""

#: server/lib/pages/schedule.class.php:278
#, php-format
msgid "+ %d more"
msgstr ""

#: server/lib/pages/schedule.class.php:387
msgid "Events for Day"
msgstr ""

#: server/lib/pages/schedule.class.php:509
#: server/lib/pages/schedule.class.php:703
#: server/lib/pages/schedule.class.php:803
#: server/lib/pages/schedule.class.php:896
msgid "Error getting events for date."
msgstr ""

#: server/lib/pages/schedule.class.php:727
#: server/lib/pages/schedule.class.php:920
msgid "Edit Event"
msgstr ""

#: server/lib/pages/schedule.class.php:1026
msgid "No Display Groups"
msgstr ""

#: server/lib/pages/schedule.class.php:1157
msgid "Schedule an Event"
msgstr ""

#: server/lib/pages/schedule.class.php:1205
msgid "Error getting details for this event."
msgstr ""

#: server/lib/pages/schedule.class.php:1238
msgid "You do not have permission to edit this event."
msgstr ""

#: server/lib/pages/schedule.class.php:1320
msgid "Edit Scheduled Event"
msgstr ""

#: server/lib/pages/schedule.class.php:1361
#: server/lib/pages/schedule.class.php:1438
msgid "Times must be in the format 00:00"
msgstr ""

#: server/lib/pages/schedule.class.php:1371
#: server/lib/pages/schedule.class.php:1448
msgid "No layout selected"
msgstr ""

#: server/lib/pages/schedule.class.php:1377
#: server/lib/pages/schedule.class.php:1454
msgid "No displays selected"
msgstr ""

#: server/lib/pages/schedule.class.php:1383
#: server/lib/pages/schedule.class.php:1460
msgid "Can not have an end time earlier than your start time"
msgstr ""

#: server/lib/pages/schedule.class.php:1387
#: server/lib/pages/schedule.class.php:1464
msgid "Your start time is in the past. Cannot schedule events in the past"
msgstr ""

#: server/lib/pages/schedule.class.php:1398
msgid "The Event has been Added."
msgstr ""

#: server/lib/pages/schedule.class.php:1475
msgid "The Event has been Modified."
msgstr ""

#: server/lib/pages/schedule.class.php:1515
msgid "Delete Event."
msgstr ""

#: server/lib/pages/schedule.class.php:1593
msgid "The Event has been Deleted."
msgstr ""

#: server/lib/pages/user.class.php:615
msgid "Delete this User?"
msgstr ""

#: server/locale/dbtranslate.php:25
#: server/locale/dbtranslate.php:36
msgid "Schedule"
msgstr ""

#: server/locale/dbtranslate.php:26
msgid "Layout"
msgstr ""

#: server/locale/dbtranslate.php:28
msgid "Management"
msgstr ""

#: server/locale/dbtranslate.php:29
msgid "Displays"
msgstr ""

#: server/locale/dbtranslate.php:30
msgid "Groups"
msgstr ""

#: server/locale/dbtranslate.php:31
msgid "Users"
msgstr ""

#: server/locale/dbtranslate.php:32
msgid "Log"
msgstr ""

#: server/locale/dbtranslate.php:34
msgid "Sessions"
msgstr ""

#: server/locale/dbtranslate.php:39
msgid "Templates"
msgstr ""

#: server/locale/dbtranslate.php:41
msgid "Edit your Display"
msgstr ""

#: server/locale/dbtranslate.php:42
msgid "Report Fault"
msgstr ""

#: server/locale/dbtranslate.php:44
msgid "Display Groups"
msgstr ""

#: server/locale/dbtranslate.php:45
msgid "Content"
msgstr ""

#: server/locale/dbtranslate.php:46
msgid "Default"
msgstr ""

#: server/locale/dbtranslate.php:47
msgid "Error"
msgstr ""

#: server/locale/dbtranslate.php:48
msgid "General"
msgstr ""

#: server/locale/dbtranslate.php:49
msgid "Path"
msgstr ""

#: server/locale/dbtranslate.php:52
msgid "jpg_length"
msgstr ""

#: server/locale/dbtranslate.php:53
msgid "ppt_length"
msgstr ""

#: server/locale/dbtranslate.php:54
msgid "swf_length"
msgstr ""

#: server/locale/dbtranslate.php:55
msgid "defaultMedia"
msgstr ""

#: server/locale/dbtranslate.php:56
msgid "defaultPlaylist"
msgstr ""

#: server/locale/dbtranslate.php:57
msgid "defaultUsertype"
msgstr ""

#: server/locale/dbtranslate.php:58
msgid "defaultTimezone"
msgstr ""

#: server/locale/dbtranslate.php:59
msgid "debug"
msgstr ""

#: server/locale/dbtranslate.php:60
msgid "audit"
msgstr ""

#: server/locale/dbtranslate.php:61
msgid "SERVER_MODE"
msgstr ""

#: server/locale/dbtranslate.php:62
msgid "SERVER_KEY"
msgstr ""

#: server/locale/dbtranslate.php:63
msgid "PHONE_HOME"
msgstr ""

#: server/locale/dbtranslate.php:64
msgid "NUSOAP_PATH"
msgstr ""

#: server/locale/dbtranslate.php:65
msgid "LIBRARY_LOCATION"
msgstr ""

#: server/template/header.php:102
msgid "Click to show more time information"
msgstr ""

#: server/template/header.php:103
msgid "About"
msgstr ""

#: server/template/pages/content_view.php:23
msgid "Add Media"
msgstr ""

#: server/template/pages/content_view.php:24
msgid "Add media to the Library"
msgstr ""

#: server/template/pages/content_view.php:25
msgid "Filter"
msgstr ""

#: server/template/pages/content_view.php:26
msgid "Show Filter"
msgstr ""

#: server/template/pages/displaygroup_view.php:23
msgid "Add Group"
msgstr ""

#: server/template/pages/layout_view.php:23
msgid "Add Layout"
msgstr ""

#: server/template/pages/log_view.php:23
msgid "Refresh"
msgstr ""

#: server/template/pages/user_view.php:23
msgid "Add User"
msgstr ""