~dangarner/xibo/client-170alpha

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
msgid ""
msgstr ""
"Project-Id-Version: Xibo Digital Signage\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-07-15 16:44-0000\n"
"PO-Revision-Date: \n"
"Last-Translator: Dan Garner <dan@xibo.org.uk>\n"
"Language-Team:  <info@xibo.org.uk>\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Basepath: C:\\Users\\dan\\www\\release\\1.6.2\n"
"X-Poedit-KeywordsList: __;Translate\n"
"X-Generator: Poedit 1.5.5\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/modules\n"
"X-Poedit-SearchPath-4: server/lib/data\n"
"X-Poedit-SearchPath-5: server/lib/service\n"
"X-Poedit-SearchPath-6: server/theme/default/html\n"

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

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

#: server/install.php:70 server/upgrade.php:98
msgid "Lets get started!"
msgstr ""

#: server/install.php:73 server/install.php:102 server/install.php:110
#: server/install.php:329 server/install.php:345 server/install.php:384
#: server/install.php:413 server/install.php:516 server/upgrade.php:104
#: server/upgrade.php:199 server/upgrade.php:206 server/upgrade.php:278
#: server/lib/pages/schedule.class.php:1396
msgid "Next"
msgstr ""

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

#: server/install.php:90 server/install.php:98 server/upgrade.php:188
#: server/upgrade.php:196
msgid "Retest"
msgstr ""

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

#: server/install.php:122
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:123
msgid "Note that any existing database must be empty"
msgstr ""

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

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

#: server/install.php:139
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:140
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:145 server/install.php:166
msgid "Host:"
msgstr ""

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

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

#: server/install.php:148 server/install.php:167
msgid "Xibo Database Name:"
msgstr ""

#: server/install.php:149 server/install.php:168
msgid "Xibo Database Username:"
msgstr ""

#: server/install.php:150 server/install.php:169
msgid "Xibo Database Password:"
msgstr ""

#: server/install.php:153 server/install.php:172
msgid "Create"
msgstr ""

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

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

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

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

#: server/install.php:204 server/install.php:244 server/install.php:264
#: server/install.php:295 server/install.php:365 server/install.php:373
#: server/install.php:475 server/install.php:483 server/install.php:489
#: server/install.php:495 server/install.php:501 server/install.php:505
#: server/upgrade.php:63 server/upgrade.php:65 server/upgrade.php:126
#: server/upgrade.php:347
msgid "MySQL Error:"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

#: server/install.php:365 server/install.php:475
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:373
msgid "An error occured changing the xibo_admin password."
msgstr ""

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

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

#: server/install.php:396
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:399
msgid "Library Location:"
msgstr ""

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

#: server/install.php:402
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:404
msgid "Server Key:"
msgstr ""

#: server/install.php:406 server/locale/dbtranslate.php:45
msgid "Statistics"
msgstr ""

#: server/install.php:407
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:409
msgid "Anonymous Statistics:"
msgstr ""

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

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

#: server/install.php:448
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:456
msgid ""
"The Library Location you gave is not writable by the webserver. Please fix "
"the permissions and try again."
msgstr ""

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

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

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

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

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

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

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

#: server/install.php:524 server/install.php:527
msgid "Retry"
msgstr ""

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

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

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

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

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

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

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

#: server/maintenance.php:106
msgid "Maintenance Disabled"
msgstr ""

#: server/maintenance.php:107
msgid ""
"Maintenance tasks are disabled at the moment. Please enable them in the "
"&quot;Settings&quot; dialog."
msgstr ""

#: server/maintenance.php:135
#: server/theme/default/html/display_form_edit.php:70
msgid "Email Alerts"
msgstr ""

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

#: server/maintenance.php:200
#, php-format
msgid "Email Alert for Display %s"
msgstr ""

#: server/maintenance.php:201
#, php-format
msgid "Display %s with ID %d was last seen at %s."
msgstr ""

#: server/maintenance.php:232
msgid "Unable to update loggedin status for display."
msgstr ""

#: server/maintenance.php:245
msgid "Tidy Logs"
msgstr ""

#: server/maintenance.php:257 server/maintenance.php:279
msgid "Done."
msgstr ""

#: server/maintenance.php:262 server/maintenance.php:284
msgid "Disabled"
msgstr ""

#: server/maintenance.php:267
msgid "Tidy Stats"
msgstr ""

#: server/maintenance.php:290
msgid "Wake On LAN"
msgstr ""

#: server/maintenance.php:333
msgid "Maintenance key invalid."
msgstr ""

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

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

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

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

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

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

#: server/upgrade.php:131 server/upgrade.php:145 server/upgrade.php:157
#: server/upgrade.php:168
msgid "Password incorrect. Please try again."
msgstr ""

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

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

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

#: server/upgrade.php:269
msgid ""
"I agree I have a valid database backup and can restore it should the upgrade "
"process fail:"
msgstr ""

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

#: server/upgrade.php:320
msgid ""
"You MUST have a valid database backup to continue. Please take and verify a "
"backup and upgrade again."
msgstr ""

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

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

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

#: server/upgrade.php:373 server/theme/default/html/login_page.php:84
msgid "Login"
msgstr ""

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

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

#: server/config/config.class.php:112
msgid "No Version information - please contact technical support"
msgstr ""

#: server/config/config.class.php:130
msgid "PHP Version"
msgstr ""

#: server/config/config.class.php:141
msgid "PHP version 5.3.3 or later required."
msgstr ""

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

#: server/config/config.class.php:156
msgid "Write access required for the following:"
msgstr ""

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

#: server/config/config.class.php:168
msgid "MySQL database (PHP MySql)"
msgstr ""

#: server/config/config.class.php:187
msgid "MySQL database (PDO MySql)"
msgstr ""

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

#: server/config/config.class.php:217
msgid "PHP JSON extension required to function."
msgstr ""

#: server/config/config.class.php:221
msgid "SOAP Extension"
msgstr ""

#: server/config/config.class.php:232
msgid "PHP SOAP extension required to function."
msgstr ""

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

#: server/config/config.class.php:247
msgid "PHP GD extension to function."
msgstr ""

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

#: server/config/config.class.php:262
msgid "PHP session support to function."
msgstr ""

#: server/config/config.class.php:266
msgid "FileInfo"
msgstr ""

#: server/config/config.class.php:277
msgid ""
"Requires PHP FileInfo support to function. If you are on Windows you need to "
"enable the php_fileinfo.dll in your php.ini file."
msgstr ""

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

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

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

#: server/config/config.class.php:310
msgid "PHP Gettext support to function."
msgstr ""

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

#: server/config/config.class.php:325
msgid "PHP Calendar extension to function."
msgstr ""

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

#: server/config/config.class.php:340
msgid "PHP DOM core functionality enabled."
msgstr ""

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

#: server/config/config.class.php:355
msgid "PHP DOM XML extension to function."
msgstr ""

#: server/config/config.class.php:359
msgid "Mcrypt Extension"
msgstr ""

#: server/config/config.class.php:370
msgid "PHP Mcrypt extension to function."
msgstr ""

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

#: server/config/config.class.php:385
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:386
msgid ""
"If you do not intend to enable anonymous statistics gathering you need not "
"worry about this problem."
msgstr ""

#: server/config/config.class.php:414
msgid ""
"You probably want to allow larger files to be uploaded than is currently "
"available with your PHP configuration."
msgstr ""

#: server/config/config.class.php:415
msgid ""
"We suggest setting your PHP post_max_size and upload_max_size to at least "
"128M, and also increasing your max_execution_time to at least 120 seconds."
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
#: server/lib/modules/module.class.php:498
#: server/lib/modules/module.class.php:1433
#: server/lib/pages/campaign.class.php:144
#: server/lib/pages/campaign.class.php:214
#: server/lib/pages/campaign.class.php:283
#: server/lib/pages/campaign.class.php:388
#: server/lib/pages/campaign.class.php:576
#: server/lib/pages/content.class.php:208
#: server/lib/pages/content.class.php:258
#: server/lib/pages/dataset.class.php:157
#: server/lib/pages/dataset.class.php:220
#: server/lib/pages/dataset.class.php:276
#: server/lib/pages/dataset.class.php:367
#: server/lib/pages/dataset.class.php:398
#: server/lib/pages/dataset.class.php:478
#: server/lib/pages/dataset.class.php:543
#: server/lib/pages/dataset.class.php:894
#: server/lib/pages/dataset.class.php:1050
#: server/lib/pages/display.class.php:278
#: server/lib/pages/display.class.php:505
#: server/lib/pages/display.class.php:569
#: server/lib/pages/display.class.php:659
#: server/lib/pages/display.class.php:758
#: server/lib/pages/displaygroup.class.php:156
#: server/lib/pages/displaygroup.class.php:204
#: server/lib/pages/displaygroup.class.php:232
#: server/lib/pages/displaygroup.class.php:309
#: server/lib/pages/displaygroup.class.php:549
#: server/lib/pages/displaygroup.class.php:710
#: server/lib/pages/group.class.php:224 server/lib/pages/group.class.php:248
#: server/lib/pages/group.class.php:342 server/lib/pages/group.class.php:501
#: server/lib/pages/group.class.php:698 server/lib/pages/help.class.php:107
#: server/lib/pages/layout.class.php:270 server/lib/pages/layout.class.php:515
#: server/lib/pages/layout.class.php:601 server/lib/pages/layout.class.php:803
#: server/lib/pages/log.class.php:226 server/lib/pages/module.class.php:201
#: server/lib/pages/oauth.class.php:130 server/lib/pages/oauth.class.php:208
#: server/lib/pages/oauth.class.php:286
#: server/lib/pages/resolution.class.php:124
#: server/lib/pages/resolution.class.php:165
#: server/lib/pages/resolution.class.php:190
#: server/lib/pages/schedule.class.php:435
#: server/lib/pages/schedule.class.php:1394
#: server/lib/pages/schedule.class.php:1508
#: server/lib/pages/schedule.class.php:1715
#: server/lib/pages/schedule.class.php:1813
#: server/lib/pages/schedule.class.php:1900
#: server/lib/pages/sessions.class.php:154
#: server/lib/pages/template.class.php:154
#: server/lib/pages/template.class.php:256
#: server/lib/pages/template.class.php:367
#: server/lib/pages/timeline.class.php:347
#: server/lib/pages/timeline.class.php:547
#: server/lib/pages/timeline.class.php:826
#: server/lib/pages/transition.class.php:163
#: server/lib/pages/user.class.php:546 server/lib/pages/user.class.php:572
#: server/lib/pages/user.class.php:600 server/lib/pages/user.class.php:664
#: server/lib/pages/user.class.php:691 server/lib/pages/user.class.php:742
#: server/modules/microblog.module.php:58
#: server/modules/microblog.module.php:139
#: server/theme/default/html/header.php:72
#: server/theme/default/html/settings_page.php:36
msgid "Help"
msgstr ""

#: server/lib/app/kit.class.php:241
#, php-format
msgid "No integer match found for [%s] and return value is not an integer"
msgstr ""

#: server/lib/app/kit.class.php:255
#, php-format
msgid "No integer match found for %s, and return value is not an integer"
msgstr ""

#: server/lib/app/kit.class.php:290
#, php-format
msgid "No integer found for %s, and return value is not an integer"
msgstr ""

#: server/lib/app/kit.class.php:360
#, php-format
msgid "Unknown Type %s"
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:97
msgid "You do not have permission to access this page."
msgstr ""

#: server/lib/app/pagemanager.class.php:103
msgid "The requested page does not exist"
msgstr ""

#: server/lib/app/responsemanager.class.php:93
#: server/lib/service/serviceresponse.class.php:39
msgid "Unable to open connection and start transaction"
msgstr ""

#: server/lib/app/thememanager.class.php:51
#, php-format
msgid "The theme \"%s\" does not exist"
msgstr ""

#: server/lib/app/thememanager.class.php:58
#, php-format
msgid "The theme \"%s\" config file does not exist"
msgstr ""

#: server/lib/app/thememanager.class.php:71
msgid "Theme not initialised"
msgstr ""

#: server/lib/app/thememanager.class.php:93
#, php-format
msgid "The requested theme item does not exist. [%s, %s]"
msgstr ""

#: server/lib/data/campaign.data.class.php:35
#: server/lib/data/campaign.data.class.php:65
msgid "Campaign name cannot be empty"
msgstr ""

#: server/lib/data/campaign.data.class.php:51
msgid "Unable to add Campaign, Step 1"
msgstr ""

#: server/lib/data/campaign.data.class.php:80
msgid "Unable to edit Campaign, Step 1"
msgstr ""

#: server/lib/data/campaign.data.class.php:97
msgid "Unable to Unlink"
msgstr ""

#: server/lib/data/campaign.data.class.php:104
#: server/lib/modules/module.class.php:1472
#: server/lib/modules/module.class.php:1478
#: server/lib/modules/module.class.php:1508
#: server/lib/modules/module.class.php:1513
#: server/lib/modules/module.class.php:1545
#: server/lib/modules/module.class.php:1550
#: server/lib/pages/campaign.class.php:416
#: server/lib/pages/campaign.class.php:443
#: server/lib/pages/campaign.class.php:472
#: server/lib/pages/dataset.class.php:922
#: server/lib/pages/dataset.class.php:949
#: server/lib/pages/dataset.class.php:978
#: server/lib/pages/displaygroup.class.php:342
#: server/lib/pages/displaygroup.class.php:579
#: server/lib/pages/displaygroup.class.php:606
#: server/lib/pages/displaygroup.class.php:635
#: server/lib/pages/template.class.php:400
#: server/lib/pages/template.class.php:427
#: server/lib/pages/template.class.php:456
#: server/lib/pages/timeline.class.php:575
#: server/lib/pages/timeline.class.php:602
#: server/lib/pages/timeline.class.php:631
msgid "Unable to set permissions"
msgstr ""

#: server/lib/data/campaign.data.class.php:119
msgid "Unable to delete Campaign"
msgstr ""

#: server/lib/data/campaign.data.class.php:147
msgid "Unable to link Campaign to Layout"
msgstr ""

#: server/lib/data/campaign.data.class.php:173
msgid "Unable to unlink Campaign from Layout"
msgstr ""

#: server/lib/data/campaign.data.class.php:196
msgid "Unable to unlink all Layouts"
msgstr ""

#: server/lib/data/campaign.data.class.php:230
#: server/lib/data/campaignsecurity.data.class.php:96
#: server/modules/module_user_general.php:928
msgid "Layout has no associated Campaign, corrupted Layout"
msgstr ""

#: server/lib/data/campaignsecurity.data.class.php:65
msgid "Could not Link Campaign to Group"
msgstr ""

#: server/lib/data/campaignsecurity.data.class.php:125
#: server/lib/data/campaignsecurity.data.class.php:153
msgid "Could not Unlink Campaign from Group"
msgstr ""

#: server/lib/data/campaignsecurity.data.class.php:196
msgid "Could not Copy All Campaign Security"
msgstr ""

#: server/lib/data/dataset.data.class.php:39
#: server/lib/data/dataset.data.class.php:93
msgid "Name must be between 1 and 50 characters"
msgstr ""

#: server/lib/data/dataset.data.class.php:42
#: server/lib/data/dataset.data.class.php:99
#: server/lib/data/displaygroup.data.class.php:52
#: server/lib/data/displaygroup.data.class.php:111
#: server/lib/data/layout.data.class.php:58
#: server/lib/data/layout.data.class.php:161
msgid "Description can not be longer than 254 characters"
msgstr ""

#: server/lib/data/dataset.data.class.php:52
#: server/lib/data/dataset.data.class.php:111
#, php-format
msgid "There is already dataset called '%s'. Please choose another name."
msgstr ""

#: server/lib/data/dataset.data.class.php:75
msgid "Could not add DataSet"
msgstr ""

#: server/lib/data/dataset.data.class.php:127
#: server/lib/data/dataset.data.class.php:173
#, php-format
msgid "Cannot edit dataset %s"
msgstr ""

#: server/lib/data/dataset.data.class.php:147
msgid "There is data assigned to this data set, cannot delete."
msgstr ""

#: server/lib/data/dataset.data.class.php:158
msgid "Cannot delete dataset, columns could not be deleted."
msgstr ""

#: server/lib/data/dataset.data.class.php:196
#: server/lib/data/dataset.data.class.php:219
#: server/lib/data/dataset.data.class.php:243
#: server/lib/data/dataset.data.class.php:270
#: server/lib/data/dataset.data.class.php:296
#: server/lib/data/dataset.data.class.php:469
#: server/lib/data/dataset.data.class.php:489
#: server/lib/data/datasetcolumn.data.class.php:256
#: server/lib/data/datasetdata.data.class.php:80
#: server/lib/data/datasetdata.data.class.php:233
#: server/lib/data/datasetdata.data.class.php:280
#: server/lib/data/datasetgroupsecurity.data.class.php:66
#: server/lib/data/display.data.class.php:556
#: server/lib/data/displaygroup.data.class.php:452
#: server/lib/data/displaygroup.data.class.php:493
#: server/lib/data/file.data.class.php:87
#: server/lib/data/file.data.class.php:128
#: server/lib/data/file.data.class.php:186
#: server/lib/data/layout.data.class.php:278
#: server/lib/data/layout.data.class.php:370
#: server/lib/data/layout.data.class.php:790
#: server/lib/data/layout.data.class.php:995
#: server/lib/data/layout.data.class.php:1026
#: server/lib/data/layoutmediagroupsecurity.data.class.php:98
#: server/lib/data/layoutregiongroupsecurity.data.class.php:100
#: server/lib/data/lkmediadisplaygroup.data.class.php:52
#: server/lib/data/lkmediadisplaygroup.data.class.php:80
#: server/lib/data/lkmediadisplaygroup.data.class.php:108
#: server/lib/data/media.data.class.php:419
#: server/lib/data/media.data.class.php:563
#: server/lib/data/mediagroupsecurity.data.class.php:98
#: server/lib/data/region.data.class.php:648
#: server/lib/data/region.data.class.php:691
#: server/lib/data/region.data.class.php:1033
#: server/lib/data/schedule.data.class.php:413
#: server/lib/data/schedule.data.class.php:601
#: server/lib/data/usergroup.data.class.php:337
#: server/lib/modules/module.class.php:1063
#: server/lib/modules/module.class.php:1279
#: server/lib/pages/error.class.php:49
msgid "Unknown Error"
msgstr ""

#: server/lib/data/datasetcolumn.data.class.php:30
#: server/lib/data/datasetcolumn.data.class.php:186
#: server/lib/data/datasetcolumn.data.class.php:209
#: server/lib/data/datasetdata.data.class.php:41
#: server/lib/data/datasetdata.data.class.php:184
#: server/lib/data/datasetdata.data.class.php:246
#: server/lib/data/datasetdata.data.class.php:289
#: server/lib/data/datasetgroupsecurity.data.class.php:28
#: server/lib/data/datasetgroupsecurity.data.class.php:81
#: server/lib/data/datasetgroupsecurity.data.class.php:125
#: server/lib/data/datasetgroupsecurity.data.class.php:155
#: server/lib/data/datasetgroupsecurity.data.class.php:190
msgid "Missing dataSetId"
msgstr ""

#: server/lib/data/datasetcolumn.data.class.php:33
#: server/lib/data/datasetcolumn.data.class.php:96
msgid "Missing dataTypeId"
msgstr ""

#: server/lib/data/datasetcolumn.data.class.php:36
#: server/lib/data/datasetcolumn.data.class.php:99
msgid "Missing dataSetColumnTypeId"
msgstr ""

#: server/lib/data/datasetcolumn.data.class.php:39
#: server/lib/data/datasetcolumn.data.class.php:102
msgid "Please provide a column heading."
msgstr ""

#: server/lib/data/datasetcolumn.data.class.php:58
msgid "Could not determine the Column Order"
msgstr ""

#: server/lib/data/datasetcolumn.data.class.php:86
msgid "Could not add DataSet Column"
msgstr ""

#: server/lib/data/datasetcolumn.data.class.php:93
#: server/lib/data/datasetcolumn.data.class.php:162
#: server/lib/data/datasetdata.data.class.php:89
#: server/lib/data/datasetdata.data.class.php:125
msgid "Missing dataSetColumnId"
msgstr ""

#: server/lib/data/datasetcolumn.data.class.php:132
msgid ""
"New list content value is invalid as it doesnt include values for existing "
"data"
msgstr ""

#: server/lib/data/datasetcolumn.data.class.php:155
msgid "Could not edit DataSet Column"
msgstr ""

#: server/lib/data/datasetcolumn.data.class.php:178
#: server/lib/data/datasetcolumn.data.class.php:202
msgid "Could not delete DataSet Column"
msgstr ""

#: server/lib/data/datasetcolumn.data.class.php:231
msgid "No columns"
msgstr ""

#: server/lib/data/datasetdata.data.class.php:58
msgid "No data"
msgstr ""

#: server/lib/data/datasetdata.data.class.php:92
#: server/lib/data/datasetdata.data.class.php:128
msgid "Missing rowNumber"
msgstr ""

#: server/lib/data/datasetdata.data.class.php:118
msgid "Could not add DataSet Data"
msgstr ""

#: server/lib/data/datasetdata.data.class.php:151
msgid "Could not edit DataSet Data"
msgstr ""

#: server/lib/data/datasetdata.data.class.php:177
msgid "Could not delete Data for Column/Row"
msgstr ""

#: server/lib/data/datasetdata.data.class.php:205
msgid "Could not delete Data for entire DataSet"
msgstr ""

#: server/lib/data/datasetdata.data.class.php:292
msgid "CSV File does not exist"
msgstr ""

#: server/lib/data/datasetdata.data.class.php:295
msgid "Missing spreadSheetMapping"
msgstr ""

#: server/lib/data/datasetdata.data.class.php:320
msgid "Could not determine the Max row number"
msgstr ""

#: server/lib/data/datasetdata.data.class.php:374
msgid "Unable to Import"
msgstr ""

#: server/lib/data/datasetgroupsecurity.data.class.php:84
#: server/lib/data/datasetgroupsecurity.data.class.php:158
msgid "Missing groupId"
msgstr ""

#: server/lib/data/datasetgroupsecurity.data.class.php:108
#: server/lib/data/datasetgroupsecurity.data.class.php:142
msgid "Could not Link DataSet to Group"
msgstr ""

#: server/lib/data/datasetgroupsecurity.data.class.php:175
#: server/lib/data/datasetgroupsecurity.data.class.php:206
msgid "Could not Unlink DataSet from Group"
msgstr ""

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

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

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

#: server/lib/data/display.data.class.php:122
msgid "Cannot find display record"
msgstr ""

#: server/lib/data/display.data.class.php:132
msgid "Unable to get count of licensed displays."
msgstr ""

#: server/lib/data/display.data.class.php:139
#, php-format
msgid "You have exceeded your maximum number of licensed displays. %d"
msgstr ""

#: server/lib/data/display.data.class.php:151
msgid "BroadCast Address is not a valid IP Address"
msgstr ""

#: server/lib/data/display.data.class.php:158
msgid "CIDR subnet mask is not a number within the range of 0 to 32."
msgstr ""

#: server/lib/data/display.data.class.php:168
msgid ""
"Pattern of secureOn-password is not \"xx-xx-xx-xx-xx-xx\" (x = digit or "
"CAPITAL letter)"
msgstr ""

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

#: server/lib/data/display.data.class.php:227
msgid "Could not update display"
msgstr ""

#: server/lib/data/display.data.class.php:275
msgid "Unable to delete display record."
msgstr ""

#: server/lib/data/display.data.class.php:317
msgid "Unable to edit display record."
msgstr ""

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

#: server/lib/data/display.data.class.php:528
msgid "Error updating this displays default layout."
msgstr ""

#: server/lib/data/display.data.class.php:582
msgid "Unable to get the Mac or Client Address"
msgstr ""

#: server/lib/data/display.data.class.php:586
#: server/lib/pages/display.class.php:844
msgid ""
"This display has no mac address recorded against it yet. Make sure the "
"display is running."
msgstr ""

#: server/lib/data/display.data.class.php:606
msgid "Unknown Error."
msgstr ""

#: server/lib/data/display.data.class.php:637
msgid ""
"Pattern of MAC-address is not \"xx-xx-xx-xx-xx-xx\" (x = digit or letter)"
msgstr ""

#: server/lib/data/display.data.class.php:663
msgid ""
"Pattern of SecureOn-password is not \"xx-xx-xx-xx-xx-xx\" (x = digit or "
"CAPITAL letter)"
msgstr ""

#: server/lib/data/display.data.class.php:680
msgid "No IP Address Specified"
msgstr ""

#: server/lib/data/display.data.class.php:689
msgid "IP Address Incorrectly Formed"
msgstr ""

#: server/lib/data/display.data.class.php:698
msgid "CIDR subnet mask is not a number within the range of 0 till 32."
msgstr ""

#: server/lib/data/display.data.class.php:756
msgid "Port is not a number within the range of 0 till 65536. Port Provided: "
msgstr ""

#: server/lib/data/display.data.class.php:760
msgid ""
"No magic packet can been sent, since UDP is unsupported (not a registered "
"socket transport)"
msgstr ""

#: server/lib/data/display.data.class.php:790
msgid "Using \"fwrite()\" failed, due to error: "
msgstr ""

#: server/lib/data/display.data.class.php:797
msgid "Using fsockopen() failed, due to denied permission"
msgstr ""

#: server/lib/data/display.data.class.php:820
msgid "Using \"socket_set_option()\" failed, due to error: "
msgstr ""

#: server/lib/data/display.data.class.php:848
#: server/lib/data/display.data.class.php:853
msgid "Using \"socket_sendto()\" failed, due to error: "
msgstr ""

#: server/lib/data/display.data.class.php:858
msgid "Wake On Lan Failed as there are no functions available to transmit it"
msgstr ""

#: server/lib/data/displaygroup.data.class.php:49
#: server/lib/data/displaygroup.data.class.php:108
msgid "Please enter a display group name"
msgstr ""

#: server/lib/data/displaygroup.data.class.php:60
#: server/lib/data/displaygroup.data.class.php:120
#, php-format
msgid ""
"You already own a display group called \"%s\". Please choose another name."
msgstr ""

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

#: server/lib/data/displaygroup.data.class.php:105
msgid "No Display Group Selected"
msgstr ""

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

#: server/lib/data/displaygroup.data.class.php:213
#: server/lib/data/displaygroup.data.class.php:220
#: server/lib/data/displaygroup.data.class.php:349
msgid "Unable to get the DisplayGroup for this Display"
msgstr ""

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

#: server/lib/data/displaygroup.data.class.php:231
#: server/lib/data/media.data.class.php:362
msgid "Unable to drop file assignments during display delete."
msgstr ""

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

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

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

#: server/lib/data/displaygroup.data.class.php:420
#: server/lib/data/region.data.class.php:977
msgid "No media to assign"
msgstr ""

#: server/lib/data/displaygroup.data.class.php:424
msgid "Unable to make this assignment during preparation."
msgstr ""

#: server/lib/data/displaygroup.data.class.php:435
#: server/lib/pages/displaygroup.class.php:869
msgid ""
"You have selected media that you no longer have permission to use. Please "
"reload the form."
msgstr ""

#: server/lib/data/displaygroup.data.class.php:439
msgid "Unable to make this assignment"
msgstr ""

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

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

#: server/lib/data/displaygroupsecurity.data.class.php:130
msgid "Could not Unlink All Display Groups from User Group"
msgstr ""

#: server/lib/data/file.data.class.php:141
msgid "Missing fileId"
msgstr ""

#: server/lib/data/help.data.class.php:37
#: server/lib/data/help.data.class.php:82
msgid "Topic is a required field. It must be between 1 and 254 characters."
msgstr ""

#: server/lib/data/help.data.class.php:40
#: server/lib/data/help.data.class.php:85
msgid "Category is a required field. It must be between 1 and 254 characters."
msgstr ""

#: server/lib/data/help.data.class.php:43
#: server/lib/data/help.data.class.php:88
msgid "Link is a required field. It must be between 1 and 254 characters."
msgstr ""

#: server/lib/data/help.data.class.php:59
msgid "Unable to Add Help record"
msgstr ""

#: server/lib/data/help.data.class.php:79
#: server/lib/data/help.data.class.php:123
msgid "Help Link not selected"
msgstr ""

#: server/lib/data/help.data.class.php:106
msgid "Unable to Edit Help record"
msgstr ""

#: server/lib/data/help.data.class.php:137
msgid "Unable to Delete Help record"
msgstr ""

#: server/lib/data/layout.data.class.php:55
#: server/lib/data/layout.data.class.php:158
msgid "Layout Name must be between 1 and 50 characters"
msgstr ""

#: server/lib/data/layout.data.class.php:61
#: server/lib/data/layout.data.class.php:164
msgid "Tags can not be longer than 254 characters"
msgstr ""

#: server/lib/data/layout.data.class.php:71
#: server/lib/data/layout.data.class.php:175
#, php-format
msgid "You already own a layout called '%s'. Please choose another name."
msgstr ""

#: server/lib/data/layout.data.class.php:108
msgid "Unable to edit tags"
msgstr ""

#: server/lib/data/layout.data.class.php:134
msgid "Could not add Layout"
msgstr ""

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

#: server/lib/data/layout.data.class.php:257
msgid "Unknown template"
msgstr ""

#: server/lib/data/layout.data.class.php:303
msgid "Unable to set XML"
msgstr ""

#: server/lib/data/layout.data.class.php:544
msgid "Unable to copy layout"
msgstr ""

#: server/lib/data/layout.data.class.php:603
msgid "Unable to find stored value of newly copied media"
msgstr ""

#: server/lib/data/layout.data.class.php:649
msgid "Unable to Copy this Layout"
msgstr ""

#: server/lib/data/layout.data.class.php:666
#: server/lib/data/layout.data.class.php:696
msgid "No Layout selected"
msgstr ""

#: server/lib/data/layout.data.class.php:678
msgid "Unable to retire this layout."
msgstr ""

#: server/lib/data/layout.data.class.php:713
msgid "Unable to delete campaign"
msgstr ""

#: server/lib/data/layout.data.class.php:726
msgid "Unable to delete layout"
msgstr ""

#: server/lib/data/layout.data.class.php:758
#: server/lib/data/region.data.class.php:286
msgid "Database error adding this link record."
msgstr ""

#: server/lib/data/layout.data.class.php:779
msgid "Unknown Module"
msgstr ""

#: server/lib/data/layout.data.class.php:810
msgid "Layout not selected"
msgstr ""

#: server/lib/data/layout.data.class.php:813
msgid "Resolution not selected"
msgstr ""

#: server/lib/data/layout.data.class.php:830
msgid "Cannot find the background image selected"
msgstr ""

#: server/lib/data/layout.data.class.php:843
#: server/lib/pages/layout.class.php:590
msgid "Unable to get the Resolution information"
msgstr ""

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

#: server/lib/data/layoutmediagroupsecurity.data.class.php:61
msgid "Could not Link Layout Media to Group"
msgstr ""

#: server/lib/data/layoutmediagroupsecurity.data.class.php:134
#: server/lib/data/layoutmediagroupsecurity.data.class.php:169
msgid "Could not Unlink Layout Media from Group"
msgstr ""

#: server/lib/data/layoutmediagroupsecurity.data.class.php:221
#: server/lib/data/mediagroupsecurity.data.class.php:211
msgid "Could not Copy Layout Media Security"
msgstr ""

#: server/lib/data/layoutmediagroupsecurity.data.class.php:269
#: server/lib/data/layoutmediagroupsecurity.data.class.php:321
msgid "Could not Copy All Layout Media Security"
msgstr ""

#: server/lib/data/layoutregiongroupsecurity.data.class.php:61
msgid "Could not Link Layout Region to Group"
msgstr ""

#: server/lib/data/layoutregiongroupsecurity.data.class.php:135
msgid "Could not Unlink Layout Region from Group"
msgstr ""

#: server/lib/data/layoutregiongroupsecurity.data.class.php:169
msgid "Could not Unlink Layout Region from Groups"
msgstr ""

#: server/lib/data/layoutregiongroupsecurity.data.class.php:216
msgid "Could not Copy All Layout Region Security"
msgstr ""

#: server/lib/data/media.data.class.php:61
#: server/lib/data/media.data.class.php:251
#: server/lib/modules/module.class.php:802
#, php-format
msgid "Your library is full. Library Limit: %s K"
msgstr ""

#: server/lib/data/media.data.class.php:73
msgid "Invalid file extension"
msgstr ""

#: server/lib/data/media.data.class.php:77
#: server/lib/data/media.data.class.php:187
msgid "The name cannot be longer than 100 characters"
msgstr ""

#: server/lib/data/media.data.class.php:81
#: server/lib/data/media.data.class.php:190
#: server/modules/datasetview.module.php:231
#: server/modules/datasetview.module.php:293
msgid "You must enter a duration."
msgstr ""

#: server/lib/data/media.data.class.php:99
#: server/lib/data/media.data.class.php:201
msgid "Media you own already has this name. Please choose another."
msgstr ""

#: server/lib/data/media.data.class.php:154
msgid "Error adding media."
msgstr ""

#: server/lib/data/media.data.class.php:180
msgid "Unable to find media type"
msgstr ""

#: server/lib/data/media.data.class.php:316
msgid "Error retiring media."
msgstr ""

#: server/lib/data/media.data.class.php:338
msgid "This media is in use, please retire it instead."
msgstr ""

#: server/lib/data/media.data.class.php:347
msgid "Cannot locate the files for this media. Unable to delete."
msgstr ""

#: server/lib/data/media.data.class.php:397
msgid "Error deleting media."
msgstr ""

#: server/lib/data/media.data.class.php:485
msgid "No module type given"
msgstr ""

#: server/lib/data/media.data.class.php:493
msgid "No Module of this type found"
msgstr ""

#: server/lib/data/media.data.class.php:506
msgid "Database error checking module"
msgstr ""

#: server/lib/data/media.data.class.php:587
msgid "Error getting media extension before copy."
msgstr ""

#: server/lib/data/media.data.class.php:639
msgid "Error copying media."
msgstr ""

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

#: server/lib/data/mediagroupsecurity.data.class.php:132
msgid "Could not Unlink Media from Group"
msgstr ""

#: server/lib/data/mediagroupsecurity.data.class.php:165
msgid "Could not Unlink Media from Groups"
msgstr ""

#: server/lib/data/region.data.class.php:102
msgid "Size and coordinates must be generic"
msgstr ""

#: server/lib/data/region.data.class.php:105
#: server/lib/data/region.data.class.php:583
msgid "Width must be greater than 0"
msgstr ""

#: server/lib/data/region.data.class.php:108
#: server/lib/data/region.data.class.php:586
msgid "Height must be greater than 0"
msgstr ""

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

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

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

#: server/lib/data/region.data.class.php:580
msgid "Size and coordinates must be numeric"
msgstr ""

#: server/lib/data/region.data.class.php:990
msgid ""
"You have selected media that you no longer have permission to use. Please "
"reload Library form."
msgstr ""

#: server/lib/data/region.data.class.php:999
#: server/lib/service/rest.class.php:1037
msgid "Error getting type from a media item."
msgstr ""

#: server/lib/data/resolution.data.class.php:38
#: server/lib/data/resolution.data.class.php:82
msgid "All fields must be filled in"
msgstr ""

#: server/lib/data/resolution.data.class.php:62
msgid "Cannot add this resolution."
msgstr ""

#: server/lib/data/resolution.data.class.php:107
msgid "Cannot edit this resolution."
msgstr ""

#: server/lib/data/resolution.data.class.php:135
msgid "Cannot delete this resolution."
msgstr ""

#: server/lib/data/schedule.data.class.php:48
msgid "No display groups selected"
msgstr ""

#: server/lib/data/schedule.data.class.php:51
msgid "No User Id Present"
msgstr ""

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

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

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

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

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

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

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

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

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

#: server/lib/data/template.data.class.php:57
#, php-format
msgid "You already own a template called \"%s\". Please choose another name."
msgstr ""

#: server/lib/data/template.data.class.php:62
msgid "Cannot get the Layout Structure."
msgstr ""

#: server/lib/data/template.data.class.php:122
msgid "Unable to delete template"
msgstr ""

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

#: server/lib/data/templategroupsecurity.data.class.php:93
msgid "Could not Unlink Template from Group"
msgstr ""

#: server/lib/data/templategroupsecurity.data.class.php:126
msgid "Could not Unlink Template from Groups"
msgstr ""

#: server/lib/data/userdata.data.class.php:21
msgid ""
"Sorry, you are not allowed to directly access this page.<br /> Please press "
"the back button in your browser."
msgstr ""

#: server/lib/data/userdata.data.class.php:52
msgid "User not selected"
msgstr ""

#: server/lib/data/userdata.data.class.php:65
#: server/lib/data/userdata.data.class.php:71
msgid "Incorrect Password Provided"
msgstr ""

#: server/lib/data/userdata.data.class.php:76
msgid "New Passwords do not match"
msgstr ""

#: server/lib/data/userdata.data.class.php:98
msgid "Could not edit Password"
msgstr ""

#: server/lib/data/userdata.data.class.php:116
msgid "Your password does not meet the required complexity"
msgstr ""

#: server/lib/data/usergroup.data.class.php:41
msgid "Group Name cannot be empty."
msgstr ""

#: server/lib/data/usergroup.data.class.php:60
msgid "Could not add User Group"
msgstr ""

#: server/lib/data/usergroup.data.class.php:81
msgid "User Group not selected"
msgstr ""

#: server/lib/data/usergroup.data.class.php:84
msgid "User Group Name cannot be empty."
msgstr ""

#: server/lib/data/usergroup.data.class.php:101
msgid "Could not edit User Group"
msgstr ""

#: server/lib/data/usergroup.data.class.php:140
msgid "Unable to delete User Group."
msgstr ""

#: server/lib/data/usergroup.data.class.php:174
msgid "Could not Link User Group to User"
msgstr ""

#: server/lib/data/usergroup.data.class.php:208
msgid "Could not Unlink User from User Group"
msgstr ""

#: server/lib/data/usergroup.data.class.php:239
msgid "Could not Unlink all Users from User Group"
msgstr ""

#: server/lib/data/usergroup.data.class.php:270
msgid "Could not Unlink Groups from User"
msgstr ""

#: server/lib/data/usergroup.data.class.php:304
msgid "Unable to get the UserGroup for this User."
msgstr ""

#: server/lib/data/usergroup.data.class.php:316
msgid "Could not add a user group for this user."
msgstr ""

#: server/lib/data/usergroup.data.class.php:320
msgid "Could not link the new user with its group."
msgstr ""

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

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

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

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

#: server/lib/modules/module.class.php:248
#: server/lib/modules/module.class.php:260
msgid "Unable to find media record with the provided ID"
msgstr ""

#: server/lib/modules/module.class.php:415
msgid "There is an error in the HTML/XML"
msgstr ""

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

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

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

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

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

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

#: server/lib/modules/module.class.php:519
#: server/lib/modules/module.class.php:533
#: server/lib/modules/module.class.php:634
#: server/lib/pages/campaign.class.php:285
#: server/lib/pages/display.class.php:507
#: server/lib/pages/display.class.php:645
#: server/lib/pages/displaygroup.class.php:234
#: server/lib/pages/group.class.php:344 server/lib/pages/help.class.php:256
#: server/lib/pages/layout.class.php:272 server/lib/pages/log.class.php:228
#: server/lib/pages/resolution.class.php:192
#: server/lib/pages/schedule.class.php:1717
#: server/lib/pages/schedule.class.php:1902
#: server/lib/pages/sessions.class.php:156
#: server/lib/pages/template.class.php:258
#: server/lib/pages/timeline.class.php:334 server/lib/pages/user.class.php:574
msgid "Yes"
msgstr ""

#: server/lib/modules/module.class.php:520
#: server/lib/modules/module.class.php:532
#: server/lib/modules/module.class.php:630
#: server/lib/modules/module.class.php:632
#: server/lib/pages/campaign.class.php:284
#: server/lib/pages/display.class.php:506
#: server/lib/pages/display.class.php:645
#: server/lib/pages/displaygroup.class.php:233
#: server/lib/pages/group.class.php:343 server/lib/pages/help.class.php:255
#: server/lib/pages/layout.class.php:271 server/lib/pages/log.class.php:227
#: server/lib/pages/resolution.class.php:191
#: server/lib/pages/schedule.class.php:1716
#: server/lib/pages/schedule.class.php:1901
#: server/lib/pages/sessions.class.php:155
#: server/lib/pages/template.class.php:257
#: server/lib/pages/timeline.class.php:335 server/lib/pages/user.class.php:573
msgid "No"
msgstr ""

#: server/lib/modules/module.class.php:541
msgid "Unassign from this region only"
msgstr ""

#: server/lib/modules/module.class.php:556
#: server/lib/modules/module.class.php:940
msgid "Error querying for the Media information"
msgstr ""

#: server/lib/modules/module.class.php:561
msgid "Unassign from this region and retire"
msgstr ""

#: server/lib/modules/module.class.php:583
msgid "Cannot determine if this media has been used."
msgstr ""

#: server/lib/modules/module.class.php:590
msgid "Delete this media"
msgstr ""

#: server/lib/modules/module.class.php:594
msgid "Unassign from all Layouts"
msgstr ""

#: server/lib/modules/module.class.php:595
msgid "Retire this media"
msgstr ""

#: server/lib/modules/module.class.php:603
msgid "You do not have permission to alter/delete this media."
msgstr ""

#: server/lib/modules/module.class.php:613
msgid "Are you sure you want to delete this media?"
msgstr ""

#: server/lib/modules/module.class.php:614
msgid "Please select from the following options"
msgstr ""

#: server/lib/modules/module.class.php:615
msgid "Deleting media cannot be undone"
msgstr ""

#: server/lib/modules/module.class.php:638
msgid "Delete Media"
msgstr ""

#: server/lib/modules/module.class.php:711
msgid "Completed Successfully"
msgstr ""

#: server/lib/modules/module.class.php:767
msgid "Media unassigned from all Layouts"
msgstr ""

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

#: server/lib/modules/module.class.php:780
#: server/lib/modules/module.class.php:898
msgid "Add Item"
msgstr ""

#: server/lib/modules/module.class.php:847
msgid "Assign to Layout"
msgstr ""

#: server/lib/modules/module.class.php:848
msgid "View Library"
msgstr ""

#: server/lib/modules/module.class.php:849
#: server/lib/modules/module.class.php:853
#: server/lib/modules/module.class.php:857
#: server/lib/modules/module.class.php:864
#: server/lib/pages/admin.class.php:588 server/lib/pages/admin.class.php:611
#: server/lib/pages/content.class.php:209
#: server/lib/pages/dataset.class.php:368
#: server/lib/pages/display.class.php:660 server/lib/pages/group.class.php:249
#: server/lib/pages/group.class.php:502 server/lib/pages/index.class.php:244
#: server/lib/pages/oauth.class.php:131 server/lib/pages/oauth.class.php:287
#: server/lib/pages/schedule.class.php:437
#: server/lib/pages/timeline.class.php:827 server/lib/pages/user.class.php:665
#: server/lib/pages/user.class.php:692 server/lib/pages/user.class.php:743
msgid "Close"
msgstr ""

#: server/lib/modules/module.class.php:873
#, php-format
msgid "This form accepts: %s files up to a maximum size of %s"
msgstr ""

#: server/lib/modules/module.class.php:879
#, php-format
msgid "Add New %s"
msgstr ""

#: server/lib/modules/module.class.php:957
#: server/lib/modules/module.class.php:961
#: server/lib/modules/module.class.php:965
#: server/lib/modules/module.class.php:1436
#: server/lib/modules/module.class.php:1439
#: server/lib/modules/module.class.php:1686
#: server/lib/modules/module.class.php:1688
#: server/lib/pages/admin.class.php:672
#: server/lib/pages/campaign.class.php:145
#: server/lib/pages/campaign.class.php:215
#: server/lib/pages/campaign.class.php:389
#: server/lib/pages/campaign.class.php:577
#: server/lib/pages/content.class.php:259
#: server/lib/pages/dataset.class.php:158
#: server/lib/pages/dataset.class.php:221
#: server/lib/pages/dataset.class.php:277
#: server/lib/pages/dataset.class.php:399
#: server/lib/pages/dataset.class.php:479
#: server/lib/pages/dataset.class.php:544
#: server/lib/pages/dataset.class.php:895
#: server/lib/pages/dataset.class.php:1051
#: server/lib/pages/display.class.php:279
#: server/lib/pages/display.class.php:570
#: server/lib/pages/display.class.php:759
#: server/lib/pages/display.class.php:854
#: server/lib/pages/displaygroup.class.php:157
#: server/lib/pages/displaygroup.class.php:205
#: server/lib/pages/displaygroup.class.php:310
#: server/lib/pages/displaygroup.class.php:550
#: server/lib/pages/displaygroup.class.php:711
#: server/lib/pages/displaygroup.class.php:845
#: server/lib/pages/group.class.php:225 server/lib/pages/group.class.php:699
#: server/lib/pages/help.class.php:195 server/lib/pages/help.class.php:233
#: server/lib/pages/layout.class.php:516 server/lib/pages/layout.class.php:603
#: server/lib/pages/layout.class.php:804 server/lib/pages/module.class.php:202
#: server/lib/pages/oauth.class.php:209
#: server/lib/pages/resolution.class.php:125
#: server/lib/pages/resolution.class.php:166
#: server/lib/pages/schedule.class.php:1395
#: server/lib/pages/schedule.class.php:1510
#: server/lib/pages/schedule.class.php:1814
#: server/lib/pages/template.class.php:155
#: server/lib/pages/template.class.php:368
#: server/lib/pages/timeline.class.php:190
#: server/lib/pages/timeline.class.php:348
#: server/lib/pages/timeline.class.php:548
#: server/lib/pages/transition.class.php:164
#: server/lib/pages/user.class.php:547 server/lib/pages/user.class.php:601
#: server/modules/counter.module.php:60 server/modules/counter.module.php:64
#: server/modules/counter.module.php:126 server/modules/counter.module.php:130
#: server/modules/datasetview.module.php:65
#: server/modules/datasetview.module.php:69
#: server/modules/datasetview.module.php:185
#: server/modules/datasetview.module.php:189
#: server/modules/embedded.module.php:67 server/modules/embedded.module.php:71
#: server/modules/embedded.module.php:136
#: server/modules/embedded.module.php:140
#: server/modules/localvideo.module.php:71
#: server/modules/localvideo.module.php:75
#: server/modules/localvideo.module.php:136
#: server/modules/localvideo.module.php:140
#: server/modules/microblog.module.php:62
#: server/modules/microblog.module.php:66
#: server/modules/microblog.module.php:143
#: server/modules/microblog.module.php:147
#: server/modules/shellcommand.module.php:55
#: server/modules/shellcommand.module.php:59
#: server/modules/shellcommand.module.php:101
#: server/modules/shellcommand.module.php:105
#: server/modules/text.module.php:77 server/modules/text.module.php:81
#: server/modules/text.module.php:156 server/modules/text.module.php:160
#: server/modules/ticker.module.php:66 server/modules/ticker.module.php:70
#: server/modules/ticker.module.php:205 server/modules/ticker.module.php:209
#: server/modules/webpage.module.php:67 server/modules/webpage.module.php:71
#: server/modules/webpage.module.php:134 server/modules/webpage.module.php:138
#: server/theme/default/html/library_form_media_add.php:95
msgid "Cancel"
msgstr ""

#: server/lib/modules/module.class.php:968
#: server/lib/modules/module.class.php:1442
#: server/lib/modules/module.class.php:1691
#: server/lib/pages/admin.class.php:168
#: server/lib/pages/campaign.class.php:146
#: server/lib/pages/campaign.class.php:216
#: server/lib/pages/campaign.class.php:390
#: server/lib/pages/campaign.class.php:578
#: server/lib/pages/dataset.class.php:400
#: server/lib/pages/dataset.class.php:480
#: server/lib/pages/dataset.class.php:896
#: server/lib/pages/display.class.php:280
#: server/lib/pages/display.class.php:571
#: server/lib/pages/display.class.php:760
#: server/lib/pages/displaygroup.class.php:158
#: server/lib/pages/displaygroup.class.php:206
#: server/lib/pages/displaygroup.class.php:311
#: server/lib/pages/displaygroup.class.php:551
#: server/lib/pages/displaygroup.class.php:846
#: server/lib/pages/group.class.php:226 server/lib/pages/group.class.php:700
#: server/lib/pages/help.class.php:196 server/lib/pages/help.class.php:234
#: server/lib/pages/layout.class.php:517 server/lib/pages/layout.class.php:604
#: server/lib/pages/module.class.php:203
#: server/lib/pages/resolution.class.php:126
#: server/lib/pages/resolution.class.php:167
#: server/lib/pages/schedule.class.php:1397
#: server/lib/pages/schedule.class.php:1511
#: server/lib/pages/schedule.class.php:1815
#: server/lib/pages/template.class.php:156
#: server/lib/pages/template.class.php:369
#: server/lib/pages/timeline.class.php:191
#: server/lib/pages/timeline.class.php:549
#: server/lib/pages/transition.class.php:165
#: server/lib/pages/user.class.php:548 server/lib/pages/user.class.php:602
#: server/lib/pages/user.class.php:693 server/lib/pages/user.class.php:744
#: server/modules/counter.module.php:70 server/modules/counter.module.php:136
#: server/modules/datasetview.module.php:72
#: server/modules/datasetview.module.php:192
#: server/modules/embedded.module.php:79
#: server/modules/embedded.module.php:148
#: server/modules/localvideo.module.php:78
#: server/modules/localvideo.module.php:143
#: server/modules/microblog.module.php:69
#: server/modules/microblog.module.php:150
#: server/modules/shellcommand.module.php:61
#: server/modules/shellcommand.module.php:108
#: server/modules/text.module.php:83 server/modules/text.module.php:162
#: server/modules/ticker.module.php:73 server/modules/ticker.module.php:212
#: server/modules/webpage.module.php:73 server/modules/webpage.module.php:140
#: server/theme/default/html/settings_page.php:37
msgid "Save"
msgstr ""

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

#: server/lib/modules/module.class.php:1053
msgid "Unable to get the storage name"
msgstr ""

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

#: server/lib/modules/module.class.php:1332
#: server/lib/pages/schedule.class.php:1200
#: server/lib/pages/schedule.class.php:1323
#: server/modules/ticker.module.php:458
#: server/theme/default/html/displaygroup_fileassociations_form_assign.php:49
#: server/theme/default/html/displaygroup_fileassociations_form_assign_list.php:27
#: server/theme/default/html/display_form_mediainventory.php:34
#: server/theme/default/html/display_form_version_instructions.php:40
#: server/theme/default/html/homepage_mediamanager.php:54
#: server/theme/default/html/homepage_mediamanager_grid.php:41
#: server/theme/default/html/library_form_assign.php:47
#: server/theme/default/html/library_form_assign_list.php:27
#: server/theme/default/html/library_page.php:56
#: server/theme/default/html/library_page_grid.php:43
#: server/theme/default/html/log_page.php:49
#: server/theme/default/html/sessions_page.php:47
msgid "Type"
msgstr ""

#: server/lib/modules/module.class.php:1333
#: server/lib/pages/schedule.class.php:462
#: server/lib/pages/schedule.class.php:1199
#: server/lib/pages/schedule.class.php:1322
#: server/modules/ticker.module.php:457
#: server/theme/default/html/campaign_form_add.php:31
#: server/theme/default/html/campaign_form_edit.php:32
#: server/theme/default/html/campaign_form_layout_assign.php:47
#: server/theme/default/html/campaign_form_layout_assign_list.php:27
#: server/theme/default/html/campaign_page_grid.php:35
#: server/theme/default/html/dataset_form_add.php:33
#: server/theme/default/html/dataset_form_edit.php:33
#: server/theme/default/html/dataset_page_grid.php:36
#: server/theme/default/html/displaygroup_fileassociations_form_assign.php:47
#: server/theme/default/html/displaygroup_fileassociations_form_assign_list.php:26
#: server/theme/default/html/displaygroup_form_add.php:31
#: server/theme/default/html/displaygroup_form_edit.php:33
#: server/theme/default/html/displaygroup_page_grid.php:35
#: server/theme/default/html/display_page.php:46
#: server/theme/default/html/layout_form_add.php:32
#: server/theme/default/html/layout_form_edit.php:37
#: server/theme/default/html/layout_page.php:54
#: server/theme/default/html/layout_page_grid.php:38
#: server/theme/default/html/library_form_assign.php:45
#: server/theme/default/html/library_form_assign_list.php:26
#: server/theme/default/html/library_form_media_add.php:71
#: server/theme/default/html/library_form_media_edit.php:43
#: server/theme/default/html/library_page.php:48
#: server/theme/default/html/library_page_grid.php:42
#: server/theme/default/html/media_form_embedded_add.php:37
#: server/theme/default/html/media_form_embedded_edit.php:37
#: server/theme/default/html/media_form_ticker_edit.php:38
#: server/theme/default/html/module_page_grid.php:40
#: server/theme/default/html/region_form_options.php:32
#: server/theme/default/html/region_form_options_no_transition.php:32
#: server/theme/default/html/schedule_page.php:42
#: server/theme/default/html/template_form_add.php:32
#: server/theme/default/html/template_page.php:48
#: server/theme/default/html/template_page_grid.php:35
#: server/theme/default/html/transition_page_grid.php:35
#: server/theme/default/html/usergroup_form_add.php:31
#: server/theme/default/html/usergroup_form_edit.php:31
#: server/theme/default/html/usergroup_form_pagesecurity.php:35
#: server/theme/default/html/usergroup_page.php:50
#: server/theme/default/html/user_page.php:51
#: server/theme/default/html/user_page_grid.php:36
msgid "Name"
msgstr ""

#: server/lib/modules/module.class.php:1334
#: server/modules/localvideo.module.php:48
#: server/modules/localvideo.module.php:112
#: server/modules/ticker.module.php:460
#: server/theme/default/html/library_form_assign_list.php:28
#: server/theme/default/html/library_form_media_add.php:77
#: server/theme/default/html/library_form_media_edit.php:49
#: server/theme/default/html/library_page_grid.php:44
#: server/theme/default/html/media_form_counter_add.php:30
#: server/theme/default/html/media_form_counter_edit.php:30
#: server/theme/default/html/media_form_datasetview_add.php:35
#: server/theme/default/html/media_form_datasetview_edit.php:32
#: server/theme/default/html/media_form_embedded_add.php:31
#: server/theme/default/html/media_form_embedded_edit.php:31
#: server/theme/default/html/media_form_microblog_add.php:63
#: server/theme/default/html/media_form_microblog_edit.php:63
#: server/theme/default/html/media_form_text_add.php:46
#: server/theme/default/html/media_form_text_edit.php:46
#: server/theme/default/html/media_form_ticker_add.php:51
#: server/theme/default/html/media_form_ticker_dataset_edit.php:44
#: server/theme/default/html/media_form_ticker_edit.php:83
#: server/theme/default/html/media_form_webpage_add.php:36
#: server/theme/default/html/media_form_webpage_edit.php:36
#: server/theme/default/html/schedule_form_schedule_now.php:34
msgid "Duration"
msgstr ""

#: server/lib/modules/module.class.php:1346
#: server/modules/ticker.module.php:479
msgid "seconds"
msgstr ""

#: server/lib/modules/module.class.php:1370
msgid "You do not have permissions to edit this media"
msgstr ""

#: server/lib/modules/module.class.php:1379
#: server/lib/pages/schedule.class.php:477
#: server/lib/pages/schedule.class.php:1337
#: server/lib/pages/timeline.class.php:504
#: server/theme/default/html/campaign_form_permissions.php:39
#: server/theme/default/html/dataset_form_permissions.php:39
#: server/theme/default/html/displaygroup_form_permissions.php:39
#: server/theme/default/html/display_page.php:47
#: server/theme/default/html/template_form_permissions.php:39
msgid "Group"
msgstr ""

#: server/lib/modules/module.class.php:1380
#: server/lib/pages/timeline.class.php:505
#: server/theme/default/html/campaign_form_permissions.php:40
#: server/theme/default/html/dataset_form_permissions.php:40
#: server/theme/default/html/displaygroup_form_permissions.php:40
#: server/theme/default/html/template_form_permissions.php:40
msgid "View"
msgstr ""

#: server/lib/modules/module.class.php:1381
#: server/lib/pages/campaign.class.php:93
#: server/lib/pages/content.class.php:127
#: server/lib/pages/dataset.class.php:102
#: server/lib/pages/dataset.class.php:222
#: server/lib/pages/dataset.class.php:347
#: server/lib/pages/display.class.php:367
#: server/lib/pages/displaygroup.class.php:91
#: server/lib/pages/group.class.php:144 server/lib/pages/help.class.php:153
#: server/lib/pages/layout.class.php:425
#: server/lib/pages/mediamanager.class.php:158
#: server/lib/pages/module.class.php:135
#: server/lib/pages/resolution.class.php:87
#: server/lib/pages/schedule.class.php:482
#: server/lib/pages/timeline.class.php:506
#: server/lib/pages/timeline.class.php:765
#: server/lib/pages/transition.class.php:107
#: server/lib/pages/user.class.php:144
#: server/theme/default/html/campaign_form_permissions.php:41
#: server/theme/default/html/dataset_form_permissions.php:41
#: server/theme/default/html/displaygroup_form_permissions.php:41
#: server/theme/default/html/template_form_permissions.php:41
msgid "Edit"
msgstr ""

#: server/lib/modules/module.class.php:1382
#: server/lib/pages/campaign.class.php:103
#: server/lib/pages/content.class.php:137
#: server/lib/pages/dataset.class.php:119
#: server/lib/pages/dataset.class.php:278
#: server/lib/pages/dataset.class.php:355
#: server/lib/pages/dataset.class.php:545
#: server/lib/pages/display.class.php:398
#: server/lib/pages/displaygroup.class.php:108
#: server/lib/pages/group.class.php:151 server/lib/pages/help.class.php:160
#: server/lib/pages/layout.class.php:441 server/lib/pages/layout.class.php:749
#: server/lib/pages/resolution.class.php:94
#: server/lib/pages/schedule.class.php:482
#: server/lib/pages/schedule.class.php:1509
#: server/lib/pages/template.class.php:112
#: server/lib/pages/timeline.class.php:349
#: server/lib/pages/timeline.class.php:507
#: server/lib/pages/timeline.class.php:768 server/lib/pages/user.class.php:151
#: server/theme/default/html/campaign_form_permissions.php:42
#: server/theme/default/html/dataset_form_permissions.php:42
#: server/theme/default/html/displaygroup_form_permissions.php:42
#: server/theme/default/html/template_form_permissions.php:42
msgid "Delete"
msgstr ""

#: server/lib/modules/module.class.php:1413
msgid "Unable to get permissions for this layout"
msgstr ""

#: server/lib/modules/module.class.php:1432
#: server/lib/pages/campaign.class.php:113
#: server/lib/pages/campaign.class.php:387
#: server/lib/pages/content.class.php:147
#: server/lib/pages/dataset.class.php:129
#: server/lib/pages/dataset.class.php:893
#: server/lib/pages/display.class.php:415
#: server/lib/pages/displaygroup.class.php:118
#: server/lib/pages/displaygroup.class.php:548
#: server/lib/pages/layout.class.php:451 server/lib/pages/layout.class.php:750
#: server/lib/pages/template.class.php:122
#: server/lib/pages/template.class.php:366
#: server/lib/pages/timeline.class.php:546
#: server/lib/pages/timeline.class.php:771
#: server/theme/default/html/dataset_page_grid.php:39
#: server/theme/default/html/layout_page_grid.php:41
#: server/theme/default/html/library_page_grid.php:47
#: server/theme/default/html/template_page_grid.php:39
msgid "Permissions"
msgstr ""

#: server/lib/modules/module.class.php:1465
#: server/lib/pages/layout.class.php:65 server/lib/pages/layout.class.php:533
#: server/lib/pages/layout.class.php:628
msgid "You do not have permissions to edit this layout"
msgstr ""

#: server/lib/modules/module.class.php:1554
#: server/lib/pages/campaign.class.php:475
#: server/lib/pages/dataset.class.php:981
#: server/lib/pages/displaygroup.class.php:638
#: server/lib/pages/template.class.php:459
#: server/lib/pages/timeline.class.php:634
msgid "Permissions Changed"
msgstr ""

#: server/lib/modules/module.class.php:1627
#: server/lib/modules/module.class.php:1739
#: server/lib/modules/module.class.php:1772
msgid "Unknown transition type"
msgstr ""

#: server/lib/modules/module.class.php:1639
#: server/lib/pages/timeline.class.php:169
msgid "North"
msgstr ""

#: server/lib/modules/module.class.php:1640
#: server/lib/pages/timeline.class.php:170
msgid "North East"
msgstr ""

#: server/lib/modules/module.class.php:1641
#: server/lib/pages/timeline.class.php:171
msgid "East"
msgstr ""

#: server/lib/modules/module.class.php:1642
#: server/lib/pages/timeline.class.php:172
msgid "South East"
msgstr ""

#: server/lib/modules/module.class.php:1643
#: server/lib/pages/timeline.class.php:173
msgid "South"
msgstr ""

#: server/lib/modules/module.class.php:1644
#: server/lib/pages/timeline.class.php:174
msgid "South West"
msgstr ""

#: server/lib/modules/module.class.php:1645
#: server/lib/pages/timeline.class.php:175
msgid "West"
msgstr ""

#: server/lib/modules/module.class.php:1646
#: server/lib/pages/timeline.class.php:176
msgid "North West"
msgstr ""

#: server/lib/modules/module.class.php:1653
msgid "What transition should be applied to this media item?"
msgstr ""

#: server/lib/modules/module.class.php:1654
#: server/theme/default/html/region_form_options.php:56
msgid "The duration for this transition, in milliseconds."
msgstr ""

#: server/lib/modules/module.class.php:1655
msgid "The direction for this transition."
msgstr ""

#: server/lib/modules/module.class.php:1776
#: server/lib/pages/schedule.class.php:1385
#: server/lib/pages/schedule.class.php:1496 server/modules/text.module.php:52
#: server/modules/text.module.php:130 server/modules/ticker.module.php:132
#: server/modules/webpage.module.php:51 server/modules/webpage.module.php:108
msgid "None"
msgstr ""

#: server/lib/modules/module.class.php:1793
msgid "No XLF provided"
msgstr ""

#: server/lib/modules/module.class.php:1801
msgid "Invalid XLF"
msgstr ""

#: server/lib/modules/module.class.php:1829
msgid "Too many media nodes"
msgstr ""

#: server/lib/modules/module.class.php:1836
msgid "SchemaVersion does not match"
msgstr ""

#: server/lib/modules/module.class.php:1840
msgid "Media Type does not match"
msgstr ""

#: server/lib/modules/module.class.php:1849
#, php-format
msgid "ID does not match [%s vs %s]"
msgstr ""

#: server/lib/modules/module.class.php:1853
msgid "UserId does not match"
msgstr ""

#: server/lib/modules/module.class.php:1868
msgid "ID does not match"
msgstr ""

#: server/lib/modules/module.class.php:1880
msgid "Duration not provided or not a number"
msgstr ""

#: server/lib/modules/module.class.php:1883
msgid "Cannot be less than zero"
msgstr ""

#: server/lib/pages/admin.class.php:54 server/lib/pages/campaign.class.php:157
#: server/lib/pages/campaign.class.php:227
#: server/lib/pages/campaign.class.php:296
#: server/lib/pages/campaign.class.php:398
#: server/lib/pages/campaign.class.php:487
#: server/lib/pages/dataset.class.php:170
#: server/lib/pages/dataset.class.php:230
#: server/lib/pages/dataset.class.php:286
#: server/lib/pages/dataset.class.php:408
#: server/lib/pages/dataset.class.php:488
#: server/lib/pages/dataset.class.php:553
#: server/lib/pages/dataset.class.php:904
#: server/lib/pages/display.class.php:176
#: server/lib/pages/display.class.php:518
#: server/lib/pages/display.class.php:582
#: server/lib/pages/display.class.php:866
#: server/lib/pages/displaygroup.class.php:323
#: server/lib/pages/displaygroup.class.php:356
#: server/lib/pages/displaygroup.class.php:390
#: server/lib/pages/displaygroup.class.php:562
#: server/lib/pages/group.class.php:358 server/lib/pages/group.class.php:382
#: server/lib/pages/group.class.php:407 server/lib/pages/group.class.php:590
#: server/lib/pages/help.class.php:267 server/lib/pages/help.class.php:294
#: server/lib/pages/help.class.php:319 server/lib/pages/index.class.php:53
#: server/lib/pages/layout.class.php:174 server/lib/pages/layout.class.php:205
#: server/lib/pages/layout.class.php:283 server/lib/pages/layout.class.php:309
#: server/lib/pages/layout.class.php:615 server/lib/pages/layout.class.php:816
#: server/lib/pages/log.class.php:239 server/lib/pages/module.class.php:211
#: server/lib/pages/oauth.class.php:221
#: server/lib/pages/resolution.class.php:200
#: server/lib/pages/resolution.class.php:224
#: server/lib/pages/resolution.class.php:249
#: server/lib/pages/schedule.class.php:1525
#: server/lib/pages/schedule.class.php:1607
#: server/lib/pages/schedule.class.php:1730
#: server/lib/pages/schedule.class.php:1823
#: server/lib/pages/schedule.class.php:1914
#: server/lib/pages/sessions.class.php:168
#: server/lib/pages/template.class.php:168
#: server/lib/pages/template.class.php:199
#: server/lib/pages/template.class.php:380
#: server/lib/pages/timeline.class.php:200
#: server/lib/pages/transition.class.php:176
#: server/lib/pages/user.class.php:210 server/lib/pages/user.class.php:300
#: server/lib/pages/user.class.php:373 server/lib/pages/user.class.php:614
#: server/lib/pages/user.class.php:704 server/lib/pages/user.class.php:755
msgid "Sorry the form has expired. Please refresh."
msgstr ""

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

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

#: server/lib/pages/admin.class.php:108
msgid "The Library Location you have picked is not writable"
msgstr ""

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

#: server/lib/pages/admin.class.php:122
msgid "Settings Updated"
msgstr ""

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

#: server/lib/pages/admin.class.php:169
msgid "Categories"
msgstr ""

#: server/lib/pages/admin.class.php:199 server/locale/dbtranslate.php:37
#: server/locale/dbtranslate.php:42
msgid "Settings"
msgstr ""

#: server/lib/pages/admin.class.php:213 server/lib/pages/admin.class.php:296
#: server/lib/pages/admin.class.php:329 server/lib/pages/admin.class.php:370
msgid "Can not get settings"
msgstr ""

#: server/lib/pages/admin.class.php:260
#, php-format
msgid "You have %s of media in the library."
msgstr ""

#: server/lib/pages/admin.class.php:260 server/lib/pages/admin.class.php:273
#, php-format
msgid " This is %d %% of your %s limit."
msgstr ""

#: server/lib/pages/admin.class.php:273
#, php-format
msgid "You have used %s of bandwidth this month."
msgstr ""

#: server/lib/pages/admin.class.php:278
msgid "Import / Export Database"
msgstr ""

#: server/lib/pages/admin.class.php:281 server/lib/pages/admin.class.php:673
#: server/lib/pages/dataset.class.php:1052
msgid "Import"
msgstr ""

#: server/lib/pages/admin.class.php:283
#: server/theme/default/html/stats_page_grid.php:29
msgid "Export"
msgstr ""

#: server/lib/pages/admin.class.php:286
msgid "Tidy Library"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

#: server/lib/pages/admin.class.php:573
msgid "Test email sent"
msgstr ""

#: server/lib/pages/admin.class.php:576
#, php-format
msgid "Sending test email to %s."
msgstr ""

#: server/lib/pages/admin.class.php:581
msgid "Mail sent OK"
msgstr ""

#: server/lib/pages/admin.class.php:585
msgid "Mail sending FAILED"
msgstr ""

#: server/lib/pages/admin.class.php:602
msgid "Only an adminitrator can export a database"
msgstr ""

#: server/lib/pages/admin.class.php:605
msgid ""
"This will create a dump file of your database that you can restore later "
"using the import functionality."
msgstr ""

#: server/lib/pages/admin.class.php:606
msgid "You should also manually take a backup of your library."
msgstr ""

#: server/lib/pages/admin.class.php:607 server/lib/pages/admin.class.php:654
msgid ""
"Please note: The folder location for mysqldump must be available in your "
"path environment variable for this to work and the php \"exec\" command must "
"be enabled."
msgstr ""

#: server/lib/pages/admin.class.php:608
msgid "Export Database. Right click to save as."
msgstr ""

#: server/lib/pages/admin.class.php:608
msgid "Click here to Export"
msgstr ""

#: server/lib/pages/admin.class.php:610
msgid "Export Database Backup"
msgstr ""

#: server/lib/pages/admin.class.php:627
msgid "Unable to export database"
msgstr ""

#: server/lib/pages/admin.class.php:645 server/lib/pages/admin.class.php:685
#: server/lib/pages/admin.class.php:758
msgid "Sorry this function is disabled."
msgstr ""

#: server/lib/pages/admin.class.php:649
msgid "Only an adminitrator can import a database"
msgstr ""

#: server/lib/pages/admin.class.php:651
msgid "Backup File"
msgstr ""

#: server/lib/pages/admin.class.php:652
msgid ""
"Warning: Importing a file here will overwrite your existing database. This "
"action cannot be reversed."
msgstr ""

#: server/lib/pages/admin.class.php:653
msgid ""
"Select a file to import and then click the import button below. You will be "
"taken to another page where the file will be imported."
msgstr ""

#: server/lib/pages/admin.class.php:671
msgid "Import Database Backup"
msgstr ""

#: server/lib/pages/admin.class.php:716
msgid "Not a valid uploaded file"
msgstr ""

#: server/lib/pages/admin.class.php:720
msgid "Unable to upload file"
msgstr ""

#: server/lib/pages/admin.class.php:724
msgid "Database Restored. Click here to continue."
msgstr ""

#: server/lib/pages/admin.class.php:812
msgid "Library Tidy Complete"
msgstr ""

#: server/lib/pages/campaign.class.php:62
msgid "Unable to get list of campaigns"
msgstr ""

#: server/lib/pages/campaign.class.php:76
#: server/lib/pages/display.class.php:344
#: server/lib/pages/layout.class.php:402
#: server/lib/pages/schedule.class.php:1812
#: server/theme/default/html/layout_designer.php:49
msgid "Schedule Now"
msgstr ""

#: server/lib/pages/campaign.class.php:86 server/locale/dbtranslate.php:39
msgid "Layouts"
msgstr ""

#: server/lib/pages/campaign.class.php:143
#: server/theme/default/html/campaign_page.php:37
msgid "Add Campaign"
msgstr ""

#: server/lib/pages/campaign.class.php:170
msgid "Campaign Added"
msgstr ""

#: server/lib/pages/campaign.class.php:188
#: server/lib/pages/campaign.class.php:238
#: server/lib/pages/campaign.class.php:500
msgid "You do not have permission to edit this campaign"
msgstr ""

#: server/lib/pages/campaign.class.php:200
msgid "Error getting Campaign"
msgstr ""

#: server/lib/pages/campaign.class.php:213
msgid "Edit Campaign"
msgstr ""

#: server/lib/pages/campaign.class.php:242
#: server/lib/pages/campaign.class.php:310
msgid "Campaign ID is missing"
msgstr ""

#: server/lib/pages/campaign.class.php:245
msgid "Name is a required field."
msgstr ""

#: server/lib/pages/campaign.class.php:253
msgid "Campaign Edited"
msgstr ""

#: server/lib/pages/campaign.class.php:273
#: server/lib/pages/campaign.class.php:306
msgid "You do not have permission to delete this campaign"
msgstr ""

#: server/lib/pages/campaign.class.php:282
msgid "Delete Campaign"
msgstr ""

#: server/lib/pages/campaign.class.php:318
msgid "Campaign Deleted"
msgstr ""

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

#: server/lib/pages/campaign.class.php:358
msgid "Unable to get permissions for this Campaign"
msgstr ""

#: server/lib/pages/campaign.class.php:513
msgid ""
"Your permissions to view a layout you are adding have been revoked. Please "
"reload the Layouts form."
msgstr ""

#: server/lib/pages/campaign.class.php:520
msgid "Layouts Added to Campaign"
msgstr ""

#: server/lib/pages/campaign.class.php:557
msgid "Error getting Layouts"
msgstr ""

#: server/lib/pages/campaign.class.php:574
msgid "Layouts on Campaign"
msgstr ""

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

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

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

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

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

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

#: server/lib/pages/content.class.php:155
msgid "Download"
msgstr ""

#: server/lib/pages/content.class.php:192
#: server/lib/pages/dataset.class.php:159
msgid "Add"
msgstr ""

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

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

#: server/lib/pages/content.class.php:260
#: server/lib/pages/displaygroup.class.php:712
msgid "Assign"
msgstr ""

#: server/lib/pages/content.class.php:397
msgid "Unable to get group information for media"
msgstr ""

#: server/lib/pages/dataset.class.php:88
msgid "View Data"
msgstr ""

#: server/lib/pages/dataset.class.php:95
msgid "View Columns"
msgstr ""

#: server/lib/pages/dataset.class.php:109
msgid "Import CSV"
msgstr ""

#: server/lib/pages/dataset.class.php:156
#: server/theme/default/html/dataset_page.php:36
msgid "Add DataSet"
msgstr ""

#: server/lib/pages/dataset.class.php:187
msgid "DataSet Added"
msgstr ""

#: server/lib/pages/dataset.class.php:201
#: server/lib/pages/dataset.class.php:240
#: server/lib/pages/dataset.class.php:266
#: server/lib/pages/dataset.class.php:296
#: server/lib/pages/dataset.class.php:317
#: server/lib/pages/dataset.class.php:384
#: server/lib/pages/dataset.class.php:419
#: server/lib/pages/dataset.class.php:451
#: server/lib/pages/dataset.class.php:499
#: server/lib/pages/dataset.class.php:531
#: server/lib/pages/dataset.class.php:564
#: server/lib/pages/dataset.class.php:589
#: server/lib/pages/dataset.class.php:751
#: server/lib/pages/dataset.class.php:778
#: server/lib/pages/dataset.class.php:995
#: server/lib/pages/dataset.class.php:1066
msgid "Access Denied"
msgstr ""

#: server/lib/pages/dataset.class.php:207
msgid "Unable to get DataSet information"
msgstr ""

#: server/lib/pages/dataset.class.php:219
msgid "Edit DataSet"
msgstr ""

#: server/lib/pages/dataset.class.php:249
msgid "DataSet Edited"
msgstr ""

#: server/lib/pages/dataset.class.php:275
msgid "Delete this DataSet?"
msgstr ""

#: server/lib/pages/dataset.class.php:302
msgid "DataSet Deleted"
msgstr ""

#: server/lib/pages/dataset.class.php:366
#, php-format
msgid "Columns for %s"
msgstr ""

#: server/lib/pages/dataset.class.php:369
#: server/lib/pages/dataset.class.php:397
msgid "Add Column"
msgstr ""

#: server/lib/pages/dataset.class.php:432
msgid "Column Added"
msgstr ""

#: server/lib/pages/dataset.class.php:462
msgid "Unabled to get Data Column information"
msgstr ""

#: server/lib/pages/dataset.class.php:477
msgid "Edit Column"
msgstr ""

#: server/lib/pages/dataset.class.php:513
msgid "Column Edited"
msgstr ""

#: server/lib/pages/dataset.class.php:542
msgid "Delete this Column?"
msgstr ""

#: server/lib/pages/dataset.class.php:572
msgid "Column Deleted"
msgstr ""

#: server/lib/pages/dataset.class.php:604
msgid "Unable to find the number of data points"
msgstr ""

#: server/lib/pages/dataset.class.php:617
msgid "Unable to find the column headings"
msgstr ""

#: server/lib/pages/dataset.class.php:668
msgid "Can not get the data row/column"
msgstr ""

#: server/lib/pages/dataset.class.php:757
msgid "Data Added"
msgstr ""

#: server/lib/pages/dataset.class.php:786
msgid "Data Deleted"
msgstr ""

#: server/lib/pages/dataset.class.php:795
msgid "Data Edited"
msgstr ""

#: server/lib/pages/dataset.class.php:825
msgid "Unable to get group information for dataset"
msgstr ""

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

#: server/lib/pages/dataset.class.php:865
msgid "Unable to get permissions for this dataset"
msgstr ""

#: server/lib/pages/dataset.class.php:1029
#: server/lib/pages/dataset.class.php:1100
msgid "Error getting list of dataSetColumns"
msgstr ""

#: server/lib/pages/dataset.class.php:1049
msgid "CSV Import"
msgstr ""

#: server/lib/pages/dataset.class.php:1072
msgid "Please ensure you have picked a file and it has finished uploading"
msgstr ""

#: server/lib/pages/dataset.class.php:1081
msgid "Files with a CSV extension only."
msgstr ""

#: server/lib/pages/dataset.class.php:1120
msgid "CSV File Imported"
msgstr ""

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

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

#: server/lib/pages/display.class.php:185
#: server/lib/pages/display.class.php:237
#: server/lib/pages/display.class.php:496
#: server/lib/pages/display.class.php:526
#: server/lib/pages/display.class.php:552
#: server/lib/pages/display.class.php:593
msgid "You do not have permission to edit this display"
msgstr ""

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

#: server/lib/pages/display.class.php:209
msgid ""
"Wake on Lan is enabled, but you have not specified a time to wake the display"
msgstr ""

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

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

#: server/lib/pages/display.class.php:310
msgid "Unable to get list of displays"
msgstr ""

#: server/lib/pages/display.class.php:351
#: server/lib/pages/display.class.php:658
msgid "Media Inventory"
msgstr ""

#: server/lib/pages/display.class.php:360
#: server/theme/default/html/display_form_default_layout.php:32
#: server/theme/default/html/display_form_edit.php:58
#: server/theme/default/html/display_page_grid.php:47
msgid "Default Layout"
msgstr ""

#: server/lib/pages/display.class.php:374
msgid "Wake on LAN"
msgstr ""

#: server/lib/pages/display.class.php:381
#: server/lib/pages/displaygroup.class.php:98
msgid "Assign Files"
msgstr ""

#: server/lib/pages/display.class.php:388
msgid "Last 100 Log Messages"
msgstr ""

#: server/lib/pages/display.class.php:408 server/locale/dbtranslate.php:46
msgid "Display Groups"
msgstr ""

#: server/lib/pages/display.class.php:422
#: server/lib/pages/displaygroup.class.php:125
msgid "Version Information"
msgstr ""

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

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

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

#: server/lib/pages/display.class.php:557
msgid "Unable to get the default layout"
msgstr ""

#: server/lib/pages/display.class.php:568
msgid "Edit Default Layout"
msgstr ""

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

#: server/lib/pages/display.class.php:613
msgid "You do not have permission to view this display"
msgstr ""

#: server/lib/pages/display.class.php:616
msgid "No DisplayId Given"
msgstr ""

#: server/lib/pages/display.class.php:625
msgid "Unable to get the Inventory for this Display"
msgstr ""

#: server/lib/pages/display.class.php:632
msgid "Invalid Media Inventory"
msgstr ""

#: server/lib/pages/display.class.php:678
msgid "Unable to determine permissions"
msgstr ""

#: server/lib/pages/display.class.php:696
msgid "You do not have permission to change Display Groups on this display"
msgstr ""

#: server/lib/pages/display.class.php:723
#: server/lib/pages/display.class.php:749
#: server/lib/pages/display.class.php:791
msgid "Error getting Display Groups"
msgstr ""

#: server/lib/pages/display.class.php:757
#: server/lib/pages/displaygroup.class.php:308
#: server/lib/pages/group.class.php:697
msgid "Manage Membership"
msgstr ""

#: server/lib/pages/display.class.php:826
#: server/lib/pages/displaygroup.class.php:479
#: server/lib/pages/group.class.php:765
msgid "Group membership set"
msgstr ""

#: server/lib/pages/display.class.php:853
msgid "Wake On Lan"
msgstr ""

#: server/lib/pages/display.class.php:855
msgid "Send"
msgstr ""

#: server/lib/pages/display.class.php:877
msgid "Wake on Lan command sent."
msgstr ""

#: server/lib/pages/displaygroup.class.php:67
msgid "Cannot get list of display groups."
msgstr ""

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

#: server/lib/pages/displaygroup.class.php:155
#: server/theme/default/html/displaygroup_page.php:37
msgid "Add Display Group"
msgstr ""

#: server/lib/pages/displaygroup.class.php:177
#: server/lib/pages/displaygroup.class.php:222
#: server/lib/pages/displaygroup.class.php:368
#: server/lib/pages/displaygroup.class.php:400
#: server/lib/pages/displaygroup.class.php:431
#: server/lib/pages/displaygroup.class.php:649
#: server/lib/pages/displaygroup.class.php:786
#: server/lib/pages/displaygroup.class.php:863
msgid "You do not have permission to edit this display group"
msgstr ""

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

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

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

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

#: server/lib/pages/displaygroup.class.php:270
#: server/lib/pages/displaygroup.class.php:290
#: server/lib/pages/displaygroup.class.php:444
msgid "Error getting Displays"
msgstr ""

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

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

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

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

#: server/lib/pages/displaygroup.class.php:519
msgid "Unable to get permissions for this DisplayGroup"
msgstr ""

#: server/lib/pages/displaygroup.class.php:692
#: server/lib/pages/displaygroup.class.php:744
msgid "Unable to get existing assignments."
msgstr ""

#: server/lib/pages/displaygroup.class.php:708
msgid "Associate an item from the Library"
msgstr ""

#: server/lib/pages/displaygroup.class.php:781
msgid "Display Group not selected"
msgstr ""

#: server/lib/pages/displaygroup.class.php:795
#: server/lib/pages/timeline.class.php:391
#, php-format
msgid "%d Media Items Assigned"
msgstr ""

#: server/lib/pages/displaygroup.class.php:812
msgid "Unknown Display"
msgstr ""

#: server/lib/pages/displaygroup.class.php:817
msgid "No displays in this group"
msgstr ""

#: server/lib/pages/displaygroup.class.php:844
msgid "Set Instructions for Upgrading this client"
msgstr ""

#: server/lib/pages/displaygroup.class.php:890
msgid "Version Instructions Set"
msgstr ""

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

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

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

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

#: server/lib/pages/group.class.php:158
msgid "Members"
msgstr ""

#: server/lib/pages/group.class.php:165 server/lib/pages/group.class.php:247
#: server/lib/pages/user.class.php:158
msgid "Page Security"
msgstr ""

#: server/lib/pages/group.class.php:172 server/lib/pages/user.class.php:165
msgid "Menu Security"
msgstr ""

#: server/lib/pages/group.class.php:250 server/lib/pages/group.class.php:503
msgid "Assign / Unassign"
msgstr ""

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

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

#: server/lib/pages/group.class.php:370
msgid "User Group Added"
msgstr ""

#: server/lib/pages/group.class.php:395
msgid "User Group Edited"
msgstr ""

#: server/lib/pages/group.class.php:418
msgid "User Group Deleted"
msgstr ""

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

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

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

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

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

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

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

#: server/lib/pages/group.class.php:630
msgid "User Group Menu Security Edited"
msgstr ""

#: server/lib/pages/group.class.php:666 server/lib/pages/group.class.php:690
msgid "Error getting users"
msgstr ""

#: server/lib/pages/group.class.php:730
msgid "Error getting Users"
msgstr ""

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

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

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

#: server/lib/pages/help.class.php:132
msgid "Error getting list of helplinks"
msgstr ""

#: server/lib/pages/help.class.php:167
msgid "Test"
msgstr ""

#: server/lib/pages/help.class.php:194
#: server/theme/default/html/help_page.php:36
msgid "Add Help Link"
msgstr ""

#: server/lib/pages/help.class.php:232
msgid "Edit Help Link"
msgstr ""

#: server/lib/pages/help.class.php:254
msgid "Delete Help Link"
msgstr ""

#: server/lib/pages/help.class.php:283
msgid "Help Link Added"
msgstr ""

#: server/lib/pages/help.class.php:311
msgid "Help Link Edited"
msgstr ""

#: server/lib/pages/help.class.php:333
msgid "Help Link Deleted"
msgstr ""

#: server/lib/pages/index.class.php:243
#: server/theme/default/html/header.php:71
#: server/theme/default/html/login_page.php:87
msgid "About"
msgstr ""

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

#: server/lib/pages/layout.class.php:152
msgid "Save Position"
msgstr ""

#: server/lib/pages/layout.class.php:192 server/lib/pages/layout.class.php:223
msgid "Layout Details Changed."
msgstr ""

#: server/lib/pages/layout.class.php:235 server/lib/pages/layout.class.php:290
#: server/lib/pages/layout.class.php:317
msgid "You do not have permissions to delete this layout"
msgstr ""

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

#: server/lib/pages/layout.class.php:269
msgid "Delete Layout"
msgstr ""

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

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

#: server/lib/pages/layout.class.php:362
msgid "Unable to get layouts for user"
msgstr ""

#: server/lib/pages/layout.class.php:379 server/lib/pages/layout.class.php:965
msgid "This Layout is ready to play"
msgstr ""

#: server/lib/pages/layout.class.php:383 server/lib/pages/layout.class.php:969
msgid "There are items on this Layout that can only be assessed by the client"
msgstr ""

#: server/lib/pages/layout.class.php:387 server/lib/pages/layout.class.php:973
msgid "This Layout is invalid and should not be scheduled"
msgstr ""

#: server/lib/pages/layout.class.php:391 server/lib/pages/layout.class.php:977
msgid "The Status of this Layout is not known"
msgstr ""

#: server/lib/pages/layout.class.php:408
#: server/theme/default/html/layout_designer.php:48
msgid "Preview Layout"
msgstr ""

#: server/lib/pages/layout.class.php:418
msgid "Design"
msgstr ""

#: server/lib/pages/layout.class.php:432 server/lib/pages/layout.class.php:805
msgid "Copy"
msgstr ""

#: server/lib/pages/layout.class.php:512
#: server/theme/default/html/layout_page.php:45
msgid "Add Layout"
msgstr ""

#: server/lib/pages/layout.class.php:512
msgid "Edit Layout"
msgstr ""

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

#: server/lib/pages/layout.class.php:602
msgid "Add Image"
msgstr ""

#: server/lib/pages/layout.class.php:636
msgid "Layout Background Changed"
msgstr ""

#: server/lib/pages/layout.class.php:666
msgid "Unable to determine display resolution"
msgstr ""

#: server/lib/pages/layout.class.php:747
msgid "Timeline"
msgstr ""

#: server/lib/pages/layout.class.php:747
msgid "Edit Timeline"
msgstr ""

#: server/lib/pages/layout.class.php:748
#: server/theme/default/html/layout_designer.php:40
msgid "Options"
msgstr ""

#: server/lib/pages/layout.class.php:802
msgid "Copy a Layout."
msgstr ""

#: server/lib/pages/layout.class.php:833
msgid "Layout Copied"
msgstr ""

#: server/lib/pages/layout.class.php:862
msgid "Unable to get group information for layout"
msgstr ""

#: server/lib/pages/log.class.php:141 server/lib/pages/sessions.class.php:106
msgid "Error getting the log"
msgstr ""

#: server/lib/pages/log.class.php:182
msgid "No log messages for this display"
msgstr ""

#: server/lib/pages/log.class.php:217 server/lib/pages/log.class.php:244
msgid "Only Administrator Users can truncate the log"
msgstr ""

#: server/lib/pages/log.class.php:225
msgid "Truncate Log"
msgstr ""

#: server/lib/pages/module.class.php:103
msgid "Unable to get the list of modules"
msgstr ""

#: server/lib/pages/module.class.php:162 server/lib/pages/module.class.php:218
msgid "Module Config Locked"
msgstr ""

#: server/lib/pages/module.class.php:184
msgid "Error getting Module"
msgstr ""

#: server/lib/pages/module.class.php:200
msgid "Edit Module"
msgstr ""

#: server/lib/pages/module.class.php:228
msgid "Module ID is missing"
msgstr ""

#: server/lib/pages/module.class.php:231
msgid "Image Uri is a required field."
msgstr ""

#: server/lib/pages/module.class.php:240
msgid "Unable to update module"
msgstr ""

#: server/lib/pages/module.class.php:243
msgid "Module Edited"
msgstr ""

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

#: server/lib/pages/oauth.class.php:69
msgid "Error listing Applications."
msgstr ""

#: server/lib/pages/oauth.class.php:111 server/lib/pages/oauth.class.php:267
#: server/lib/pages/user.class.php:656
msgid "Error listing Log."
msgstr ""

#: server/lib/pages/oauth.class.php:129
msgid "OAuth Access Log"
msgstr ""

#: server/lib/pages/oauth.class.php:168
msgid "Request authorized. Please return to your application."
msgstr ""

#: server/lib/pages/oauth.class.php:189
msgid "Unsigned requests are not allowed to the authorize page."
msgstr ""

#: server/lib/pages/oauth.class.php:207
msgid "Registration for Consumer Information"
msgstr ""

#: server/lib/pages/oauth.class.php:210
msgid "Register"
msgstr ""

#: server/lib/pages/oauth.class.php:237
#, php-format
msgid "Your consumer key is: %s"
msgstr ""

#: server/lib/pages/oauth.class.php:238
#, php-format
msgid "Your consumer secret is: %s"
msgstr ""

#: server/lib/pages/oauth.class.php:285
msgid "Authorized applications for user"
msgstr ""

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

#: server/lib/pages/preview.class.php:92
msgid "Preview for Layout"
msgstr ""

#: server/lib/pages/preview.class.php:116
msgid "Loading layout..."
msgstr ""

#: server/lib/pages/preview.class.php:120
msgid "Play again?"
msgstr ""

#: server/lib/pages/resolution.class.php:123
#: server/theme/default/html/resolution_page.php:37
msgid "Add Resolution"
msgstr ""

#: server/lib/pages/resolution.class.php:146
msgid "Unable to edit this resolution"
msgstr ""

#: server/lib/pages/resolution.class.php:150
msgid "Incorrect resolution id"
msgstr ""

#: server/lib/pages/resolution.class.php:164
msgid "Edit Resolution"
msgstr ""

#: server/lib/pages/resolution.class.php:189
msgid "Delete Resolution"
msgstr ""

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

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

#: server/lib/pages/schedule.class.php:407
#: server/lib/pages/schedule.class.php:454
msgid "You must supply a day"
msgstr ""

#: server/lib/pages/schedule.class.php:434
#, php-format
msgid "Events for %s"
msgstr ""

#: server/lib/pages/schedule.class.php:436
msgid "Delete All"
msgstr ""

#: server/lib/pages/schedule.class.php:461
msgid "Display / Group"
msgstr ""

#: server/lib/pages/schedule.class.php:463
#: server/lib/pages/schedule.class.php:1129
#: server/lib/pages/schedule.class.php:1215 server/locale/dbtranslate.php:26
#: server/theme/default/html/homepage_mediamanager.php:44
#: server/theme/default/html/homepage_mediamanager_grid.php:38
#: server/theme/default/html/layout_designer.php:80
#: server/theme/default/html/layout_jumplist_grid.php:30
#: server/theme/default/html/stats_page_grid.php:37
#: server/theme/default/html/stats_page_grid.php:93
msgid "Layout"
msgstr ""

#: server/lib/pages/schedule.class.php:464
#: server/theme/default/html/library_form_media_add.php:89
msgid "Start"
msgstr ""

#: server/lib/pages/schedule.class.php:465
msgid "Finish"
msgstr ""

#: server/lib/pages/schedule.class.php:466
#: server/theme/default/html/campaign_page_grid.php:47
#: server/theme/default/html/dataset_form_column_grid.php:54
#: server/theme/default/html/dataset_page_grid.php:52
#: server/theme/default/html/displaygroup_page_grid.php:47
#: server/theme/default/html/display_page_grid.php:72
#: server/theme/default/html/help_page_grid.php:50
#: server/theme/default/html/homepage_mediamanager_grid.php:56
#: server/theme/default/html/layout_page_grid.php:57
#: server/theme/default/html/library_page_grid.php:67
#: server/theme/default/html/module_page_grid.php:64
#: server/theme/default/html/resolution_page_grid.php:54
#: server/theme/default/html/sessions_page_grid.php:49
#: server/theme/default/html/template_page_grid.php:53
#: server/theme/default/html/transition_page_grid.php:53
#: server/theme/default/html/usergroup_page_grid.php:45
#: server/theme/default/html/user_page_grid.php:50
msgid "Action"
msgstr ""

#: server/lib/pages/schedule.class.php:477
#: server/lib/pages/schedule.class.php:1245
#: server/lib/pages/schedule.class.php:1337
#: server/theme/default/html/display_form_edit.php:34
#: server/theme/default/html/display_form_version_instructions.php:39
#: server/theme/default/html/display_page_grid.php:46
#: server/theme/default/html/log_page.php:67
#: server/theme/default/html/stats_page.php:53
#: server/theme/default/html/stats_page_grid.php:36
#: server/theme/default/html/stats_page_grid.php:64
#: server/theme/default/html/stats_page_grid.php:92
#: server/theme/default/html/status_dashboard.php:45
msgid "Display"
msgstr ""

#: server/lib/pages/schedule.class.php:610
#: server/lib/pages/schedule.class.php:808
#: server/lib/pages/schedule.class.php:911
#: server/lib/pages/schedule.class.php:1007
msgid "Error getting events for date."
msgstr ""

#: server/lib/pages/schedule.class.php:832
#: server/lib/pages/schedule.class.php:1031
#: server/lib/pages/schedule.class.php:1507
msgid "Edit Event"
msgstr ""

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

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

#: server/lib/pages/schedule.class.php:1089 server/locale/dbtranslate.php:32
#: server/theme/default/html/schedule_page_display_list.php:38
msgid "Groups"
msgstr ""

#: server/lib/pages/schedule.class.php:1110 server/locale/dbtranslate.php:31
#: server/theme/default/html/schedule_page_display_list.php:48
msgid "Displays"
msgstr ""

#: server/lib/pages/schedule.class.php:1143
#: server/lib/pages/schedule.class.php:1259
#: server/theme/default/html/layout_designer.php:81
msgid "Pin?"
msgstr ""

#: server/lib/pages/schedule.class.php:1215
msgid "Campaign"
msgstr ""

#: server/lib/pages/schedule.class.php:1260
#: server/theme/default/html/schedule_page_display_list.php:34
msgid "Check All"
msgstr ""

#: server/lib/pages/schedule.class.php:1386
#: server/lib/pages/schedule.class.php:1497
msgid "Hourly"
msgstr ""

#: server/lib/pages/schedule.class.php:1387
#: server/lib/pages/schedule.class.php:1498
msgid "Daily"
msgstr ""

#: server/lib/pages/schedule.class.php:1388
#: server/lib/pages/schedule.class.php:1499
msgid "Weekly"
msgstr ""

#: server/lib/pages/schedule.class.php:1389
#: server/lib/pages/schedule.class.php:1500
msgid "Monthly"
msgstr ""

#: server/lib/pages/schedule.class.php:1390
#: server/lib/pages/schedule.class.php:1501
msgid "Yearly"
msgstr ""

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

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

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

#: server/lib/pages/schedule.class.php:1559
#: server/lib/pages/schedule.class.php:1644
#: server/lib/pages/schedule.class.php:1843
msgid "No layout selected"
msgstr ""

#: server/lib/pages/schedule.class.php:1565
#: server/lib/pages/schedule.class.php:1650
#: server/lib/pages/schedule.class.php:1850
msgid "No displays selected"
msgstr ""

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

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

#: server/lib/pages/schedule.class.php:1581
#: server/lib/pages/schedule.class.php:1662
msgid ""
"Your repeat until date is in the past. Cannot schedule events to repeat in "
"to the past"
msgstr ""

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

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

#: server/lib/pages/schedule.class.php:1692
#: server/lib/pages/schedule.class.php:1740
msgid "No event selected."
msgstr ""

#: server/lib/pages/schedule.class.php:1694
msgid "Are you sure you want to delete this event from <b>all</b> displays?"
msgstr ""

#: server/lib/pages/schedule.class.php:1695
msgid ""
"If you only want to delete this item from certain displays, please deselect "
"the displays in the edit dialogue and click Save."
msgstr ""

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

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

#: server/lib/pages/schedule.class.php:1846
msgid "You must enter a duration"
msgstr ""

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

#: server/lib/pages/schedule.class.php:1878
#: server/lib/pages/schedule.class.php:1925
msgid "Day not selected"
msgstr ""

#: server/lib/pages/schedule.class.php:1880
msgid ""
"Are you sure you want to delete all events that intersect this day from "
"<b>all</b> displays?"
msgstr ""

#: server/lib/pages/schedule.class.php:1881
msgid "This action cannot be undone."
msgstr ""

#: server/lib/pages/schedule.class.php:1899
#, php-format
msgid "Delete %s"
msgstr ""

#: server/lib/pages/schedule.class.php:1942
#, php-format
msgid "All events for %s have been deleted"
msgstr ""

#: server/lib/pages/sessions.class.php:125
#: server/theme/default/html/header.php:73
msgid "Logout"
msgstr ""

#: server/lib/pages/sessions.class.php:153
msgid "Logout User"
msgstr ""

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

#: server/lib/pages/sessions.class.php:184
msgid "User Logged Out."
msgstr ""

#: server/lib/pages/stats.class.php:93 server/lib/pages/stats.class.php:262
msgid "No displays with View permissions"
msgstr ""

#: server/lib/pages/stats.class.php:117
msgid "Unable to get Layouts Shown"
msgstr ""

#: server/lib/pages/stats.class.php:159 server/lib/pages/stats.class.php:202
msgid "Unable to get Library Media Ran"
msgstr ""

#: server/lib/pages/statusdashboard.class.php:51
msgid "GB"
msgstr ""

#: server/lib/pages/template.class.php:95
msgid "Unable to get list of templates for this user"
msgstr ""

#: server/lib/pages/template.class.php:153
msgid "Save this Layout as a Template?"
msgstr ""

#: server/lib/pages/template.class.php:208
#: server/lib/pages/template.class.php:240
#: server/lib/pages/template.class.php:312
#: server/lib/pages/template.class.php:389
msgid "No template selected"
msgstr ""

#: server/lib/pages/template.class.php:214
#: server/lib/pages/template.class.php:246
msgid "Access denied"
msgstr ""

#: server/lib/pages/template.class.php:224
msgid "The Template has been Deleted"
msgstr ""

#: server/lib/pages/template.class.php:255
msgid "Delete a Template"
msgstr ""

#: server/lib/pages/template.class.php:283
msgid "Unable to get group information for template"
msgstr ""

#: server/lib/pages/template.class.php:337
msgid "Unable to get permissions for this template"
msgstr ""

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

#: server/lib/pages/timeline.class.php:65
msgid "Region Added."
msgstr ""

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

#: server/lib/pages/timeline.class.php:94
#: server/lib/pages/timeline.class.php:329
msgid "You do not have permissions to delete this region"
msgstr ""

#: server/lib/pages/timeline.class.php:110
msgid "Region Deleted."
msgstr ""

#: server/lib/pages/timeline.class.php:140
#: server/lib/pages/timeline.class.php:232
#: server/lib/pages/timeline.class.php:300
#: server/lib/pages/timeline.class.php:385
#: server/lib/pages/timeline.class.php:658
#: server/lib/pages/timeline.class.php:855
msgid "You do not have permissions to edit this region"
msgstr ""

#: server/lib/pages/timeline.class.php:189
msgid "Region Options"
msgstr ""

#: server/lib/pages/timeline.class.php:192
msgid "Set Full Screen"
msgstr ""

#: server/lib/pages/timeline.class.php:274
msgid "No regions present"
msgstr ""

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

#: server/lib/pages/timeline.class.php:333
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/timeline.class.php:346
msgid "Delete this region?"
msgstr ""

#: server/lib/pages/timeline.class.php:443
msgid "Empty Region"
msgstr ""

#: server/lib/pages/timeline.class.php:495
#: server/lib/pages/timeline.class.php:570
msgid "You do not have permissions to edit this regions permissions"
msgstr ""

#: server/lib/pages/timeline.class.php:526
msgid "Unable to get permissions for this layout region"
msgstr ""

#: server/lib/pages/timeline.class.php:670 server/locale/dbtranslate.php:27
#: server/locale/dbtranslate.php:40
msgid "Library"
msgstr ""

#: server/lib/pages/timeline.class.php:765
msgid "Click to edit this media"
msgstr ""

#: server/lib/pages/timeline.class.php:768
msgid "Click to delete this media"
msgstr ""

#: server/lib/pages/timeline.class.php:774
#: server/lib/pages/timeline.class.php:777
msgid "Click to edit this transition"
msgstr ""

#: server/lib/pages/timeline.class.php:774
msgid "In Transition"
msgstr ""

#: server/lib/pages/timeline.class.php:777
msgid "Out Transition"
msgstr ""

#: server/lib/pages/timeline.class.php:819
msgid "Region Timeline"
msgstr ""

#: server/lib/pages/timeline.class.php:828
msgid "Save Order"
msgstr ""

#: server/lib/pages/timeline.class.php:859
msgid "No media to reorder"
msgstr ""

#: server/lib/pages/timeline.class.php:882
msgid "Order Changed"
msgstr ""

#: server/lib/pages/transition.class.php:78
msgid "Unable to get the list of transitions"
msgstr ""

#: server/lib/pages/transition.class.php:131
#: server/lib/pages/transition.class.php:183
msgid "Transition Config Locked"
msgstr ""

#: server/lib/pages/transition.class.php:148
msgid "Error getting Transition"
msgstr ""

#: server/lib/pages/transition.class.php:162
#, php-format
msgid "Edit %s"
msgstr ""

#: server/lib/pages/transition.class.php:191
msgid "Transition ID is missing"
msgstr ""

#: server/lib/pages/transition.class.php:200
msgid "Unable to update transition"
msgstr ""

#: server/lib/pages/transition.class.php:203
msgid "Transition Edited"
msgstr ""

#: server/lib/pages/user.class.php:127
msgid "Error getting list of users"
msgstr ""

#: server/lib/pages/user.class.php:172
msgid "Applications"
msgstr ""

#: server/lib/pages/user.class.php:179
msgid "Set Homepage"
msgstr ""

#: server/lib/pages/user.class.php:186 server/lib/pages/user.class.php:741
msgid "Set Password"
msgstr ""

#: server/lib/pages/user.class.php:315
msgid "Please enter a User Name."
msgstr ""

#: server/lib/pages/user.class.php:325
msgid "Cant get this user's name. Please try another."
msgstr ""

#: server/lib/pages/user.class.php:330
msgid "Could Not Complete, Duplicate User Name Exists"
msgstr ""

#: server/lib/pages/user.class.php:344
msgid "Error updating user"
msgstr ""

#: server/lib/pages/user.class.php:384
msgid "Cannot delete this user, they have layouts"
msgstr ""

#: server/lib/pages/user.class.php:387
msgid "Cannot delete this user, they have media"
msgstr ""

#: server/lib/pages/user.class.php:390
msgid "Cannot delete this user, they have scheduled layouts"
msgstr ""

#: server/lib/pages/user.class.php:393
msgid "Cannot delete this user, they have schedule detail records"
msgstr ""

#: server/lib/pages/user.class.php:396
msgid "Cannot delete this user, they have templates"
msgstr ""

#: server/lib/pages/user.class.php:399
msgid "Cannot delete this user, they have applications"
msgstr ""

#: server/lib/pages/user.class.php:402
msgid "Cannot delete this user, they have permissions to data sets"
msgstr ""

#: server/lib/pages/user.class.php:405
msgid "Cannot delete this user, they have permissions to display groups"
msgstr ""

#: server/lib/pages/user.class.php:408
msgid "Cannot delete this user, they have permissions to layouts"
msgstr ""

#: server/lib/pages/user.class.php:411
msgid "Cannot delete this user, they have permissions to media on layouts"
msgstr ""

#: server/lib/pages/user.class.php:414
msgid "Cannot delete this user, they have permissions to regions on layouts"
msgstr ""

#: server/lib/pages/user.class.php:417
msgid "Cannot delete this user, they have permissions to media"
msgstr ""

#: server/lib/pages/user.class.php:420
msgid "Cannot delete this user, they have permissions to templates"
msgstr ""

#: server/lib/pages/user.class.php:439
msgid "This user has been active, you may only retire them."
msgstr ""

#: server/lib/pages/user.class.php:448
msgid "If logged in, this user will be deleted once they log out."
msgstr ""

#: server/lib/pages/user.class.php:451
msgid "User Deleted."
msgstr ""

#: server/lib/pages/user.class.php:489
msgid "Error getting user information."
msgstr ""

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

#: server/lib/pages/user.class.php:599
msgid "Set the homepage for this user"
msgstr ""

#: server/lib/pages/user.class.php:620
msgid "You do not have permission to change this users homepage"
msgstr ""

#: server/lib/pages/user.class.php:630
msgid "Unknown error setting this users homepage"
msgstr ""

#: server/lib/pages/user.class.php:634
msgid "Homepage has been set"
msgstr ""

#: server/lib/pages/user.class.php:663
#: server/theme/default/html/user_page.php:39
msgid "My Applications"
msgstr ""

#: server/lib/pages/user.class.php:678
#: server/theme/default/html/user_form_change_password.php:33
msgid "Old Password"
msgstr ""

#: server/lib/pages/user.class.php:679
#: server/theme/default/html/user_form_change_password.php:37
#: server/theme/default/html/user_form_set_password.php:33
msgid "New Password"
msgstr ""

#: server/lib/pages/user.class.php:680
#: server/theme/default/html/user_form_change_password.php:41
#: server/theme/default/html/user_form_set_password.php:37
msgid "Retype New Password"
msgstr ""

#: server/lib/pages/user.class.php:690 server/theme/default/html/header.php:70
msgid "Change Password"
msgstr ""

#: server/lib/pages/user.class.php:719 server/lib/pages/user.class.php:775
msgid "Password Changed"
msgstr ""

#: server/lib/pages/user.class.php:767
msgid "Trying to change the password for another user denied"
msgstr ""

#: server/lib/service/xmdssoap.class.php:1137
#, php-format
msgid "Recovery for Display %s"
msgstr ""

#: server/lib/service/xmdssoap.class.php:1138
#, php-format
msgid "Display %s with ID %d is now back online."
msgstr ""

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

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

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

#: server/locale/dbtranslate.php:30
#: server/theme/default/html/homepage_mediamanager.php:46
#: server/theme/default/html/homepage_mediamanager_grid.php:40
#: server/theme/default/html/stats_page.php:55
#: server/theme/default/html/stats_page_grid.php:65
#: server/theme/default/html/stats_page_grid.php:94
msgid "Media"
msgstr ""

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

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

#: server/locale/dbtranslate.php:35
#: server/theme/default/html/display_page_grid.php:45
msgid "License"
msgstr ""

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

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

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

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

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

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

#: server/locale/dbtranslate.php:49
#: server/theme/default/html/library_form_media_add.php:111
msgid "Error"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: server/locale/dbtranslate.php:74
msgid "MAINTENANCE_ENABLED"
msgstr ""

#: server/locale/dbtranslate.php:75
msgid "MAINTENANCE_EMAIL_ALERTS"
msgstr ""

#: server/locale/dbtranslate.php:76
msgid "MAINTENANCE_LOG_MAXAGE"
msgstr ""

#: server/locale/dbtranslate.php:77
msgid "MAINTENANCE_STAT_MAXAGE"
msgstr ""

#: server/locale/dbtranslate.php:78
msgid "MAINTENANCE_ALERT_TOUT"
msgstr ""

#: server/locale/dbtranslate.php:79
msgid "MAINTENANCE_KEY"
msgstr ""

#: server/locale/dbtranslate.php:80
msgid "MAINTENANCE_ALWAYS_ALERT"
msgstr ""

#: server/locale/dbtranslate.php:81
msgid "mail_from"
msgstr ""

#: server/locale/dbtranslate.php:82
msgid "mail_to"
msgstr ""

#: server/locale/dbtranslate.php:83
msgid "SHOW_DISPLAY_AS_VNCLINK"
msgstr ""

#: server/locale/dbtranslate.php:84
msgid "SHOW_DISPLAY_AS_VNC_TGT"
msgstr ""

#: server/locale/dbtranslate.php:85
msgid "REGION_OPTIONS_COLOURING"
msgstr ""

#: server/locale/dbtranslate.php:86
msgid "LAYOUT_COPY_MEDIA_CHECKB"
msgstr ""

#: server/locale/dbtranslate.php:87
msgid "LIBRARY_MEDIA_UPDATEINALL_CHECKB"
msgstr ""

#: server/locale/dbtranslate.php:88
msgid "USER_PASSWORD_POLICY"
msgstr ""

#: server/locale/dbtranslate.php:89
msgid "USER_PASSWORD_ERROR"
msgstr ""

#: server/locale/dbtranslate.php:90
msgid "MODULE_CONFIG_LOCKED_CHECKB"
msgstr ""

#: server/locale/dbtranslate.php:91
msgid "LIBRARY_SIZE_LIMIT_KB"
msgstr ""

#: server/locale/dbtranslate.php:92
msgid "MONTHLY_XMDS_TRANSFER_LIMIT_KB"
msgstr ""

#: server/locale/dbtranslate.php:93
msgid "DEFAULT_LANGUAGE"
msgstr ""

#: server/locale/dbtranslate.php:94
msgid "TRANSITION_CONFIG_LOCKED_CHECKB"
msgstr ""

#: server/locale/dbtranslate.php:95
msgid "GLOBAL_THEME_NAME"
msgstr ""

#: server/locale/dbtranslate.php:96
msgid "DEFAULT_LAT"
msgstr ""

#: server/locale/dbtranslate.php:97
msgid "DEFAULT_LONG"
msgstr ""

#: server/locale/dbtranslate.php:98
msgid "SCHEDULE_WITH_VIEW_PERMISSION"
msgstr ""

#: server/locale/dbtranslate.php:99
msgid "SETTING_IMPORT_ENABLED"
msgstr ""

#: server/locale/dbtranslate.php:100
msgid "SETTING_LIBRARY_TIDY_ENABLED"
msgstr ""

#: server/locale/dbtranslate.php:101
msgid "EMBEDDED_STATUS_WIDGET"
msgstr ""

#: server/locale/dbtranslate.php:102
msgid "PROXY_HOST"
msgstr ""

#: server/locale/dbtranslate.php:103
msgid "PROXY_PORT"
msgstr ""

#: server/locale/dbtranslate.php:104
msgid "PROXY_AUTH"
msgstr ""

#: server/locale/dbtranslate.php:107
msgid "Fade In"
msgstr ""

#: server/locale/dbtranslate.php:108
msgid "Fade Out"
msgstr ""

#: server/locale/dbtranslate.php:109
msgid "Fly"
msgstr ""

#: server/locale/dbtranslate.php:112
msgid "String"
msgstr ""

#: server/locale/dbtranslate.php:113
msgid "Number"
msgstr ""

#: server/locale/dbtranslate.php:114
#: server/theme/default/html/log_form_display_last100.php:30
#: server/theme/default/html/log_page_grid.php:30
msgid "Date"
msgstr ""

#: server/locale/dbtranslate.php:116
msgid "Value"
msgstr ""

#: server/locale/dbtranslate.php:117
#: server/theme/default/html/dataset_form_column_add.php:62
#: server/theme/default/html/dataset_form_column_edit.php:62
msgid "Formula"
msgstr ""

#: server/modules/counter.module.php:69
msgid "Add Counter"
msgstr ""

#: server/modules/counter.module.php:135
msgid "Edit Counter"
msgstr ""

#: server/modules/datasetview.module.php:31
msgid "DataSet View"
msgstr ""

#: server/modules/datasetview.module.php:60
msgid "Add DataSet View"
msgstr ""

#: server/modules/datasetview.module.php:180
#, php-format
msgid "Edit DataSet View for DataSet %s"
msgstr ""

#: server/modules/datasetview.module.php:217
#: server/modules/ticker.module.php:259
msgid "Please select a DataSet"
msgstr ""

#: server/modules/datasetview.module.php:226
#: server/modules/ticker.module.php:263
msgid "You do not have permission to use that dataset"
msgstr ""

#: server/modules/datasetview.module.php:315
#: server/modules/ticker.module.php:370
msgid "Limits must be numbers"
msgstr ""

#: server/modules/datasetview.module.php:318
#: server/modules/ticker.module.php:373
msgid "Limits cannot be lower than 0"
msgstr ""

#: server/modules/datasetview.module.php:322
#: server/modules/ticker.module.php:377
msgid "Upper limit must be higher than lower limit"
msgstr ""

#: server/modules/datasetview.module.php:325
#: server/modules/ticker.module.php:399
msgid "Update Interval must be greater than or equal to 0"
msgstr ""

#: server/modules/datasetview.module.php:329
#: server/modules/ticker.module.php:367
msgid "Cannot user ordering criteria in the Filter Clause"
msgstr ""

#: server/modules/flash.module.php:31
msgid "Flash"
msgstr ""

#: server/modules/genericfile.module.php:31
msgid "Generic File"
msgstr ""

#: server/modules/image.module.php:31
msgid "Image"
msgstr ""

#: server/modules/localvideo.module.php:49
#: server/modules/localvideo.module.php:113
msgid "Video Path"
msgstr ""

#: server/modules/localvideo.module.php:79
msgid "Add Local Video"
msgstr ""

#: server/modules/localvideo.module.php:144
msgid "Edit Local Video"
msgstr ""

#: server/modules/localvideo.module.php:173
#: server/modules/localvideo.module.php:240
msgid ""
"Please enter a full path name giving the location of this video on the client"
msgstr ""

#: server/modules/microblog.module.php:27
msgid "Microblog"
msgstr ""

#: server/modules/microblog.module.php:55
msgid "Add Microblog"
msgstr ""

#: server/modules/microblog.module.php:56
#: server/modules/microblog.module.php:137
msgid "modal-big"
msgstr ""

#: server/modules/microblog.module.php:136
msgid "Edit MicroBlog"
msgstr ""

#: server/modules/module_user_general.php:116
#: server/modules/module_user_general.php:128
#: server/modules/module_user_general.php:139
msgid "Username or Password incorrect"
msgstr ""

#: server/modules/module_user_general.php:157
msgid "Can not write last accessed info."
msgstr ""

#: server/modules/module_user_general.php:314
msgid "User does not have a group and Xibo is unable to add one."
msgstr ""

#: server/modules/module_user_general.php:371
msgid "User does not have a group and we are unable to add one."
msgstr ""

#: server/modules/module_user_general.php:456
msgid "Unknown User"
msgstr ""

#: server/modules/module_user_general.php:483
msgid "Requested page does not exist"
msgstr ""

#: server/modules/powerpoint.module.php:31
msgid "PowerPoint"
msgstr ""

#: server/modules/shellcommand.module.php:62
msgid "Add Shell Command"
msgstr ""

#: server/modules/shellcommand.module.php:109
msgid "Edit Shell Command"
msgstr ""

#: server/modules/shellcommand.module.php:220
#: server/theme/default/html/media_form_shellcommand_add.php:30
#: server/theme/default/html/media_form_shellcommand_edit.php:30
msgid "Windows Command"
msgstr ""

#: server/modules/shellcommand.module.php:221
#: server/theme/default/html/media_form_shellcommand_add.php:36
#: server/theme/default/html/media_form_shellcommand_edit.php:36
msgid "Linux Command"
msgstr ""

#: server/modules/text.module.php:53 server/modules/text.module.php:131
#: server/modules/ticker.module.php:133 server/modules/webpage.module.php:52
#: server/modules/webpage.module.php:109
msgid "Left"
msgstr ""

#: server/modules/text.module.php:54 server/modules/text.module.php:132
#: server/modules/ticker.module.php:134 server/modules/webpage.module.php:53
#: server/modules/webpage.module.php:110
msgid "Right"
msgstr ""

#: server/modules/text.module.php:55 server/modules/text.module.php:133
#: server/modules/ticker.module.php:135 server/modules/webpage.module.php:54
#: server/modules/webpage.module.php:111
msgid "Up"
msgstr ""

#: server/modules/text.module.php:56 server/modules/text.module.php:134
#: server/modules/ticker.module.php:136 server/modules/webpage.module.php:55
#: server/modules/webpage.module.php:112
msgid "Down"
msgstr ""

#: server/modules/text.module.php:72
msgid "Add Text"
msgstr ""

#: server/modules/text.module.php:147
#: server/theme/default/html/media_form_text_add.php:53
#: server/theme/default/html/media_form_text_edit.php:53
#: server/theme/default/html/media_form_ticker_dataset_edit.php:103
#: server/theme/default/html/media_form_ticker_edit.php:69
msgid "Fit text to region"
msgstr ""

#: server/modules/text.module.php:153
msgid "Edit Text"
msgstr ""

#: server/modules/ticker.module.php:62
msgid "Add New Ticker"
msgstr ""

#: server/modules/ticker.module.php:137
msgid "Single"
msgstr ""

#: server/modules/ticker.module.php:143
msgid "Start of the Feed"
msgstr ""

#: server/modules/ticker.module.php:144
msgid "End of the Feed"
msgstr ""

#: server/modules/ticker.module.php:200
msgid "Edit Ticker"
msgstr ""

#: server/modules/ticker.module.php:238
msgid "Please enter a duration"
msgstr ""

#: server/modules/ticker.module.php:250 server/modules/ticker.module.php:362
msgid "Please enter a Link for this Ticker"
msgstr ""

#: server/modules/ticker.module.php:272
msgid "Unknown Source Type"
msgstr ""

#: server/modules/ticker.module.php:392
msgid "The value in Number of Items must be numeric."
msgstr ""

#: server/modules/ticker.module.php:459
#: server/theme/default/html/login_page.php:87
msgid "Source"
msgstr ""

#: server/modules/video.module.php:31
msgid "Video"
msgstr ""

#: server/modules/webpage.module.php:74
msgid "Add Webpage"
msgstr ""

#: server/modules/webpage.module.php:141
msgid "Edit Webpage"
msgstr ""

#: server/theme/default/html/applications_form_view_log.php:37
msgid "Timestamp"
msgstr ""

#: server/theme/default/html/applications_form_view_log.php:38
msgid "Notes"
msgstr ""

#: server/theme/default/html/applications_form_view_log.php:39
msgid "Header"
msgstr ""

#: server/theme/default/html/applications_page.php:38
msgid "View a log of application activity"
msgstr ""

#: server/theme/default/html/applications_page.php:38
msgid "oAuth Log"
msgstr ""

#: server/theme/default/html/applications_page.php:39
msgid "Add an Application"
msgstr ""

#: server/theme/default/html/applications_page.php:39
msgid "Add Application"
msgstr ""

#: server/theme/default/html/applications_page_grid.php:35
msgid "Title"
msgstr ""

#: server/theme/default/html/applications_page_grid.php:36
#: server/theme/default/html/dataset_form_add.php:39
#: server/theme/default/html/dataset_form_edit.php:39
#: server/theme/default/html/dataset_page_grid.php:37
#: server/theme/default/html/displaygroup_form_add.php:35
#: server/theme/default/html/displaygroup_form_edit.php:37
#: server/theme/default/html/displaygroup_page_grid.php:36
#: server/theme/default/html/layout_form_add.php:38
#: server/theme/default/html/layout_form_edit.php:43
#: server/theme/default/html/layout_page_grid.php:39
#: server/theme/default/html/module_page_grid.php:41
#: server/theme/default/html/template_form_add.php:38
msgid "Description"
msgstr ""

#: server/theme/default/html/applications_page_grid.php:37
#: server/theme/default/html/user_form_add.php:45
#: server/theme/default/html/user_form_edit.php:41
#: server/theme/default/html/user_form_set_homepage.php:33
#: server/theme/default/html/user_page_grid.php:37
msgid "Homepage"
msgstr ""

#: server/theme/default/html/applications_page_grid.php:38
msgid "Key"
msgstr ""

#: server/theme/default/html/applications_page_grid.php:39
msgid "Secret"
msgstr ""

#: server/theme/default/html/application_form_register.php:31
msgid "About you"
msgstr ""

#: server/theme/default/html/application_form_register.php:34
msgid "Full Name"
msgstr ""

#: server/theme/default/html/application_form_register.php:39
msgid "Email Address"
msgstr ""

#: server/theme/default/html/application_form_register.php:45
msgid "Details"
msgstr ""

#: server/theme/default/html/application_form_register.php:48
msgid "The URL of your application homepage"
msgstr ""

#: server/theme/default/html/application_form_register.php:53
msgid "The call back URL for requests"
msgstr ""

#: server/theme/default/html/application_form_user_applications.php:38
#: server/theme/default/html/user_form_my_applications.php:37
msgid "Application"
msgstr ""

#: server/theme/default/html/application_form_user_applications.php:39
#: server/theme/default/html/module_form_edit.php:43
#: server/theme/default/html/module_page_grid.php:47
#: server/theme/default/html/user_form_my_applications.php:38
msgid "Enabled"
msgstr ""

#: server/theme/default/html/application_form_user_applications.php:40
#: server/theme/default/html/layout_page_grid.php:42
#: server/theme/default/html/user_form_my_applications.php:39
msgid "Status"
msgstr ""

#: server/theme/default/html/campaign_form_add.php:31
#: server/theme/default/html/campaign_form_edit.php:32
msgid "The Name for this Campaign"
msgstr ""

#: server/theme/default/html/campaign_form_delete.php:30
#: server/theme/default/html/dataset_form_column_delete.php:30
#: server/theme/default/html/dataset_form_delete.php:30
#: server/theme/default/html/displaygroup_form_delete.php:30
#: server/theme/default/html/help_form_delete.php:30
#: server/theme/default/html/resolution_form_delete.php:30
#: server/theme/default/html/template_form_delete.php:30
#: server/theme/default/html/usergroup_form_delete.php:30
#: server/theme/default/html/user_form_delete.php:30
msgid "Are you sure you want to delete?"
msgstr ""

#: server/theme/default/html/campaign_page.php:37
#: server/theme/default/html/layout_page.php:45
msgid "Add a new Layout and jump to the layout designer."
msgstr ""

#: server/theme/default/html/campaign_page_grid.php:36
msgid "# Layouts"
msgstr ""

#: server/theme/default/html/dataset_dataentry_page.php:36
msgid "Add more rows to the end of this DataSet"
msgstr ""

#: server/theme/default/html/dataset_dataentry_page.php:36
msgid "More Rows"
msgstr ""

#: server/theme/default/html/dataset_form_add.php:33
#: server/theme/default/html/dataset_form_edit.php:33
msgid "A name for this DataSet"
msgstr ""

#: server/theme/default/html/dataset_form_add.php:39
#: server/theme/default/html/dataset_form_edit.php:39
msgid "A description for this DataSet"
msgstr ""

#: server/theme/default/html/dataset_form_column_add.php:32
#: server/theme/default/html/dataset_form_column_edit.php:32
msgid "The heading for this Column"
msgstr ""

#: server/theme/default/html/dataset_form_column_add.php:32
#: server/theme/default/html/dataset_form_column_edit.php:32
#: server/theme/default/html/dataset_form_column_grid.php:36
msgid "Heading"
msgstr ""

#: server/theme/default/html/dataset_form_column_add.php:38
#: server/theme/default/html/dataset_form_column_edit.php:38
msgid "Whether this column is a value or a formula"
msgstr ""

#: server/theme/default/html/dataset_form_column_add.php:38
#: server/theme/default/html/dataset_form_column_edit.php:38
#: server/theme/default/html/dataset_form_column_grid.php:40
msgid "Column Type"
msgstr ""

#: server/theme/default/html/dataset_form_column_add.php:44
#: server/theme/default/html/dataset_form_column_edit.php:44
msgid "The DataType of the Intended Data"
msgstr ""

#: server/theme/default/html/dataset_form_column_add.php:44
#: server/theme/default/html/dataset_form_column_edit.php:44
#: server/theme/default/html/dataset_form_column_grid.php:39
msgid "Data Type"
msgstr ""

#: server/theme/default/html/dataset_form_column_add.php:50
#: server/theme/default/html/dataset_form_column_edit.php:50
msgid "A comma seperated list of items to present in a combo box"
msgstr ""

#: server/theme/default/html/dataset_form_column_add.php:50
#: server/theme/default/html/dataset_form_column_edit.php:50
#: server/theme/default/html/dataset_form_column_grid.php:37
msgid "List Content"
msgstr ""

#: server/theme/default/html/dataset_form_column_add.php:56
#: server/theme/default/html/dataset_form_column_edit.php:56
msgid "The order this column should be displayed in when entering data"
msgstr ""

#: server/theme/default/html/dataset_form_column_add.php:56
#: server/theme/default/html/dataset_form_column_edit.php:56
#: server/theme/default/html/dataset_form_column_grid.php:38
msgid "Column Order"
msgstr ""

#: server/theme/default/html/dataset_form_column_add.php:62
#: server/theme/default/html/dataset_form_column_edit.php:62
msgid "A formular to use as a calculation for formula column types"
msgstr ""

#: server/theme/default/html/dataset_form_csv_import.php:30
#: server/theme/default/html/library_form_media_edit.php:30
msgid "Select the file to upload"
msgstr ""

#: server/theme/default/html/dataset_form_csv_import.php:30
#: server/theme/default/html/library_form_media_edit.php:30
msgid "File"
msgstr ""

#: server/theme/default/html/dataset_form_csv_import.php:38
#: server/theme/default/html/library_form_media_edit.php:38
msgid "You may fill in the form while your file is uploading."
msgstr ""

#: server/theme/default/html/dataset_form_csv_import.php:41
msgid ""
"Please choose a column number from the source CSV file to map to each "
"DataSet Column. If no mapping exists, leave blank."
msgstr ""

#: server/theme/default/html/dataset_form_csv_import.php:47
msgid "Overwrite existing data"
msgstr ""

#: server/theme/default/html/dataset_form_csv_import.php:47
msgid "Overwrite existing data?"
msgstr ""

#: server/theme/default/html/dataset_form_csv_import.php:54
msgid "Ignore the first row? Useful if the CSV has headings."
msgstr ""

#: server/theme/default/html/dataset_form_csv_import.php:54
msgid "Ignore first row?"
msgstr ""

#: server/theme/default/html/dataset_page.php:36
msgid "Add a new DataSet"
msgstr ""

#: server/theme/default/html/dataset_page_grid.php:38
#: server/theme/default/html/layout_page.php:55
#: server/theme/default/html/layout_page_grid.php:40
#: server/theme/default/html/library_page.php:51
#: server/theme/default/html/library_page_grid.php:46
#: server/theme/default/html/template_page_grid.php:38
msgid "Owner"
msgstr ""

#: server/theme/default/html/displaygroup_form_add.php:31
#: server/theme/default/html/displaygroup_form_edit.php:33
msgid "The Name for this Group"
msgstr ""

#: server/theme/default/html/displaygroup_form_add.php:35
#: server/theme/default/html/displaygroup_form_edit.php:37
msgid "A short description of this Group"
msgstr ""

#: server/theme/default/html/displaygroup_form_display_assign.php:31
#: server/theme/default/html/display_form_group_assign.php:31
#: server/theme/default/html/usergroup_form_user_assign.php:31
msgid "Drag or double click to move items between lists"
msgstr ""

#: server/theme/default/html/displaygroup_form_display_assign.php:33
msgid "Assigned Displays"
msgstr ""

#: server/theme/default/html/displaygroup_form_display_assign.php:41
msgid "Available Displays"
msgstr ""

#: server/theme/default/html/displaygroup_page.php:37
msgid "Add a new Display Group"
msgstr ""

#: server/theme/default/html/display_form_delete.php:30
msgid "Are you sure you want to delete this display? This cannot be undone."
msgstr ""

#: server/theme/default/html/display_form_edit.php:34
msgid "The Name of the Display - (1 - 50 characters)."
msgstr ""

#: server/theme/default/html/display_form_edit.php:40
msgid "Display's Hardware Key"
msgstr ""

#: server/theme/default/html/display_form_edit.php:46
msgid "Use one of the available licenses for this display?"
msgstr ""

#: server/theme/default/html/display_form_edit.php:46
msgid "Licence Display?"
msgstr ""

#: server/theme/default/html/display_form_edit.php:52
msgid "Whether to always put the default layout into the cycle."
msgstr ""

#: server/theme/default/html/display_form_edit.php:52
#: server/theme/default/html/display_page_grid.php:48
msgid "Interleave Default"
msgstr ""

#: server/theme/default/html/display_form_edit.php:58
msgid "The Default Layout to Display where there is no other content."
msgstr ""

#: server/theme/default/html/display_form_edit.php:64
msgid ""
"Collect auditing from this client. Should only be used if there is a problem "
"with the display."
msgstr ""

#: server/theme/default/html/display_form_edit.php:64
msgid "Auditing"
msgstr ""

#: server/theme/default/html/display_form_edit.php:70
msgid ""
"Do you want to be notified by email if there is a problem with this display?"
msgstr ""

#: server/theme/default/html/display_form_edit.php:76
msgid ""
"How long in minutes after the display last connected to the webservice "
"should we send an alert. Set this value higher than the collection interval "
"on the client. Set to 0 to use global default."
msgstr ""

#: server/theme/default/html/display_form_edit.php:76
msgid "Alert Timeout"
msgstr ""

#: server/theme/default/html/display_form_edit.php:85
msgid ""
"Wake on Lan requires the correct network configuration to route the magic "
"packet to the display PC"
msgstr ""

#: server/theme/default/html/display_form_edit.php:85
msgid "Enable Wake on LAN"
msgstr ""

#: server/theme/default/html/display_form_edit.php:91
msgid "The IP address of the remote host's broadcast address (or gateway)"
msgstr ""

#: server/theme/default/html/display_form_edit.php:91
msgid "BroadCast Address"
msgstr ""

#: server/theme/default/html/display_form_edit.php:97
msgid ""
"Enter a hexidecimal password of a SecureOn enabled Network Interface Card "
"(NIC) of the remote host. Enter a value in this pattern: 'xx-xx-xx-xx-xx-"
"xx'. Leave the following field empty, if SecureOn is not used (for example, "
"because the NIC of the remote host does not support SecureOn)."
msgstr ""

#: server/theme/default/html/display_form_edit.php:97
msgid "Wake on LAN SecureOn"
msgstr ""

#: server/theme/default/html/display_form_edit.php:103
msgid ""
"The time this display should receive the WOL command, using the 24hr clock - "
"e.g. 19:00. Maintenance must be enabled."
msgstr ""

#: server/theme/default/html/display_form_edit.php:103
msgid "Wake on LAN Time"
msgstr ""

#: server/theme/default/html/display_form_edit.php:109
msgid ""
"Enter a number within the range of 0 to 32 in the following field. Leave the "
"following field empty, if no subnet mask should be used (CIDR = 0). If the "
"remote host's broadcast address is unkown: Enter the host name or IP address "
"of the remote host in Broad Cast Address and enter the CIDR subnet mask of "
"the remote host in this field."
msgstr ""

#: server/theme/default/html/display_form_edit.php:109
msgid "Wake on LAN CIDR"
msgstr ""

#: server/theme/default/html/display_form_edit.php:115
msgid "The Latitude of this display"
msgstr ""

#: server/theme/default/html/display_form_edit.php:115
msgid "Latitude"
msgstr ""

#: server/theme/default/html/display_form_edit.php:121
msgid "The Longitude of this Display"
msgstr ""

#: server/theme/default/html/display_form_edit.php:121
msgid "Longitude"
msgstr ""

#: server/theme/default/html/display_form_group_assign.php:33
msgid "Assigned Groups"
msgstr ""

#: server/theme/default/html/display_form_group_assign.php:41
msgid "Available Groups"
msgstr ""

#: server/theme/default/html/display_form_mediainventory.php:35
msgid "Id"
msgstr ""

#: server/theme/default/html/display_form_mediainventory.php:36
msgid "Complete"
msgstr ""

#: server/theme/default/html/display_form_mediainventory.php:37
msgid "Last Checked"
msgstr ""

#: server/theme/default/html/display_form_mediainventory.php:38
msgid "MD5"
msgstr ""

#: server/theme/default/html/display_form_version_instructions.php:32
msgid "Installer File"
msgstr ""

#: server/theme/default/html/display_form_version_instructions.php:41
msgid "Version"
msgstr ""

#: server/theme/default/html/display_form_version_instructions.php:42
msgid "Version Code"
msgstr ""

#: server/theme/default/html/display_form_wakeonlan.php:30
msgid "Are you sure you want to send a Wake On Lan message to this display?"
msgstr ""

#: server/theme/default/html/display_page.php:37
#: server/theme/default/html/homepage_mediamanager.php:32
#: server/theme/default/html/layout_page.php:44
#: server/theme/default/html/library_page.php:37
#: server/theme/default/html/log_page.php:38
#: server/theme/default/html/sessions_page.php:36
#: server/theme/default/html/template_page.php:36
#: server/theme/default/html/usergroup_page.php:38
#: server/theme/default/html/user_page.php:38
msgid "Open the filter form"
msgstr ""

#: server/theme/default/html/display_page.php:37
#: server/theme/default/html/homepage_mediamanager.php:32
#: server/theme/default/html/layout_page.php:44
#: server/theme/default/html/library_page.php:37
#: server/theme/default/html/log_page.php:38
#: server/theme/default/html/media_form_datasetview_edit.php:72
#: server/theme/default/html/media_form_ticker_dataset_edit.php:71
#: server/theme/default/html/sessions_page.php:36
#: server/theme/default/html/template_page.php:36
#: server/theme/default/html/usergroup_page.php:38
#: server/theme/default/html/user_page.php:38
msgid "Filter"
msgstr ""

#: server/theme/default/html/display_page.php:52
#: server/theme/default/html/layout_page.php:67
#: server/theme/default/html/library_page.php:71
msgid "Keep Open"
msgstr ""

#: server/theme/default/html/display_page_grid.php:44
#: server/theme/default/html/layout_page_grid.php:37
#: server/theme/default/html/library_page_grid.php:41
msgid "ID"
msgstr ""

#: server/theme/default/html/display_page_grid.php:49
msgid "Email Alert"
msgstr ""

#: server/theme/default/html/display_page_grid.php:50
#: server/theme/default/html/status_dashboard.php:46
msgid "Logged In"
msgstr ""

#: server/theme/default/html/display_page_grid.php:51
#: server/theme/default/html/sessions_page_grid.php:29
msgid "Last Accessed"
msgstr ""

#: server/theme/default/html/display_page_grid.php:52
#: server/theme/default/html/sessions_page_grid.php:33
msgid "IP Address"
msgstr ""

#: server/theme/default/html/display_page_grid.php:53
msgid "Mac Address"
msgstr ""

#: server/theme/default/html/fault_page.php:36
msgid "Report a fault with Xibo"
msgstr ""

#: server/theme/default/html/fault_page.php:37
msgid ""
"Before reporting a fault it would be appreciated if you follow the below "
"steps."
msgstr ""

#: server/theme/default/html/fault_page.php:41
msgid "Check that the Environment passes all the Xibo Environment checks."
msgstr ""

#: server/theme/default/html/fault_page.php:45
msgid "Turn ON full auditing and debugging."
msgstr ""

#: server/theme/default/html/fault_page.php:48
msgid "Turn ON Debugging"
msgstr ""

#: server/theme/default/html/fault_page.php:52
msgid "Recreate the Problem in a new window."
msgstr ""

#: server/theme/default/html/fault_page.php:55
msgid "Automatically collect and export relevant information into a text file."
msgstr ""

#: server/theme/default/html/fault_page.php:55
msgid "Please save this file to your PC."
msgstr ""

#: server/theme/default/html/fault_page.php:56
msgid "Collect and Save Data"
msgstr ""

#: server/theme/default/html/fault_page.php:59
msgid "Turn full auditing and debugging OFF."
msgstr ""

#: server/theme/default/html/fault_page.php:62
msgid "Turn OFF Debugging"
msgstr ""

#: server/theme/default/html/fault_page.php:66
msgid ""
"Click on the below link to open the bug report page for this Xibo release."
msgstr ""

#: server/theme/default/html/fault_page.php:66
msgid "Describe the problem and upload the file you obtained earlier."
msgstr ""

#: server/theme/default/html/fault_page.php:67
msgid "Ask a question in Launchpad"
msgstr ""

#: server/theme/default/html/fault_page.php:75
msgid ""
"We will do our best to use the information collected above to solve your "
"issue."
msgstr ""

#: server/theme/default/html/fault_page.php:76
msgid ""
"However sometimes this will not be enough and you will be asked to put your "
"Xibo installation into \"Test\" mode."
msgstr ""

#: server/theme/default/html/fault_page.php:80
msgid "Switch to Test Mode."
msgstr ""

#: server/theme/default/html/fault_page.php:83
msgid "Switch to Test Mode"
msgstr ""

#: server/theme/default/html/fault_page.php:87
msgid "Recreate the Problem in a new window and Capture a screenshot."
msgstr ""

#: server/theme/default/html/fault_page.php:87
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/theme/default/html/fault_page.php:90
msgid "Switch to Production Mode."
msgstr ""

#: server/theme/default/html/fault_page.php:93
msgid "Switch to Production Mode"
msgstr ""

#: server/theme/default/html/header.php:55
msgid "Dashboard"
msgstr ""

#: server/theme/default/html/header.php:63
msgid "Click to show more time information"
msgstr ""

#: server/theme/default/html/header.php:66
msgid "Preferences"
msgstr ""

#: server/theme/default/html/header.php:71
msgid "About the CMS"
msgstr ""

#: server/theme/default/html/help_form_add.php:31
#: server/theme/default/html/help_form_edit.php:32
msgid "The Topic for this Help Link"
msgstr ""

#: server/theme/default/html/help_form_add.php:31
#: server/theme/default/html/help_form_edit.php:32
#: server/theme/default/html/help_page_grid.php:36
msgid "Topic"
msgstr ""

#: server/theme/default/html/help_form_add.php:35
#: server/theme/default/html/help_form_edit.php:36
msgid "The Category for this Help Link"
msgstr ""

#: server/theme/default/html/help_form_add.php:35
#: server/theme/default/html/help_form_edit.php:36
#: server/theme/default/html/help_page_grid.php:37
msgid "Category"
msgstr ""

#: server/theme/default/html/help_form_add.php:39
#: server/theme/default/html/help_form_edit.php:40
msgid "The Link to open for this help topic and category"
msgstr ""

#: server/theme/default/html/help_form_add.php:39
#: server/theme/default/html/help_form_edit.php:40
#: server/theme/default/html/help_page_grid.php:38
#: server/theme/default/html/media_form_webpage_add.php:30
#: server/theme/default/html/media_form_webpage_edit.php:30
msgid "Link"
msgstr ""

#: server/theme/default/html/help_page.php:36
msgid "Add a new Help page"
msgstr ""

#: server/theme/default/html/homepage_mediamanager.php:48
#: server/theme/default/html/log_page.php:53
#: server/theme/default/html/sessions_page.php:51
#: server/theme/default/html/template_page.php:52
#: server/theme/default/html/usergroup_page.php:52
#: server/theme/default/html/user_page.php:55
msgid "Keep filter open"
msgstr ""

#: server/theme/default/html/homepage_mediamanager.php:52
#: server/theme/default/html/homepage_mediamanager_grid.php:39
msgid "Region"
msgstr ""

#: server/theme/default/html/homepage_mediamanager_grid.php:42
msgid "Sequence"
msgstr ""

#: server/theme/default/html/layout_designer.php:44
msgid "Add Region"
msgstr ""

#: server/theme/default/html/layout_designer.php:45
msgid "Background"
msgstr ""

#: server/theme/default/html/layout_designer.php:46
msgid "Edit the Layout Properties"
msgstr ""

#: server/theme/default/html/layout_designer.php:46
msgid "Properties"
msgstr ""

#: server/theme/default/html/layout_designer.php:50
msgid "Save Template"
msgstr ""

#: server/theme/default/html/layout_designer.php:55
msgid "Layout Design"
msgstr ""

#: server/theme/default/html/layout_designer.php:71
msgid "Layout Jump List"
msgstr ""

#: server/theme/default/html/layout_designer_form_timeline.php:28
#: server/theme/default/html/library_page.php:38
msgid "Add Media"
msgstr ""

#: server/theme/default/html/layout_form_add.php:32
#: server/theme/default/html/layout_form_edit.php:37
msgid "The Name of the Layout - (1 - 50 characters)"
msgstr ""

#: server/theme/default/html/layout_form_add.php:38
#: server/theme/default/html/layout_form_edit.php:43
msgid "An optional description of the Layout. (1 - 250 characters)"
msgstr ""

#: server/theme/default/html/layout_form_add.php:44
#: server/theme/default/html/layout_form_edit.php:49
msgid ""
"Tags for this layout - used when searching for it. Space delimited. (1 - 250 "
"characters)"
msgstr ""

#: server/theme/default/html/layout_form_add.php:44
#: server/theme/default/html/layout_form_edit.php:49
#: server/theme/default/html/layout_page.php:59
#: server/theme/default/html/template_form_add.php:34
#: server/theme/default/html/template_page.php:56
#: server/theme/default/html/template_page_grid.php:37
msgid "Tags"
msgstr ""

#: server/theme/default/html/layout_form_add.php:50
msgid "Template"
msgstr ""

#: server/theme/default/html/layout_form_background.php:39
msgid "Use the color picker to select the background color"
msgstr ""

#: server/theme/default/html/layout_form_background.php:39
msgid "Background Color"
msgstr ""

#: server/theme/default/html/layout_form_background.php:43
msgid "Select the background image from the library"
msgstr ""

#: server/theme/default/html/layout_form_background.php:43
msgid "Background Image"
msgstr ""

#: server/theme/default/html/layout_form_background.php:45
msgid "Background thumbnail"
msgstr ""

#: server/theme/default/html/layout_form_background.php:48
msgid "Pick the resolution"
msgstr ""

#: server/theme/default/html/layout_form_background.php:48
#: server/theme/default/html/resolution_form_add.php:32
#: server/theme/default/html/resolution_form_edit.php:37
#: server/theme/default/html/resolution_page_grid.php:36
msgid "Resolution"
msgstr ""

#: server/theme/default/html/layout_form_copy.php:34
msgid "The name for the new layout"
msgstr ""

#: server/theme/default/html/layout_form_copy.php:34
msgid "New Name"
msgstr ""

#: server/theme/default/html/layout_form_copy.php:42
msgid "Make new copies of all media on this layout?"
msgstr ""

#: server/theme/default/html/layout_form_delete.php:30
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/theme/default/html/layout_form_edit.php:55
msgid "Retire this layout or not? It will no longer be visible in lists"
msgstr ""

#: server/theme/default/html/layout_form_edit.php:55
#: server/theme/default/html/layout_page.php:62
#: server/theme/default/html/library_page.php:61
#: server/theme/default/html/user_form_edit.php:49
msgid "Retired"
msgstr ""

#: server/theme/default/html/layout_form_retire.php:30
msgid "Sorry unable to delete this layout."
msgstr ""

#: server/theme/default/html/layout_form_retire.php:31
msgid "Would you like to retire this layout instead?"
msgstr ""

#: server/theme/default/html/library_form_media_add.php:36
msgid "Add files"
msgstr ""

#: server/theme/default/html/library_form_media_add.php:41
msgid "Start upload"
msgstr ""

#: server/theme/default/html/library_form_media_add.php:45
msgid "Cancel upload"
msgstr ""

#: server/theme/default/html/library_form_media_add.php:71
#: server/theme/default/html/library_form_media_edit.php:43
msgid "The Name of this item - Leave blank to use the file name"
msgstr ""

#: server/theme/default/html/library_form_media_add.php:77
#: server/theme/default/html/library_form_media_edit.php:49
msgid ""
"The duration in seconds this image should be displayed (may be overridden on "
"each layout)"
msgstr ""

#: server/theme/default/html/library_form_media_add.php:121
msgid "Set Background"
msgstr ""

#: server/theme/default/html/library_form_media_edit.php:57
msgid ""
"Update this media in all layouts it is assigned to. Note: It will only be "
"replaced in layouts you have permission to edit."
msgstr ""

#: server/theme/default/html/library_page.php:38
msgid "Add a new media item to the library"
msgstr ""

#: server/theme/default/html/library_page.php:66
msgid "Duration in Seconds"
msgstr ""

#: server/theme/default/html/library_page_grid.php:45
msgid "Size"
msgstr ""

#: server/theme/default/html/library_page_grid.php:48
msgid "Revised"
msgstr ""

#: server/theme/default/html/library_page_grid.php:49
msgid "File Name"
msgstr ""

#: server/theme/default/html/login_page.php:26
msgid "Please Login"
msgstr ""

#: server/theme/default/html/login_page.php:77
msgid "Please provide your credentials"
msgstr ""

#: server/theme/default/html/login_page.php:79
msgid "User"
msgstr ""

#: server/theme/default/html/login_page.php:80
#: server/theme/default/html/user_form_add.php:37
msgid "Password"
msgstr ""

#: server/theme/default/html/login_page.php:87
#, php-format
msgid "Version %s"
msgstr ""

#: server/theme/default/html/log_form_display_last100.php:29
#: server/theme/default/html/log_page_grid.php:29
msgid "LogId"
msgstr ""

#: server/theme/default/html/log_form_display_last100.php:31
#: server/theme/default/html/log_page.php:57
#: server/theme/default/html/log_page_grid.php:31
msgid "Page"
msgstr ""

#: server/theme/default/html/log_form_display_last100.php:32
#: server/theme/default/html/log_page.php:63
#: server/theme/default/html/log_page_grid.php:32
msgid "Function"
msgstr ""

#: server/theme/default/html/log_form_display_last100.php:33
#: server/theme/default/html/log_page_grid.php:33
msgid "Message"
msgstr ""

#: server/theme/default/html/log_form_truncate.php:30
msgid "Are you sure you want to truncate?"
msgstr ""

#: server/theme/default/html/log_page.php:36
msgid "Truncate the Log"
msgstr ""

#: server/theme/default/html/log_page.php:36
msgid "Truncate"
msgstr ""

#: server/theme/default/html/log_page.php:37
msgid "Refresh the Report"
msgstr ""

#: server/theme/default/html/log_page.php:37
msgid "Refresh"
msgstr ""

#: server/theme/default/html/log_page.php:51
#: server/theme/default/html/sessions_page.php:49
msgid "From DT"
msgstr ""

#: server/theme/default/html/log_page.php:59
msgid "Seconds back"
msgstr ""

#: server/theme/default/html/media_form_counter_add.php:28
#: server/theme/default/html/media_form_counter_edit.php:28
msgid "Python Client Only"
msgstr ""

#: server/theme/default/html/media_form_counter_add.php:30
#: server/theme/default/html/media_form_counter_edit.php:30
msgid "The duration in seconds this counter should be displayed"
msgstr ""

#: server/theme/default/html/media_form_counter_add.php:37
#: server/theme/default/html/media_form_counter_edit.php:37
msgid "Popup a notification when the counter changes"
msgstr ""

#: server/theme/default/html/media_form_counter_add.php:39
#: server/theme/default/html/media_form_counter_edit.php:39
msgid "Popup Notification?"
msgstr ""

#: server/theme/default/html/media_form_datasetview_add.php:29
msgid "The DataSet for this View"
msgstr ""

#: server/theme/default/html/media_form_datasetview_add.php:29
#: server/theme/default/html/media_form_ticker_add.php:45
msgid "DataSet"
msgstr ""

#: server/theme/default/html/media_form_datasetview_add.php:35
#: server/theme/default/html/media_form_datasetview_edit.php:32
#: server/theme/default/html/media_form_embedded_add.php:31
#: server/theme/default/html/media_form_embedded_edit.php:31
#: server/theme/default/html/media_form_ticker_add.php:51
msgid "The duration in seconds this data should be displayed"
msgstr ""

#: server/theme/default/html/media_form_datasetview_edit.php:38
#: server/theme/default/html/media_form_ticker_dataset_edit.php:83
msgid "Lower Row Limit"
msgstr ""

#: server/theme/default/html/media_form_datasetview_edit.php:44
#: server/theme/default/html/media_form_ticker_dataset_edit.php:65
msgid "Order"
msgstr ""

#: server/theme/default/html/media_form_datasetview_edit.php:53
msgid "Show the table headings?"
msgstr ""

#: server/theme/default/html/media_form_datasetview_edit.php:60
#: server/theme/default/html/media_form_ticker_dataset_edit.php:57
#: server/theme/default/html/media_form_ticker_edit.php:89
msgid "Update Interval (mins)"
msgstr ""

#: server/theme/default/html/media_form_datasetview_edit.php:66
#: server/theme/default/html/media_form_ticker_dataset_edit.php:77
msgid "Upper Row Limit"
msgstr ""

#: server/theme/default/html/media_form_datasetview_edit.php:78
msgid "The number of rows per page"
msgstr ""

#: server/theme/default/html/media_form_datasetview_edit.php:78
msgid "Rows per page"
msgstr ""

#: server/theme/default/html/media_form_datasetview_edit.php:87
msgid "Columns Selected"
msgstr ""

#: server/theme/default/html/media_form_datasetview_edit.php:91
msgid "Columns Available"
msgstr ""

#: server/theme/default/html/media_form_datasetview_edit.php:97
msgid "Stylesheet for the Table"
msgstr ""

#: server/theme/default/html/media_form_embedded_add.php:37
#: server/theme/default/html/media_form_embedded_edit.php:37
msgid "An optional Name for this Embedded Item"
msgstr ""

#: server/theme/default/html/media_form_embedded_add.php:44
#: server/theme/default/html/media_form_embedded_edit.php:44
#: server/theme/default/html/media_form_webpage_add.php:61
#: server/theme/default/html/media_form_webpage_edit.php:61
msgid "Background transparent?"
msgstr ""

#: server/theme/default/html/media_form_embedded_add.php:53
#: server/theme/default/html/media_form_embedded_edit.php:53
msgid "HTML to Embed"
msgstr ""

#: server/theme/default/html/media_form_embedded_add.php:59
#: server/theme/default/html/media_form_embedded_edit.php:59
msgid "HEAD content to Embed (including script tags)"
msgstr ""

#: server/theme/default/html/media_form_microblog_add.php:33
#: server/theme/default/html/media_form_microblog_edit.php:33
msgid "Enable Twitter Feed"
msgstr ""

#: server/theme/default/html/media_form_microblog_add.php:33
#: server/theme/default/html/media_form_microblog_edit.php:33
msgid "Twitter"
msgstr ""

#: server/theme/default/html/media_form_microblog_add.php:37
#: server/theme/default/html/media_form_microblog_edit.php:37
msgid "Enter a search term"
msgstr ""

#: server/theme/default/html/media_form_microblog_add.php:37
#: server/theme/default/html/media_form_microblog_edit.php:37
msgid "Search Term"
msgstr ""

#: server/theme/default/html/media_form_microblog_add.php:43
#: server/theme/default/html/media_form_microblog_edit.php:43
msgid "Fade Interval"
msgstr ""

#: server/theme/default/html/media_form_microblog_add.php:49
#: server/theme/default/html/media_form_microblog_edit.php:49
msgid "How often to update this feed"
msgstr ""

#: server/theme/default/html/media_form_microblog_add.php:49
#: server/theme/default/html/media_form_microblog_edit.php:49
msgid "Update Interval"
msgstr ""

#: server/theme/default/html/media_form_microblog_add.php:59
#: server/theme/default/html/media_form_microblog_edit.php:59
msgid "Enable Identica Feed"
msgstr ""

#: server/theme/default/html/media_form_microblog_add.php:59
#: server/theme/default/html/media_form_microblog_edit.php:59
msgid "Identica"
msgstr ""

#: server/theme/default/html/media_form_microblog_add.php:63
#: server/theme/default/html/media_form_microblog_edit.php:63
#: server/theme/default/html/media_form_text_add.php:46
#: server/theme/default/html/media_form_text_edit.php:46
#: server/theme/default/html/media_form_ticker_dataset_edit.php:44
#: server/theme/default/html/media_form_ticker_edit.php:83
#: server/theme/default/html/media_form_webpage_add.php:36
#: server/theme/default/html/media_form_webpage_edit.php:36
msgid "The duration in seconds this media should be displayed"
msgstr ""

#: server/theme/default/html/media_form_microblog_add.php:69
#: server/theme/default/html/media_form_microblog_edit.php:69
msgid "The speed in seconds between each item"
msgstr ""

#: server/theme/default/html/media_form_microblog_add.php:69
#: server/theme/default/html/media_form_microblog_edit.php:69
msgid "Speed"
msgstr ""

#: server/theme/default/html/media_form_microblog_add.php:75
#: server/theme/default/html/media_form_microblog_edit.php:75
msgid "The History Size in Number of Items"
msgstr ""

#: server/theme/default/html/media_form_microblog_add.php:75
#: server/theme/default/html/media_form_microblog_edit.php:75
msgid "History Size"
msgstr ""

#: server/theme/default/html/media_form_microblog_add.php:84
#: server/theme/default/html/media_form_microblog_edit.php:84
msgid "Message Template"
msgstr ""

#: server/theme/default/html/media_form_microblog_add.php:90
#: server/theme/default/html/media_form_microblog_edit.php:90
msgid "Message to display when there are no messages"
msgstr ""

#: server/theme/default/html/media_form_shellcommand_add.php:30
#: server/theme/default/html/media_form_shellcommand_edit.php:30
msgid "Enter a Windows Command Line compatible command"
msgstr ""

#: server/theme/default/html/media_form_shellcommand_add.php:36
#: server/theme/default/html/media_form_shellcommand_edit.php:36
msgid "Enter a Linux Shell compatible command"
msgstr ""

#: server/theme/default/html/media_form_text_add.php:32
#: server/theme/default/html/media_form_text_edit.php:32
msgid "Direction to Scroll"
msgstr ""

#: server/theme/default/html/media_form_text_add.php:32
#: server/theme/default/html/media_form_text_edit.php:32
#: server/theme/default/html/media_form_ticker_dataset_edit.php:32
#: server/theme/default/html/media_form_ticker_edit.php:44
msgid "Direction"
msgstr ""

#: server/theme/default/html/media_form_text_add.php:38
#: server/theme/default/html/media_form_text_edit.php:38
msgid ""
"The scroll speed to apply if a direction is specified. Higher is faster."
msgstr ""

#: server/theme/default/html/media_form_text_add.php:38
#: server/theme/default/html/media_form_text_edit.php:38
msgid "Scroll Speed"
msgstr ""

#: server/theme/default/html/media_form_text_add.php:63
#: server/theme/default/html/media_form_text_edit.php:63
#: server/theme/default/html/media_form_ticker_dataset_edit.php:113
#: server/theme/default/html/media_form_ticker_edit.php:119
msgid "Available Substitutions"
msgstr ""

#: server/theme/default/html/media_form_ticker_add.php:30
msgid ""
"Please choose between a RSS/Atom feed or a DataSet as the source of this "
"Ticker"
msgstr ""

#: server/theme/default/html/media_form_ticker_add.php:33
msgid "The source for this Ticker"
msgstr ""

#: server/theme/default/html/media_form_ticker_add.php:33
msgid "Source Type"
msgstr ""

#: server/theme/default/html/media_form_ticker_add.php:39
#: server/theme/default/html/media_form_ticker_edit.php:32
msgid "Feed URL"
msgstr ""

#: server/theme/default/html/media_form_ticker_add.php:45
msgid "The DataSet for this Ticker"
msgstr ""

#: server/theme/default/html/media_form_ticker_dataset_edit.php:38
#: server/theme/default/html/media_form_ticker_edit.php:50
msgid "Scroll Speed (higher is faster)"
msgstr ""

#: server/theme/default/html/media_form_ticker_dataset_edit.php:51
#: server/theme/default/html/media_form_ticker_edit.php:102
msgid "The duration speficied is per item otherwise it is per feed."
msgstr ""

#: server/theme/default/html/media_form_ticker_dataset_edit.php:51
#: server/theme/default/html/media_form_ticker_edit.php:102
msgid "Duration is per item"
msgstr ""

#: server/theme/default/html/media_form_ticker_dataset_edit.php:89
#: server/theme/default/html/media_form_ticker_edit.php:62
msgid "When in single mode how many items per page should be shown."
msgstr ""

#: server/theme/default/html/media_form_ticker_dataset_edit.php:89
#: server/theme/default/html/media_form_ticker_edit.php:62
msgid "Items per Page"
msgstr ""

#: server/theme/default/html/media_form_ticker_dataset_edit.php:96
#: server/theme/default/html/media_form_ticker_edit.php:109
msgid "Show items side by side?"
msgstr ""

#: server/theme/default/html/media_form_ticker_dataset_edit.php:130
#: server/theme/default/html/media_form_ticker_edit.php:136
msgid "Optional Stylesheet"
msgstr ""

#: server/theme/default/html/media_form_ticker_edit.php:56
msgid "The Number of RSS items you want to display"
msgstr ""

#: server/theme/default/html/media_form_ticker_edit.php:56
msgid "Number of Items"
msgstr ""

#: server/theme/default/html/media_form_ticker_edit.php:77
msgid "Copyright"
msgstr ""

#: server/theme/default/html/media_form_ticker_edit.php:95
msgid "Take the items from the beginning or the end of the list"
msgstr ""

#: server/theme/default/html/media_form_ticker_edit.php:95
msgid "from the "
msgstr ""

#: server/theme/default/html/media_form_webpage_add.php:30
#: server/theme/default/html/media_form_webpage_edit.php:30
msgid "The Location (URL) of the webpage"
msgstr ""

#: server/theme/default/html/media_form_webpage_add.php:42
#: server/theme/default/html/media_form_webpage_edit.php:42
msgid "The starting point from the top in pixels"
msgstr ""

#: server/theme/default/html/media_form_webpage_add.php:42
#: server/theme/default/html/media_form_webpage_edit.php:42
msgid "Offset Top"
msgstr ""

#: server/theme/default/html/media_form_webpage_add.php:48
#: server/theme/default/html/media_form_webpage_edit.php:48
msgid "The starting point from the left in pixels"
msgstr ""

#: server/theme/default/html/media_form_webpage_add.php:48
#: server/theme/default/html/media_form_webpage_edit.php:48
msgid "Offset Left"
msgstr ""

#: server/theme/default/html/media_form_webpage_add.php:54
#: server/theme/default/html/media_form_webpage_edit.php:54
msgid "The Percentage to Scale this Webpage"
msgstr ""

#: server/theme/default/html/media_form_webpage_add.php:54
#: server/theme/default/html/media_form_webpage_edit.php:54
msgid "Scale Percentage"
msgstr ""

#: server/theme/default/html/module_form_edit.php:32
msgid ""
"The Extensions allowed on files uploaded using this module. Comma Seperated."
msgstr ""

#: server/theme/default/html/module_form_edit.php:32
#: server/theme/default/html/module_page_grid.php:43
msgid "Valid Extensions"
msgstr ""

#: server/theme/default/html/module_form_edit.php:36
msgid "The Image to display for this module"
msgstr ""

#: server/theme/default/html/module_form_edit.php:36
#: server/theme/default/html/module_page_grid.php:44
msgid "Image Uri"
msgstr ""

#: server/theme/default/html/module_form_edit.php:40
msgid ""
"When PreviewEnabled users will be able to see a preview in the layout "
"designer"
msgstr ""

#: server/theme/default/html/module_form_edit.php:40
#: server/theme/default/html/module_page_grid.php:45
msgid "Preview Enabled"
msgstr ""

#: server/theme/default/html/module_form_edit.php:43
msgid "When Enabled users will be able to add media using this module"
msgstr ""

#: server/theme/default/html/module_page_grid.php:42
msgid "Library Media"
msgstr ""

#: server/theme/default/html/module_page_grid.php:46
msgid "Can this module be assigned to a Layout?"
msgstr ""

#: server/theme/default/html/module_page_grid.php:46
msgid "Assignable"
msgstr ""

#: server/theme/default/html/region_form_options.php:32
#: server/theme/default/html/region_form_options_no_transition.php:32
msgid "Name of the Region"
msgstr ""

#: server/theme/default/html/region_form_options.php:36
#: server/theme/default/html/region_form_options_no_transition.php:36
msgid "Offset from the Top Corner"
msgstr ""

#: server/theme/default/html/region_form_options.php:36
#: server/theme/default/html/region_form_options_no_transition.php:36
msgid "Top Offset"
msgstr ""

#: server/theme/default/html/region_form_options.php:40
#: server/theme/default/html/region_form_options_no_transition.php:40
msgid "Offset from the Left Corner"
msgstr ""

#: server/theme/default/html/region_form_options.php:40
#: server/theme/default/html/region_form_options_no_transition.php:40
msgid "Left Offset"
msgstr ""

#: server/theme/default/html/region_form_options.php:44
#: server/theme/default/html/region_form_options_no_transition.php:44
msgid "Width of the Region"
msgstr ""

#: server/theme/default/html/region_form_options.php:44
#: server/theme/default/html/region_form_options_no_transition.php:44
#: server/theme/default/html/resolution_form_add.php:36
#: server/theme/default/html/resolution_form_edit.php:41
#: server/theme/default/html/resolution_page_grid.php:37
msgid "Width"
msgstr ""

#: server/theme/default/html/region_form_options.php:48
#: server/theme/default/html/region_form_options_no_transition.php:48
msgid "Height of the Region"
msgstr ""

#: server/theme/default/html/region_form_options.php:48
#: server/theme/default/html/region_form_options_no_transition.php:48
#: server/theme/default/html/resolution_form_add.php:40
#: server/theme/default/html/resolution_form_edit.php:45
#: server/theme/default/html/resolution_page_grid.php:38
msgid "Height"
msgstr ""

#: server/theme/default/html/region_form_options.php:52
msgid "What transition should be applied when this region is finished?"
msgstr ""

#: server/theme/default/html/region_form_options.php:52
msgid "Exit Transition"
msgstr ""

#: server/theme/default/html/region_form_options.php:60
msgid "The direction for this transtion."
msgstr ""

#: server/theme/default/html/resolution_form_add.php:32
#: server/theme/default/html/resolution_form_edit.php:37
msgid "A name for this Resolution"
msgstr ""

#: server/theme/default/html/resolution_form_add.php:36
#: server/theme/default/html/resolution_form_edit.php:41
msgid "The Width for this Resolution"
msgstr ""

#: server/theme/default/html/resolution_form_add.php:40
#: server/theme/default/html/resolution_form_edit.php:45
msgid "Height for this Resolution"
msgstr ""

#: server/theme/default/html/resolution_page.php:37
msgid "Add a new resolution for use on layouts"
msgstr ""

#: server/theme/default/html/resolution_page_grid.php:39
msgid "Designer Width"
msgstr ""

#: server/theme/default/html/resolution_page_grid.php:40
msgid "Designer Height"
msgstr ""

#: server/theme/default/html/schedule_form_add_event.php:42
#: server/theme/default/html/schedule_form_edit_event.php:42
msgid "Event Schedule"
msgstr ""

#: server/theme/default/html/schedule_form_add_event.php:46
#: server/theme/default/html/schedule_form_edit_event.php:46
msgid "Select the start time for this event"
msgstr ""

#: server/theme/default/html/schedule_form_add_event.php:46
#: server/theme/default/html/schedule_form_edit_event.php:46
msgid "Start Time"
msgstr ""

#: server/theme/default/html/schedule_form_add_event.php:57
#: server/theme/default/html/schedule_form_edit_event.php:57
msgid "Select the end time for this event"
msgstr ""

#: server/theme/default/html/schedule_form_add_event.php:57
#: server/theme/default/html/schedule_form_edit_event.php:57
msgid "End Time"
msgstr ""

#: server/theme/default/html/schedule_form_add_event.php:69
#: server/theme/default/html/schedule_form_edit_event.php:69
#: server/theme/default/html/schedule_form_schedule_now.php:44
msgid "Select the Order for this Event"
msgstr ""

#: server/theme/default/html/schedule_form_add_event.php:69
#: server/theme/default/html/schedule_form_edit_event.php:69
#: server/theme/default/html/schedule_form_schedule_now.php:44
msgid "Display Order"
msgstr ""

#: server/theme/default/html/schedule_form_add_event.php:71
#: server/theme/default/html/schedule_form_add_event.php:72
#: server/theme/default/html/schedule_form_edit_event.php:71
#: server/theme/default/html/schedule_form_edit_event.php:72
#: server/theme/default/html/schedule_form_schedule_now.php:48
#: server/theme/default/html/schedule_form_schedule_now.php:49
msgid ""
"Sets whether or not this event has priority. If set the event will be show "
"in preference to other events."
msgstr ""

#: server/theme/default/html/schedule_form_add_event.php:71
#: server/theme/default/html/schedule_form_edit_event.php:71
#: server/theme/default/html/schedule_form_schedule_now.php:48
msgid "Priority"
msgstr ""

#: server/theme/default/html/schedule_form_add_event.php:75
#: server/theme/default/html/schedule_form_edit_event.php:75
msgid "Recurring Event"
msgstr ""

#: server/theme/default/html/schedule_form_add_event.php:78
#: server/theme/default/html/schedule_form_edit_event.php:78
msgid "What type of repeat is required?"
msgstr ""

#: server/theme/default/html/schedule_form_add_event.php:78
#: server/theme/default/html/schedule_form_edit_event.php:78
msgid "Repeats"
msgstr ""

#: server/theme/default/html/schedule_form_add_event.php:80
#: server/theme/default/html/schedule_form_edit_event.php:80
msgid "How often does this event repeat?"
msgstr ""

#: server/theme/default/html/schedule_form_add_event.php:80
#: server/theme/default/html/schedule_form_edit_event.php:80
msgid "Repeat every"
msgstr ""

#: server/theme/default/html/schedule_form_add_event.php:84
#: server/theme/default/html/schedule_form_edit_event.php:84
msgid "When should this event stop repeating?"
msgstr ""

#: server/theme/default/html/schedule_form_add_event.php:84
#: server/theme/default/html/schedule_form_edit_event.php:84
msgid "Until"
msgstr ""

#: server/theme/default/html/schedule_form_schedule_now.php:34
msgid "How long should this event be scheduled for?"
msgstr ""

#: server/theme/default/html/schedule_form_schedule_now.php:40
msgid "Select which layout this event will show."
msgstr ""

#: server/theme/default/html/schedule_form_schedule_now.php:40
msgid "Campaign / Layout"
msgstr ""

#: server/theme/default/html/schedule_page_display_list.php:30
msgid "Misc"
msgstr ""

#: server/theme/default/html/sessions_form_logout.php:30
msgid "Are you sure you want to logout this user?"
msgstr ""

#: server/theme/default/html/sessions_page_grid.php:30
msgid "Active"
msgstr ""

#: server/theme/default/html/sessions_page_grid.php:31
msgid "User Name"
msgstr ""

#: server/theme/default/html/sessions_page_grid.php:32
msgid "Last Page"
msgstr ""

#: server/theme/default/html/sessions_page_grid.php:34
msgid "Browser"
msgstr ""

#: server/theme/default/html/settings_page.php:36
msgid "View Help"
msgstr ""

#: server/theme/default/html/settings_page.php:37
msgid "Save Settings"
msgstr ""

#: server/theme/default/html/stats_page.php:47
msgid "From Date"
msgstr ""

#: server/theme/default/html/stats_page.php:49
msgid "To Date"
msgstr ""

#: server/theme/default/html/stats_page_grid.php:26
msgid "Export raw data to CSV"
msgstr ""

#: server/theme/default/html/stats_page_grid.php:32
msgid "Layouts Shown"
msgstr ""

#: server/theme/default/html/stats_page_grid.php:38
#: server/theme/default/html/stats_page_grid.php:66
#: server/theme/default/html/stats_page_grid.php:95
msgid "Number of Plays"
msgstr ""

#: server/theme/default/html/stats_page_grid.php:39
#: server/theme/default/html/stats_page_grid.php:67
#: server/theme/default/html/stats_page_grid.php:96
msgid "Total Duration (s)"
msgstr ""

#: server/theme/default/html/stats_page_grid.php:40
#: server/theme/default/html/stats_page_grid.php:68
#: server/theme/default/html/stats_page_grid.php:97
msgid "Total Duration"
msgstr ""

#: server/theme/default/html/stats_page_grid.php:41
#: server/theme/default/html/stats_page_grid.php:69
#: server/theme/default/html/stats_page_grid.php:98
msgid "First Shown"
msgstr ""

#: server/theme/default/html/stats_page_grid.php:42
#: server/theme/default/html/stats_page_grid.php:70
#: server/theme/default/html/stats_page_grid.php:99
msgid "Last Shown"
msgstr ""

#: server/theme/default/html/stats_page_grid.php:60
msgid "Library Media Shown"
msgstr ""

#: server/theme/default/html/stats_page_grid.php:88
msgid "Media on Layouts Shown"
msgstr ""

#: server/theme/default/html/status_dashboard.php:47
msgid "Licence"
msgstr ""

#: server/theme/default/html/template_form_add.php:32
msgid "The Name of the Template - (1 - 50 characters)"
msgstr ""

#: server/theme/default/html/template_form_add.php:34
msgid ""
"Tags for this Template - used when searching for it. Space delimited. (1 - "
"250 characters)"
msgstr ""

#: server/theme/default/html/template_form_add.php:38
msgid "An optional description of the Template. (1 - 250 characters)"
msgstr ""

#: server/theme/default/html/template_page.php:50
msgid "System"
msgstr ""

#: server/theme/default/html/template_page_grid.php:36
msgid "Is System"
msgstr ""

#: server/theme/default/html/transition_form_edit.php:32
msgid "Can this transition be used for media start?"
msgstr ""

#: server/theme/default/html/transition_form_edit.php:32
msgid "Available for In Transitions?"
msgstr ""

#: server/theme/default/html/transition_form_edit.php:36
msgid "Can this transition be used for media end"
msgstr ""

#: server/theme/default/html/transition_form_edit.php:36
msgid "Available for Out Transitions?"
msgstr ""

#: server/theme/default/html/transition_page_grid.php:36
msgid "Has Duration"
msgstr ""

#: server/theme/default/html/transition_page_grid.php:37
msgid "Has Direction"
msgstr ""

#: server/theme/default/html/transition_page_grid.php:38
msgid "Enabled for In"
msgstr ""

#: server/theme/default/html/transition_page_grid.php:39
msgid "Enabled for Out"
msgstr ""

#: server/theme/default/html/usergroup_form_add.php:31
#: server/theme/default/html/usergroup_form_edit.php:31
msgid "The Name for this User Group"
msgstr ""

#: server/theme/default/html/usergroup_form_menusecurity.php:35
msgid "Menu"
msgstr ""

#: server/theme/default/html/usergroup_form_menusecurity_grid.php:33
msgid "Menu Item"
msgstr ""

#: server/theme/default/html/usergroup_form_menusecurity_grid.php:34
#: server/theme/default/html/usergroup_form_pagesecurity_grid.php:40
#: server/theme/default/html/usergroup_form_user_assign.php:33
msgid "Assigned"
msgstr ""

#: server/theme/default/html/usergroup_form_pagesecurity_grid.php:39
msgid "Security Group"
msgstr ""

#: server/theme/default/html/usergroup_form_user_assign.php:41
msgid "Available"
msgstr ""

#: server/theme/default/html/usergroup_page.php:39
msgid "Add a new User Group"
msgstr ""

#: server/theme/default/html/usergroup_page.php:39
msgid "Add User Group"
msgstr ""

#: server/theme/default/html/usergroup_page_grid.php:35
msgid "User Group"
msgstr ""

#: server/theme/default/html/user_form_add.php:33
#: server/theme/default/html/user_form_edit.php:33
msgid "The Login Name of the user."
msgstr ""

#: server/theme/default/html/user_form_add.php:33
#: server/theme/default/html/user_form_edit.php:33
msgid "Username"
msgstr ""

#: server/theme/default/html/user_form_add.php:37
msgid "The Password for this user."
msgstr ""

#: server/theme/default/html/user_form_add.php:41
msgid "The Email Address for this user."
msgstr ""

#: server/theme/default/html/user_form_add.php:41
#: server/theme/default/html/user_form_edit.php:37
#: server/theme/default/html/user_page_grid.php:38
msgid "Email"
msgstr ""

#: server/theme/default/html/user_form_add.php:45
#: server/theme/default/html/user_form_edit.php:41
#: server/theme/default/html/user_form_set_homepage.php:33
msgid ""
"The users Homepage. This should not be changed until you want to reset their "
"homepage."
msgstr ""

#: server/theme/default/html/user_form_add.php:49
#: server/theme/default/html/user_form_edit.php:45
msgid "What is this users type?"
msgstr ""

#: server/theme/default/html/user_form_add.php:49
#: server/theme/default/html/user_form_edit.php:45
#: server/theme/default/html/user_page.php:53
msgid "User Type"
msgstr ""

#: server/theme/default/html/user_form_add.php:53
msgid "What is the initial user group for this user?"
msgstr ""

#: server/theme/default/html/user_form_add.php:53
msgid "Initial User Group"
msgstr ""

#: server/theme/default/html/user_form_delete.php:31
msgid ""
"You may not be able to delete this user if they have associated content. You "
"can retire users by using the Edit Button."
msgstr ""

#: server/theme/default/html/user_form_edit.php:37
msgid "The Email for this user."
msgstr ""

#: server/theme/default/html/user_form_edit.php:49
msgid "Is this user retired?"
msgstr ""

#: server/theme/default/html/user_page.php:39
msgid "View my authenticated applications"
msgstr ""

#: server/theme/default/html/user_page.php:40
msgid "Add a new User"
msgstr ""

#: server/theme/default/html/user_page.php:40
msgid "Add User"
msgstr ""