ckan.po 167 KB
Newer Older
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
# Translations template for ckan.
# Copyright (C) 2020 ORGANIZATION
# This file is distributed under the same license as the ckan project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
# 
# Translators:
# Adrià Mercader <adria.mercader@okfn.org>, 2020
# 
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: ckan 2.9.0b0\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-07-21 11:43+0200\n"
"PO-Revision-Date: 2020-07-09 15:07+0000\n"
"Last-Translator: Adrià Mercader <adria.mercader@okfn.org>, 2020\n"
"Language-Team: English (United Kingdom) (https://www.transifex.com/okfn/teams/11162/en_GB/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.7.0\n"
"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30
msgid "Audio"
msgstr ""

#: ckanext/audioview/theme/templates/audio_form.html:3
msgid "Audio url"
msgstr ""

#: ckanext/audioview/theme/templates/audio_form.html:3
msgid "eg. http://example.com/audio.mp3  (if blank uses resource url)"
msgstr ""

#: ckanext/audioview/theme/templates/audio_view.html:5
#, python-format
msgid ""
"Your browser does not support the <code>audio</code> element. But don't "
"worry, you can <a href=\"%(res_url)s\" alt=\"video url\">download it</a>."
msgstr ""

#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079
#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165
#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426
#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565
#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307
#: ckan/views/dataset.py:1327 ckan/views/resource.py:96
#: ckan/views/resource.py:170 ckan/views/resource.py:402
#: ckan/views/resource.py:479 ckan/views/resource.py:496
#: ckan/views/resource.py:545 ckan/views/resource.py:590
#: ckan/views/resource.py:643 ckan/views/resource.py:842
#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45
#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37
msgid "Resource not found"
msgstr "Resource not found"

#: ckan/controllers/api.py:63 ckan/controllers/group.py:157
#: ckan/controllers/home.py:27 ckan/controllers/package.py:144
#: ckan/controllers/package.py:315 ckan/controllers/user.py:58
#: ckan/controllers/user.py:85 ckan/controllers/user.py:116
#: ckan/controllers/user.py:597 ckan/controllers/user.py:668
#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28
#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62
#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569
#: ckanext/datapusher/blueprint.py:56
msgid "Not authorized to see this page"
msgstr "Not authorised to see this page"

#: ckanext/datapusher/helpers.py:21
msgid "Complete"
msgstr "Complete"

#: ckanext/datapusher/helpers.py:22
msgid "Pending"
msgstr "Pending"

#: ckanext/datapusher/helpers.py:23
msgid "Submitting"
msgstr "Submitting"

#: ckan/controllers/package.py:684 ckan/views/resource.py:231
#: ckanext/datapusher/helpers.py:24
msgid "Error"
msgstr "Error"

#: ckanext/datapusher/helpers.py:29
msgid "Not Uploaded Yet"
msgstr "Not Uploaded Yet"

#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12
#: ckanext/datapusher/templates/datapusher/resource_data.html:12
msgid "Upload to DataStore"
msgstr "Upload to DataStore"

#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19
#: ckanext/datapusher/templates/datapusher/resource_data.html:19
msgid "Upload error:"
msgstr "Upload error:"

#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25
#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27
#: ckanext/datapusher/templates/datapusher/resource_data.html:25
#: ckanext/datapusher/templates/datapusher/resource_data.html:27
msgid "Error:"
msgstr "Error:"

#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36
#: ckanext/datapusher/templates/datapusher/resource_data.html:36
msgid "Error traceback:"
msgstr "Error traceback:"

#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48
#: ckanext/datapusher/templates/datapusher/resource_data.html:48
msgid "Status"
msgstr "Status"

#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52
#: ckanext/datapusher/templates/datapusher/resource_data.html:52
msgid "Last updated"
msgstr "Last updated"

#: ckan/templates/user/snippets/api_token_list.html:32
#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56
#: ckanext/datapusher/templates/datapusher/resource_data.html:56
msgid "Never"
msgstr "Never"

#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62
#: ckanext/datapusher/templates/datapusher/resource_data.html:62
msgid "Upload Log"
msgstr "Upload Log"

#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76
#: ckanext/datapusher/templates/datapusher/resource_data.html:76
msgid "Details"
msgstr "Details"

#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83
#: ckanext/datapusher/templates/datapusher/resource_data.html:83
msgid "End of log"
msgstr "End of log"

#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5
#: ckanext/datapusher/templates/package/resource_edit_base.html:5
msgid "DataStore"
msgstr "DataStore"

#: ckanext/datastore/blueprint.py:89
msgid "DataStore resource not found"
msgstr "DataStore resource not found"

#: ckanext/datastore/blueprint.py:151
msgid ""
"Data Dictionary saved. Any type overrides will take effect when the resource"
" is next uploaded to DataStore"
msgstr ""

#: ckanext/datastore/backend/postgres.py:1067
msgid "The data was invalid: {}"
msgstr ""

#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309
#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509
msgid "Resource \"{0}\" was not found."
msgstr "Resource \"{0}\" was not found."

#: ckanext/datastore/logic/auth.py:18
msgid "User {0} not authorized to update resource {1}"
msgstr "User {0} not authorised to update resource {1}"

#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19
#: ckanext/datastore/templates/ajax_snippets/api_info.html:21
msgid "CKAN Data API"
msgstr "CKAN Data API"

#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23
#: ckanext/datastore/templates/ajax_snippets/api_info.html:25
msgid "Access resource data via a web API with powerful query support"
msgstr "Access resource data via a web API with powerful query support"

#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24
#: ckanext/datastore/templates/ajax_snippets/api_info.html:26
msgid ""
"Further information in the <a "
"href=\"http://docs.ckan.org/en/latest/maintaining/datastore.html\" "
"target=\"_blank\">main CKAN Data API and DataStore documentation</a>.</p>"
msgstr ""

#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33
#: ckanext/datastore/templates/ajax_snippets/api_info.html:35
msgid "Endpoints"
msgstr "Endpoints"

#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37
#: ckanext/datastore/templates/ajax_snippets/api_info.html:39
msgid ""
"The Data API can be accessed via the following actions of the CKAN action "
"API."
msgstr ""
"The Data API can be accessed via the following actions of the CKAN action "
"API."

#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42
#: ckanext/datastore/templates/ajax_snippets/api_info.html:44
msgid "Create"
msgstr "Create"

#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46
#: ckanext/datastore/templates/ajax_snippets/api_info.html:48
msgid "Update / Insert"
msgstr "Update / Insert"

#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50
#: ckanext/datastore/templates/ajax_snippets/api_info.html:52
msgid "Query"
msgstr "Query"

#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54
#: ckanext/datastore/templates/ajax_snippets/api_info.html:56
msgid "Query (via SQL)"
msgstr "Query (via SQL)"

#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66
#: ckanext/datastore/templates/ajax_snippets/api_info.html:68
msgid "Querying"
msgstr "Querying"

#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70
#: ckanext/datastore/templates/ajax_snippets/api_info.html:72
msgid "Query example (first 5 results)"
msgstr "Query example (first 5 results)"

#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75
#: ckanext/datastore/templates/ajax_snippets/api_info.html:77
msgid "Query example (results containing 'jones')"
msgstr "Query example (results containing 'jones')"

#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80
#: ckanext/datastore/templates/ajax_snippets/api_info.html:82
msgid "Query example (via SQL statement)"
msgstr "Query example (via SQL statement)"

#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91
#: ckanext/datastore/templates/ajax_snippets/api_info.html:93
msgid "Example: Javascript"
msgstr "Example: Javascript"

#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95
#: ckanext/datastore/templates/ajax_snippets/api_info.html:97
msgid "A simple ajax (JSONP) request to the data API using jQuery."
msgstr "A simple ajax (JSONP) request to the data API using jQuery."

#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116
#: ckanext/datastore/templates/ajax_snippets/api_info.html:118
msgid "Example: Python"
msgstr "Example: Python"

#: ckan/templates/group/member_new.html:73
#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32
#: ckanext/datastore/templates/datastore/dictionary.html:18
msgid "Save"
msgstr "Save"

#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15
#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3
msgid "Field {num}."
msgstr "Field {num}."

#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17
#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12
msgid "Type Override"
msgstr ""

#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24
#: ckanext/datastore/templates-bs2/package/resource_read.html:20
#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20
#: ckanext/datastore/templates/package/resource_read.html:21
#: ckanext/datatablesview/templates/datatables/datatables_form.html:18
msgid "Label"
msgstr "Label"

#: ckan/templates/group/snippets/group_form.html:20
#: ckan/templates/organization/snippets/organization_form.html:20
#: ckan/templates/package/snippets/package_basic_fields.html:19
#: ckan/templates/package/snippets/resource_form.html:34
#: ckan/templates/package/snippets/view_form.html:9
#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27
#: ckanext/datastore/templates-bs2/package/resource_read.html:21
#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24
#: ckanext/datastore/templates/package/resource_read.html:22
msgid "Description"
msgstr "Description"

#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6
#: ckanext/datastore/templates-bs2/package/resource_read.html:14
#: ckanext/datastore/templates/package/resource_edit_base.html:6
#: ckanext/datastore/templates/package/resource_read.html:14
msgid "Data Dictionary"
msgstr "Data Dictionary"

#: ckanext/datastore/templates-bs2/package/resource_read.html:18
#: ckanext/datastore/templates/package/resource_read.html:19
#: ckanext/datatablesview/templates/datatables/datatables_form.html:17
msgid "Column"
msgstr "Column"

#: ckanext/datastore/templates-bs2/package/resource_read.html:19
#: ckanext/datastore/templates/package/resource_read.html:20
msgid "Type"
msgstr "Type"

#: ckan/public/base/javascript/modules/activity-stream.js:97
#: ckan/public/base/javascript/modules/activity-stream.min.js:2
#: ckan/public/base/javascript/modules/popover-context.js:62
#: ckan/public/base/javascript/modules/popover-context.min.js:2
#: ckan/templates/tests/mock_json_resource_preview_template.html:7
#: ckan/templates/tests/mock_resource_preview_template.html:7
#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7
#: ckanext/datastore/templates/package/snippets/data_api_button.html:7
#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21
#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1
#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21
#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1
#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8
#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1
#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8
#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1
#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8
#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1
#: ckanext/reclineview/theme/templates/recline_view.html:15
#: ckanext/textview/theme/templates/text_view.html:9
msgid "Loading..."
msgstr "Loading..."

#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9
#: ckanext/datastore/templates/package/snippets/data_api_button.html:9
msgid "Data API"
msgstr "Data API"

#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142
msgid "Table"
msgstr "Table"

#: ckanext/datatablesview/templates/datatables/datatables_form.html:6
msgid "Responsive display"
msgstr "Responsive display"

#: ckanext/datatablesview/templates/datatables/datatables_form.html:12
msgid "Show Columns"
msgstr "Show Columns"

#: ckanext/datatablesview/templates/datatables/datatables_view.html:30
msgid "Hide/Unhide Columns"
msgstr "Hide/Unhide Columns"

#: ckanext/example_iconfigurer/templates/admin/config.html:11
msgid "Datasets per page"
msgstr "Datasets per page"

#: ckanext/example_iconfigurer/templates/admin/config.html:13
msgid "Test conf"
msgstr "Test conf"

#: ckan/templates/group/read.html:13 ckan/templates/organization/read.html:19
#: ckan/templates/package/search.html:29
#: ckan/templates/snippets/sort_by.html:14
#: ckanext/example_idatasetform/templates/package/search.html:12
msgid "Relevance"
msgstr "Relevance"

#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14
#: ckan/templates/organization/bulk_process.html:27
#: ckan/templates/organization/index.html:20
#: ckan/templates/organization/read.html:20
#: ckan/templates/package/search.html:30
#: ckan/templates/snippets/search_form.html:4
#: ckan/templates/snippets/simple_search.html:10
#: ckan/templates/snippets/sort_by.html:15
#: ckanext/example_idatasetform/templates/package/search.html:13
msgid "Name Ascending"
msgstr "Name Ascending"

#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15
#: ckan/templates/organization/bulk_process.html:28
#: ckan/templates/organization/index.html:20
#: ckan/templates/organization/read.html:21
#: ckan/templates/package/search.html:31
#: ckan/templates/snippets/search_form.html:4
#: ckan/templates/snippets/simple_search.html:10
#: ckan/templates/snippets/sort_by.html:16
#: ckanext/example_idatasetform/templates/package/search.html:14
msgid "Name Descending"
msgstr "Name Descending"

#: ckan/templates/group/read.html:16
#: ckan/templates/organization/bulk_process.html:29
#: ckan/templates/organization/read.html:22
#: ckan/templates/package/search.html:32
#: ckan/templates/package/snippets/resource_form.html:53
#: ckan/templates/snippets/sort_by.html:17
#: ckanext/example_idatasetform/templates/package/search.html:15
msgid "Last Modified"
msgstr "Last Modified"

#: ckanext/example_idatasetform/templates/package/search.html:16
msgid "Custom Field Ascending"
msgstr "Custom Field Ascending"

#: ckanext/example_idatasetform/templates/package/search.html:17
msgid "Custom Field Descending"
msgstr "Custom Field Descending"

#: ckan/templates/group/read.html:17 ckan/templates/organization/read.html:23
#: ckan/templates/package/search.html:33
#: ckan/templates/snippets/package_item.html:50
#: ckan/templates/snippets/popular.html:3
#: ckan/templates/snippets/sort_by.html:19
#: ckanext/example_idatasetform/templates/package/search.html:18
msgid "Popular"
msgstr "Popular"

#: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6
#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4
#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6
msgid "Custom Text"
msgstr "Custom Text"

#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4
msgid "custom text"
msgstr "custom text"

#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11
msgid "Country Code"
msgstr "Country Code"

#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6
msgid "custom resource text"
msgstr "custom resource text"

#: ckanext/example_itranslation/templates/home/index.html:4
msgid "This is an untranslated string"
msgstr "This is an untranslated string"

#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20
#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19
msgid "This group has no description"
msgstr "This topic has no description"

#: ckan/templates/group/snippets/group_item.html:32
#: ckan/templates/organization/snippets/organization_item.html:31
#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23
#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22
msgid "{num} Dataset"
msgid_plural "{num} Datasets"
msgstr[0] "{num} Dataset"
msgstr[1] "{num} Datasets"

#: ckan/templates/group/snippets/group_item.html:34
#: ckan/templates/organization/snippets/organization_item.html:33
#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25
#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24
msgid "0 Datasets"
msgstr "0 Datasets"

#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4
msgid "CKAN's data previewing tool has many powerful features"
msgstr "CKAN's data previewing tool has many powerful features"

#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6
#: ckan/templates/group/snippets/info.html:34
#: ckan/templates/package/followers.html:3
#: ckan/templates/package/followers.html:6
#: ckan/templates/package/snippets/info.html:24
#: ckan/templates/snippets/context/group.html:13
#: ckan/templates/snippets/context/user.html:15
#: ckan/templates/snippets/organization.html:57
#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7
#: ckan/templates/user/read_base.html:52
#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12
msgid "Followers"
msgstr "Followers"

#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62
#: ckan/templates/package/edit_base.html:18
#: ckan/templates/package/resources.html:5
#: ckan/templates/package/snippets/resources.html:21
#: ckan/templates/snippets/context/dataset.html:13
#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15
msgid "Resources"
msgstr "Resources"

#: ckanext/expire_api_token/templates/user/api_tokens.html:6
msgid "Second"
msgstr ""

#: ckanext/expire_api_token/templates/user/api_tokens.html:7
msgid "Minute"
msgstr ""

#: ckanext/expire_api_token/templates/user/api_tokens.html:8
msgid "Hour"
msgstr ""

#: ckanext/expire_api_token/templates/user/api_tokens.html:9
msgid "Day"
msgstr ""

#: ckanext/expire_api_token/templates/user/api_tokens.html:15
msgid "Expires in"
msgstr ""

#: ckanext/expire_api_token/templates/user/api_tokens.html:16
msgid "Units"
msgstr ""

#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5
msgid "Expires at"
msgstr ""

#: ckan/public/base/javascript/modules/image-upload.js:87
#: ckan/public/base/javascript/modules/image-upload.min.js:7
#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27
#: ckanext/imageview/plugin.py:32
msgid "Image"
msgstr "Image"

#: ckanext/imageview/theme/templates/image_form.html:3
msgid "Image url"
msgstr "Image url"

#: ckanext/imageview/theme/templates/image_form.html:3
msgid "eg. http://example.com/image.jpg (if blank uses resource url)"
msgstr "eg. http://example.com/image.jpg (if blank uses resource url)"

#: ckanext/reclineview/plugin.py:113
msgid "Data Explorer"
msgstr "Data Explorer"

#: ckanext/reclineview/plugin.py:185
#: ckanext/reclineview/theme/public/recline_view.js:204
#: ckanext/reclineview/theme/public/recline_view.min.js:14
msgid "Graph"
msgstr "Graph"

#: ckanext/reclineview/plugin.py:245
#: ckanext/reclineview/theme/public/recline_view.js:211
#: ckanext/reclineview/theme/public/recline_view.min.js:14
msgid "Map"
msgstr "Map"

#: ckanext/reclineview/theme/public/recline_view.js:29
#: ckanext/reclineview/theme/public/recline_view.min.js:1
msgid "error loading view"
msgstr "error loading view"

#: ckanext/reclineview/theme/public/recline_view.js:79
#: ckanext/reclineview/theme/public/recline_view.min.js:5
msgid "Could not load view"
msgstr "Could not load view"

#: ckanext/reclineview/theme/public/recline_view.js:81
#: ckanext/reclineview/theme/public/recline_view.min.js:5
msgid "DataStore returned an error"
msgstr "DataStore returned an error"

#: ckanext/reclineview/theme/public/recline_view.js:83
#: ckanext/reclineview/theme/public/recline_view.min.js:5
msgid "DataProxy returned an error"
msgstr "DataProxy returned an error"

#: ckanext/reclineview/theme/public/recline_view.js:197
#: ckanext/reclineview/theme/public/recline_view.min.js:14
msgid "Grid"
msgstr "Grid"

#: ckan/templates/package/snippets/view_form_filters.html:46
#: ckanext/reclineview/theme/public/recline_view.js:219
#: ckanext/reclineview/theme/public/recline_view.min.js:14
msgid "Filters"
msgstr "Filters"

#: ckanext/reclineview/theme/templates/recline_graph_form.html:3
#: ckanext/reclineview/theme/templates/recline_map_form.html:3
msgid "Row offset"
msgstr "Row offset"

#: ckanext/reclineview/theme/templates/recline_graph_form.html:3
#: ckanext/reclineview/theme/templates/recline_map_form.html:3
msgid "eg: 0"
msgstr "eg: 0"

#: ckanext/reclineview/theme/templates/recline_graph_form.html:4
#: ckanext/reclineview/theme/templates/recline_map_form.html:4
msgid "Number of rows"
msgstr "Number of rows"

#: ckanext/reclineview/theme/templates/recline_graph_form.html:4
#: ckanext/reclineview/theme/templates/recline_map_form.html:4
msgid "eg: 100"
msgstr "eg: 100"

#: ckanext/reclineview/theme/templates/recline_graph_form.html:6
msgid "Graph type"
msgstr "Graph type"

#: ckanext/reclineview/theme/templates/recline_graph_form.html:7
msgid "Group (Axis 1)"
msgstr "Topic (Axis 1)"

#: ckanext/reclineview/theme/templates/recline_graph_form.html:8
msgid "Series (Axis 2)"
msgstr "Series (Axis 2)"

#: ckanext/reclineview/theme/templates/recline_map_form.html:6
msgid "Field type"
msgstr "Field type"

#: ckanext/reclineview/theme/templates/recline_map_form.html:7
msgid "Latitude field"
msgstr "Latitude field"

#: ckanext/reclineview/theme/templates/recline_map_form.html:8
msgid "Longitude field"
msgstr "Longitude field"

#: ckanext/reclineview/theme/templates/recline_map_form.html:9
msgid "GeoJSON field"
msgstr "GeoJSON field"

#: ckanext/reclineview/theme/templates/recline_map_form.html:10
msgid "Auto zoom to features"
msgstr "Auto zoom to features"

#: ckanext/reclineview/theme/templates/recline_map_form.html:11
msgid "Cluster markers"
msgstr "Cluster markers"

#: ckanext/resourceproxy/blueprint.py:42
msgid "Invalid URL."
msgstr ""

#: ckanext/stats/templates/ckanext/stats/index.html:11
#: ckanext/stats/templates/ckanext/stats/index.html:107
msgid "Top Rated Datasets"
msgstr "Top Rated Datasets"

#: ckanext/stats/templates/ckanext/stats/index.html:17
msgid "Average rating"
msgstr "Average rating"

#: ckanext/stats/templates/ckanext/stats/index.html:18
msgid "Number of ratings"
msgstr "Number of ratings"

#: ckanext/stats/templates/ckanext/stats/index.html:32
msgid "No ratings"
msgstr "No ratings"

#: ckanext/stats/templates/ckanext/stats/index.html:37
#: ckanext/stats/templates/ckanext/stats/index.html:109
msgid "Largest Groups"
msgstr "Largest Topics"

#: ckan/logic/converters.py:174 ckan/logic/validators.py:268
#: ckanext/stats/templates/ckanext/stats/index.html:42
msgid "Group"
msgstr "Topic"

#: ckanext/stats/templates/ckanext/stats/index.html:43
msgid "Number of datasets"
msgstr "Number of datasets"

#: ckanext/stats/templates/ckanext/stats/index.html:56
msgid "No groups"
msgstr "No topics"

#: ckanext/stats/templates/ckanext/stats/index.html:61
#: ckanext/stats/templates/ckanext/stats/index.html:110
msgid "Top Tags"
msgstr "Top Tags"

#: ckanext/stats/templates/ckanext/stats/index.html:65
msgid "Tag Name"
msgstr "Tag Name"

#: ckanext/stats/templates/ckanext/stats/index.html:66
#: ckanext/stats/templates/ckanext/stats/index.html:86
msgid "Number of Datasets"
msgstr "Number of Datasets"

#: ckanext/stats/templates/ckanext/stats/index.html:81
#: ckanext/stats/templates/ckanext/stats/index.html:111
msgid "Users Creating Most Datasets"
msgstr "Users Creating Most Datasets"

#: ckan/logic/converters.py:124 ckan/logic/validators.py:238
#: ckan/logic/validators.py:255 ckan/logic/validators.py:733
#: ckan/templates/group/members.html:14
#: ckan/templates/organization/members.html:19
#: ckan/templates/package/collaborators/collaborators.html:19
#: ckanext/stats/templates/ckanext/stats/index.html:85
msgid "User"
msgstr "User"

#: ckanext/stats/templates/ckanext/stats/index.html:104
msgid "Statistics Menu"
msgstr "Statistics Menu"

#: ckanext/stats/templates/ckanext/stats/index.html:108
msgid "Most Edited Datasets"
msgstr "Most Edited Datasets"

#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71
msgid "Text"
msgstr "Text"

#: ckanext/textview/theme/public/text_view.js:70
#: ckanext/textview/theme/public/text_view.min.js:3
msgid "An error occured during AJAX request. Could not load view."
msgstr ""

#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31
msgid "Video"
msgstr ""

#: ckanext/videoview/theme/templates/video_form.html:3
msgid "Video url"
msgstr ""

#: ckanext/videoview/theme/templates/video_form.html:3
msgid "eg. http://example.com/video.mpeg  (if blank uses resource url)"
msgstr ""

#: ckanext/videoview/theme/templates/video_form.html:4
msgid "Poster url"
msgstr ""

#: ckanext/videoview/theme/templates/video_form.html:4
msgid "eg. http://example.com/poster.jpg"
msgstr ""

#: ckanext/videoview/theme/templates/video_view.html:7
#, python-format
msgid ""
"Sorry, your browser doesn't support embedded videos, but don't worry, you "
"can <a href=\"%(res_url)s\" alt=\"video url\">download it</a> and watch it "
"with your favorite video player!"
msgstr ""

#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27
msgid "Website"
msgstr "Website"

#: ckanext/webpageview/theme/templates/webpage_form.html:3
msgid "Web Page url"
msgstr "Web Page url"

#: ckanext/webpageview/theme/templates/webpage_form.html:3
msgid "eg. http://example.com  (if blank uses resource url)"
msgstr "eg. http://example.com (if blank uses resource url)"

#: ckan/templates/dataviewer/snippets/data_preview.html:23
#: ckan/templates/package/snippets/resource_view.html:62
#: ckanext/webpageview/theme/templates/webpage_view.html:2
msgid "Your browser does not support iframes."
msgstr "Your browser does not support iframes."

#: ckan/authz.py:223
#, python-format
msgid "Authorization function not found: %s"
msgstr "Authorisation function not found: %s"

#: ckan/authz.py:242 ckan/templates/header.html:11
msgid "Admin"
msgstr "Admin"

#: ckan/authz.py:246
msgid "Editor"
msgstr "Editor"

#: ckan/authz.py:250
msgid "Member"
msgstr "Member"

#: ckan/controllers/admin.py:33 ckan/views/admin.py:76
msgid "Need to be system administrator to administer"
msgstr "Need to be system administrator to administer"

#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14
msgid "Site Title"
msgstr "Site Title"

#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16
msgid "Style"
msgstr "Style"

#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18
msgid "Site Tag Line"
msgstr "Site Tag Line"

#: ckan/controllers/admin.py:52
msgid "Site Tag Logo"
msgstr "Site Tag Logo"

#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25
#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19
#: ckan/templates/header.html:92 ckan/templates/home/about.html:3
#: ckan/templates/home/about.html:6 ckan/templates/home/about.html:16
#: ckan/templates/organization/about.html:3
#: ckan/templates/organization/read_base.html:19
#: ckan/templates/user/edit_user_form.html:14
msgid "About"
msgstr "About"

#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25
msgid "About page text"
msgstr "About page text"

#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27
msgid "Intro Text"
msgstr "Intro Text"

#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27
msgid "Text on home page"
msgstr "Text on home page"

#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29
msgid "Custom CSS"
msgstr "Custom CSS"

#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29
msgid "Customisable css inserted into the page header"
msgstr "Customisable css inserted into the page header"

#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31
msgid "Homepage"
msgstr "Homepage"

#: ckan/controllers/admin.py:160
#, python-format
msgid ""
"Cannot purge package %s as associated revision %s includes non-deleted "
"packages %s"
msgstr ""
"Cannot purge package %s as associated revision %s includes non-deleted "
"packages %s"

#: ckan/controllers/admin.py:182
#, python-format
msgid "Problem purging revision %s: %s"
msgstr "Problem purging revision %s: %s"

#: ckan/controllers/admin.py:184
msgid "Purge complete"
msgstr "Purge complete"

#: ckan/controllers/admin.py:186 ckan/views/admin.py:216
msgid "Action not implemented."
msgstr "Action not implemented."

#: ckan/controllers/api.py:124 ckan/controllers/api.py:215
#: ckan/views/api.py:115 ckan/views/api.py:304
msgid "Access denied"
msgstr "Access denied"

#: ckan/controllers/api.py:130 ckan/controllers/api.py:224
#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124
#: ckan/logic/converters.py:149 ckan/logic/converters.py:174
#: ckan/logic/validators.py:173 ckan/logic/validators.py:194
#: ckan/logic/validators.py:215 ckan/logic/validators.py:224
#: ckan/logic/validators.py:238 ckan/logic/validators.py:255
#: ckan/logic/validators.py:268 ckan/logic/validators.py:292
#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313
msgid "Not found"
msgstr "Not found"

#: ckan/controllers/api.py:136 ckan/views/api.py:129
msgid "Bad request"
msgstr "Bad request"

#: ckan/controllers/api.py:164
#, python-format
msgid "Action name not known: %s"
msgstr "Action name not known: %s"

#: ckan/controllers/api.py:185 ckan/views/api.py:273
#, python-format
msgid "JSON Error: %s"
msgstr "JSON Error: %s"

#: ckan/controllers/api.py:191 ckan/views/api.py:279
#, python-format
msgid "Bad request data: %s"
msgstr "Bad request data: %s"

#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129
#: ckan/controllers/group.py:231 ckan/controllers/group.py:406
#: ckan/controllers/group.py:516 ckan/controllers/group.py:549
#: ckan/controllers/group.py:579 ckan/controllers/group.py:590
#: ckan/controllers/group.py:644 ckan/controllers/group.py:670
#: ckan/controllers/group.py:726 ckan/controllers/group.py:758
#: ckan/controllers/group.py:791 ckan/controllers/group.py:848
#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267
#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468
#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044
#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427
#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590
#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857
#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969
#: ckan/views/group.py:1029 ckan/views/group.py:1099
msgid "Group not found"
msgstr "topic not found"

#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468
#: ckan/views/feed.py:223
msgid "Organization not found"
msgstr "Organisation not found"

#: ckan/controllers/group.py:131 ckan/controllers/group.py:593
msgid "Incorrect group type"
msgstr "Incorrect topic type"

#: ckan/controllers/group.py:317 ckan/controllers/home.py:61
#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249
#: ckan/templates/header.html:90
#: ckan/templates/organization/base_form_page.html:4
#: ckan/templates/organization/edit_base.html:5
#: ckan/templates/organization/edit_base.html:8
#: ckan/templates/organization/index.html:3
#: ckan/templates/organization/index.html:6
#: ckan/templates/organization/index.html:18
#: ckan/templates/organization/read_base.html:3
#: ckan/templates/organization/read_base.html:6
#: ckan/templates/package/base.html:16 ckan/views/dataset.py:284
#: ckan/views/group.py:304 ckan/views/home.py:49
msgid "Organizations"
msgstr "Organisations"

#: ckan/controllers/group.py:318 ckan/controllers/home.py:62
#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250
#: ckan/templates/group/base_form_page.html:4 ckan/templates/group/edit.html:4
#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8
#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6
#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3
#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6
#: ckan/templates/header.html:91 ckan/templates/package/group_list.html:5
#: ckan/templates/package/read_base.html:22
#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285
#: ckan/views/group.py:305 ckan/views/home.py:50
msgid "Groups"
msgstr "Topics"

#: ckan/controllers/group.py:319 ckan/controllers/home.py:63
#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251
#: ckan/logic/__init__.py:114
#: ckan/templates/package/snippets/package_basic_fields.html:24
#: ckan/templates/snippets/context/dataset.html:17
#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6
#: ckan/templates/tag/index.html:12 ckan/views/dataset.py:286
#: ckan/views/group.py:306 ckan/views/home.py:51
msgid "Tags"
msgstr "Tags"

#: ckan/controllers/group.py:320 ckan/controllers/home.py:64
#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252
#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52
msgid "Formats"
msgstr "Formats"

#: ckan/controllers/group.py:321 ckan/controllers/home.py:65
#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253
#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53
msgid "Licenses"
msgstr "Licenses"

#: ckan/controllers/group.py:408 ckan/controllers/group.py:525
#: ckan/controllers/package.py:345 ckan/controllers/package.py:575
#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411
#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396
#: ckan/views/dataset.py:797 ckan/views/group.py:763
#: ckan/views/resource.py:347 ckan/views/resource.py:527
#: ckan/views/resource.py:627
#, python-format
msgid "User %r not authorized to edit %s"
msgstr "User %r not authorised to edit %s"

#: ckan/controllers/group.py:455 ckan/views/group.py:811
msgid "Not authorized to perform bulk update"
msgstr "Not authorised to perform bulk update"

#: ckan/controllers/group.py:473 ckan/views/group.py:838
#: ckan/views/group.py:927
msgid "Unauthorized to create a group"
msgstr "Unauthorised to create a topic"

#: ckan/controllers/group.py:551 ckan/controllers/group.py:581
#: ckan/controllers/package.py:947 ckan/controllers/package.py:995
#: ckan/controllers/user.py:245 ckan/controllers/user.py:369
#: ckan/controllers/user.py:550 ckan/views/dataset.py:552
#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302
#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282
#: ckan/views/user.py:389 ckan/views/user.py:738
msgid "Integrity Error"
msgstr "Integrity Error"

#: ckan/controllers/group.py:607
#, python-format
msgid "User %r not authorized to edit %s authorizations"
msgstr "User %r not authorised to edit %s authorisations"

#: ckan/controllers/group.py:627 ckan/controllers/group.py:642
#: ckan/views/group.py:1010 ckan/views/group.py:1027
#, python-format
msgid "Unauthorized to delete group %s"
msgstr "Unauthorised to delete topic %s"

#: ckan/controllers/group.py:633 ckan/views/group.py:1019
msgid "Organization has been deleted."
msgstr "Organisation has been deleted."

#: ckan/controllers/group.py:635 ckan/views/group.py:1021
msgid "Group has been deleted."
msgstr "Topic has been deleted."

#: ckan/controllers/group.py:637 ckan/views/group.py:1024
#, python-format
msgid "%s has been deleted."
msgstr "%s has been deleted."

#: ckan/controllers/group.py:661 ckan/views/group.py:539
#, python-format
msgid "User %r not authorized to edit members of %s"
msgstr "User %r not authorised to edit members of %s"

#: ckan/controllers/group.py:682 ckan/views/group.py:1071
#, python-format
msgid "Unauthorized to create group %s members"
msgstr "Unauthorized to create topic %s members"

#: ckan/controllers/group.py:724 ckan/views/group.py:1097
#, python-format
msgid "Unauthorized to add member to group %s"
msgstr "Unauthorised to add member to topic %s"

#: ckan/controllers/group.py:743 ckan/controllers/group.py:756
#: ckan/views/group.py:567 ckan/views/group.py:588
#, python-format
msgid "Unauthorized to delete group %s members"
msgstr "Unauthorised to delete topic %s members"

#: ckan/controllers/group.py:750 ckan/views/group.py:576
msgid "Group member has been deleted."
msgstr "Topic member has been deleted."

#: ckan/controllers/group.py:774 ckan/controllers/package.py:435
msgid "Select two revisions before doing the comparison."
msgstr "Select two revisions before doing the comparison."

#: ckan/controllers/group.py:798
msgid "CKAN Group Revision History"
msgstr "CKAN Topic Revision History"

#: ckan/controllers/group.py:802
msgid "Recent changes to CKAN Group: "
msgstr "Recent changes to CKAN Topic: "

#: ckan/controllers/group.py:823 ckan/controllers/package.py:486
msgid "Log message: "
msgstr "Log message: "

#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195
#: ckan/controllers/user.py:723 ckan/views/dataset.py:921
#: ckan/views/group.py:614 ckan/views/user.py:768
msgid "You are now following {0}"
msgstr "You are now following {0}"

#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214
#: ckan/controllers/user.py:743 ckan/views/dataset.py:949
#: ckan/views/group.py:634 ckan/views/user.py:790
msgid "You are no longer following {0}"
msgstr "You are no longer following {0}"

#: ckan/controllers/group.py:915 ckan/controllers/user.py:583
#: ckan/views/group.py:654 ckan/views/user.py:814
#, python-format
msgid "Unauthorized to view followers %s"
msgstr "Unauthorised to view followers %s"

#: ckan/controllers/home.py:35
msgid "This site is currently off-line. Database is not initialised."
msgstr "This site is currently off-line. Database is not initialised."

#: ckan/controllers/home.py:73 ckan/views/home.py:61
#, python-format
msgid "Please <a href=\"%s\">update your profile</a> and add your email address. "
msgstr ""
"Please <a href=\"%s\">update your profile</a> and add your email address. "

#: ckan/controllers/home.py:75 ckan/views/home.py:63
#, python-format
msgid "%s uses your email address if you need to reset your password."
msgstr "%s uses your email address if you need to reset your password."

#: ckan/controllers/package.py:304 ckan/views/dataset.py:335
msgid "Invalid search query: {error_message}"
msgstr "Invalid search query: {error_message}"

#: ckan/controllers/package.py:323
msgid "Parameter \"{parameter_name}\" is not an integer"
msgstr "Parameter \"{parameter_name}\" is not an integer"

#: ckan/controllers/package.py:343 ckan/controllers/package.py:351
#: ckan/controllers/package.py:389 ckan/controllers/package.py:455
#: ckan/controllers/package.py:778 ckan/controllers/package.py:826
#: ckan/controllers/package.py:844 ckan/controllers/package.py:945
#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045
#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239
#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318
#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452
#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667
#: ckan/views/dataset.py:392 ckan/views/dataset.py:403
#: ckan/views/dataset.py:437 ckan/views/dataset.py:458
#: ckan/views/dataset.py:606 ckan/views/dataset.py:742
#: ckan/views/dataset.py:776 ckan/views/dataset.py:865
#: ckan/views/dataset.py:880 ckan/views/dataset.py:978
#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098
#: ckan/views/dataset.py:1252 ckan/views/resource.py:63
#: ckan/views/resource.py:74 ckan/views/resource.py:534
#: ckan/views/resource.py:585 ckan/views/resource.py:635
msgid "Dataset not found"
msgstr "Dataset not found"

#: ckan/controllers/package.py:377 ckan/controllers/package.py:379
#: ckan/controllers/package.py:381
#, python-format
msgid "Invalid revision format: %r"
msgstr "Invalid revision format: %r"

#: ckan/controllers/package.py:414 ckan/views/dataset.py:512
msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})."
msgstr "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})."

#: ckan/controllers/package.py:453 ckan/controllers/package.py:842
#: ckan/controllers/package.py:943 ckan/controllers/package.py:991
#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740
#: ckan/views/dataset.py:980
#, python-format
msgid "Unauthorized to read package %s"
msgstr "Unauthorised to read package %s"

#: ckan/controllers/package.py:462
msgid "CKAN Dataset Revision History"
msgstr "CKAN Dataset Revision History"

#: ckan/controllers/package.py:465
msgid "Recent changes to CKAN Dataset: "
msgstr "Recent changes to CKAN Dataset: "

#: ckan/controllers/package.py:521 ckan/views/dataset.py:537
msgid "Unauthorized to create a package"
msgstr "Unauthorised to create a package"

#: ckan/controllers/package.py:597 ckan/views/resource.py:377
msgid "Unauthorized to edit this resource"
msgstr "Unauthorised to edit this resource"

#: ckan/controllers/package.py:665 ckan/views/resource.py:219
msgid "Unauthorized to update dataset"
msgstr "Unauthorised to update dataset"

#: ckan/controllers/package.py:667 ckan/controllers/package.py:708
#: ckan/controllers/package.py:734 ckan/views/resource.py:223
#: ckan/views/resource.py:261 ckan/views/resource.py:298
msgid "The dataset {id} could not be found."
msgstr "The dataset {id} could not be found."

#: ckan/controllers/package.py:675 ckan/views/resource.py:227
msgid "You must add at least one data resource"
msgstr "You must add at least one data resource"

#: ckan/controllers/package.py:706 ckan/views/resource.py:258
msgid "Unauthorized to create a resource"
msgstr "Unauthorised to create a resource"

#: ckan/controllers/package.py:739 ckan/views/resource.py:306
msgid "Unauthorized to create a resource for this package"
msgstr "Unauthorised to create a resource for this package"

#: ckan/controllers/package.py:953 ckan/views/dataset.py:614
msgid "Unable to add package to search index."
msgstr "Unable to add package to search index."

#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750
msgid "Unable to update search index."
msgstr "Unable to update search index."

#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872
msgid "Dataset has been deleted."
msgstr "Dataset has been deleted."

#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061
#: ckan/views/dataset.py:869 ckan/views/dataset.py:884
#: ckan/views/resource.py:450
#, python-format
msgid "Unauthorized to delete package %s"
msgstr "Unauthorised to delete package %s"

#: ckan/controllers/package.py:1066 ckan/views/resource.py:464
msgid "Resource has been deleted."
msgstr "Resource has been deleted."

#: ckan/controllers/package.py:1077 ckan/views/resource.py:476
#: ckan/views/resource.py:493
#, python-format
msgid "Unauthorized to delete resource %s"
msgstr "Unauthorised to delete resource %s"

#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578
#: ckan/views/resource.py:123 ckan/views/resource.py:602
msgid "Resource view not found"
msgstr "Resource view not found"

#: ckan/controllers/package.py:1174
msgid "Resource data not found"
msgstr "Resource data not found"

#: ckan/controllers/package.py:1183 ckan/views/resource.py:177
msgid "No download is available"
msgstr "No download is available"

#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100
#, python-format
msgid "Unauthorized to read dataset %s"
msgstr "Unauthorised to read dataset %s"

#: ckan/controllers/package.py:1428 ckan/views/resource.py:547
#, python-format
msgid "Unauthorized to read resource %s"
msgstr "Unauthorised to read resource %s"

#: ckan/controllers/package.py:1492 ckan/views/resource.py:697
msgid "Unauthorized to edit resource"
msgstr "Unauthorised to edit resource"

#: ckan/controllers/package.py:1510 ckan/views/resource.py:738
msgid "View not found"
msgstr "View not found"

#: ckan/controllers/package.py:1516 ckan/views/resource.py:747
msgid "View Type Not found"
msgstr "View Type Not found"

#: ckan/controllers/package.py:1572 ckan/views/resource.py:597
msgid "Bad resource view data"
msgstr "Bad resource view data"

#: ckan/controllers/package.py:1581 ckan/views/resource.py:605
msgid "Resource view not supplied"
msgstr "Resource view not supplied"

#: ckan/controllers/package.py:1610 ckan/views/resource.py:908
msgid "No preview has been defined."
msgstr "No preview has been defined."

#: ckan/controllers/user.py:83 ckan/controllers/user.py:228
#: ckan/controllers/user.py:243 ckan/controllers/user.py:310
#: ckan/controllers/user.py:367 ckan/controllers/user.py:522
#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366
#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309
#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545
#: ckan/views/user.py:691 ckan/views/user.py:736
msgid "User not found"
msgstr "User not found"

#: ckan/controllers/user.py:157 ckan/views/user.py:374
msgid "Unauthorized to register as a user."
msgstr "Unauthorised to register as a user."

#: ckan/controllers/user.py:175
msgid "Unauthorized to create a user"
msgstr "Unauthorised to create a user"

#: ckan/controllers/user.py:206 ckan/views/user.py:515
msgid "Unauthorized to delete user with id \"{user_id}\"."
msgstr "Unauthorised to delete user with id \"{user_id}\"."

#: ckan/controllers/user.py:220 ckan/controllers/user.py:283
#: ckan/views/user.py:252 ckan/views/user.py:537
msgid "No user specified"
msgstr "No user specified"

#: ckan/controllers/user.py:226 ckan/controllers/user.py:308
#: ckan/controllers/user.py:365 ckan/controllers/user.py:546
#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543
#: ckan/views/user.py:734
#, python-format
msgid "Unauthorized to edit user %s"
msgstr "Unauthorised to edit user %s"

#: ckan/controllers/user.py:230 ckan/controllers/user.py:357
#: ckan/views/user.py:315 ckan/views/user.py:547
msgid "Profile updated"
msgstr "Profile updated"

#: ckan/controllers/user.py:241 ckan/views/user.py:402
#, python-format
msgid "Unauthorized to create user %s"
msgstr "Unauthorised to create user %s"

#: ckan/controllers/user.py:247 ckan/views/user.py:395
msgid "Bad Captcha. Please try again."
msgstr "Bad Captcha. Please try again."

#: ckan/controllers/user.py:261 ckan/views/user.py:414
#, python-format
msgid ""
"User \"%s\" is now registered but you are still logged in as \"%s\" from "
"before"
msgstr ""
"User \"%s\" is now registered but you are still logged in as \"%s\" from "
"before"

#: ckan/controllers/user.py:289 ckan/views/user.py:258
msgid "Unauthorized to edit a user."
msgstr "Unauthorised to edit a user."

#: ckan/controllers/user.py:375 ckan/views/user.py:299
msgid "Password entered was incorrect"
msgstr "Password entered was incorrect"

#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34
#: ckan/views/user.py:301
msgid "Old Password"
msgstr "Old Password"

#: ckan/controllers/user.py:376 ckan/views/user.py:301
msgid "incorrect password"
msgstr "incorrect password"

#: ckan/controllers/user.py:416 ckan/views/user.py:475
msgid "Login failed. Bad username or password."
msgstr "Login failed. Bad username or password."

#: ckan/controllers/user.py:449 ckan/views/user.py:598
msgid "Unauthorized to request reset password."
msgstr "Unauthorised to request reset password."

#: ckan/controllers/user.py:454 ckan/views/user.py:604
msgid "Email is required"
msgstr ""

#: ckan/controllers/user.py:492 ckan/views/user.py:656
msgid ""
"Error sending the email. Try again later or contact an administrator for "
"help"
msgstr ""

#: ckan/controllers/user.py:500 ckan/views/user.py:664
msgid ""
"A reset link has been emailed to you (unless the account specified does not "
"exist)"
msgstr ""

#: ckan/controllers/user.py:514 ckan/views/user.py:686
msgid "Unauthorized to reset password."
msgstr "Unauthorised to reset password."

#: ckan/controllers/user.py:526 ckan/views/user.py:695
msgid "Invalid reset key. Please try again."
msgstr "Invalid reset key. Please try again."

#: ckan/controllers/user.py:543 ckan/views/user.py:731
msgid "Your password has been reset."
msgstr "Your password has been reset."

#: ckan/controllers/user.py:565
msgid "Your password must be 4 characters or longer."
msgstr "Your password must be 4 characters or longer."

#: ckan/controllers/user.py:568 ckan/views/user.py:710
msgid "The passwords you entered do not match."
msgstr "The passwords you entered do not match."

#: ckan/controllers/user.py:571 ckan/views/user.py:713
msgid "You must provide a password"
msgstr "You must provide a password"

#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62
msgid "Follow item not found"
msgstr "Follow item not found"

#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66
msgid "{0} not found"
msgstr "{0} not found"

#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80
msgid "Everything"
msgstr "Everything"

#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16
#: ckan/templates/organization/edit_base.html:17
#: ckan/templates/package/resource_read.html:38
#: ckan/templates/package/resource_views.html:4
msgid "View"
msgstr "View"

#: ckan/lib/email_notifications.py:103
msgid "{n} new activity from {site_title}"
msgid_plural "{n} new activities from {site_title}"
msgstr[0] "{n} new activity from {site_title}"
msgstr[1] "{n} new activities from {site_title}"

#: ckan/lib/formatters.py:49
msgid "Just now"
msgstr "Just now"

#: ckan/lib/formatters.py:74
msgid "{bytes} bytes"
msgstr "{bytes} bytes"

#: ckan/lib/formatters.py:76
msgid "{kibibytes} KiB"
msgstr "{kibibytes} KiB"

#: ckan/lib/formatters.py:78
msgid "{mebibytes} MiB"
msgstr "{mebibytes} MiB"

#: ckan/lib/formatters.py:80
msgid "{gibibytes} GiB"
msgstr "{gibibytes} GiB"

#: ckan/lib/formatters.py:82
msgid "{tebibytes} TiB"
msgstr "{tebibytes} TiB"

#: ckan/lib/formatters.py:94
msgid "{n}"
msgstr "{n}"

#: ckan/lib/formatters.py:96
msgid "{k}k"
msgstr "{k}k"

#: ckan/lib/formatters.py:98
msgid "{m}M"
msgstr "{m}M"

#: ckan/lib/formatters.py:100
msgid "{g}G"
msgstr "{g}G"

#: ckan/lib/formatters.py:102
msgid "{t}T"
msgstr "{t}T"

#: ckan/lib/formatters.py:104
msgid "{p}P"
msgstr "{p}P"

#: ckan/lib/formatters.py:106
msgid "{e}E"
msgstr "{e}E"

#: ckan/lib/formatters.py:108
msgid "{z}Z"
msgstr "{z}Z"

#: ckan/lib/formatters.py:110
msgid "{y}Y"
msgstr "{y}Y"

#: ckan/lib/helpers.py:1764
msgid "Unknown"
msgstr "Unknown"

#: ckan/lib/helpers.py:1817
#: ckan/templates/snippets/changes/new_resource.html:10
msgid "Unnamed resource"
msgstr "Unnamed resource"

#: ckan/lib/helpers.py:1856
msgid "Created new dataset."
msgstr "Created new dataset."

#: ckan/lib/helpers.py:1858
msgid "Edited resources."
msgstr "Edited resources."

#: ckan/lib/helpers.py:1860
msgid "Edited settings."
msgstr "Edited settings."

#: ckan/lib/helpers.py:2096
msgid "{number} view"
msgid_plural "{number} views"
msgstr[0] "{number} view"
msgstr[1] "{number} views"

#: ckan/lib/helpers.py:2098
msgid "{number} recent view"
msgid_plural "{number} recent views"
msgstr[0] "{number} recent view"
msgstr[1] "{number} recent views"

#: ckan/lib/mailer.py:58
#, python-format
msgid "%s <%s>"
msgstr "%s <%s>"

#: ckan/lib/mailer.py:132
msgid "No recipient email address available!"
msgstr "No recipient email address available!"

#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17
msgid "organization"
msgstr "organisation"

#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23
msgid "group"
msgstr "topic"

#: ckan/lib/navl/dictization_functions.py:13
#: ckan/lib/navl/dictization_functions.py:16
#: ckan/lib/navl/dictization_functions.py:19
#: ckan/lib/navl/dictization_functions.py:22
#: ckan/lib/navl/dictization_functions.py:25
#: ckan/lib/navl/dictization_functions.py:28
#: ckan/lib/navl/dictization_functions.py:31
#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28
#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55
#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245
#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635
msgid "Missing value"
msgstr "Missing value"

#: ckan/lib/navl/validators.py:69
#, python-format
msgid "The input field %(name)s was not expected."
msgstr "The input field %(name)s was not expected."

#: ckan/lib/navl/validators.py:133
msgid "Please enter an integer value"
msgstr "Please enter an integer value"

#: ckan/lib/navl/validators.py:139
msgid "Must be a Unicode string value"
msgstr "Must be a Unicode string value"

#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62
msgid "Package resource(s) invalid"
msgstr "Package resource(s) invalid"

#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112
#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66
msgid "Extras"
msgstr "Extras"

#: ckan/logic/converters.py:77 ckan/logic/converters.py:92
#, python-format
msgid "Tag vocabulary \"%s\" does not exist"
msgstr "Tag vocabulary \"%s\" does not exist"

#: ckan/logic/converters.py:149 ckan/logic/validators.py:173
#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21
#: ckan/tests/config/test_middleware.py:107
msgid "Dataset"
msgstr "Dataset"

#: ckan/logic/converters.py:183
msgid "Could not parse as valid JSON"
msgstr "Could not parse as valid JSON"

#: ckan/logic/validators.py:40 ckan/logic/validators.py:49
msgid "An organization must be provided"
msgstr "An organisation must be provided"

#: ckan/logic/validators.py:67
msgid "You cannot move this dataset to another organization"
msgstr ""

#: ckan/logic/validators.py:71
msgid "Organization does not exist"
msgstr "Organisation does not exist"

#: ckan/logic/validators.py:76
msgid "You cannot add a dataset to this organization"
msgstr "You cannot add a dataset to this organisation"

#: ckan/logic/validators.py:116
msgid "Invalid integer"
msgstr "Invalid integer"

#: ckan/logic/validators.py:121
msgid "Must be a natural number"
msgstr "Must be a natural number"

#: ckan/logic/validators.py:127
msgid "Must be a postive integer"
msgstr "Must be a postive integer"

#: ckan/logic/validators.py:154
msgid "Date format incorrect"
msgstr "Date format incorrect"

#: ckan/logic/validators.py:163
msgid "No links are allowed in the log_message."
msgstr "No links are allowed in the log_message."

#: ckan/logic/validators.py:183
msgid "Dataset id already exists"
msgstr "Dataset id already exists"

#: ckan/logic/validators.py:224
msgid "Resource"
msgstr "Resource"

#: ckan/logic/validators.py:278
msgid "That group name or ID does not exist."
msgstr "That topic name or ID does not exist."

#: ckan/logic/validators.py:292
msgid "Activity type"
msgstr "Activity type"

#: ckan/logic/validators.py:355
msgid "Names must be strings"
msgstr "Names must be strings"

#: ckan/logic/validators.py:359
msgid "That name cannot be used"
msgstr "That name cannot be used"

#: ckan/logic/validators.py:362
#, python-format
msgid "Must be at least %s characters long"
msgstr "Must be at least %s characters long"

#: ckan/logic/validators.py:364 ckan/logic/validators.py:651
#, python-format
msgid "Name must be a maximum of %i characters long"
msgstr "Name must be a maximum of %i characters long"

#: ckan/logic/validators.py:367
msgid ""
"Must be purely lowercase alphanumeric (ascii) characters and these symbols: "
"-_"
msgstr ""
"Must be purely lowercase alphanumeric (ascii) characters and these symbols: "
"-_"

#: ckan/logic/validators.py:385
msgid "That URL is already in use."
msgstr "That URL is already in use."

#: ckan/logic/validators.py:390
#, python-format
msgid "Name \"%s\" length is less than minimum %s"
msgstr "Name \"%s\" length is less than minimum %s"

#: ckan/logic/validators.py:394
#, python-format
msgid "Name \"%s\" length is more than maximum %s"
msgstr "Name \"%s\" length is more than maximum %s"

#: ckan/logic/validators.py:400
#, python-format
msgid "Version must be a maximum of %i characters long"
msgstr "Version must be a maximum of %i characters long"

#: ckan/logic/validators.py:418
#, python-format
msgid "Duplicate key \"%s\""
msgstr "Duplicate key \"%s\""

#: ckan/logic/validators.py:434
msgid "Group name already exists in database"
msgstr "Topic name already exists in database"

#: ckan/logic/validators.py:440
#, python-format
msgid "Tag \"%s\" length is less than minimum %s"
msgstr "Tag \"%s\" length is less than minimum %s"

#: ckan/logic/validators.py:444
#, python-format
msgid "Tag \"%s\" length is more than maximum %i"
msgstr "Tag \"%s\" length is more than maximum %i"

#: ckan/logic/validators.py:452
#, python-format
msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_."
msgstr "Tag \"%s\" must be alphanumeric characters or symbols: -_."

#: ckan/logic/validators.py:460
#, python-format
msgid "Tag \"%s\" must not be uppercase"
msgstr "Tag \"%s\" must not be uppercase"

#: ckan/logic/validators.py:568
msgid "User names must be strings"
msgstr "User names must be strings"

#: ckan/logic/validators.py:583
msgid "That login name is not available."
msgstr "That login name is not available."

#: ckan/logic/validators.py:587
msgid "That login name can not be modified."
msgstr ""

#: ckan/logic/validators.py:598
msgid "Please enter both passwords"
msgstr "Please enter both passwords"

#: ckan/logic/validators.py:606
msgid "Passwords must be strings"
msgstr "Passwords must be strings"

#: ckan/logic/validators.py:610
msgid "Your password must be 8 characters or longer"
msgstr ""

#: ckan/logic/validators.py:619
msgid "The passwords you entered do not match"
msgstr "The passwords you entered do not match"

#: ckan/logic/validators.py:639
msgid ""
"Edit not allowed as it looks like spam. Please avoid links in your "
"description."
msgstr ""
"Edit not allowed as it looks like spam. Please avoid links in your "
"description."

#: ckan/logic/validators.py:648
#, python-format
msgid "Name must be at least %s characters long"
msgstr "Name must be at least %s characters long"

#: ckan/logic/validators.py:656
msgid "That vocabulary name is already in use."
msgstr "That vocabulary name is already in use."

#: ckan/logic/validators.py:662
#, python-format
msgid "Cannot change value of key from %s to %s. This key is read-only"
msgstr "Cannot change value of key from %s to %s. This key is read-only"

#: ckan/logic/validators.py:671
msgid "Tag vocabulary was not found."
msgstr "Tag vocabulary was not found."

#: ckan/logic/validators.py:684
#, python-format
msgid "Tag %s does not belong to vocabulary %s"
msgstr "Tag %s does not belong to vocabulary %s"

#: ckan/logic/validators.py:690
msgid "No tag name"
msgstr "No tag name"

#: ckan/logic/validators.py:703
#, python-format
msgid "Tag %s already belongs to vocabulary %s"
msgstr "Tag %s already belongs to vocabulary %s"

#: ckan/logic/validators.py:725
msgid "Please provide a valid URL"
msgstr "Please provide a valid URL"

#: ckan/logic/validators.py:739
msgid "role does not exist."
msgstr "role does not exist."

#: ckan/logic/validators.py:768
msgid "Datasets with no organization can't be private."
msgstr "Datasets with no organisation can't be private."

#: ckan/logic/validators.py:774
msgid "Not a list"
msgstr "Not a list"

#: ckan/logic/validators.py:777
msgid "Not a string"
msgstr "Not a string"

#: ckan/logic/validators.py:811
msgid "This parent would create a loop in the hierarchy"
msgstr "This parent would create a loop in the hierarchy"

#: ckan/logic/validators.py:821
msgid "\"filter_fields\" and \"filter_values\" should have the same length"
msgstr "\"filter_fields\" and \"filter_values\" should have the same length"

#: ckan/logic/validators.py:832
msgid "\"filter_fields\" is required when \"filter_values\" is filled"
msgstr "\"filter_fields\" is required when \"filter_values\" is filled"

#: ckan/logic/validators.py:835
msgid "\"filter_values\" is required when \"filter_fields\" is filled"
msgstr "\"filter_values\" is required when \"filter_fields\" is filled"

#: ckan/logic/validators.py:849
msgid "There is a schema field with the same name"
msgstr "There is a schema field with the same name"

#: ckan/logic/validators.py:879
msgid "Email {email} is not a valid format"
msgstr "Email {email} is not a valid format"

#: ckan/logic/validators.py:919
msgid "Must be a dict"
msgstr ""

#: ckan/logic/validators.py:940
msgid "The email address '{email}' belongs to a registered user."
msgstr ""

#: ckan/logic/validators.py:947
msgid "Value must be one of {}"
msgstr ""

#: ckan/logic/validators.py:958
msgid "The value should be a valid JSON object"
msgstr ""

#: ckan/logic/validators.py:960
msgid "Could not parse the value as a valid JSON object"
msgstr ""

#: ckan/logic/validators.py:970
msgid "Could not parse extra '{name}' as valid JSON"
msgstr ""

#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21
msgid "Missing Value"
msgstr "Missing Value"

#: ckan/logic/action/create.py:660
msgid "Role must be one of \"{}\""
msgstr ""

#: ckan/logic/action/create.py:671
msgid "Not allowed to add collaborators"
msgstr ""

#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358
#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311
msgid "Dataset collaborators not enabled"
msgstr ""

#: ckan/logic/action/create.py:869
msgid "Trying to create an organization as a group"
msgstr "Trying to create an organisation as a topic"

#: ckan/logic/action/create.py:958
msgid "You must supply a package id or name (parameter \"package\")."
msgstr "You must supply a package id or name (parameter \"package\")."

#: ckan/logic/action/create.py:961
msgid "You must supply a rating (parameter \"rating\")."
msgstr "You must supply a rating (parameter \"rating\")."

#: ckan/logic/action/create.py:966
msgid "Rating must be an integer value."
msgstr "Rating must be an integer value."

#: ckan/logic/action/create.py:970
#, python-format
msgid "Rating must be between %i and %i."
msgstr "Rating must be between %i and %i."

#: ckan/logic/action/create.py:1175
msgid "Error sending the invite email, the user was not created: {0}"
msgstr "Error sending the invite email, the user was not created: {0}"

#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356
msgid "You must be logged in to follow users"
msgstr "You must be logged in to follow users"

#: ckan/logic/action/create.py:1369
msgid "You cannot follow yourself"
msgstr "You cannot follow yourself"

#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434
#: ckan/logic/action/create.py:1573
msgid "You are already following {0}"
msgstr "You are already following {0}"

#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416
msgid "You must be logged in to follow a dataset."
msgstr "You must be logged in to follow a dataset."

#: ckan/logic/action/create.py:1474
msgid "User {username} does not exist."
msgstr "User {username} does not exist."

#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557
msgid "You must be logged in to follow a group."
msgstr "You must be logged in to follow a topic."

#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263
msgid "Package not found"
msgstr ""

#: ckan/logic/action/delete.py:418
msgid "Organization cannot be deleted while it still has datasets"
msgstr ""

#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661
#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084
msgid "id not in data"
msgstr "id not in data"

#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458
#: ckan/logic/action/update.py:1088
#, python-format
msgid "Could not find vocabulary \"%s\""
msgstr "Could not find vocabulary \"%s\""

#: ckan/logic/action/delete.py:669
#, python-format
msgid "Could not find tag \"%s\""
msgstr "Could not find tag \"%s\""

#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686
msgid "You must be logged in to unfollow something."
msgstr "You must be logged in to unfollow something."

#: ckan/logic/action/delete.py:697
msgid "You are not following {0}."
msgstr "You are not following {0}."

#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323
msgid "Capacity must be one of \"{}\""
msgstr ""

#: ckan/logic/action/get.py:317
msgid "Not allowed to retrieve collaborators"
msgstr ""

#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76
#: ckan/logic/action/update.py:90
msgid "Resource was not found."
msgstr "Resource was not found."

#: ckan/logic/action/get.py:1176
msgid "Parameter is not an bool"
msgstr ""

#: ckan/logic/action/get.py:2056
msgid "Do not specify if using \"query\" parameter"
msgstr "Do not specify if using \"query\" parameter"

#: ckan/logic/action/get.py:2065
msgid "Must be <field>:<value> pair(s)"
msgstr "Must be <field>:<value> pair(s)"

#: ckan/logic/action/get.py:2097
msgid "Field \"{field}\" not recognised in resource_search."
msgstr "Field \"{field}\" not recognised in resource_search."

#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169
msgid "Package was not found."
msgstr "Package was not found."

#: ckan/logic/action/update.py:944
msgid "TaskStatus was not found."
msgstr "TaskStatus was not found."

#: ckan/logic/action/update.py:1173
msgid "Organization was not found."
msgstr "Organisation was not found."

#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45
#, python-format
msgid "User %s not authorized to create packages"
msgstr "User %s not authorised to create packages"

#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56
#, python-format
msgid "User %s not authorized to edit these groups"
msgstr "User %s not authorised to edit these topics"

#: ckan/logic/auth/create.py:38
#, python-format
msgid "User %s not authorized to add dataset to this organization"
msgstr "User %s not authorised to add dataset to this organisation"

#: ckan/logic/auth/create.py:61
msgid "No dataset id provided, cannot check auth."
msgstr "No dataset id provided, cannot check auth."

#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34
#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79
msgid "No package found for this resource, cannot check auth."
msgstr "No package found for this resource, cannot check auth."

#: ckan/logic/auth/create.py:76
#, python-format
msgid "User %s not authorized to create resources on dataset %s"
msgstr "User %s not authorised to create resources on dataset %s"

#: ckan/logic/auth/create.py:108
#, python-format
msgid "User %s not authorized to edit these packages"
msgstr "User %s not authorised to edit these packages"

#: ckan/logic/auth/create.py:119
#, python-format
msgid "User %s not authorized to create groups"
msgstr "User %s not authorised to create topics"

#: ckan/logic/auth/create.py:129
#, python-format
msgid "User %s not authorized to create organizations"
msgstr "User %s not authorised to create organisations"

#: ckan/logic/auth/create.py:145
msgid "User {user} not authorized to create users via the API"
msgstr "User {user} not authorised to create users via the API"

#: ckan/logic/auth/create.py:148
msgid "Not authorized to create users"
msgstr "Not authorised to create users"

#: ckan/logic/auth/create.py:191
msgid "Group was not found."
msgstr "Topic was not found."

#: ckan/logic/auth/create.py:225
#, python-format
msgid "User %s not authorized to add members"
msgstr "User %s not authorised to add members"

#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131
#, python-format
msgid "User %s not authorized to edit group %s"
msgstr "User %s not authorised to edit topic %s"

#: ckan/logic/auth/create.py:280
#, python-format
msgid "User %s not authorized to add collaborators to this dataset"
msgstr ""

#: ckan/logic/auth/delete.py:40
#, python-format
msgid "User %s not authorized to delete resource %s"
msgstr "User %s not authorised to delete resource %s"

#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154
msgid "Resource view not found, cannot check auth."
msgstr "Resource view not found, cannot check auth."

#: ckan/logic/auth/delete.py:73
#, python-format
msgid "User %s not authorized to delete relationship %s"
msgstr "User %s not authorised to delete relationship %s"

#: ckan/logic/auth/delete.py:82
#, python-format
msgid "User %s not authorized to delete groups"
msgstr "User %s not authorised to delete topics"

#: ckan/logic/auth/delete.py:86
#, python-format
msgid "User %s not authorized to delete group %s"
msgstr "User %s not authorised to delete topic %s"

#: ckan/logic/auth/delete.py:103
#, python-format
msgid "User %s not authorized to delete organizations"
msgstr "User %s not authorised to delete organisations"

#: ckan/logic/auth/delete.py:107
#, python-format
msgid "User %s not authorized to delete organization %s"
msgstr "User %s not authorised to delete organisation %s"

#: ckan/logic/auth/delete.py:120
#, python-format
msgid "User %s not authorized to delete task_status"
msgstr "User %s not authorised to delete task_status"

#: ckan/logic/auth/delete.py:156
#, python-format
msgid "User %s not authorized to remove collaborators from this dataset"
msgstr ""

#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370
msgid "Not authorized"
msgstr "Not authorised"

#: ckan/logic/auth/get.py:108
#, python-format
msgid "User %s not authorized to read these packages"
msgstr "User %s not authorised to read these packages"

#: ckan/logic/auth/get.py:124
#, python-format
msgid "User %s not authorized to read package %s"
msgstr "User %s not authorised to read package %s"

#: ckan/logic/auth/get.py:143
#, python-format
msgid "User %s not authorized to read resource %s"
msgstr "User %s not authorised to read resource %s"

#: ckan/logic/auth/get.py:177
#, python-format
msgid "User %s not authorized to read group %s"
msgstr "User %s not authorised to read topic %s"

#: ckan/logic/auth/get.py:249
msgid "You must be logged in to access your dashboard."
msgstr "You must be logged in to access your dashboard."

#: ckan/logic/auth/get.py:460
#, python-format
msgid "User %s not authorized to list collaborators from this dataset"
msgstr ""

#: ckan/logic/auth/update.py:50
#, python-format
msgid "User %s not authorized to edit package %s"
msgstr "User %s not authorised to edit package %s"

#: ckan/logic/auth/update.py:87
#, python-format
msgid "User %s not authorized to edit resource %s"
msgstr "User %s not authorised to edit resource %s"

#: ckan/logic/auth/update.py:116
#, python-format
msgid "User %s not authorized to change state of package %s"
msgstr "User %s not authorised to change state of package %s"

#: ckan/logic/auth/update.py:144
#, python-format
msgid "User %s not authorized to edit organization %s"
msgstr "User %s not authorised to edit organisation %s"

#: ckan/logic/auth/update.py:161
#, python-format
msgid "User %s not authorized to change state of group %s"
msgstr "User %s not authorised to change state of topic %s"

#: ckan/logic/auth/update.py:178
#, python-format
msgid "User %s not authorized to edit permissions of group %s"
msgstr "User %s not authorised to edit permissions of topic %s"

#: ckan/logic/auth/update.py:206
msgid "Have to be logged in to edit user"
msgstr "Have to be logged in to edit user"

#: ckan/logic/auth/update.py:214
#, python-format
msgid "User %s not authorized to edit user %s"
msgstr "User %s not authorised to edit user %s"

#: ckan/logic/auth/update.py:225
msgid "User {0} not authorized to update user {1}"
msgstr "User {0} not authorised to update user {1}"

#: ckan/logic/auth/update.py:233
#, python-format
msgid "User %s not authorized to change state of revision"
msgstr "User %s not authorised to change state of revision"

#: ckan/logic/auth/update.py:242
#, python-format
msgid "User %s not authorized to update task_status table"
msgstr "User %s not authorised to update task_status table"

#: ckan/logic/auth/update.py:256
#, python-format
msgid "User %s not authorized to update term_translation table"
msgstr "User %s not authorised to update term_translation table"

#: ckan/model/license.py:145
msgid "title"
msgstr ""

#: ckan/model/license.py:240
msgid "License not specified"
msgstr "License not specified"

#: ckan/model/license.py:250
msgid "Open Data Commons Public Domain Dedication and License (PDDL)"
msgstr "Open Data Commons Public Domain Dedication and License (PDDL)"

#: ckan/model/license.py:260
msgid "Open Data Commons Open Database License (ODbL)"
msgstr "Open Data Commons Open Database License (ODbL)"

#: ckan/model/license.py:270
msgid "Open Data Commons Attribution License"
msgstr "Open Data Commons Attribution License"

#: ckan/model/license.py:281
msgid "Creative Commons CCZero"
msgstr "Creative Commons CCZero"

#: ckan/model/license.py:290
msgid "Creative Commons Attribution"
msgstr "Creative Commons Attribution"

#: ckan/model/license.py:300
msgid "Creative Commons Attribution Share-Alike"
msgstr "Creative Commons Attribution Share-Alike"

#: ckan/model/license.py:309
msgid "GNU Free Documentation License"
msgstr "GNU Free Documentation License"

#: ckan/model/license.py:319
msgid "Other (Open)"
msgstr "Other (Open)"

#: ckan/model/license.py:329
msgid "Other (Public Domain)"
msgstr "Other (Public Domain)"

#: ckan/model/license.py:339
msgid "Other (Attribution)"
msgstr "Other (Attribution)"

#: ckan/model/license.py:351
msgid "UK Open Government Licence (OGL)"
msgstr "UK Open Government Licence (OGL)"

#: ckan/model/license.py:359
msgid "Creative Commons Non-Commercial (Any)"
msgstr "Creative Commons Non-Commercial (Any)"

#: ckan/model/license.py:367
msgid "Other (Non-Commercial)"
msgstr "Other (Non-Commercial)"

#: ckan/model/license.py:375
msgid "Other (Not Open)"
msgstr "Other (Not Open)"

#: ckan/model/package_relationship.py:51
#, python-format
msgid "depends on %s"
msgstr "depends on %s"

#: ckan/model/package_relationship.py:51
#, python-format
msgid "is a dependency of %s"
msgstr "is a dependency of %s"

#: ckan/model/package_relationship.py:52
#, python-format
msgid "derives from %s"
msgstr "derives from %s"

#: ckan/model/package_relationship.py:52
#, python-format
msgid "has derivation %s"
msgstr "has derivation %s"

#: ckan/model/package_relationship.py:53
#, python-format
msgid "links to %s"
msgstr "links to %s"

#: ckan/model/package_relationship.py:53
#, python-format
msgid "is linked from %s"
msgstr "is linked from %s"

#: ckan/model/package_relationship.py:54
#, python-format
msgid "is a child of %s"
msgstr "is a child of %s"

#: ckan/model/package_relationship.py:54
#, python-format
msgid "is a parent of %s"
msgstr "is a parent of %s"

#: ckan/model/package_relationship.py:58
#, python-format
msgid "has sibling %s"
msgstr "has sibling %s"

#: ckan/public/base/javascript/modules/api-info.js:96
#: ckan/public/base/javascript/modules/api-info.min.js:2
msgid "There is no API data to load for this resource"
msgstr "There is no API data to load for this resource"

#: ckan/public/base/javascript/modules/api-info.js:124
#: ckan/public/base/javascript/modules/api-info.min.js:4
msgid "Failed to load data API information"
msgstr "Failed to load data API information"

#: ckan/public/base/javascript/modules/autocomplete.js:211
#: ckan/public/base/javascript/modules/autocomplete.min.js:7
msgid "Start typing…"
msgstr "Start typing…"

#: ckan/public/base/javascript/modules/autocomplete.js:211
#: ckan/public/base/javascript/modules/autocomplete.min.js:7
msgid "No matches found"
msgstr "No matches found"

#: ckan/public/base/javascript/modules/autocomplete.js:220
#: ckan/public/base/javascript/modules/autocomplete.min.js:7
#, python-format
msgid "Input is too short, must be at least one character"
msgid_plural "Input is too short, must be at least %(num)d characters"
msgstr[0] "Input is too short, must be at least one character"
msgstr[1] "Input is too short, must be at least %(num)d characters"

#: ckan/public/base/javascript/modules/basic-form.js:4
#: ckan/public/base/javascript/modules/basic-form.min.js:1
msgid "There are unsaved modifications to this form"
msgstr "There are unsaved modifications to this form"

#: ckan/public/base/javascript/modules/confirm-action.js:118
#: ckan/public/base/javascript/modules/confirm-action.min.js:2
msgid "Please Confirm Action"
msgstr "Please Confirm Action"

#: ckan/public/base/javascript/modules/confirm-action.js:121
#: ckan/public/base/javascript/modules/confirm-action.min.js:2
msgid "Are you sure you want to perform this action?"
msgstr "Are you sure you want to perform this action?"

#: ckan/public/base/javascript/modules/confirm-action.js:123
#: ckan/public/base/javascript/modules/confirm-action.min.js:2
#: ckan/templates/user/new_user_form.html:9
#: ckan/templates/user/perform_reset.html:26
msgid "Confirm"
msgstr "Confirm"

#: ckan/public/base/javascript/modules/confirm-action.js:124
#: ckan/public/base/javascript/modules/confirm-action.min.js:2
#: ckan/public/base/javascript/modules/resource-reorder.js:68
#: ckan/public/base/javascript/modules/resource-reorder.min.js:1
#: ckan/public/base/javascript/modules/resource-view-reorder.js:58
#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1
#: ckan/templates/admin/confirm_reset.html:9
#: ckan/templates/group/confirm_delete.html:14
#: ckan/templates/group/confirm_delete_member.html:15
#: ckan/templates/organization/confirm_delete.html:14
#: ckan/templates/organization/confirm_delete_member.html:15
#: ckan/templates/package/confirm_delete.html:15
#: ckan/templates/package/confirm_delete_resource.html:14
msgid "Cancel"
msgstr "Cancel"

#: ckan/public/base/javascript/modules/follow.js:70
#: ckan/public/base/javascript/modules/follow.min.js:1
#: ckan/templates/snippets/follow_button.html:4
msgid "Unfollow"
msgstr "Unfollow"

#: ckan/public/base/javascript/modules/follow.js:73
#: ckan/public/base/javascript/modules/follow.min.js:1
#: ckan/templates/snippets/follow_button.html:9
msgid "Follow"
msgstr "Follow"

#: ckan/public/base/javascript/modules/image-upload.js:62
#: ckan/public/base/javascript/modules/image-upload.min.js:3
msgid "Link"
msgstr "Link"

#: ckan/public/base/javascript/modules/image-upload.js:63
#: ckan/public/base/javascript/modules/image-upload.min.js:3
msgid "Link to a URL on the internet (you can also link to an API)"
msgstr "Link to a URL on the internet (you can also link to an API)"

#: ckan/public/base/javascript/modules/image-upload.js:70
#: ckan/public/base/javascript/modules/image-upload.min.js:4
msgid "Upload"
msgstr "Upload"

#: ckan/public/base/javascript/modules/image-upload.js:75
#: ckan/public/base/javascript/modules/image-upload.min.js:5
msgid "Please select the file to upload again"
msgstr ""

#: ckan/public/base/javascript/modules/image-upload.js:79
#: ckan/public/base/javascript/modules/image-upload.min.js:6
#: ckan/templates/group/snippets/group_item.html:43
#: ckan/templates/macros/form.html:251
#: ckan/templates/snippets/search_form.html:69
msgid "Remove"
msgstr "Remove"

#: ckan/public/base/javascript/modules/image-upload.js:94
#: ckan/public/base/javascript/modules/image-upload.min.js:7
msgid "Upload a file on your computer"
msgstr "Upload a file on your computer"

#: ckan/public/base/javascript/modules/image-upload.js:117
#: ckan/public/base/javascript/modules/image-upload.js:185
#: ckan/public/base/javascript/modules/image-upload.min.js:8
#: ckan/public/base/javascript/modules/image-upload.min.js:11
#: ckan/public/base/javascript/modules/slug-preview.js:56
#: ckan/public/base/javascript/modules/slug-preview.min.js:2
#: ckan/templates/group/snippets/group_form.html:18
#: ckan/templates/organization/snippets/organization_form.html:18
#: ckan/templates/package/snippets/package_basic_fields.html:13
#: ckan/templates/package/snippets/resource_form.html:26
msgid "URL"
msgstr "URL"

#: ckan/public/base/javascript/modules/image-upload.js:126
#: ckan/public/base/javascript/modules/image-upload.js:226
#: ckan/public/base/javascript/modules/image-upload.min.js:8
#: ckan/public/base/javascript/modules/image-upload.min.js:12
msgid "File"
msgstr "File"

#: ckan/public/base/javascript/modules/resource-reorder.js:42
#: ckan/public/base/javascript/modules/resource-reorder.min.js:1
msgid "Reorder resources"
msgstr ""

#: ckan/public/base/javascript/modules/resource-reorder.js:43
#: ckan/public/base/javascript/modules/resource-reorder.min.js:1
msgid ""
"You can rearrange the resources by dragging them using the arrow icon. Drag "
"the resource to the right and place it to the desired location on the list. "
"When you are done, click the \"Save order\" -button."
msgstr ""

#: ckan/public/base/javascript/modules/resource-reorder.js:65
#: ckan/public/base/javascript/modules/resource-reorder.min.js:1
#: ckan/public/base/javascript/modules/resource-view-reorder.js:55
#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1
msgid "Save order"
msgstr "Save order"

#: ckan/public/base/javascript/modules/resource-reorder.js:78
#: ckan/public/base/javascript/modules/resource-reorder.min.js:1
#: ckan/public/base/javascript/modules/resource-view-reorder.js:68
#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1
msgid "Saving..."
msgstr "Saving..."

#: ckan/public/base/javascript/modules/resource-upload-field.js:57
#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1
msgid "Upload a file"
msgstr "Upload a file"

#: ckan/public/base/javascript/modules/resource-upload-field.js:144
#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1
msgid "An Error Occurred"
msgstr "An Error Occurred"

#: ckan/public/base/javascript/modules/resource-upload-field.js:204
#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2
msgid "Unable to upload file"
msgstr "Unable to upload file"

#: ckan/public/base/javascript/modules/resource-upload-field.js:255
#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2
msgid "Unable to authenticate upload"
msgstr "Unable to authenticate upload"

#: ckan/public/base/javascript/modules/resource-upload-field.js:263
#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2
msgid "Resource uploaded"
msgstr "Resource uploaded"

#: ckan/public/base/javascript/modules/resource-upload-field.js:269
#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2
msgid "Unable to get data for uploaded file"
msgstr "Unable to get data for uploaded file"

#: ckan/public/base/javascript/modules/resource-upload-field.js:275
#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2
msgid ""
"You are uploading a file. Are you sure you want to navigate away and stop "
"this upload?"
msgstr ""
"You are uploading a file. Are you sure you want to navigate away and stop "
"this upload?"

#: ckan/public/base/javascript/modules/resource-view-filters.js:9
#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1
#: ckan/templates/package/snippets/view_form_filters.html:16
msgid "Add Filter"
msgstr "Add Filter"

#: ckan/public/base/javascript/modules/resource-view-filters.js:52
#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3
msgid "Select a field"
msgstr "Select a field"

#: ckan/public/base/javascript/modules/slug-preview.js:57
#: ckan/public/base/javascript/modules/slug-preview.min.js:2
#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28
#: ckan/templates/organization/bulk_process.html:75
#: ckan/templates/organization/edit.html:3
#: ckan/templates/organization/edit_base.html:22
#: ckan/templates/organization/members.html:33
#: ckan/templates/package/collaborators/collaborators.html:33
#: ckan/templates/package/edit_base.html:8
#: ckan/templates/package/resource_edit.html:3
#: ckan/templates/package/resource_edit_base.html:12
#: ckan/templates/package/snippets/resource_item.html:70
msgid "Edit"
msgstr "Edit"

#: ckan/public/base/javascript/modules/table-toggle-more.js:25
#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1
msgid "Show more"
msgstr "Show more"

#: ckan/public/base/javascript/modules/table-toggle-more.js:26
#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1
msgid "Hide"
msgstr "Hide"

#: ckan/templates/error_document_template.html:3
#, python-format
msgid "Error %(error_code)s"
msgstr "Error %(error_code)s"

#: ckan/templates/footer.html:9
msgid "About {0}"
msgstr "About {0}"

#: ckan/templates/footer.html:15
msgid "CKAN API"
msgstr "CKAN API"

#: ckan/templates/footer.html:16
msgid "CKAN Association"
msgstr "CKAN Association"

#: ckan/templates/footer.html:24
msgid ""
"<strong>Powered by</strong> <a class=\"hide-text ckan-footer-logo\" "
"href=\"http://ckan.org\">CKAN</a>"
msgstr ""
"<strong>Powered by</strong> <a class=\"hide-text ckan-footer-logo\" "
"href=\"http://ckan.org\">CKAN</a>"

#: ckan/templates/header.html:9
msgid "Sysadmin settings"
msgstr "Sysadmin settings"

#: ckan/templates/header.html:16
msgid "View profile"
msgstr "View profile"

#: ckan/templates/header.html:23
#, python-format
msgid "Dashboard (%(num)d new item)"
msgid_plural "Dashboard (%(num)d new items)"
msgstr[0] "Dashboard (%(num)d new item)"
msgstr[1] "Dashboard (%(num)d new items)"

#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6
msgid "Dashboard"
msgstr "Dashboard"

#: ckan/templates/header.html:33 ckan/templates/header.html:35
#: ckan/templates/user/dashboard.html:16
msgid "Profile settings"
msgstr ""

#: ckan/templates/header.html:40 ckan/templates/header.html:42
msgid "Log out"
msgstr "Log out"

#: ckan/templates/header.html:49
msgid "Account"
msgstr ""

#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14
msgid "Log in"
msgstr "Log in"

#: ckan/templates/header.html:54 ckan/templates/user/new.html:3
msgid "Register"
msgstr "Register"

#: ckan/templates/group/read_base.html:17
#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89
#: ckan/templates/organization/bulk_process.html:20
#: ckan/templates/organization/edit_base.html:23
#: ckan/templates/organization/read_base.html:17
#: ckan/templates/package/snippets/new_package_breadcrumb.html:1
#: ckan/templates/snippets/context/group.html:17
#: ckan/templates/snippets/context/user.html:19
#: ckan/templates/snippets/organization.html:61
#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19
#: ckan/templates/user/read_base.html:56
msgid "Datasets"
msgstr "Datasets"

#: ckan/templates/header.html:99
msgid "Search Datasets"
msgstr "Search Datasets"

#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11
#: ckan/templates/snippets/simple_search.html:5
#: ckan/templates/user/snippets/user_search.html:6
msgid "Search"
msgstr "Search"

#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8
msgid "Search datasets"
msgstr ""

#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16
msgid "Submit"
msgstr ""

#: ckan/templates/page.html:6
msgid "Skip to content"
msgstr "Skip to content"

#: ckan/templates/page.html:36
msgid "Breadcrumb"
msgstr ""

#: ckan/templates/activity_streams/activity_stream_items.html:9
msgid "Load less"
msgstr "Load less"

#: ckan/templates/activity_streams/activity_stream_items.html:17
msgid "Load more"
msgstr "Load more"

#: ckan/templates/activity_streams/activity_stream_items.html:23
msgid "No activities are within this activity stream"
msgstr "No activities are within this activity stream"

#: ckan/templates/admin/base.html:3
msgid "Administration"
msgstr "Administration"

#: ckan/templates/admin/base.html:8
msgid "Sysadmins"
msgstr "Sysadmins"

#: ckan/templates/admin/base.html:9
msgid "Config"
msgstr "Config"

#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27
msgid "Trash"
msgstr "Trash"

#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62
msgid "Site logo"
msgstr "Site logo"

#: ckan/templates/admin/config.html:35
#: ckan/templates/admin/confirm_reset.html:7
msgid "Are you sure you want to reset the config?"
msgstr "Are you sure you want to reset the config?"

#: ckan/templates/admin/config.html:35
msgid "Reset"
msgstr "Reset"

#: ckan/templates/admin/config.html:36
msgid "Update Config"
msgstr "Update Config"

#: ckan/templates/admin/config.html:45
msgid "CKAN config options"
msgstr "CKAN config options"

#: ckan/templates/admin/config.html:52
#, python-format
msgid ""
"<p><strong>Site Title:</strong> This is the title of this CKAN instance It "
"appears in various places throughout CKAN.</p> <p><strong>Style:</strong> "
"Choose from a list of simple variations of the main colour scheme to get a "
"very quick custom theme working.</p> <p><strong>Site Tag Logo:</strong> This"
" is the logo that appears in the header of all the CKAN instance "
"templates.</p> <p><strong>About:</strong> This text will appear on this CKAN"
" instances <a href=\"%(about_url)s\">about page</a>.</p> <p><strong>Intro "
"Text:</strong> This text will appear on this CKAN instances <a "
"href=\"%(home_url)s\">home page</a> as a welcome to visitors.</p> "
"<p><strong>Custom CSS:</strong> This is a block of CSS that appears in "
"<code>&lt;head&gt;</code> tag of every page. If you wish to customize the "
"templates more fully we recommend <a href=\"%(docs_url)s\" "
"target=\"_blank\">reading the documentation</a>.</p> "
"<p><strong>Homepage:</strong> This is for choosing a predefined layout for "
"the modules that appear on your homepage.</p>"
msgstr ""
" <p><strong>Site Title:</strong> This is the title of this CKAN instance It "
"appears in various places throughout CKAN.</p> <p><strong>Style:</strong> "
"Choose from a list of simple variations of the main colour scheme to get a "
"very quick custom theme working.</p> <p><strong>Site Tag Logo:</strong> This"
" is the logo that appears in the header of all the CKAN instance "
"templates.</p> <p><strong>About:</strong> This text will appear on this CKAN"
" instances <a href=\"%(about_url)s\">about page</a>.</p> <p><strong>Intro "
"Text:</strong> This text will appear on this CKAN instances <a "
"href=\"%(home_url)s\">home page</a> as a welcome to visitors.</p> "
"<p><strong>Custom CSS:</strong> This is a block of CSS that appears in "
"<code>&lt;head&gt;</code> tag of every page. If you wish to customise the "
"templates more fully we recommend <a href=\"%(docs_url)s\" "
"target=\"_blank\">reading the documentation</a>.</p> "
"<p><strong>Homepage:</strong> This is for choosing a predefined layout for "
"the modules that appear on your homepage.</p> "

#: ckan/templates/admin/confirm_reset.html:3
#: ckan/templates/admin/confirm_reset.html:10
msgid "Confirm Reset"
msgstr "Confirm Reset"

#: ckan/templates/admin/index.html:15
msgid "Administer CKAN"
msgstr "Administer CKAN"

#: ckan/templates/admin/index.html:20
#, python-format
msgid ""
"<p>As a sysadmin user you have full control over this CKAN instance. Proceed"
" with care!</p> <p>For guidance on using sysadmin features, see the CKAN  <a"
" href=\"%(docs_url)s\" target=\"_blank\">sysadmin guide</a></p>"
msgstr ""
" <p>As a sysadmin user you have full control over this CKAN instance. "
"Proceed with care!</p> <p>For guidance on using sysadmin features, see the "
"CKAN <a href=\"%(docs_url)s\" target=\"_blank\">sysadmin guide</a></p> "

#: ckan/templates/admin/trash.html:12
msgid "Are you sure you want to purge everything?"
msgstr ""

#: ckan/templates/admin/trash.html:13
msgid "Purge all"
msgstr ""

#: ckan/templates/admin/trash.html:31
msgid ""
"Purge deleted datasets, organizations or topics forever and irreversibly."
msgstr ""

#: ckan/templates/admin/snippets/confirm_delete.html:3
#: ckan/templates/admin/snippets/confirm_delete.html:17
#: ckan/templates/group/confirm_delete.html:3
#: ckan/templates/group/confirm_delete.html:15
#: ckan/templates/group/confirm_delete_member.html:3
#: ckan/templates/group/confirm_delete_member.html:16
#: ckan/templates/organization/confirm_delete.html:3
#: ckan/templates/organization/confirm_delete.html:15
#: ckan/templates/organization/confirm_delete_member.html:3
#: ckan/templates/organization/confirm_delete_member.html:16
#: ckan/templates/package/confirm_delete.html:3
#: ckan/templates/package/confirm_delete.html:16
#: ckan/templates/package/confirm_delete_resource.html:3
#: ckan/templates/package/confirm_delete_resource.html:15
msgid "Confirm Delete"
msgstr "Confirm Delete"

#: ckan/templates/admin/snippets/data_type.html:7
msgid "Deleted datasets"
msgstr ""

#: ckan/templates/admin/snippets/data_type.html:9
msgid "Deleted organizations"
msgstr ""

#: ckan/templates/admin/snippets/data_type.html:11
msgid "Deleted groups"
msgstr ""

#: ckan/templates/admin/snippets/data_type.html:41
msgid "Purge"
msgstr "Purge"

#: ckan/templates/dataviewer/snippets/data_preview.html:9
msgid "This resource can not be previewed at the moment."
msgstr "This resource can not be previewed at the moment."

#: ckan/templates/dataviewer/snippets/data_preview.html:11
#: ckan/templates/package/resource_read.html:145
#: ckan/templates/package/snippets/resource_view.html:34
msgid "Click here for more information."
msgstr "Click here for more information."

#: ckan/templates/dataviewer/snippets/data_preview.html:18
#: ckan/templates/package/snippets/resource_view.html:41
msgid "Download resource"
msgstr "Download resource"

#: ckan/templates/dataviewer/snippets/no_preview.html:3
msgid "No preview available."
msgstr "No preview available."

#: ckan/templates/dataviewer/snippets/no_preview.html:5
msgid "More details..."
msgstr "More details..."

#: ckan/templates/dataviewer/snippets/no_preview.html:12
#, python-format
msgid "No handler defined for data type: %(type)s."
msgstr "No handler defined for data type: %(type)s."

#: ckan/templates/development/snippets/form.html:5
msgid "Standard"
msgstr "Standard"

#: ckan/templates/development/snippets/form.html:5
msgid "Standard Input"
msgstr "Standard Input"

#: ckan/templates/development/snippets/form.html:6
msgid "Medium"
msgstr "Medium"

#: ckan/templates/development/snippets/form.html:6
msgid "Medium Width Input"
msgstr "Medium Width Input"

#: ckan/templates/development/snippets/form.html:7
msgid "Full"
msgstr "Full"

#: ckan/templates/development/snippets/form.html:7
msgid "Full Width Input"
msgstr "Full Width Input"

#: ckan/templates/development/snippets/form.html:8
msgid "Large"
msgstr "Large"

#: ckan/templates/development/snippets/form.html:8
msgid "Large Input"
msgstr "Large Input"

#: ckan/templates/development/snippets/form.html:9
msgid "Prepend"
msgstr "Prepend"

#: ckan/templates/development/snippets/form.html:9
msgid "Prepend Input"
msgstr "Prepend Input"

#: ckan/templates/development/snippets/form.html:13
msgid "Custom Field (empty)"
msgstr "Custom Field (empty)"

#: ckan/templates/development/snippets/form.html:19
#: ckan/templates/snippets/custom_form_fields.html:20
#: ckan/templates/snippets/custom_form_fields.html:37
msgid "Custom Field"
msgstr "Custom Field"

#: ckan/templates/development/snippets/form.html:22
msgid "Markdown"
msgstr "Markdown"

#: ckan/templates/development/snippets/form.html:23
msgid "Textarea"
msgstr "Textarea"

#: ckan/templates/development/snippets/form.html:24
msgid "Select"
msgstr "Select"

#: ckan/templates/group/activity_stream.html:3
#: ckan/templates/group/activity_stream.html:8
#: ckan/templates/group/read_base.html:18
#: ckan/templates/organization/activity_stream.html:3
#: ckan/templates/organization/activity_stream.html:8
#: ckan/templates/organization/read_base.html:18
#: ckan/templates/package/activity.html:3
#: ckan/templates/package/activity.html:8
#: ckan/templates/package/read_base.html:23
#: ckan/templates/user/activity_stream.html:3
#: ckan/templates/user/activity_stream.html:8
#: ckan/templates/user/read_base.html:20
msgid "Activity Stream"
msgstr "Activity Stream"

#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6
#: ckan/templates/organization/admins.html:3
#: ckan/templates/organization/admins.html:6
msgid "Administrators"
msgstr "Administrators"

#: ckan/templates/group/base_form_page.html:5
msgid "Add a Group"
msgstr "Add a Topic"

#: ckan/templates/group/base_form_page.html:10
msgid "Group Form"
msgstr "Topic Form"

#: ckan/templates/group/confirm_delete.html:11
msgid "Are you sure you want to delete group - {name}?"
msgstr "Are you sure you want to delete topic - {name}?"

#: ckan/templates/group/confirm_delete_member.html:11
#: ckan/templates/organization/confirm_delete_member.html:11
msgid "Are you sure you want to delete member - {name}?"
msgstr "Are you sure you want to delete member - {name}?"

#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3
#: ckan/templates/group/edit_base.html:11
#: ckan/templates/group/read_base.html:12
#: ckan/templates/organization/edit_base.html:11
#: ckan/templates/organization/read_base.html:12
#: ckan/templates/package/read_base.html:15
#: ckan/templates/package/resource_read.html:31
#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3
#: ckan/templates/user/read_base.html:14
msgid "Manage"
msgstr "Manage"

#: ckan/templates/group/edit.html:12
msgid "Edit Group"
msgstr "Edit Topic"

#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3
#: ckan/templates/organization/edit_base.html:24
#: ckan/templates/organization/members.html:3
msgid "Members"
msgstr "Members"

#: ckan/templates/group/index.html:13
#: ckan/templates/user/dashboard_groups.html:7
msgid "Add Group"
msgstr "Add Topic"

#: ckan/templates/group/index.html:20
msgid "Search groups..."
msgstr "Search topics..."

#: ckan/templates/group/index.html:29
msgid "There are currently no groups for this site"
msgstr "There are currently no topics for this site"

#: ckan/templates/group/index.html:31
#: ckan/templates/organization/index.html:31
msgid "How about creating one?"
msgstr "How about creating one?"

#: ckan/templates/group/member_new.html:8
#: ckan/templates/organization/member_new.html:10
msgid "Back to all members"
msgstr "Back to all members"

#: ckan/templates/group/member_new.html:10
#: ckan/templates/organization/member_new.html:7
#: ckan/templates/organization/member_new.html:12
msgid "Edit Member"
msgstr "Edit Member"

#: ckan/templates/group/member_new.html:10
#: ckan/templates/group/member_new.html:77 ckan/templates/group/members.html:6
#: ckan/templates/organization/member_new.html:7
#: ckan/templates/organization/member_new.html:12
#: ckan/templates/organization/member_new.html:79
#: ckan/templates/organization/members.html:8
msgid "Add Member"
msgstr "Add Member"

#: ckan/templates/group/member_new.html:19
#: ckan/templates/organization/member_new.html:21
#: ckan/templates/package/collaborators/collaborator_new.html:19
msgid "Existing User"
msgstr "Existing User"

#: ckan/templates/group/member_new.html:22
#: ckan/templates/organization/member_new.html:24
#: ckan/templates/package/collaborators/collaborator_new.html:22
msgid "If you wish to add an existing user, search for their username below."
msgstr "If you wish to add an existing user, search for their username below."

#: ckan/templates/group/member_new.html:41
#: ckan/templates/organization/member_new.html:43
msgid "or"
msgstr "or"

#: ckan/templates/group/member_new.html:47
#: ckan/templates/organization/member_new.html:49
msgid "New User"
msgstr "New User"

#: ckan/templates/group/member_new.html:50
#: ckan/templates/organization/member_new.html:52
msgid "If you wish to invite a new user, enter their email address."
msgstr "If you wish to invite a new user, enter their email address."

#: ckan/templates/group/member_new.html:62
#: ckan/templates/group/member_new.html:66
#: ckan/templates/group/members.html:15
#: ckan/templates/organization/member_new.html:64
#: ckan/templates/organization/member_new.html:68
#: ckan/templates/organization/members.html:20
#: ckan/templates/package/collaborators/collaborator_new.html:41
#: ckan/templates/package/collaborators/collaborators.html:20
msgid "Role"
msgstr "Role"

#: ckan/templates/group/member_new.html:71
#: ckan/templates/group/members.html:31
#: ckan/templates/organization/member_new.html:73
#: ckan/templates/organization/members.html:36
msgid "Are you sure you want to delete this member?"
msgstr "Are you sure you want to delete this member?"

#: ckan/templates/group/member_new.html:71
#: ckan/templates/group/members.html:31
#: ckan/templates/group/snippets/group_form.html:38
#: ckan/templates/organization/bulk_process.html:57
#: ckan/templates/organization/member_new.html:73
#: ckan/templates/organization/members.html:36
#: ckan/templates/organization/snippets/organization_form.html:38
#: ckan/templates/package/collaborators/collaborator_new.html:44
#: ckan/templates/package/collaborators/collaborators.html:36
#: ckan/templates/package/edit_view.html:19
#: ckan/templates/package/snippets/package_form.html:39
#: ckan/templates/package/snippets/resource_form.html:67
#: ckan/templates/user/edit_user_form.html:50
msgid "Delete"
msgstr "Delete"

#: ckan/templates/group/member_new.html:90
#: ckan/templates/organization/member_new.html:92
msgid "What are roles?"
msgstr "What are roles?"

#: ckan/templates/group/member_new.html:93
msgid ""
"<p><strong>Admin:</strong> Can edit group information, as well as manage "
"organization members.</p> <p><strong>Member:</strong> Can add/remove "
"datasets from groups</p>"
msgstr ""
" <p><strong>Admin:</strong> Can edit topic information, as well as manage "
"organisation members.</p> <p><strong>Member:</strong> Can add/remove "
"datasets from topics</p> "

#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5
#: ckan/templates/group/new.html:7
msgid "Create a Group"
msgstr "Create a Topic"

#: ckan/templates/group/new_group_form.html:17
msgid "Update Group"
msgstr "Update Topic"

#: ckan/templates/group/new_group_form.html:19
msgid "Create Group"
msgstr "Create Topic"

#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25
#: ckan/templates/snippets/search_form.html:3
msgid "Search datasets..."
msgstr "Search datasets..."

#: ckan/templates/group/snippets/feeds.html:2
msgid "Datasets in group: {group}"
msgstr "Datasets in topic: {group}"

#: ckan/templates/group/snippets/group_form.html:10
#: ckan/templates/organization/snippets/organization_form.html:10
#: ckan/templates/package/snippets/resource_form.html:30
msgid "Name"
msgstr "Name"

#: ckan/templates/group/snippets/group_form.html:10
msgid "My Group"
msgstr "My Topic"

#: ckan/templates/group/snippets/group_form.html:20
msgid "A little information about my group..."
msgstr "A little information about my topic..."

#: ckan/templates/group/snippets/group_form.html:38
msgid "Are you sure you want to delete this Group?"
msgstr "Are you sure you want to delete this Topic?"

#: ckan/templates/group/snippets/group_form.html:41
msgid "Save Group"
msgstr "Save Topic"

#: ckan/templates/group/snippets/group_item.html:38
#: ckan/templates/group/snippets/group_item.html:39
msgid "View {name}"
msgstr "View {name}"

#: ckan/templates/group/snippets/group_item.html:43
msgid "Remove dataset from this group"
msgstr "Remove dataset from this topic"

#: ckan/templates/group/snippets/helper.html:4
msgid "What are Groups?"
msgstr "What are Topics?"

#: ckan/templates/group/snippets/helper.html:8
msgid ""
"You can use CKAN Groups to create and manage collections of datasets. This "
"could be to catalogue datasets for a particular project or team, or on a "
"particular theme, or as a very simple way to help people find and search "
"your own published datasets."
msgstr ""
"You can use CKAN Topics to create and manage collections of datasets. This "
"could be to catalogue datasets for a particular project or team, or on a "
"particular theme, or as a very simple way to help people find and search "
"your own published datasets. "

#: ckan/templates/group/snippets/info.html:16
#: ckan/templates/organization/bulk_process.html:82
#: ckan/templates/package/read.html:29
#: ckan/templates/package/snippets/package_basic_fields.html:121
#: ckan/templates/snippets/organization.html:37
#: ckan/templates/snippets/package_item.html:42
msgid "Deleted"
msgstr "Deleted"

#: ckan/templates/group/snippets/info.html:26
#: ckan/templates/snippets/organization.html:47
msgid "read more"
msgstr "read more"

#: ckan/templates/home/index.html:4
msgid "Welcome"
msgstr "Welcome"

#: ckan/templates/home/snippets/about_text.html:1
msgid ""
"<p>CKAN is the world’s leading open-source data portal platform.</p> <p>CKAN"
" is a complete out-of-the-box software solution that makes data accessible "
"and usable – by providing tools to streamline publishing, sharing, finding "
"and using data (including storage of data and provision of robust data "
"APIs). CKAN is aimed at data publishers (national and regional governments, "
"companies and organizations) wanting to make their data open and "
"available.</p> <p>CKAN is used by governments and user groups worldwide and "
"powers a variety of official and community data portals including portals "
"for local, national and international government, such as the UK’s <a "
"href=\"http://data.gov.uk\">data.gov.uk</a> and the European Union’s <a "
"href=\"http://publicdata.eu/\">publicdata.eu</a>, the Brazilian <a "
"href=\"http://dados.gov.br/\">dados.gov.br</a>, Dutch and Netherland "
"government portals, as well as city and municipal sites in the US, UK, "
"Argentina, Finland and elsewhere.</p> <p>CKAN: <a "
"href=\"http://ckan.org/\">http://ckan.org/</a><br /> CKAN Tour: <a "
"href=\"http://ckan.org/tour/\">http://ckan.org/tour/</a><br /> Features "
"overview: <a "
"href=\"http://ckan.org/features/\">http://ckan.org/features/</a></p>"
msgstr ""
" <p>CKAN is the world’s leading open-source data portal platform.</p> "
"<p>CKAN is a complete out-of-the-box software solution that makes data "
"accessible and usable – by providing tools to streamline publishing, "
"sharing, finding and using data (including storage of data and provision of "
"robust data APIs). CKAN is aimed at data publishers (national and regional "
"governments, companies and organisations) wanting to make their data open "
"and available.</p> <p>CKAN is used by governments and user groups worldwide "
"and powers a variety of official and community data portals including "
"portals for local, national and international government, such as the UK’s "
"<a href=\"http://data.gov.uk\">data.gov.uk</a> and the European Union’s <a "
"href=\"http://publicdata.eu/\">publicdata.eu</a>, the Brazilian <a "
"href=\"http://dados.gov.br/\">dados.gov.br</a>, Dutch and Netherland "
"government portals, as well as city and municipal sites in the US, UK, "
"Argentina, Finland and elsewhere.</p> <p>CKAN: <a "
"href=\"http://ckan.org/\">http://ckan.org/</a><br /> CKAN Tour: <a "
"href=\"http://ckan.org/tour/\">http://ckan.org/tour/</a><br /> Features "
"overview: <a "
"href=\"http://ckan.org/features/\">http://ckan.org/features/</a></p> "

#: ckan/templates/home/snippets/promoted.html:8
msgid "Welcome to CKAN"
msgstr "Welcome to CKAN"

#: ckan/templates/home/snippets/promoted.html:10
msgid ""
"This is a nice introductory paragraph about CKAN or the site in general. We "
"don't have any copy to go here yet but soon we will"
msgstr ""
"This is a nice introductory paragraph about CKAN or the site in general. We "
"don't have any copy to go here yet but soon we will "

#: ckan/templates/home/snippets/promoted.html:19
msgid "This is a featured section"
msgstr "This is a featured section"

#: ckan/templates/home/snippets/search.html:2
msgid "E.g. environment"
msgstr "E.g. environment"

#: ckan/templates/home/snippets/search.html:6
msgid "Search data"
msgstr "Search data"

#: ckan/templates/home/snippets/search.html:16
msgid "Popular tags"
msgstr "Popular tags"

#: ckan/templates/home/snippets/stats.html:5
msgid "{0} statistics"
msgstr "{0} statistics"

#: ckan/templates/home/snippets/stats.html:11
msgid "dataset"
msgstr "dataset"

#: ckan/templates/home/snippets/stats.html:11
msgid "datasets"
msgstr "datasets"

#: ckan/templates/home/snippets/stats.html:17
msgid "organizations"
msgstr "organisations"

#: ckan/templates/home/snippets/stats.html:23
msgid "groups"
msgstr "topics"

#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287
msgid "This field is required"
msgstr "This field is required"

#: ckan/templates/macros/form.html:136
#, python-format
msgid ""
"You can use <a href=\"#markdown\" title=\"Markdown quick reference\" data-"
"target=\"popover\" data-content=\"%(markdown_tooltip)s\" data-"
"html=\"true\">Markdown formatting</a> here"
msgstr ""
"You can use <a href=\"#markdown\" title=\"Markdown quick reference\" data-"
"target=\"popover\" data-content=\"%(markdown_tooltip)s\" data-"
"html=\"true\">Markdown formatting</a> here"

#: ckan/templates/macros/form.html:243
msgid "Key"
msgstr ""

#: ckan/templates/macros/form.html:255
#: ckan/templates/package/resource_read.html:180
#: ckan/templates/package/snippets/additional_info.html:7
#: ckan/templates/snippets/additional_info.html:12
msgid "Value"
msgstr "Value"

#: ckan/templates/macros/form.html:287
msgid "Custom"
msgstr "Custom"

#: ckan/templates/macros/form.html:312
msgid "The form contains invalid entries:"
msgstr "The form contains invalid entries:"

#: ckan/templates/macros/form.html:417
msgid "Required field"
msgstr "Required field"

#: ckan/templates/macros/form.html:432
msgid "http://example.com/my-image.jpg"
msgstr "http://example.com/my-image.jpg"

#: ckan/templates/macros/form.html:433
msgid "Image URL"
msgstr "Image URL"

#: ckan/templates/macros/form.html:459
msgid "Clear Upload"
msgstr "Clear Upload"

#: ckan/templates/organization/base_form_page.html:5
msgid "Add an Organization"
msgstr ""

#: ckan/templates/organization/base_form_page.html:10
msgid "Organization Form"
msgstr "Organisation Form"

#: ckan/templates/organization/bulk_process.html:3
#: ckan/templates/organization/bulk_process.html:11
msgid "Edit datasets"
msgstr "Edit datasets"

#: ckan/templates/organization/bulk_process.html:16
msgid " found for \"{query}\""
msgstr " found for \"{query}\""

#: ckan/templates/organization/bulk_process.html:18
msgid "Sorry no datasets found for \"{query}\""
msgstr "Sorry no datasets found for \"{query}\""

#: ckan/templates/organization/bulk_process.html:47
msgid "Make public"
msgstr "Make public"

#: ckan/templates/organization/bulk_process.html:51
msgid "Make private"
msgstr "Make private"

#: ckan/templates/organization/bulk_process.html:80
#: ckan/templates/package/read.html:26
#: ckan/templates/snippets/package_item.html:40
msgid "Draft"
msgstr "Draft"

#: ckan/templates/organization/bulk_process.html:85
#: ckan/templates/package/read.html:9
#: ckan/templates/package/snippets/package_basic_fields.html:101
#: ckan/templates/snippets/package_item.html:31
#: ckan/templates/snippets/private.html:2
#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95
msgid "Private"
msgstr "Private"

#: ckan/templates/organization/bulk_process.html:98
msgid "This organization has no datasets associated to it"
msgstr "This organisation has no datasets associated to it"

#: ckan/templates/organization/confirm_delete.html:11
msgid "Are you sure you want to delete organization - {name}?"
msgstr "Are you sure you want to delete organisation - {name}?"

#: ckan/templates/organization/edit.html:6
#: ckan/templates/organization/snippets/info.html:13
#: ckan/templates/organization/snippets/info.html:16
msgid "Edit Organization"
msgstr "Edit Organisation"

#: ckan/templates/organization/index.html:13
#: ckan/templates/user/dashboard_organizations.html:7
msgid "Add Organization"
msgstr "Add Organisation"

#: ckan/templates/organization/index.html:20
msgid "Search organizations..."
msgstr "Search organisations..."

#: ckan/templates/organization/index.html:29
msgid "There are currently no organizations for this site"
msgstr "There are currently no organisations for this site"

#: ckan/templates/organization/member_new.html:33
#: ckan/templates/package/collaborators/collaborator_new.html:31
#: ckan/templates/user/edit_user_form.html:8
#: ckan/templates/user/logout_first.html:10
#: ckan/templates/user/new_user_form.html:5
#: ckan/templates/user/perform_reset.html:22
#: ckan/templates/user/read_base.html:75
#: ckan/templates/user/snippets/login_form.html:20
msgid "Username"
msgstr "Username"

#: ckan/templates/organization/member_new.html:55
msgid "Email address"
msgstr "Email address"

#: ckan/templates/organization/member_new.html:75
msgid "Update Member"
msgstr "Update Member"

#: ckan/templates/organization/member_new.html:95
msgid ""
"<p><strong>Admin:</strong> Can add/edit and delete datasets, as well as "
"manage organization members.</p> <p><strong>Editor:</strong> Can add and "
"edit datasets, but not manage organization members.</p> "
"<p><strong>Member:</strong> Can view the organization's private datasets, "
"but not add new datasets.</p>"
msgstr ""
" <p><strong>Admin:</strong> Can add/edit and delete datasets, as well as "
"manage organisation members.</p> <p><strong>Editor:</strong> Can add and "
"edit datasets, but not manage organisation members.</p> "
"<p><strong>Member:</strong> Can view the organisation's private datasets, "
"but not add new datasets.</p> "

#: ckan/templates/organization/members.html:14
msgid "{count} member"
msgid_plural "{count} members"
msgstr[0] "{count} member"
msgstr[1] "{count} members"

#: ckan/templates/organization/new.html:3
#: ckan/templates/organization/new.html:5
#: ckan/templates/organization/new.html:7
msgid "Create an Organization"
msgstr "Create an Organisation"

#: ckan/templates/organization/new_organization_form.html:17
msgid "Update Organization"
msgstr "Update Organisation"

#: ckan/templates/organization/new_organization_form.html:19
msgid "Create Organization"
msgstr "Create Organisation"

#: ckan/templates/organization/snippets/feeds.html:2
msgid "Datasets in organization: {group}"
msgstr "Datasets in organisation: {group}"

#: ckan/templates/organization/snippets/help.html:4
#: ckan/templates/organization/snippets/helper.html:4
msgid "What are Organizations?"
msgstr "What are Organisations?"

#: ckan/templates/organization/snippets/help.html:7
msgid ""
"<p>Organizations act like publishing departments for datasets (for example, "
"the Department of Health). This means that datasets can be published by and "
"belong to a department instead of an individual user.</p> <p>Within "
"organizations, admins can assign roles and authorise its members, giving "
"individual users the right to publish datasets from that particular "
"organisation (e.g. Office of National Statistics).</p>"
msgstr ""
" <p>Organisations act like publishing departments for datasets (for example,"
" the Department of Health). This means that datasets can be published by and"
" belong to a department instead of an individual user.</p> <p>Within "
"organisations, admins can assign roles and authorise its members, giving "
"individual users the right to publish datasets from that particular "
"organisation (e.g. Office of National Statistics).</p> "

#: ckan/templates/organization/snippets/helper.html:8
msgid ""
"CKAN Organizations are used to create, manage and publish collections of "
"datasets. Users can have different roles within an Organization, depending "
"on their level of authorisation to create, edit and publish."
msgstr ""
" CKAN Organisations are used to create, manage and publish collections of "
"datasets. Users can have different roles within an Organisation, depending "
"on their level of authorisation to create, edit and publish. "

#: ckan/templates/organization/snippets/organization_form.html:10
msgid "My Organization"
msgstr "My Organisation"

#: ckan/templates/organization/snippets/organization_form.html:20
msgid "A little information about my organization..."
msgstr "A little information about my organisation..."

#: ckan/templates/organization/snippets/organization_form.html:38
msgid ""
"Are you sure you want to delete this Organization? Note*: Deleting cannot be"
" performed while public or private datasets belong to this organization."
msgstr ""

#: ckan/templates/organization/snippets/organization_form.html:41
msgid "Save Organization"
msgstr "Save Organisation"

#: ckan/templates/organization/snippets/organization_item.html:42
#: ckan/templates/organization/snippets/organization_item.html:43
msgid "View {organization_name}"
msgstr "View {organization_name}"

#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9
#: ckan/templates/package/snippets/new_package_breadcrumb.html:2
msgid "Create Dataset"
msgstr "Create Dataset"

#: ckan/templates/package/base_form_page.html:22
msgid "What are datasets?"
msgstr "What are datasets?"

#: ckan/templates/package/base_form_page.html:25
msgid ""
"A CKAN Dataset is a collection of data resources (such as files), together "
"with a description and other information, at a fixed URL. Datasets are what "
"users see when searching for data."
msgstr ""
" A CKAN Dataset is a collection of data resources (such as files), together "
"with a description and other information, at a fixed URL. Datasets are what "
"users see when searching for data. "

#: ckan/templates/package/changes.html:9
#: ckan/templates/package/changes.html:17
#: ckan/templates/snippets/activities/changed_package.html:20
msgid "Changes"
msgstr "Changes"

#: ckan/templates/package/confirm_delete.html:12
msgid "Are you sure you want to delete dataset - {name}?"
msgstr "Are you sure you want to delete dataset - {name}?"

#: ckan/templates/package/confirm_delete_resource.html:11
msgid "Are you sure you want to delete resource - {name}?"
msgstr "Are you sure you want to delete resource - {name}?"

#: ckan/templates/package/edit_base.html:13
msgid "View dataset"
msgstr "View dataset"

#: ckan/templates/package/edit_base.html:17
msgid "Edit metadata"
msgstr "Edit metadata"

#: ckan/templates/package/collaborators/collaborators.html:3
#: ckan/templates/package/edit_base.html:20
msgid "Collaborators"
msgstr ""

#: ckan/templates/package/edit_view.html:3
#: ckan/templates/package/edit_view.html:4
#: ckan/templates/package/edit_view.html:8
#: ckan/templates/package/edit_view.html:12
msgid "Edit view"
msgstr "Edit view"

#: ckan/templates/package/edit_view.html:20
#: ckan/templates/package/new_view.html:28
#: ckan/templates/package/snippets/resource_item.html:46
msgid "Preview"
msgstr "Preview"

#: ckan/templates/package/edit_view.html:21
msgid "Update"
msgstr "Update"

#: ckan/templates/package/group_list.html:14
msgid "Associate this group with this dataset"
msgstr "Associate this topic with this dataset"

#: ckan/templates/package/group_list.html:14
msgid "Add to group"
msgstr "Add to topic"

#: ckan/templates/package/group_list.html:23
msgid "There are no groups associated with this dataset"
msgstr "There are no topics associated with this dataset"

#: ckan/templates/package/new_package_form.html:13
msgid "Update Dataset"
msgstr "Update Dataset"

#: ckan/templates/package/new_resource.html:5
msgid "Add data to the dataset"
msgstr "Add data to the dataset"

#: ckan/templates/package/new_resource.html:11
#: ckan/templates/package/new_resource_not_draft.html:8
msgid "Add New Resource"
msgstr "Add New Resource"

#: ckan/templates/package/new_resource_not_draft.html:3
#: ckan/templates/package/new_resource_not_draft.html:4
msgid "Add resource"
msgstr "Add resource"

#: ckan/templates/package/new_resource_not_draft.html:16
msgid "New resource"
msgstr "New resource"

#: ckan/templates/package/new_view.html:3
#: ckan/templates/package/new_view.html:4
#: ckan/templates/package/new_view.html:8
#: ckan/templates/package/new_view.html:12
msgid "Add view"
msgstr "Add view"

#: ckan/templates/package/new_view.html:19
msgid ""
"Data Explorer views may be slow and unreliable unless the DataStore "
"extension is enabled. For more information, please see the <a "
"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html#viewing-"
"structured-data-the-data-explorer' target='_blank'>Data Explorer "
"documentation</a>."
msgstr ""
" Data Explorer views may be slow and unreliable unless the DataStore "
"extension is enabled. For more information, please see the <a "
"href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html#viewing-"
"structured-data-the-data-explorer' target='_blank'>Data Explorer "
"documentation</a>. "

#: ckan/templates/package/new_view.html:29
#: ckan/templates/package/snippets/resource_form.html:85
msgid "Add"
msgstr "Add"

#: ckan/templates/package/read.html:15
#: ckan/templates/package/resource_read.html:77
#, python-format
msgid ""
"You're currently viewing an old version of this dataset. To see the current "
"version, click <a href=\"%(url)s\">here</a>."
msgstr ""

#: ckan/templates/package/resource_edit_base.html:17
msgid "All resources"
msgstr "All resources"

#: ckan/templates/package/resource_edit_base.html:19
msgid "View resource"
msgstr "View resource"

#: ckan/templates/package/resource_edit_base.html:24
#: ckan/templates/package/resource_edit_base.html:30
msgid "Edit resource"
msgstr "Edit resource"

#: ckan/templates/package/resource_edit_base.html:26
msgid "Views"
msgstr "Views"

#: ckan/templates/package/resource_read.html:40
msgid "API Endpoint"
msgstr "API Endpoint"

#: ckan/templates/package/resource_read.html:42
#: ckan/templates/package/snippets/resource_item.html:61
msgid "Go to resource"
msgstr "Go to resource"

#: ckan/templates/package/resource_read.html:44
#: ckan/templates/package/snippets/resource_item.html:58
msgid "Download"
msgstr "Download"

#: ckan/templates/package/resource_read.html:87
#: ckan/templates/package/resource_read.html:89
msgid "URL:"
msgstr "URL:"

#: ckan/templates/package/resource_read.html:97
msgid "Dataset description:"
msgstr ""

#: ckan/templates/package/resource_read.html:99
#, python-format
msgid "Source: <a href=\"%(url)s\">%(dataset)s</a>"
msgstr "Source: <a href=\"%(url)s\">%(dataset)s</a>"

#: ckan/templates/package/resource_read.html:139
msgid "There are no views created for this resource yet."
msgstr "There are no views created for this resource yet."

#: ckan/templates/package/resource_read.html:143
msgid "Not seeing the views you were expecting?"
msgstr "Not seeing the views you were expecting?"

#: ckan/templates/package/resource_read.html:148
msgid "Here are some reasons you may not be seeing expected views:"
msgstr "Here are some reasons you may not be seeing expected views:"

#: ckan/templates/package/resource_read.html:150
msgid "No view has been created that is suitable for this resource"
msgstr "No view has been created that is suitable for this resource"

#: ckan/templates/package/resource_read.html:151
msgid "The site administrators may not have enabled the relevant view plugins"
msgstr ""
"The site administrators may not have enabled the relevant view plugins"

#: ckan/templates/package/resource_read.html:152
msgid ""
"If a view requires the DataStore, the DataStore plugin may not be enabled, "
"or the data may not have been pushed to the DataStore, or the DataStore "
"hasn't finished processing the data yet"
msgstr ""
"If a view requires the DataStore, the DataStore plugin may not be enabled, "
"or the data may not have been pushed to the DataStore, or the DataStore "
"hasn't finished processing the data yet"

#: ckan/templates/package/resource_read.html:175
msgid "Additional Information"
msgstr "Additional Information"

#: ckan/templates/package/resource_read.html:179
#: ckan/templates/package/snippets/additional_info.html:6
#: ckan/templates/snippets/additional_info.html:11
msgid "Field"
msgstr "Field"

#: ckan/templates/package/resource_read.html:185
msgid "Data last updated"
msgstr "Data last updated"

#: ckan/templates/package/resource_read.html:186
#: ckan/templates/package/resource_read.html:190
#: ckan/templates/package/resource_read.html:194
#: ckan/templates/package/resource_read.html:198
#: ckan/templates/snippets/activity_stream.html:10
#: ckan/templates/snippets/activity_stream.html:17
#: ckan/templates/snippets/activity_stream.html:30
msgid "unknown"
msgstr "unknown"

#: ckan/templates/package/resource_read.html:189
msgid "Metadata last updated"
msgstr "Metadata last updated"

#: ckan/templates/package/resource_read.html:193
#: ckan/templates/package/snippets/additional_info.html:70
msgid "Created"
msgstr "Created"

#: ckan/templates/package/resource_read.html:197
#: ckan/templates/package/snippets/resource_form.html:39
#: ckan/templates/package/snippets/resource_info.html:19
msgid "Format"
msgstr "Format"

#: ckan/templates/package/resource_read.html:201
#: ckan/templates/package/snippets/package_basic_fields.html:30
#: ckan/templates/snippets/license.html:20
msgid "License"
msgstr "License"

#: ckan/templates/package/resource_views.html:10
msgid "New view"
msgstr "New view"

#: ckan/templates/package/resource_views.html:27
msgid "This resource has no views"
msgstr "This resource has no views"

#: ckan/templates/package/resources.html:8
msgid "Add new resource"
msgstr "Add new resource"

#: ckan/templates/package/resources.html:20
#: ckan/templates/package/snippets/resources_list.html:27
#, python-format
msgid ""
"<p class=\"empty\">This dataset has no data, <a href=\"%(url)s\">why not add"
" some?</a></p>"
msgstr ""
" <p class=\"empty\">This dataset has no data, <a href=\"%(url)s\">why not "
"add some?</a></p> "

#: ckan/templates/package/search.html:52
msgid "API"
msgstr "API"

#: ckan/templates/package/search.html:53
msgid "API Docs"
msgstr "API Docs"

#: ckan/templates/package/search.html:55
msgid "full {format} dump"
msgstr "full {format} dump"

#: ckan/templates/package/search.html:56
#, python-format
msgid ""
"You can also access this registry using the %(api_link)s (see "
"%(api_doc_link)s) or download a %(dump_link)s."
msgstr ""
" You can also access this registry using the %(api_link)s (see "
"%(api_doc_link)s) or download a %(dump_link)s. "

#: ckan/templates/package/search.html:60
#, python-format
msgid ""
"You can also access this registry using the %(api_link)s (see "
"%(api_doc_link)s)."
msgstr ""
" You can also access this registry using the %(api_link)s (see "
"%(api_doc_link)s). "

#: ckan/templates/package/view_edit_base.html:9
msgid "All views"
msgstr "All views"

#: ckan/templates/package/view_edit_base.html:12
msgid "View view"
msgstr "View view"

#: ckan/templates/package/view_edit_base.html:37
msgid "View preview"
msgstr "View preview"

#: ckan/templates/package/collaborators/collaborator_new.html:5
#: ckan/templates/package/collaborators/collaborator_new.html:10
msgid "Edit Collaborator"
msgstr ""

#: ckan/templates/package/collaborators/collaborator_new.html:5
#: ckan/templates/package/collaborators/collaborator_new.html:10
#: ckan/templates/package/collaborators/collaborator_new.html:50
msgid "Add Collaborator"
msgstr ""

#: ckan/templates/package/collaborators/collaborator_new.html:8
msgid "Back to all collaborators"
msgstr ""

#: ckan/templates/package/collaborators/collaborator_new.html:44
#: ckan/templates/package/collaborators/collaborators.html:36
msgid "Are you sure you want to delete this collaborator?"
msgstr ""

#: ckan/templates/package/collaborators/collaborator_new.html:46
msgid "Update Collaborator"
msgstr ""

#: ckan/templates/package/collaborators/collaborator_new.html:63
msgid "What are the available roles?"
msgstr ""

#: ckan/templates/package/collaborators/collaborator_new.html:67
msgid ""
"<p><strong>Admin:</strong> In addition to managing the dataset, admins can "
"add and remove collaborators from a dataset.</p>"
msgstr ""

#: ckan/templates/package/collaborators/collaborator_new.html:71
msgid ""
"<p><strong>Editor:</strong> Editors can edit the dataset and its resources, "
"as well accessing the dataset if private.</p> <p><strong>Member:</strong> "
"Members can access the dataset if private, but not edit it.</p>"
msgstr ""

#: ckan/templates/package/collaborators/collaborators.html:7
msgid "Add Collaborators"
msgstr ""

#: ckan/templates/package/collaborators/collaborators.html:14
msgid "{count} collaborator"
msgid_plural "{count} collaborators"
msgstr[0] ""
msgstr[1] ""

#: ckan/templates/package/snippets/additional_info.html:2
#: ckan/templates/snippets/additional_info.html:7
msgid "Additional Info"
msgstr "Additional Info"

#: ckan/templates/package/snippets/additional_info.html:14
#: ckan/templates/package/snippets/package_metadata_fields.html:6
msgid "Source"
msgstr "Source"

#: ckan/templates/package/snippets/additional_info.html:25
#: ckan/templates/package/snippets/additional_info.html:30
#: ckan/templates/package/snippets/package_metadata_fields.html:14
msgid "Author"
msgstr "Author"

#: ckan/templates/package/snippets/additional_info.html:37
#: ckan/templates/package/snippets/additional_info.html:42
#: ckan/templates/package/snippets/package_metadata_fields.html:20
msgid "Maintainer"
msgstr "Maintainer"

#: ckan/templates/package/snippets/additional_info.html:49
#: ckan/templates/package/snippets/package_metadata_fields.html:10
msgid "Version"
msgstr "Version"

#: ckan/templates/package/snippets/additional_info.html:56
#: ckan/templates/package/snippets/package_basic_fields.html:117
#: ckan/templates/user/read_base.html:90
msgid "State"
msgstr "State"

#: ckan/templates/package/snippets/additional_info.html:62
msgid "Last Updated"
msgstr "Last Updated"

#: ckan/templates/package/snippets/cannot_create_package.html:10
msgid "Before you can create a dataset you need to create an organization."
msgstr "Before you can create a dataset you need to create an organisation."

#: ckan/templates/package/snippets/cannot_create_package.html:13
msgid "Create a new organization"
msgstr "Create a new organisation"

#: ckan/templates/package/snippets/cannot_create_package.html:18
msgid "There are no organizations to which you can assign this dataset."
msgstr "There are no organisations to which you can assign this dataset."

#: ckan/templates/package/snippets/cannot_create_package.html:19
msgid ""
"Ask a system administrator to create an organization before you can "
"continue."
msgstr ""
"Ask a system administrator to create an organisation before you can "
"continue."

#: ckan/templates/package/snippets/change_item.html:1
#, python-format
msgid "On %(timestamp)s, %(username)s:"
msgstr ""

#: ckan/templates/package/snippets/package_basic_fields.html:4
#: ckan/templates/package/snippets/view_form.html:8
msgid "Title"
msgstr "Title"

#: ckan/templates/package/snippets/package_basic_fields.html:4
msgid "eg. A descriptive title"
msgstr "eg. A descriptive title"

#: ckan/templates/package/snippets/package_basic_fields.html:13
msgid "eg. my-dataset"
msgstr "eg. my-dataset"

#: ckan/templates/package/snippets/package_basic_fields.html:19
msgid "eg. Some useful notes about the data"
msgstr "eg. Some useful notes about the data"

#: ckan/templates/package/snippets/package_basic_fields.html:24
msgid "eg. economy, mental health, government"
msgstr "eg. economy, mental health, government"

#: ckan/templates/package/snippets/package_basic_fields.html:36
msgid "Please select the license"
msgstr ""

#: ckan/templates/package/snippets/package_basic_fields.html:47
msgid ""
"License definitions and additional information can be found at <a "
"href=\"http://opendefinition.org/licenses/\">opendefinition.org</a>"
msgstr ""
" License definitions and additional information can be found at <a "
"href=\"http://opendefinition.org/licenses/\">opendefinition.org</a> "

#: ckan/templates/package/snippets/package_basic_fields.html:79
#: ckan/templates/snippets/organization.html:23
msgid "Organization"
msgstr "Organisation"

#: ckan/templates/package/snippets/package_basic_fields.html:83
msgid "No organization"
msgstr "No organisation"

#: ckan/templates/package/snippets/package_basic_fields.html:98
msgid "Visibility"
msgstr "Visibility"

#: ckan/templates/package/snippets/package_basic_fields.html:101
msgid "Public"
msgstr "Public"

#: ckan/templates/package/snippets/package_basic_fields.html:120
msgid "Active"
msgstr "Active"

#: ckan/templates/package/snippets/package_form.html:28
msgid ""
"The <i>data license</i> you select above only applies to the contents of any"
" resource files that you add to this dataset. By submitting this form, you "
"agree to release the <i>metadata</i> values that you enter into the form "
"under the <a href=\"http://opendatacommons.org/licenses/odbl/1-0/\">Open "
"Database License</a>."
msgstr ""
"The <i>data license</i> you select above only applies to the contents of any"
" resource files that you add to this dataset. By submitting this form, you "
"agree to release the <i>metadata</i> values that you enter into the form "
"under the <a href=\"http://opendatacommons.org/licenses/odbl/1-0/\">Open "
"Database License</a>."

#: ckan/templates/package/snippets/package_form.html:39
msgid "Are you sure you want to delete this dataset?"
msgstr "Are you sure you want to delete this dataset?"

#: ckan/templates/package/snippets/package_form.html:43
msgid "Next: Add Data"
msgstr "Next: Add Data"

#: ckan/templates/package/snippets/package_metadata_fields.html:6
msgid "http://example.com/dataset.json"
msgstr "http://example.com/dataset.json"

#: ckan/templates/package/snippets/package_metadata_fields.html:10
msgid "1.0"
msgstr "1.0"

#: ckan/templates/package/snippets/package_metadata_fields.html:14
#: ckan/templates/package/snippets/package_metadata_fields.html:20
#: ckan/templates/user/new_user_form.html:6
msgid "Joe Bloggs"
msgstr "Joe Bloggs"

#: ckan/templates/package/snippets/package_metadata_fields.html:16
msgid "Author Email"
msgstr "Author Email"

#: ckan/templates/package/snippets/package_metadata_fields.html:16
#: ckan/templates/package/snippets/package_metadata_fields.html:22
#: ckan/templates/user/new_user_form.html:7
msgid "joe@example.com"
msgstr "joe@example.com"

#: ckan/templates/package/snippets/package_metadata_fields.html:22
msgid "Maintainer Email"
msgstr "Maintainer Email"

#: ckan/templates/package/snippets/resource_edit_form.html:12
msgid "Update Resource"
msgstr "Update Resource"

#: ckan/templates/package/snippets/resource_form.html:26
msgid "Data"
msgstr "Data"

#: ckan/templates/package/snippets/resource_form.html:26
msgid "http://example.com/external-data.csv"
msgstr "http://example.com/external-data.csv"

#: ckan/templates/package/snippets/resource_form.html:30
msgid "eg. January 2011 Gold Prices"
msgstr "eg. January 2011 Gold Prices"

#: ckan/templates/package/snippets/resource_form.html:34
msgid "Some useful notes about the data"
msgstr "Some useful notes about the data"

#: ckan/templates/package/snippets/resource_form.html:39
msgid "eg. CSV, XML or JSON"
msgstr "eg. CSV, XML or JSON"

#: ckan/templates/package/snippets/resource_form.html:42
msgid "This will be guessed automatically. Leave blank if you wish"
msgstr "This will be guessed automatically. Leave blank if you wish"

#: ckan/templates/package/snippets/resource_form.html:53
msgid "eg. 2012-06-05"
msgstr "eg. 2012-06-05"

#: ckan/templates/package/snippets/resource_form.html:55
msgid "File Size"
msgstr "File Size"

#: ckan/templates/package/snippets/resource_form.html:55
msgid "eg. 1024"
msgstr "eg. 1024"

#: ckan/templates/package/snippets/resource_form.html:57
#: ckan/templates/package/snippets/resource_form.html:59
msgid "MIME Type"
msgstr "MIME Type"

#: ckan/templates/package/snippets/resource_form.html:57
#: ckan/templates/package/snippets/resource_form.html:59
msgid "eg. application/json"
msgstr "eg. application/json"

#: ckan/templates/package/snippets/resource_form.html:67
msgid "Are you sure you want to delete this resource?"
msgstr "Are you sure you want to delete this resource?"

#: ckan/templates/package/snippets/resource_form.html:73
msgid "Previous"
msgstr "Previous"

#: ckan/templates/package/snippets/resource_form.html:77
msgid "Save & add another"
msgstr "Save & add another"

#: ckan/templates/package/snippets/resource_form.html:81
msgid "Finish"
msgstr "Finish"

#: ckan/templates/package/snippets/resource_help.html:2
msgid "What's a resource?"
msgstr "What's a resource?"

#: ckan/templates/package/snippets/resource_help.html:4
msgid "A resource can be any file or link to a file containing useful data."
msgstr "A resource can be any file or link to a file containing useful data."

#: ckan/templates/package/snippets/resource_item.html:37
msgid "Explore"
msgstr "Explore"

#: ckan/templates/package/snippets/resource_item.html:49
msgid "More information"
msgstr "More information"

#: ckan/templates/package/snippets/resource_view.html:10
msgid "Fullscreen"
msgstr ""

#: ckan/templates/package/snippets/resource_view.html:18
msgid "Embed"
msgstr "Embed"

#: ckan/templates/package/snippets/resource_view.html:32
msgid "This resource view is not available at the moment."
msgstr "This resource view is not available at the moment."

#: ckan/templates/package/snippets/resource_view.html:72
msgid "Embed resource view"
msgstr "Embed resource view"

#: ckan/templates/package/snippets/resource_view.html:75
msgid ""
"You can copy and paste the embed code into a CMS or blog software that "
"supports raw HTML"
msgstr ""
"You can copy and paste the embed code into a CMS or blog software that "
"supports raw HTML"

#: ckan/templates/package/snippets/resource_view.html:78
msgid "Width"
msgstr "Width"

#: ckan/templates/package/snippets/resource_view.html:81
msgid "Height"
msgstr "Height"

#: ckan/templates/package/snippets/resource_view.html:84
msgid "Code"
msgstr "Code"

#: ckan/templates/package/snippets/resource_views_list.html:8
msgid "Resource Preview"
msgstr "Resource Preview"

#: ckan/templates/package/snippets/resources_list.html:14
msgid "Data and Resources"
msgstr "Data and Resources"

#: ckan/templates/package/snippets/resources_list.html:31
msgid "This dataset has no data"
msgstr "This dataset has no data"

#: ckan/templates/package/snippets/stages.html:23
#: ckan/templates/package/snippets/stages.html:25
msgid "Create dataset"
msgstr "Create dataset"

#: ckan/templates/package/snippets/stages.html:30
#: ckan/templates/package/snippets/stages.html:34
#: ckan/templates/package/snippets/stages.html:36
msgid "Add data"
msgstr "Add data"

#: ckan/templates/package/snippets/view_form.html:8
msgid "eg. My View"
msgstr "eg. My View"

#: ckan/templates/package/snippets/view_form.html:9
msgid "eg. Information about my view"
msgstr "eg. Information about my view"

#: ckan/templates/package/snippets/view_form_filters.html:28
msgid "Remove Filter"
msgstr "Remove Filter"

#: ckan/templates/package/snippets/view_help.html:2
msgid "What's a view?"
msgstr "What's a view?"

#: ckan/templates/package/snippets/view_help.html:4
msgid "A view is a representation of the data held against a resource"
msgstr "A view is a representation of the data held against a resource"

#: ckan/templates/snippets/add_dataset.html:6
msgid "Add Dataset"
msgstr "Add Dataset"

#: ckan/templates/snippets/datapusher_status.html:8
msgid "Datapusher status: {status}."
msgstr "Datapusher status: {status}."

#: ckan/templates/snippets/disqus_trackback.html:2
msgid "Trackback URL"
msgstr "Trackback URL"

#: ckan/templates/snippets/facet_list.html:85
msgid "Show More {facet_type}"
msgstr "Show More {facet_type}"

#: ckan/templates/snippets/facet_list.html:88
msgid "Show Only Popular {facet_type}"
msgstr "Show Only Popular {facet_type}"

#: ckan/templates/snippets/facet_list.html:92
msgid "There are no {facet_type} that match this search"
msgstr "There are no {facet_type} that match this search"

#: ckan/templates/snippets/home_breadcrumb_item.html:2
msgid "Home"
msgstr "Home"

#: ckan/templates/snippets/language_selector.html:3
msgid "Language"
msgstr "Language"

#: ckan/templates/snippets/language_selector.html:11
#: ckan/templates/snippets/search_form.html:42
#: ckan/templates/snippets/simple_search.html:15
#: ckan/templates/snippets/sort_by.html:22
msgid "Go"
msgstr "Go"

#: ckan/templates/snippets/license.html:8
msgid "No License Provided"
msgstr "No License Provided"

#: ckan/templates/snippets/license.html:27
msgid "This dataset satisfies the Open Definition."
msgstr "This dataset satisfies the Open Definition."

#: ckan/templates/snippets/organization.html:50
msgid "There is no description for this organization"
msgstr "There is no description for this organisation"

#: ckan/templates/snippets/package_item.html:57
msgid "This dataset has no description"
msgstr "This dataset has no description"

#: ckan/templates/snippets/search_form.html:33
#: ckan/templates/snippets/simple_search.html:8
#: ckan/templates/snippets/sort_by.html:12
msgid "Order by"
msgstr "Order by"

#: ckan/templates/snippets/search_form.html:74
msgid "Filter Results"
msgstr "Filter Results"

#: ckan/templates/snippets/search_form.html:81
msgid "<p class=\"extra\">Please try another search.</p>"
msgstr " <p class=\"extra\">Please try another search.</p> "

#: ckan/templates/snippets/search_form.html:87
msgid ""
"<p id=\"search-error\"><strong>There was an error while searching.</strong> "
"Please try again.</p>"
msgstr ""
" <p id=\"search-error\"><strong>There was an error while searching.</strong>"
" Please try again.</p> "

#: ckan/templates/snippets/search_result_text.html:15
msgid "{number} dataset found for \"{query}\""
msgid_plural "{number} datasets found for \"{query}\""
msgstr[0] "{number} dataset found for \"{query}\""
msgstr[1] "{number} datasets found for \"{query}\""

#: ckan/templates/snippets/search_result_text.html:16
msgid "No datasets found for \"{query}\""
msgstr "No datasets found for \"{query}\""

#: ckan/templates/snippets/search_result_text.html:17
msgid "{number} dataset found"
msgid_plural "{number} datasets found"
msgstr[0] "{number} dataset found"
msgstr[1] "{number} datasets found"

#: ckan/templates/snippets/search_result_text.html:18
msgid "No datasets found"
msgstr "No datasets found"

#: ckan/templates/snippets/search_result_text.html:21
msgid "{number} group found for \"{query}\""
msgid_plural "{number} groups found for \"{query}\""
msgstr[0] "{number} topic found for \"{query}\""
msgstr[1] "{number} topics found for \"{query}\""

#: ckan/templates/snippets/search_result_text.html:22
msgid "No groups found for \"{query}\""
msgstr "No topicss found for \"{query}\""

#: ckan/templates/snippets/search_result_text.html:23
msgid "{number} group found"
msgid_plural "{number} groups found"
msgstr[0] "{number} topic found"
msgstr[1] "{number} topics found"

#: ckan/templates/snippets/search_result_text.html:24
msgid "No groups found"
msgstr "No topics found"

#: ckan/templates/snippets/search_result_text.html:27
msgid "{number} organization found for \"{query}\""
msgid_plural "{number} organizations found for \"{query}\""
msgstr[0] "{number} organization found for \"{query}\""
msgstr[1] "{number} organisations found for \"{query}\""

#: ckan/templates/snippets/search_result_text.html:28
msgid "No organizations found for \"{query}\""
msgstr "No organisations found for \"{query}\""

#: ckan/templates/snippets/search_result_text.html:29
msgid "{number} organization found"
msgid_plural "{number} organizations found"
msgstr[0] "{number} organization found"
msgstr[1] "{number} organisations found"

#: ckan/templates/snippets/search_result_text.html:30
msgid "No organizations found"
msgstr "No organisations found"

#: ckan/templates/snippets/social.html:5
msgid "Social"
msgstr "Social"

#: ckan/templates/snippets/subscribe.html:2
msgid "Subscribe"
msgstr "Subscribe"

#: ckan/templates/snippets/subscribe.html:4
#: ckan/templates/user/edit_user_form.html:12
#: ckan/templates/user/new_user_form.html:7
#: ckan/templates/user/read_base.html:81
msgid "Email"
msgstr "Email"

#: ckan/templates/snippets/subscribe.html:5
msgid "RSS"
msgstr "RSS"

#: ckan/templates/snippets/activities/added_tag.html:4
msgid "{actor} added the tag {tag} to the dataset {dataset}"
msgstr "{actor} added the tag {tag} to the dataset {dataset}"

#: ckan/templates/snippets/activities/changed_group.html:4
msgid "{actor} updated the group {group}"
msgstr "{actor} updated the topic {group}"

#: ckan/templates/snippets/activities/changed_organization.html:4
msgid "{actor} updated the organization {organization}"
msgstr "{actor} updated the organisation {organization}"

#: ckan/templates/snippets/activities/changed_package.html:6
msgid "{actor} updated the dataset {dataset}"
msgstr "{actor} updated the dataset {dataset}"

#: ckan/templates/snippets/activities/changed_package.html:16
#: ckan/templates/snippets/activities/new_package.html:15
msgid "View this version"
msgstr ""

#: ckan/templates/snippets/activities/changed_resource.html:4
msgid "{actor} updated the resource {resource} in the dataset {dataset}"
msgstr "{actor} updated the resource {resource} in the dataset {dataset}"

#: ckan/templates/snippets/activities/changed_user.html:4
msgid "{actor} updated their profile"
msgstr "{actor} updated their profile"

#: ckan/templates/snippets/activities/deleted_group.html:4
msgid "{actor} deleted the group {group}"
msgstr "{actor} deleted the topic {group}"

#: ckan/templates/snippets/activities/deleted_organization.html:4
msgid "{actor} deleted the organization {organization}"
msgstr "{actor} deleted the organisation {organization}"

#: ckan/templates/snippets/activities/deleted_package.html:4
msgid "{actor} deleted the dataset {dataset}"
msgstr "{actor} deleted the dataset {dataset}"

#: ckan/templates/snippets/activities/deleted_resource.html:4
msgid "{actor} deleted the resource {resource} from the dataset {dataset}"
msgstr "{actor} deleted the resource {resource} from the dataset {dataset}"

#: ckan/templates/snippets/activities/fallback.html:14
msgid "{actor} {activity_type}"
msgstr ""

#: ckan/templates/snippets/activities/follow_dataset.html:4
msgid "{actor} started following {dataset}"
msgstr "{actor} started following {dataset}"

#: ckan/templates/snippets/activities/follow_group.html:4
msgid "{actor} started following {group}"
msgstr "{actor} started following {group}"

#: ckan/templates/snippets/activities/follow_user.html:4
msgid "{actor} started following {user}"
msgstr "{actor} started following {user}"

#: ckan/templates/snippets/activities/new_group.html:4
msgid "{actor} created the group {group}"
msgstr "{actor} created the topic {group}"

#: ckan/templates/snippets/activities/new_organization.html:4
msgid "{actor} created the organization {organization}"
msgstr "{actor} created the organisation {organization}"

#: ckan/templates/snippets/activities/new_package.html:5
msgid "{actor} created the dataset {dataset}"
msgstr "{actor} created the dataset {dataset}"

#: ckan/templates/snippets/activities/new_resource.html:4
msgid "{actor} added the resource {resource} to the dataset {dataset}"
msgstr "{actor} added the resource {resource} to the dataset {dataset}"

#: ckan/templates/snippets/activities/new_user.html:4
msgid "{actor} signed up"
msgstr "{actor} signed up"

#: ckan/templates/snippets/activities/removed_tag.html:4
msgid "{actor} removed the tag {tag} from the dataset {dataset}"
msgstr "{actor} removed the tag {tag} from the dataset {dataset}"

#: ckan/templates/snippets/changes/author.html:5
msgid "Set author of {pkg_link} to {new_author} (previously {old_author})"
msgstr ""

#: ckan/templates/snippets/changes/author.html:17
msgid "Set author of {pkg_link} to {new_author}"
msgstr ""

#: ckan/templates/snippets/changes/author.html:28
msgid "Removed author from {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/author.html:38
#: ckan/templates/snippets/changes/author_email.html:45
#: ckan/templates/snippets/changes/extra_fields.html:109
#: ckan/templates/snippets/changes/maintainer.html:38
#: ckan/templates/snippets/changes/maintainer_email.html:47
#: ckan/templates/snippets/changes/no_change.html:3
#: ckan/templates/snippets/changes/notes.html:38
#: ckan/templates/snippets/changes/org.html:54
#: ckan/templates/snippets/changes/resource_desc.html:56
#: ckan/templates/snippets/changes/resource_extras.html:164
#: ckan/templates/snippets/changes/resource_format.html:54
#: ckan/templates/snippets/changes/tags.html:83
#: ckan/templates/snippets/changes/url.html:47
#: ckan/templates/snippets/changes/version.html:38
msgid "No fields were updated. See the metadata diff for more details."
msgstr ""

#: ckan/templates/snippets/changes/author_email.html:5
msgid ""
"Set author email of {pkg_link} to {new_author_email} (previously "
"{old_author_email})"
msgstr ""

#: ckan/templates/snippets/changes/author_email.html:23
msgid "Set author email of {pkg_link} to {new_author_email}"
msgstr ""

#: ckan/templates/snippets/changes/author_email.html:36
msgid "Removed author email from {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/delete_resource.html:3
msgid "Deleted resource {resource_link} from {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/extension_fields.html:3
msgid "Changed value of field <q>{key}</q> to <q>{value}</q> in {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/extra_fields.html:5
msgid "Added field <q>{key}</q> with value <q>{value}</q> to {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/extra_fields.html:17
msgid "Added field <q>{key}</q> to {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/extra_fields.html:28
msgid "Added the following fields to {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/extra_fields.html:39
#: ckan/templates/snippets/changes/resource_extras.html:56
msgid "{key} with value {value}"
msgstr ""

#: ckan/templates/snippets/changes/extra_fields.html:44
#: ckan/templates/snippets/changes/resource_extras.html:61
#: ckan/templates/snippets/changes/resource_extras.html:102
msgid "{key}"
msgstr ""

#: ckan/templates/snippets/changes/extra_fields.html:54
msgid ""
"Changed value of field <q>{key}</q> to <q>{new_val}</q> (previously "
"<q>{old_val}</q>) in {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/extra_fields.html:67
msgid "Changed value of field <q>{key}</q> to <q>{new_val}</q> in {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/extra_fields.html:79
msgid "Removed field <q>{key}</q> from {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/extra_fields.html:90
msgid "Removed the following fields from {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/extra_fields.html:100
msgid "<q>{key}</q>"
msgstr ""

#: ckan/templates/snippets/changes/license.html:6
msgid ""
"Changed the license of {pkg_link} to {new_link} (previously {old_link})"
msgstr ""

#: ckan/templates/snippets/changes/license.html:25
msgid ""
"Changed the license of {pkg_link} to {new_link} (previously {old_title})"
msgstr ""

#: ckan/templates/snippets/changes/license.html:41
msgid ""
"Changed the license of {pkg_link} to {new_title} (previously {old_link})"
msgstr ""

#: ckan/templates/snippets/changes/license.html:58
msgid ""
"Changed the license of {pkg_link} to {new_title} (previously {old_title})"
msgstr ""

#: ckan/templates/snippets/changes/maintainer.html:5
msgid ""
"Set maintainer of {pkg_link} to {new_maintainer} (previously "
"{old_maintainer})"
msgstr ""

#: ckan/templates/snippets/changes/maintainer.html:17
msgid "Set maintainer of {pkg_link} to {new_maintainer}"
msgstr ""

#: ckan/templates/snippets/changes/maintainer.html:28
msgid "Removed maintainer from {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/maintainer_email.html:5
msgid ""
"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})"
msgstr ""

#: ckan/templates/snippets/changes/maintainer_email.html:23
msgid "Set maintainer email of {pkg_link} to {new_email}"
msgstr ""

#: ckan/templates/snippets/changes/maintainer_email.html:37
msgid "Removed maintainer email from {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/name.html:3
msgid "Moved {pkg_link} from {old_link} to {new_link}"
msgstr ""

#: ckan/templates/snippets/changes/new_file.html:3
msgid "Uploaded a new file to resource {resource_link} in {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/new_resource.html:15
msgid "Added resource {resource_link} to {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/notes.html:5
msgid ""
"Updated description of {pkg_link} from <br class=\"line-"
"height2\"><blockquote>{old_notes}</blockquote> to <br class=\"line-"
"height2\"><blockquote>{new_notes}</blockquote>"
msgstr ""

#: ckan/templates/snippets/changes/notes.html:17
msgid ""
"Updated description of {pkg_link} to <br class=\"line-"
"height2\"><blockquote>{new_notes}</blockquote>"
msgstr ""

#: ckan/templates/snippets/changes/notes.html:28
msgid "Removed description from {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/org.html:5
msgid ""
"Moved {pkg_link} from organization {old_org_link} to organization "
"{new_org_link}"
msgstr ""

#: ckan/templates/snippets/changes/org.html:25
msgid "Removed {pkg_link} from organization {old_org_link}"
msgstr ""

#: ckan/templates/snippets/changes/org.html:40
msgid "Added {pkg_link} to organization {new_org_link}"
msgstr ""

#: ckan/templates/snippets/changes/private.html:3
msgid "Set visibility of {pkg_link} to {visibility}"
msgstr ""

#: ckan/templates/snippets/changes/resource_desc.html:5
msgid ""
"Updated description of resource {resource_link} in {pkg_link} to <br "
"class=\"line-height2\"><blockquote>{new_desc}</blockquote>"
msgstr ""

#: ckan/templates/snippets/changes/resource_desc.html:22
msgid "Removed description from resource {resource_link} in {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/resource_desc.html:38
msgid ""
"Updated description of resource {resource_link} in {pkg_link} from <br "
"class=\"line-height2\"><blockquote>{old_desc}</blockquote> to <br "
"class=\"line-height2\"><blockquote>{new_desc}</blockquote>"
msgstr ""

#: ckan/templates/snippets/changes/resource_extras.html:5
msgid ""
"Added field <q>{key}</q> with value <q>{value}</q> to resource "
"{resource_link} in {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/resource_extras.html:23
msgid "Added field <q>{key}</q> to resource {resource_link} in {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/resource_extras.html:40
msgid "Added the following fields to resource {resource_link} in {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/resource_extras.html:70
msgid "Removed field <q>{key}</q> from resource {resource_link} in {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/resource_extras.html:87
msgid ""
"Removed the following fields from resource {resource_link} in {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/resource_extras.html:110
msgid ""
"Changed value of field <q>{key}</q> of resource {resource_link} to "
"<q>{new_val}</q> (previously <q>{old_val}</q>) in {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/resource_extras.html:129
msgid ""
"Changed value of field <q>{key}</q> to <q>{new_val}</q> in resource "
"{resource_link} in {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/resource_extras.html:147
msgid ""
"Removed the value of field <q>{key}</q> in resource {resource_link} in "
"{pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/resource_format.html:10
msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/resource_format.html:30
msgid ""
"Set format of resource {resource_link} to {new_format_link} (previously "
"{old_format_link}) in {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/resource_name.html:3
msgid ""
"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/tags.html:5
msgid "Removed tag {tag_link} from {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/tags.html:20
msgid "Removed the following tags from {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/tags.html:31
#: ckan/templates/snippets/changes/tags.html:70
msgid "{tag_link}"
msgstr ""

#: ckan/templates/snippets/changes/tags.html:44
msgid "Added tag {tag_link} to {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/tags.html:59
msgid "Added the following tags to {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/title.html:3
msgid "Changed title to {title_link} (previously {old_title})"
msgstr ""

#: ckan/templates/snippets/changes/url.html:5
msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}"
msgstr ""

#: ckan/templates/snippets/changes/url.html:23
msgid "Removed the source URL from {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/url.html:33
msgid "Changed the source URL of {pkg_link} to {new_link}"
msgstr ""

#: ckan/templates/snippets/changes/version.html:5
msgid ""
"Changed the version of {pkg_link} to {new_version} (previously "
"{old_version})"
msgstr ""

#: ckan/templates/snippets/changes/version.html:17
msgid "Removed the version from {pkg_link}"
msgstr ""

#: ckan/templates/snippets/changes/version.html:27
msgid "Changed the version of {pkg_link} to {new_version}"
msgstr ""

#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34
msgid "Search Tags"
msgstr "Search Tags"

#: ckan/templates/user/api_tokens.html:19
msgid "Create API Token"
msgstr ""

#: ckan/templates/user/api_tokens.html:29
#: ckan/templates/user/read_base.html:22
msgid "API Tokens"
msgstr ""

#: ckan/templates/user/api_tokens.html:37
msgid "You haven't created any API Tokens."
msgstr ""

#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37
msgid "News feed"
msgstr "News feed"

#: ckan/templates/user/dashboard.html:20
#: ckan/templates/user/dashboard_datasets.html:12
msgid "My Datasets"
msgstr "My Datasets"

#: ckan/templates/user/dashboard.html:21
#: ckan/templates/user/dashboard_organizations.html:12
msgid "My Organizations"
msgstr "My Organisations"

#: ckan/templates/user/dashboard.html:22
#: ckan/templates/user/dashboard_groups.html:12
msgid "My Groups"
msgstr "My Topics"

#: ckan/templates/user/dashboard.html:39
msgid "Activity from items that I'm following"
msgstr "Activity from items that I'm following"

#: ckan/templates/user/dashboard_datasets.html:17
#: ckan/templates/user/read.html:20
msgid "You haven't created any datasets."
msgstr "You haven't created any datasets."

#: ckan/templates/user/dashboard_datasets.html:19
#: ckan/templates/user/dashboard_groups.html:22
#: ckan/templates/user/dashboard_organizations.html:23
#: ckan/templates/user/read.html:22
msgid "Create one now?"
msgstr "Create one now?"

#: ckan/templates/user/dashboard_groups.html:20
msgid "You are not a member of any groups."
msgstr "You are not a member of any topics."

#: ckan/templates/user/dashboard_organizations.html:21
msgid "You are not a member of any organizations."
msgstr "You are not a member of any organisations."

#: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3
#: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13
#: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8
#: ckan/templates/user/snippets/user_search.html:2
msgid "Users"
msgstr "Users"

#: ckan/templates/user/edit.html:17
msgid "Account Info"
msgstr "Account Info"

#: ckan/templates/user/edit.html:19
msgid ""
"Your profile lets other CKAN users know about who you are and what you do."
msgstr ""
" Your profile lets other CKAN users know about who you are and what you do. "

#: ckan/templates/user/edit_user_form.html:7
msgid "Change details"
msgstr "Change details"

#: ckan/templates/user/edit_user_form.html:10
msgid "Full name"
msgstr "Full name"

#: ckan/templates/user/edit_user_form.html:10
msgid "eg. Joe Bloggs"
msgstr "eg. Joe Bloggs"

#: ckan/templates/user/edit_user_form.html:12
msgid "eg. joe@example.com"
msgstr "eg. joe@example.com"

#: ckan/templates/user/edit_user_form.html:14
msgid "A little information about yourself"
msgstr "A little information about yourself"

#: ckan/templates/user/edit_user_form.html:17
msgid "Subscribe to notification emails"
msgstr "Subscribe to notification emails"

#: ckan/templates/user/edit_user_form.html:26
#: ckan/templates/user/new_user_form.html:14
msgid "Profile picture"
msgstr ""

#: ckan/templates/user/edit_user_form.html:26
#: ckan/templates/user/new_user_form.html:14
msgid "Profile picture URL"
msgstr ""

#: ckan/templates/user/edit_user_form.html:31
msgid "Change password"
msgstr "Change password"

#: ckan/templates/user/edit_user_form.html:34
msgid "Sysadmin Password"
msgstr "Sysadmin Password"

#: ckan/templates/user/edit_user_form.html:42
#: ckan/templates/user/logout_first.html:11
#: ckan/templates/user/new_user_form.html:8
#: ckan/templates/user/perform_reset.html:25
#: ckan/templates/user/snippets/login_form.html:22
msgid "Password"
msgstr "Password"

#: ckan/templates/user/edit_user_form.html:44
msgid "Confirm Password"
msgstr "Confirm Password"

#: ckan/templates/user/edit_user_form.html:50
msgid "Are you sure you want to delete this User?"
msgstr "Are you sure you want to delete this User?"

#: ckan/templates/user/edit_user_form.html:55
msgid "Are you sure you want to regenerate the API key?"
msgstr "Are you sure you want to regenerate the API key?"

#: ckan/templates/user/edit_user_form.html:55
msgid "Regenerate API Key"
msgstr "Regenerate API Key"

#: ckan/templates/user/edit_user_form.html:59
msgid "Update Profile"
msgstr "Update Profile"

#: ckan/templates/user/list.html:3
#: ckan/templates/user/snippets/user_search.html:11
msgid "All Users"
msgstr "All Users"

#: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6
#: ckan/templates/user/login.html:12
#: ckan/templates/user/snippets/login_form.html:28
msgid "Login"
msgstr "Login"

#: ckan/templates/user/login.html:25
msgid "Need an Account?"
msgstr "Need an Account?"

#: ckan/templates/user/login.html:27
msgid "Then sign right up, it only takes a minute."
msgstr "Then sign right up, it only takes a minute."

#: ckan/templates/user/login.html:30
msgid "Create an Account"
msgstr "Create an Account"

#: ckan/templates/user/login.html:42
msgid "Forgotten your password?"
msgstr "Forgotten your password?"

#: ckan/templates/user/login.html:44
msgid "No problem, use our password recovery form to reset it."
msgstr "No problem, use our password recovery form to reset it."

#: ckan/templates/user/login.html:47
msgid "Forgot your password?"
msgstr "Forgot your password?"

#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9
msgid "Logged Out"
msgstr "Logged Out"

#: ckan/templates/user/logout.html:11
msgid "You are now logged out."
msgstr "You are now logged out."

#: ckan/templates/user/logout_first.html:9
msgid "You're already logged in as {user}."
msgstr "You're already logged in as {user}."

#: ckan/templates/user/logout_first.html:9
msgid "Logout"
msgstr "Logout"

#: ckan/templates/user/logout_first.html:12
#: ckan/templates/user/snippets/login_form.html:24
msgid "Remember me"
msgstr "Remember me"

#: ckan/templates/user/logout_first.html:20
msgid "You're already logged in"
msgstr "You're already logged in"

#: ckan/templates/user/logout_first.html:22
msgid "You need to log out before you can log in with another account."
msgstr "You need to log out before you can log in with another account."

#: ckan/templates/user/logout_first.html:23
msgid "Log out now"
msgstr "Log out now"

#: ckan/templates/user/new.html:6
msgid "Registration"
msgstr "Registration"

#: ckan/templates/user/new.html:14
msgid "Register for an Account"
msgstr "Register for an Account"

#: ckan/templates/user/new.html:26
msgid "Why Sign Up?"
msgstr "Why Sign Up?"

#: ckan/templates/user/new.html:28
msgid "Create datasets, groups and other exciting things"
msgstr "Create datasets, topics and other exciting things"

#: ckan/templates/user/new_user_form.html:5
msgid "username"
msgstr "username"

#: ckan/templates/user/new_user_form.html:6
msgid "Full Name"
msgstr "Full Name"

#: ckan/templates/user/new_user_form.html:27
msgid "Create Account"
msgstr "Create Account"

#: ckan/templates/user/perform_reset.html:4
#: ckan/templates/user/perform_reset.html:15
msgid "Reset Your Password"
msgstr "Reset Your Password"

#: ckan/templates/user/perform_reset.html:7
#: ckan/templates/user/request_reset.html:6
msgid "Password Reset"
msgstr "Password Reset"

#: ckan/templates/user/perform_reset.html:21
msgid "You can also change username. It can not be modified later."
msgstr ""

#: ckan/templates/user/perform_reset.html:29
msgid "Update Password"
msgstr "Update Password"

#: ckan/templates/user/perform_reset.html:43
#: ckan/templates/user/request_reset.html:36
msgid "How does this work?"
msgstr "How does this work?"

#: ckan/templates/user/perform_reset.html:45
msgid "Simply enter a new password and we'll update your account"
msgstr "Simply enter a new password and we'll update your account"

#: ckan/templates/user/read.html:27
msgid "User hasn't created any datasets."
msgstr "User hasn't created any datasets."

#: ckan/templates/user/read_base.html:42
msgid "You have not provided a biography."
msgstr "You have not provided a biography."

#: ckan/templates/user/read_base.html:44
msgid "This user has no biography."
msgstr "This user has no biography."

#: ckan/templates/user/read_base.html:72
msgid "Open ID"
msgstr "Open ID"

#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95
msgid "This means only you can see this"
msgstr "This means only you can see this"

#: ckan/templates/user/read_base.html:86
msgid "Member Since"
msgstr "Member Since"

#: ckan/templates/user/read_base.html:95
msgid "API Key"
msgstr "API Key"

#: ckan/templates/user/request_reset.html:3
#: ckan/templates/user/request_reset.html:13
msgid "Reset your password"
msgstr "Reset your password"

#: ckan/templates/user/request_reset.html:17
msgid "Email or username"
msgstr ""

#: ckan/templates/user/request_reset.html:22
msgid "Request Reset"
msgstr ""

#: ckan/templates/user/request_reset.html:38
msgid ""
"Enter your email address or username into the box and we will send you an "
"email with a link to enter a new password."
msgstr ""

#: ckan/templates/user/snippets/api_token_list.html:13
msgid "Token"
msgstr ""

#: ckan/templates/user/snippets/api_token_list.html:14
msgid "Last access"
msgstr ""

#: ckan/templates/user/snippets/api_token_list.html:15
msgid "Actions"
msgstr ""

#: ckan/templates/user/snippets/api_token_list.html:40
msgid "Revoke"
msgstr ""

#: ckan/templates/user/snippets/followee_dropdown.html:15
#: ckan/templates/user/snippets/followee_dropdown.html:16
msgid "Activity from:"
msgstr "Activity from:"

#: ckan/templates/user/snippets/followee_dropdown.html:23
msgid "Search list..."
msgstr "Search list..."

#: ckan/templates/user/snippets/followee_dropdown.html:44
msgid "You are not following anything"
msgstr "You are not following anything"

#: ckan/templates/user/snippets/followers.html:9
msgid "No followers"
msgstr "No followers"

#: ckan/templates/user/snippets/user_search.html:5
msgid "Search Users"
msgstr "Search Users"

#: ckan/views/admin.py:203
msgid "Massive purge complete"
msgstr ""

#: ckan/views/admin.py:212
msgid "success"
msgstr ""

#: ckan/views/dataset.py:360
msgid "Parameter u\"{parameter_name}\" is not an integer"
msgstr ""

#: ckan/views/dataset.py:451 ckan/views/dataset.py:469
#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213
#: ckan/views/resource.py:81
msgid "Activity not found"
msgstr ""

#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134
#: ckan/views/dataset.py:1215
msgid "Unauthorized to view activity data"
msgstr ""

#: ckan/views/dataset.py:462
msgid "The detail of this dataset activity is not available"
msgstr ""

#: ckan/views/dataset.py:604
msgid "Unauthorized to read package"
msgstr ""

#: ckan/views/dataset.py:1249
msgid "Unauthorized to read collaborators {}"
msgstr ""

#: ckan/views/dataset.py:1267
msgid "Unauthorized to delete collaborators {}"
msgstr ""

#: ckan/views/dataset.py:1272
msgid "User removed from collaborators"
msgstr ""

#: ckan/views/dataset.py:1304
msgid "Unauthorized to edit collaborators {}"
msgstr ""

#: ckan/views/dataset.py:1311
msgid "User added to collaborators"
msgstr ""

#: ckan/views/user.py:169
msgid "Unauthorized to view API tokens."
msgstr ""

#: ckan/views/user.py:203
msgid "Unauthorized to create API tokens."
msgstr ""

#: ckan/views/user.py:218
msgid ""
"API Token created: <code style=\"word-break:break-all;\">{token}</code> "
"{copy}<br>Make sure to copy it now, you won't be able to see it again!"
msgstr ""

#: ckan/views/user.py:234
msgid "Unauthorized to revoke API tokens."
msgstr ""

#: ckan/views/user.py:706
msgid "Your password must be 8 characters or longer."
msgstr ""

#: ckan/views/util.py:26
msgid "Redirecting to external site is not allowed."
msgstr "Redirecting to external site is not allowed."