~albyrock87/awn-extras/extras_with_pidgineer

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
# Hebrew translation for awn-extras
# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008
# This file is distributed under the same license as the awn-extras package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2008.
#
msgid ""
msgstr ""
"Project-Id-Version: awn-extras\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-03-29 01:04+0300\n"
"PO-Revision-Date: 2010-04-10 23:29+0000\n"
"Last-Translator: Yaron <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <he@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2010-04-11 04:11+0000\n"
"X-Generator: Launchpad (build Unknown)\n"

#: ../applets/maintained/animal-farm/animal-farm.desktop.in.h:1
msgid "Animal Farm"
msgstr "חוות החיות"

#: ../applets/maintained/animal-farm/animal-farm.desktop.in.h:2
msgid "Display fortune messages"
msgstr "הצגת הודעות מזל"

#: ../applets/maintained/awnterm/awn-applet-awnterm.schema-ini.in.h:1
msgid "Global hotkey used to activate the terminal."
msgstr "Global hotkey used to activate the terminal."

#: ../applets/maintained/awnterm/awn-applet-awnterm.schema-ini.in.h:2
msgid "Set whether the applet should hide itself when it loses focus."
msgstr "Set whether the applet should hide itself when it loses focus."

#: ../applets/maintained/awnterm/awn-applet-awnterm.schema-ini.in.h:3
msgid "The applet's background image."
msgstr "The applet's background image."

#: ../applets/maintained/awnterm/awn-applet-awnterm.schema-ini.in.h:4
msgid "The applet's opacity level."
msgstr "The applet's opacity level."

#: ../applets/maintained/awnterm/awn-applet-awnterm.schema-ini.in.h:5
msgid "The default external terminal application."
msgstr "The default external terminal application."

#: ../applets/maintained/awnterm/awn-terminal.vala:100
msgid "Disabled"
msgstr "כבוי"

#: ../applets/maintained/awnterm/awn-terminal.vala:410
#: ../applets/maintained/calendar/calendarprefs.py:75
msgid "Preferences"
msgstr "העדפות"

#: ../applets/maintained/awnterm/awn-terminal.vala:425
#: ../applets/maintained/file-browser-launcher/prefs.py:154
#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:16
#, c-format
msgid "Behavior"
msgstr "התנהגות"

#. focus out behavior checkbox
#: ../applets/maintained/awnterm/awn-terminal.vala:437
msgid "Hide when focus is lost"
msgstr "הסתרה בעת איבוד המיקוד"

#: ../applets/maintained/awnterm/awn-terminal.vala:456
#: ../applets/maintained/file-browser-launcher/prefs.py:253
#: ../applets/maintained/file-browser-launcher/prefs.py:328
msgid "Action"
msgstr "פעולה"

#: ../applets/maintained/awnterm/awn-terminal.vala:476
msgid "Shortcut"
msgstr "קיצור דרך"

#: ../applets/maintained/awnterm/awn-terminal.vala:482
msgid "Activate"
msgstr "הפעלה"

#: ../applets/maintained/awnterm/awn-terminal.vala:491
#, c-format
msgid "Background image"
msgstr "תמונת רקע"

#: ../applets/maintained/awnterm/awn-terminal.vala:503
msgid "Select a file"
msgstr "בחירת קובץ"

#: ../applets/maintained/awnterm/awn-terminal.vala:545
#, c-format
msgid "Terminal opacity"
msgstr "אטימות המסוף"

#: ../applets/maintained/awnterm/awn-terminal.vala:572
#, c-format
msgid "External Terminal"
msgstr "מסוף חיצוני"

#. vim: set ft=vala et ts=2 sts=2 sw=2 ai :
#: ../applets/maintained/awnterm/awnterm.desktop.in.in.h:1
msgid "A simple popup terminal"
msgstr "מסוף פשוט מוקפץ"

#: ../applets/maintained/awnterm/awnterm.desktop.in.in.h:2
msgid "Terminal Applet"
msgstr "יישומון מסוף"

#: ../applets/maintained/bandwidth-monitor/awn-applet-bandwidth-monitor.schema-ini.in.h:1
msgid " Upload/Download"
msgstr " Upload/Download"

#: ../applets/maintained/bandwidth-monitor/awn-applet-bandwidth-monitor.schema-ini.in.h:2
msgid " bytes)"
msgstr " bytes)"

#: ../applets/maintained/bandwidth-monitor/awn-applet-bandwidth-monitor.schema-ini.in.h:3
msgid "Color to draw the background"
msgstr "Color to draw the background"

#: ../applets/maintained/bandwidth-monitor/awn-applet-bandwidth-monitor.schema-ini.in.h:4
msgid "Color to draw the border"
msgstr ""

#: ../applets/maintained/bandwidth-monitor/awn-applet-bandwidth-monitor.schema-ini.in.h:5
msgid "Display parameters for interfaces"
msgstr "Display parameters for interfaces"

#: ../applets/maintained/bandwidth-monitor/awn-applet-bandwidth-monitor.schema-ini.in.h:6
msgid "Draw the applet background"
msgstr "Draw the applet background"

#: ../applets/maintained/bandwidth-monitor/awn-applet-bandwidth-monitor.schema-ini.in.h:7
msgid "Draw the applet border"
msgstr "Draw the applet border"

#: ../applets/maintained/bandwidth-monitor/awn-applet-bandwidth-monitor.schema-ini.in.h:8
msgid ""
"If enabled this will draw a line at the bottom of the graph even if the "
"value is 0. If unchecked, values below 1 are not drawn"
msgstr ""
"If enabled this will draw a line at the bottom of the graph even if the "
"value is 0. If unchecked, values below 1 are not drawn"

#: ../applets/maintained/bandwidth-monitor/awn-applet-bandwidth-monitor.schema-ini.in.h:9
msgid "Minimum threshold to draw meter (dependent upon DEFAULT/unit)"
msgstr "Minimum threshold to draw meter (dependent upon DEFAULT/unit)"

#: ../applets/maintained/bandwidth-monitor/awn-applet-bandwidth-monitor.schema-ini.in.h:10
msgid "The interface currently selected"
msgstr "The interface currently selected"

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:37
#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:231
#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.desktop.in.h:2
msgid "Bandwidth Monitor"
msgstr "צג התעבורה"

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:41
msgid "Network Bandwidth monitor"
msgstr "צג תעבורת הרשת"

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:225
msgid "Unable to caclulate statistics"
msgstr ""

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:225
msgid "Statistics calculation requires read access to /proc/net/dev"
msgstr "חישוב הסטטיסטיקה דורש גישה לקריאת /proc/net/dev"

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:244
msgid "Change Unit"
msgstr "החלפת היחידות"

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:295
msgid "Scanning"
msgstr "סריקה"

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:296
#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:4
msgid "Devices"
msgstr "התקנים"

#. kilobytes per second
#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:323
#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:19
#: ../applets/maintained/bandwidth-monitor/bwmprefs.py:50
msgid "KBps"
msgstr ""

#. kilobits per second
#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:327
#: ../applets/maintained/bandwidth-monitor/bwmprefs.py:53
msgid "Kbps"
msgstr "קסל\"ש"

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:349
#: ../applets/maintained/hardware-sensors/hardware-sensors.py:468
msgid "Interface"
msgstr "מנשק"

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:354
msgid "Sent"
msgstr "נשלח"

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:359
msgid "Received"
msgstr "התקבל"

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:364
msgid "Sending"
msgstr "שולח"

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:369
msgid "Receiving"
msgstr "מקבל"

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:417
msgid "Please select a valid Network Device"
msgstr "יש לבחור בהתקן רשת תקין"

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:419
#, python-format
msgid "Total Sent: %s - Total Received: %s (All Interfaces)"
msgstr ""

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:610
msgid "No"
msgstr "לא"

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:611
#: ../applets/maintained/bandwidth-monitor/bwmprefs.py:136
msgid "Device"
msgstr "התקן"

#: ../applets/maintained/bandwidth-monitor/awn-bwm.py:612
msgid "Please select a valid device"
msgstr "יש לבחור בהתקן תקני"

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.desktop.in.h:1
msgid "A Network Bandwidth monitor for AWN"
msgstr "צג תעבורת רשת עבור AWN"

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:1
#: ../applets/maintained/battery/battery.ui.h:1
#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:5
#: ../applets/maintained/digital-clock/dg-prefs.ui.h:4
#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:2
#: ../applets/maintained/mail/mail.ui.h:1
#: ../applets/maintained/media-control/media-control.ui.h:1
#: ../applets/maintained/notification-area/na-prefs.ui.h:5
#: ../applets/maintained/volume-control/volume-control.ui.h:4
#: ../applets/maintained/weather/weather.ui.h:2
msgid "<b>Display</b>"
msgstr "<b>תצוגה</b>"

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:2
msgid "Background Color"
msgstr "צבע הרקע"

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:3
msgid "Border Color"
msgstr "צבע המסגרת"

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:5
msgid "Display MBps/KBps (bytes) instead of Mbps/Kbps (bits)"
msgstr "הצגת מבל\"ש/קבל\"ש (בתים) במקום מסל\"ש/קסל\"ש (סיביות)"

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:6
msgid "Display Speed Text"
msgstr "הצגת טקסט מהיר"

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:7
msgid "Display the sum of upload and download"
msgstr "הצגת סכום ההעלאות וההורדות"

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:8
msgid "Display upload and download text representation of speed"
msgstr "ייצוג מילולי בלבד של מהירויות ההעלאה וההורדה"

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:9
msgid "Do not display the speed as text, only draw the graph"
msgstr "אין להציג את המהירות כטקסט, רק לצייר את הגרף"

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:10
msgid "Draw 0 bps in graphs"
msgstr "ציור 0 סל\"ש בגרפים"

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:11
msgid "Draw Background"
msgstr "ציור רקע"

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:12
msgid "Draw Border"
msgstr "ציור המסגרת"

#. Put the general tab together
#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:13
#: ../applets/maintained/dialect/dialect.ui.h:74
#: ../applets/maintained/file-browser-launcher/prefs.py:204
#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:9
#: ../applets/maintained/to-do/prefs.py:60
msgid "General"
msgstr "כללי"

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:14
msgid "Graph Only"
msgstr "גרף בלבד"

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:15
msgid ""
"If enabled, this will draw a line at the bottom of the graph even if the "
"value is 0. If unchecked, values below 1 are not drawn in the graph."
msgstr ""

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:16
msgid ""
"If this is checked the applet background will use the selected color. If "
"unchecked, background will be transparent"
msgstr ""

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:17
msgid ""
"If this is checked the applet border will use the selected color. If "
"unchecked, border will be transparent"
msgstr ""

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:18
msgid "If this is checked, the common display unit will be Bytes"
msgstr ""

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:20
msgid "Minimum Scaling threshold"
msgstr ""

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:21
msgid ""
"Sets the minimum threshold for scaling to not show large spikes for small "
"amounts of traffic. e.g.: Setting to 32.0 KBps will cause the graph to only "
"draw if throughput exceeds 32.0 KBps"
msgstr ""

#: ../applets/maintained/bandwidth-monitor/bandwidth-monitor.ui.h:22
#: ../applets/maintained/bandwidth-monitor/bwmprefs.py:141
msgid "Sum"
msgstr "סך הכל"

#: ../applets/maintained/bandwidth-monitor/bwmprefs.py:147
msgid "Multi"
msgstr ""

#: ../applets/maintained/bandwidth-monitor/bwmprefs.py:155
msgid "Upload Color"
msgstr ""

#: ../applets/maintained/bandwidth-monitor/bwmprefs.py:166
msgid "Download Color"
msgstr ""

#: ../applets/maintained/bandwidth-monitor/bwmprefs.py:239
msgid "Upload"
msgstr ""

#: ../applets/maintained/bandwidth-monitor/bwmprefs.py:241
msgid "Download"
msgstr ""

#: ../applets/maintained/bandwidth-monitor/bwmprefs.py:243
#, python-format
msgid "%s %s Color"
msgstr ""

#: ../applets/maintained/battery/awn-applet-battery.schema-ini.in.h:1
msgid "HAL UDI of battery."
msgstr ""

#: ../applets/maintained/battery/awn-applet-battery.schema-ini.in.h:2
msgid ""
"If charge level drops below this threadhold, a warning will be displayed."
msgstr ""

#: ../applets/maintained/battery/awn-applet-battery.schema-ini.in.h:3
msgid "If charge level reaches this threshold, a notification will be sent."
msgstr ""

#: ../applets/maintained/battery/awn-applet-battery.schema-ini.in.h:4
msgid "If enabled, notify when the charge level reaches the high level."
msgstr ""

#: ../applets/maintained/battery/awn-applet-battery.schema-ini.in.h:5
msgid ""
"If enabled, warn when the charge level drops below the warning threshold."
msgstr ""

#: ../applets/maintained/battery/awn-applet-battery.schema-ini.in.h:6
#: ../applets/maintained/volume-control/awn-applet-volume-control.schema-ini.in.h:3
#: ../applets/maintained/weather/awn-applet-weather.schema-ini.in.h:7
msgid "The name of the theme of the icon."
msgstr ""

#: ../applets/maintained/battery/awn-applet-battery.schema-ini.in.h:7
msgid "Unit of low level threshold (Percent or Time Remaining)."
msgstr ""

#: ../applets/maintained/battery/battery.desktop.in.h:1
msgid "Battery"
msgstr ""

#: ../applets/maintained/battery/battery.desktop.in.h:2
msgid "Display battery state"
msgstr ""

#: ../applets/maintained/battery/battery.ui.h:2
#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:5
#: ../applets/maintained/weather/weather.ui.h:3
msgid "<b>General Options</b>"
msgstr ""

#: ../applets/maintained/battery/battery.ui.h:3
msgid "<b>Notifications</b>"
msgstr ""

#: ../applets/maintained/battery/battery.ui.h:4
msgid ""
"If enabled, shows a notification when the charge level reaches a certain "
"percentage"
msgstr ""

#: ../applets/maintained/battery/battery.ui.h:5
msgid "If enabled, shows a notification when the charge levels drops too low"
msgstr ""

#: ../applets/maintained/battery/battery.ui.h:6
msgid "Percent"
msgstr ""

#: ../applets/maintained/battery/battery.ui.h:7
msgid "Time Remaining"
msgstr ""

#: ../applets/maintained/battery/battery.ui.h:8
msgid "_Battery:"
msgstr ""

#: ../applets/maintained/battery/battery.ui.h:9
msgid "_Notify when charge level reaches:"
msgstr ""

#: ../applets/maintained/battery/battery.ui.h:10
#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:23
#: ../applets/maintained/mail/mail.ui.h:8
#: ../applets/maintained/volume-control/volume-control.ui.h:7
#: ../applets/maintained/weather/weather.ui.h:18
msgid "_Theme:"
msgstr ""

#: ../applets/maintained/battery/battery.ui.h:11
msgid "_Warn when charge level drops to:"
msgstr ""

#: ../applets/maintained/cairo-clock/awn-applet-cairo-clock.schema-ini.in.h:1
msgid "A custom time format (strftime()), used if not empty."
msgstr ""

#: ../applets/maintained/cairo-clock/awn-applet-cairo-clock.schema-ini.in.h:2
msgid "Beaufort)."
msgstr ""

#: ../applets/maintained/cairo-clock/awn-applet-cairo-clock.schema-ini.in.h:3
msgid ""
"If enabled, besides hours and minutes, the seconds will be visible too."
msgstr ""

#: ../applets/maintained/cairo-clock/awn-applet-cairo-clock.schema-ini.in.h:4
msgid "If enabled, displays the weather as an overlay on top of the clock."
msgstr ""

#: ../applets/maintained/cairo-clock/awn-applet-cairo-clock.schema-ini.in.h:5
msgid "If enabled, the date will be shown in the title."
msgstr ""

#: ../applets/maintained/cairo-clock/awn-applet-cairo-clock.schema-ini.in.h:6
msgid "If enabled, the seconds hand will be visible in the clock."
msgstr ""

#: ../applets/maintained/cairo-clock/awn-applet-cairo-clock.schema-ini.in.h:7
#: ../applets/maintained/hardware-sensors/awn-applet-hardware-sensors.schema-ini.in.h:6
msgid "Kelvin)."
msgstr ""

#: ../applets/maintained/cairo-clock/awn-applet-cairo-clock.schema-ini.in.h:8
msgid "List of cities and timezones separated by a '#' character."
msgstr ""

#: ../applets/maintained/cairo-clock/awn-applet-cairo-clock.schema-ini.in.h:9
msgid ""
"Show time in 24 hour format if enabled, or 12 hour format when disabled."
msgstr ""

#: ../applets/maintained/cairo-clock/awn-applet-cairo-clock.schema-ini.in.h:10
msgid "The name of the theme of the analog clock."
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.desktop.in.h:1
msgid "Cairo Clock"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.desktop.in.h:2
msgid ""
"Displays an analog clock and supports additional clocks for different "
"locations"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:1
#: ../applets/maintained/weather/weather.ui.h:1
msgid " "
msgstr " "

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:2
msgid "12 _hour format"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:3
msgid "24 h_our format"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:4
msgid "<b>Clock Display</b>"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:6
msgid "<b>Title Options</b>"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:7
msgid "Beaufort"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:8
msgid "Celcius"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:9
#: ../applets/maintained/hardware-sensors/sensorvalues/units.py:34
msgid "Fahrenheit"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:10
msgid "Find _Next"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:11
msgid ""
"If enabled, besides hours and minutes, the seconds will be visible too"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:12
msgid "If enabled, the date will be shown in the title"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:13
msgid "If enabled, the seconds hand will be visible in the clock"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:14
msgid "If enabled, time will be shown like 1:23 AM"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:15
msgid "If enabled, time will be shown like 23:45"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:16
#: ../applets/maintained/hardware-sensors/sensorvalues/units.py:35
msgid "Kelvin"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:17
msgid "Location Name:"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:18
msgid "Show _seconds"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:19
msgid "Show seco_nds hand"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:20
msgid "Show the _date"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:21
msgid "_Show weather of current location"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:22
msgid "_Temperature unit:"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:24
msgid "_Wind speed unit:"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:25
msgid "km/h"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:26
msgid "knots"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:27
msgid "m/s"
msgstr ""

#: ../applets/maintained/cairo-clock/cairo-clock.ui.h:28
msgid "mph"
msgstr ""

#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:107
#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:111
msgid "Logout"
msgstr ""

#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:115
#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:117
#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:122
#: ../applets/maintained/quit/quit-lock-screen.desktop.in.h:1
msgid "Lock Screen"
msgstr ""

#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:126
#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:128
#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:139
msgid "Suspend"
msgstr ""

#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:131
#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:133
#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:144
msgid "Hibernate"
msgstr ""

#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:152
msgid "Shutdown"
msgstr ""

#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:187
#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:562
msgid "Computer"
msgstr ""

#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:188
msgid "Home"
msgstr ""

#. Check if this is the Desktop directory
#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:189
#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:520
#: ../applets/maintained/places/applet.c:341
msgid "Desktop"
msgstr ""

#. 
#. TODO: check the trash and set to stock_trash_empty if trash is empty
#. 
#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:193
#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:588
#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:591
msgid "Trash"
msgstr ""

#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:194
msgid "File System"
msgstr ""

#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:315
#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:565
msgid "Network"
msgstr ""

#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:316
msgid "Connect to Server"
msgstr ""

#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:946
#: ../applets/maintained/file-browser-launcher/prefs.py:243
#: ../applets/maintained/places/places.desktop.in.in.h:2
msgid "Places"
msgstr ""

#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:984
msgid "Recent Documents"
msgstr ""

#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:1029
msgid "Session"
msgstr ""

#. generates a compiler warning due to the ellipse
#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:1056
msgid "Search\\u2026"
msgstr ""

#. generates a compiler warning due to the ellipse
#: ../applets/maintained/cairo-menu/gnome-menu-builder.c:1073
msgid "Launch\\u2026"
msgstr ""

#: ../applets/maintained/cairo-menu/misc.c:356
msgid "Clear Recent Documents"
msgstr ""

#: ../applets/maintained/calendar/awn-applet-calendar.schema-ini.in.h:1
msgid "X"
msgstr ""

#: ../applets/maintained/calendar/calendar.desktop.in.h:1
msgid "Clock/Calendar Applet"
msgstr ""

#: ../applets/maintained/calendar/calendar.desktop.in.h:2
msgid "Watch appointments on your dock"
msgstr ""

#: ../applets/maintained/calendar/calendarlogin.py:43
msgid "Login to "
msgstr ""

#: ../applets/maintained/calendar/calendarlogin.py:48
msgid "Online Calendar"
msgstr ""

#: ../applets/maintained/calendar/calendarlogin.py:53
msgid "Calendar Username"
msgstr ""

#: ../applets/maintained/calendar/calendarlogin.py:61
msgid "Calendar Password"
msgstr ""

#: ../applets/maintained/calendar/calendarlogin.py:71
msgid "Save Password"
msgstr ""

#: ../applets/maintained/calendar/calendarlogin.py:89
msgid ""
"You have chosen to save your password.  Although the password will be stored "
"in an encrypted format, there is always a remote possibility that your "
"password can be stolen and decrypted if your computer's security is "
"breached.  Are you still sure you want to save your password?"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:46
msgid "Classic LCD"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:47
msgid "Indy Glow LCD"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:48
msgid "Backlit Amber LCD"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:49
msgid "Backlit Green LCD"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:50
msgid "Green LED"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:51
msgid "Red LED"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:52
msgid "Blue LED"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:53
msgid "Plain White"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:54
msgid "Plain Black"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:57
msgid "Red"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:58
msgid "Green"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:59
msgid "Blue"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:60
msgid "Gray"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:61
msgid "Black"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:84
msgid "Twelve Hour Clock"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:104
msgid "Clock Appearance"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:114
msgid "Calendar Appearance"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:121
#: ../applets/maintained/dialect/dialect.ui.h:82
#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:32
msgid "None"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:122
msgid "Evolution"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:123
msgid "Google Calendar"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:124
msgid "Outlook Web Access"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:127
msgid "Calendar Integration"
msgstr ""

#: ../applets/maintained/calendar/calendarprefs.py:150
msgid "Calendar URL"
msgstr ""

#. default title/tooltip to show on startup.
#: ../applets/maintained/calendar/clockcal.py:51
#: ../applets/maintained/calendar/clockcal.py:491
#: ../applets/maintained/digital-clock/digital-clock.vala:119
msgid "Calendar"
msgstr ""

#: ../applets/maintained/calendar/clockcal.py:218
msgid ""
"Do you want to erase your calendar password from the calendar applet?  If "
"you choose to clear your password, you will be prompted again for your "
"calendar login credentials."
msgstr ""

#: ../applets/maintained/calendar/clockcal.py:497
msgid "Open in "
msgstr ""

#: ../applets/maintained/calendar/clockcal.py:501
#: ../applets/maintained/weather/forecast.py:169
msgid "Today"
msgstr ""

#. print "Login error: ", sys.exc_info()[0], sys.exc_info()[1]
#: ../applets/maintained/calendar/clockcal.py:549
msgid "Unable to read calendar data from external source."
msgstr ""

#: ../applets/maintained/calendar/googlecal.py:90
msgid "No appointments."
msgstr ""

#: ../applets/maintained/calendar/icscal.py:73
#: ../applets/maintained/calendar/owacal.py:95
msgid "No appointments"
msgstr ""

#: ../applets/maintained/comics/awn-applet-comics.schema-ini.in.h:1
msgid "The user agent to send when retrieving comics."
msgstr ""

#: ../applets/maintained/comics/comics_add.py:57
#, python-format
msgid "Failed to download %s. Press \"next\" to try again."
msgstr ""

#: ../applets/maintained/comics/comics_add.py:63
msgid "The URL is not a valid comic feed. Press \"next\" to try again"
msgstr ""

#: ../applets/maintained/comics/comics_add.py:140
#, python-format
msgid "Connecting to <i>%s</i>..."
msgstr ""

#: ../applets/maintained/comics/comics_add.py:174
#, python-format
msgid ""
"This guide has finished.\n"
"\n"
"Press \"apply\" to add <i>%s</i>."
msgstr ""

#: ../applets/maintained/comics/comics_add.py:198
#, python-format
msgid ""
"Found <b>%(name)s</b>!\n"
"\n"
"<i>%(description)s</i>"
msgstr ""

#. Initialise notifications
#: ../applets/maintained/comics/comics.desktop.in.h:1
#: ../applets/maintained/comics/comics.py:179
#: ../applets/maintained/comics/main.py:294
#: ../applets/maintained/comics/main.py:300
msgid "Comics!"
msgstr ""

#: ../applets/maintained/comics/comics.desktop.in.h:2
msgid "View your favourite comics on your desktop"
msgstr ""

#: ../applets/maintained/comics/comics_manage.py:51
msgid "Shared comics"
msgstr ""

#: ../applets/maintained/comics/comics_manage.py:52
msgid "Your comics"
msgstr ""

#: ../applets/maintained/comics/comics_manage.py:119
#, python-format
msgid "Failed to remove <i>%s</i>."
msgstr ""

#: ../applets/maintained/comics/comics_manage.py:125
#: ../applets/maintained/feeds/feeds.py:388
msgid "Error"
msgstr ""

#: ../applets/maintained/comics/comics.py:155
msgid "Comics"
msgstr ""

#: ../applets/maintained/comics/comics.py:159
msgid "Manage Comics"
msgstr ""

#: ../applets/maintained/comics/comics.py:211
#: ../applets/maintained/comics/main.py:192
#, python-format
msgid "There is a new strip of %s!"
msgstr ""

#: ../applets/maintained/comics/comics_view.py:164
msgid "%A %d %B"
msgstr ""

#: ../applets/maintained/comics/comics_view.py:532
#, python-format
msgid "Failed to save <i>%s</i>."
msgstr ""

#: ../applets/maintained/comics/ui/add.ui.h:1
msgid "Add Comic"
msgstr ""

#: ../applets/maintained/comics/ui/add.ui.h:2
msgid "Downloading Comic"
msgstr ""

#: ../applets/maintained/comics/ui/add.ui.h:3
msgid "Enter the URL of the RSS feed:"
msgstr ""

#: ../applets/maintained/comics/ui/add.ui.h:4
msgid "Ready to add comic!"
msgstr ""

#: ../applets/maintained/comics/ui/add.ui.h:5
msgid "Select Comic"
msgstr ""

#: ../applets/maintained/comics/ui/add.ui.h:6
msgid "Select Image"
msgstr ""

#: ../applets/maintained/comics/ui/add.ui.h:7
msgid "The guide found more than one image. Please select which one to use."
msgstr ""

#: ../applets/maintained/comics/ui/add.ui.h:8
msgid ""
"This guide will help you to add a new comic.\n"
"\n"
"To find comics suitable for adding, you may search the Internet for \"comics "
"rss\".\n"
"\n"
"Press \"next\" to proceed."
msgstr ""

#: ../applets/maintained/comics/ui/manage.ui.h:1
msgid "Manage comics"
msgstr ""

#: ../applets/maintained/comics/ui/manage.ui.h:2
msgid "The following comics are installed:"
msgstr ""

#: ../applets/maintained/comics/ui/view.ui.h:1
msgid "Show link"
msgstr ""

#: ../applets/maintained/comics/ui/view.ui.h:2
msgid "Size"
msgstr ""

#: ../applets/maintained/comics/main.py:152
#, python-format
msgid "Unknown command sent: %s"
msgstr ""

#: ../applets/maintained/cpufreq/awn-applet-cpufreq.schema-ini.in.h:1
msgid "Index of processor."
msgstr ""

#: ../applets/maintained/cpufreq/cpufreq.desktop.in.h:1
msgid "An applet to monitor and control the CPU frequency"
msgstr ""

#: ../applets/maintained/cpufreq/cpufreq.desktop.in.h:2
msgid "CPU Frequency Monitor"
msgstr ""

#: ../applets/maintained/cpufreq/cpufreq.ui.h:1
msgid "<b>Monitored CPU</b>"
msgstr ""

#: ../applets/maintained/cpufreq/cpufreq.ui.h:2
msgid "_Processor:"
msgstr ""

#: ../applets/maintained/dialect/awn-applet-dialect.schema-ini.in.h:1
msgid " 0.9)."
msgstr ""

#: ../applets/maintained/dialect/awn-applet-dialect.schema-ini.in.h:2
msgid " none)."
msgstr ""

#: ../applets/maintained/dialect/awn-applet-dialect.schema-ini.in.h:3
msgid "Can change layout with scroll wheel."
msgstr ""

#: ../applets/maintained/dialect/awn-applet-dialect.schema-ini.in.h:4
msgid ""
"Keyboard toggle to change selected layout (see prefs dialog for values)."
msgstr ""

#: ../applets/maintained/dialect/awn-applet-dialect.schema-ini.in.h:5
msgid "Overlay selected layout flag on icon."
msgstr ""

#: ../applets/maintained/dialect/awn-applet-dialect.schema-ini.in.h:6
msgid "User selected layouts."
msgstr ""

#: ../applets/maintained/dialect/awn-applet-dialect.schema-ini.in.h:7
msgid "User selected variants."
msgstr ""

#: ../applets/maintained/dialect/dialect.desktop.in.h:1
msgid " Dialect Applet"
msgstr ""

#: ../applets/maintained/dialect/dialect.desktop.in.h:2
msgid "Change your keyboard input layout from Awn."
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:1
msgid ""
"\n"
"DIALECT APPLET v 09.12.09\n"
"\n"
"(C) 2009, Lachlan Turner (Denham 2010)\n"
"\n"
"This applet allows you to change your keyboard input language with just a "
"click of the mouse.\n"
"You can select any of the available input languages on your system, or from "
"a list you most commonly use.\n"
"\n"
"See the Mouse Actions and Layout Lists tabs for configuration options.\n"
"\n"
"The applet depends on the python xklavier module (available from "
"http://download.sugarlabs.org/sources/external/python-xklavier/python-"
"xklavier-0.1.tar.gz).\n"
"\n"
"This applet is licensed under GPL2. The flag icons distributed with this "
"applet are from the xfce4-xkb-plugin-0.5.3.3 panel applet, licensed under "
"the 2-clause BSD license. See the About dialog for licensing details.\n"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:15
msgid ""
"\n"
"Left Click:\n"
"\n"
"\tNext Layout\t\tselects the next layout in your user list.\n"
"\tPrevious Layout\tselects the previous layout in your user list.\n"
"\tMenu\t\t\tselect a layout from a menu of your user list.\n"
"\tNone\t\t\tbutton will have no action.\n"
"\n"
"Middle Click:\n"
"\n"
"\tNext Layout\t\tselects the next layout in your user list.\n"
"\tPrevious Layout\tselects the previous layout in your user list.\n"
"\tMenu\t\t\tselect a layout from a menu of your user list.\n"
"\tNone\t\t\tbutton will have no action.\n"
"\n"
"Allow scroll wheel to change layout:\n"
"\n"
"\tIf selected, scrolling up or down with your mouse wheel will select\n"
"\tthe next or previous layout in your user list.\n"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:35
msgid ""
"\n"
"Overlay layout flag on applet icon:\n"
"\n"
"\tIf selected, the flag of your selected layout will overlay the applet "
"icon.\n"
"\n"
"Flag Scale:\n"
"\n"
"\tThe size of the flag in relation to the applet icon.\n"
"\tPossible values range from 0.1 to 0.9\n"
"\n"
"Flag Opacity:\n"
"\n"
"\tRanging from 0.0 (flag is not visible) to 0.9 (flag is almost opaque).\n"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:49
msgid ""
"\n"
"System List:\n"
"\n"
"\tThe complete list of layouts and variants available.\n"
"\tSelect an item and click the add button to include in your user list.\n"
"\n"
"User List:\n"
"\n"
"\tThe list of layouts you commonly use.\n"
"\tThe maximum number of layouts is restricted by the X11 xkb system "
"(currently 4).\n"
"\tSelect an item and click the remove button to delete from your user list.\n"
"\tYou can order the list by drag and drop.\n"
"\n"
"Keyboard Toggle:\n"
"\tSelects the hot key combination used to change layouts.\n"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:65
msgid "(C) 2009, Lachlan Turner (Denham 2010)."
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:66
msgid "About Dialect Applet"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:67
msgid "Allow scroll wheel to change layout"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:68
msgid "Change your keyboard layout from Awn."
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:69
msgid "Dialect Applet Help"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:70
msgid "Dialect Applet Preferences"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:71
msgid "Flag Opacity"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:72
msgid "Flag Overlay"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:73
msgid "Flag Scale"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:75
msgid "Keyboard Toggle"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:76
msgid "Layout Lists"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:77
#: ../applets/maintained/file-browser-launcher/prefs.py:318
msgid "Left Click"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:78
msgid "Menu"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:79
#: ../applets/maintained/file-browser-launcher/prefs.py:393
msgid "Middle Click"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:80
msgid "Mouse Actions"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:81
msgid "Next Layout"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:83
msgid "Overlay layout flag on applet icon"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:84
msgid "Previous Layout"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:85
msgid "System List"
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:86
msgid ""
"This program is free software; you can redistribute it and/or modify it "
"under the terms of the GNU General Public License as published by the Free "
"Software Foundation; either version 2 of the License, or (at your option) "
"any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful, but WITHOUT "
"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
"FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
"more details.\n"
"\n"
"You should have received a copy of the GNU General Public License along with "
"this program; if not, write to the Free Software Foundation, Inc., 51 "
"Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n"
"\n"
"\t\t    GNU GENERAL PUBLIC LICENSE\n"
"\t\t       Version 2, June 1991\n"
"\n"
" Copyright (C) 1989, 1991 Free Software Foundation, Inc.,\n"
" 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n"
" Everyone is permitted to copy and distribute verbatim copies\n"
" of this license document, but changing it is not allowed.\n"
"\n"
"\t\t\t    Preamble\n"
"\n"
"  The licenses for most software are designed to take away your freedom to "
"share and change it.  By contrast, the GNU General Public License is "
"intended to guarantee your freedom to share and change free software--to "
"make sure the software is free for all its users.  This General Public "
"License applies to most of the Free Software Foundation's software and to "
"any other program whose authors commit to using it.  (Some other Free "
"Software Foundation software is covered by the GNU Lesser General Public "
"License instead.)  You can apply it to your programs, too.\n"
"\n"
"  When we speak of free software, we are referring to freedom, not price.  "
"Our General Public Licenses are designed to make sure that you have the "
"freedom to distribute copies of free software (and charge for this service "
"if you wish), that you receive source code or can get it if you want it, "
"that you can change the software or use pieces of it in new free programs; "
"and that you know you can do these things.\n"
"\n"
"  To protect your rights, we need to make restrictions that forbid anyone to "
"deny you these rights or to ask you to surrender the rights. These "
"restrictions translate to certain responsibilities for you if you distribute "
"copies of the software, or if you modify it.\n"
"\n"
"  For example, if you distribute copies of such a program, whether gratis or "
"for a fee, you must give the recipients all the rights that you have.  You "
"must make sure that they, too, receive or can get the source code.  And you "
"must show them these terms so they know their rights.\n"
"\n"
"  We protect your rights with two steps: (1) copyright the software, and (2) "
"offer you this license which gives you legal permission to copy, distribute "
"and/or modify the software.\n"
"\n"
"  Also, for each author's protection and ours, we want to make certain that "
"everyone understands that there is no warranty for this free software.  If "
"the software is modified by someone else and passed on, we want its "
"recipients to know that what they have is not the original, so that any "
"problems introduced by others will not reflect on the original authors' "
"reputations.\n"
"\n"
"  Finally, any free program is threatened constantly by software patents.  "
"We wish to avoid the danger that redistributors of a free program will "
"individually obtain patent licenses, in effect making the program "
"proprietary.  To prevent this, we have made it clear that any patent must be "
"licensed for everyone's free use or not licensed at all.\n"
"\n"
"  The precise terms and conditions for copying, distribution and "
"modification follow.\n"
"\n"
"\t\t    GNU GENERAL PUBLIC LICENSE\n"
"   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n"
"\n"
"  0. This License applies to any program or other work which contains a "
"notice placed by the copyright holder saying it may be distributed under the "
"terms of this General Public License.  The \"Program\", below, refers to any "
"such program or work, and a \"work based on the Program\" means either the "
"Program or any derivative work under copyright law: that is to say, a work "
"containing the Program or a portion of it, either verbatim or with "
"modifications and/or translated into another language.  (Hereinafter, "
"translation is included without limitation in the term \"modification\".)  "
"Each licensee is addressed as \"you\".\n"
"\n"
"Activities other than copying, distribution and modification are not covered "
"by this License; they are outside its scope.  The act of running the Program "
"is not restricted, and the output from the Program is covered only if its "
"contents constitute a work based on the Program (independent of having been "
"made by running the Program). Whether that is true depends on what the "
"Program does.\n"
"\n"
"  1. You may copy and distribute verbatim copies of the Program's source "
"code as you receive it, in any medium, provided that you conspicuously and "
"appropriately publish on each copy an appropriate copyright notice and "
"disclaimer of warranty; keep intact all the notices that refer to this "
"License and to the absence of any warranty; and give any other recipients of "
"the Program a copy of this License along with the Program.\n"
"\n"
"You may charge a fee for the physical act of transferring a copy, and you "
"may at your option offer warranty protection in exchange for a fee.\n"
"\n"
"  2. You may modify your copy or copies of the Program or any portion of it, "
"thus forming a work based on the Program, and copy and distribute such "
"modifications or work under the terms of Section 1 above, provided that you "
"also meet all of these conditions:\n"
"\n"
"    a) You must cause the modified files to carry prominent notices\n"
"    stating that you changed the files and the date of any change.\n"
"\n"
"    b) You must cause any work that you distribute or publish, that in\n"
"    whole or in part contains or is derived from the Program or any\n"
"    part thereof, to be licensed as a whole at no charge to all third\n"
"    parties under the terms of this License.\n"
"\n"
"    c) If the modified program normally reads commands interactively\n"
"    when run, you must cause it, when started running for such\n"
"    interactive use in the most ordinary way, to print or display an\n"
"    announcement including an appropriate copyright notice and a\n"
"    notice that there is no warranty (or else, saying that you provide\n"
"    a warranty) and that users may redistribute the program under\n"
"    these conditions, and telling the user how to view a copy of this\n"
"    License.  (Exception: if the Program itself is interactive but\n"
"    does not normally print such an announcement, your work based on\n"
"    the Program is not required to print an announcement.)\n"
"\n"
"These requirements apply to the modified work as a whole.  If identifiable "
"sections of that work are not derived from the Program, and can be "
"reasonably considered independent and separate works in themselves, then "
"this License, and its terms, do not apply to those sections when you "
"distribute them as separate works.  But when you distribute the same "
"sections as part of a whole which is a work based on the Program, the "
"distribution of the whole must be on the terms of this License, whose "
"permissions for other licensees extend to the entire whole, and thus to each "
"and every part regardless of who wrote it.\n"
"\n"
"Thus, it is not the intent of this section to claim rights or contest your "
"rights to work written entirely by you; rather, the intent is to exercise "
"the right to control the distribution of derivative or collective works "
"based on the Program.\n"
"\n"
"In addition, mere aggregation of another work not based on the Program with "
"the Program (or with a work based on the Program) on a volume of a storage "
"or distribution medium does not bring the other work under the scope of this "
"License.\n"
"\n"
"  3. You may copy and distribute the Program (or a work based on it, under "
"Section 2) in object code or executable form under the terms of Sections 1 "
"and 2 above provided that you also do one of the following:\n"
"\n"
"    a) Accompany it with the complete corresponding machine-readable\n"
"    source code, which must be distributed under the terms of Sections\n"
"    1 and 2 above on a medium customarily used for software interchange; "
"or,\n"
"\n"
"    b) Accompany it with a written offer, valid for at least three\n"
"    years, to give any third party, for a charge no more than your\n"
"    cost of physically performing source distribution, a complete\n"
"    machine-readable copy of the corresponding source code, to be\n"
"    distributed under the terms of Sections 1 and 2 above on a medium\n"
"    customarily used for software interchange; or,\n"
"\n"
"    c) Accompany it with the information you received as to the offer\n"
"    to distribute corresponding source code.  (This alternative is\n"
"    allowed only for noncommercial distribution and only if you\n"
"    received the program in object code or executable form with such\n"
"    an offer, in accord with Subsection b above.)\n"
"\n"
"The source code for a work means the preferred form of the work for making "
"modifications to it.  For an executable work, complete source code means all "
"the source code for all modules it contains, plus any associated interface "
"definition files, plus the scripts used to control compilation and "
"installation of the executable.  However, as a special exception, the source "
"code distributed need not include anything that is normally distributed (in "
"either source or binary form) with the major components (compiler, kernel, "
"and so on) of the operating system on which the executable runs, unless that "
"component itself accompanies the executable.\n"
"\n"
"If distribution of executable or object code is made by offering access to "
"copy from a designated place, then offering equivalent access to copy the "
"source code from the same place counts as distribution of the source code, "
"even though third parties are not compelled to copy the source along with "
"the object code.\n"
"\n"
"  4. You may not copy, modify, sublicense, or distribute the Program except "
"as expressly provided under this License.  Any attempt otherwise to copy, "
"modify, sublicense or distribute the Program is void, and will automatically "
"terminate your rights under this License. However, parties who have received "
"copies, or rights, from you under this License will not have their licenses "
"terminated so long as such parties remain in full compliance.\n"
"\n"
"  5. You are not required to accept this License, since you have not signed "
"it.  However, nothing else grants you permission to modify or distribute the "
"Program or its derivative works.  These actions are prohibited by law if you "
"do not accept this License.  Therefore, by modifying or distributing the "
"Program (or any work based on the Program), you indicate your acceptance of "
"this License to do so, and all its terms and conditions for copying, "
"distributing or modifying the Program or works based on it.\n"
"\n"
"  6. Each time you redistribute the Program (or any work based on the "
"Program), the recipient automatically receives a license from the original "
"licensor to copy, distribute or modify the Program subject to these terms "
"and conditions.  You may not impose any further restrictions on the "
"recipients' exercise of the rights granted herein. You are not responsible "
"for enforcing compliance by third parties to this License.\n"
"\n"
"  7. If, as a consequence of a court judgment or allegation of patent "
"infringement or for any other reason (not limited to patent issues), "
"conditions are imposed on you (whether by court order, agreement or "
"otherwise) that contradict the conditions of this License, they do not "
"excuse you from the conditions of this License.  If you cannot distribute so "
"as to satisfy simultaneously your obligations under this License and any "
"other pertinent obligations, then as a consequence you may not distribute "
"the Program at all.  For example, if a patent license would not permit "
"royalty-free redistribution of the Program by all those who receive copies "
"directly or indirectly through you, then the only way you could satisfy both "
"it and this License would be to refrain entirely from distribution of the "
"Program.\n"
"\n"
"If any portion of this section is held invalid or unenforceable under any "
"particular circumstance, the balance of the section is intended to apply and "
"the section as a whole is intended to apply in other circumstances.\n"
"\n"
"It is not the purpose of this section to induce you to infringe any patents "
"or other property right claims or to contest validity of any such claims; "
"this section has the sole purpose of protecting the integrity of the free "
"software distribution system, which is implemented by public license "
"practices.  Many people have made generous contributions to the wide range "
"of software distributed through that system in reliance on consistent "
"application of that system; it is up to the author/donor to decide if he or "
"she is willing to distribute software through any other system and a "
"licensee cannot impose that choice.\n"
"\n"
"This section is intended to make thoroughly clear what is believed to be a "
"consequence of the rest of this License.\n"
"\n"
"  8. If the distribution and/or use of the Program is restricted in certain "
"countries either by patents or by copyrighted interfaces, the original "
"copyright holder who places the Program under this License may add an "
"explicit geographical distribution limitation excluding those countries, so "
"that distribution is permitted only in or among countries not thus excluded. "
" In such case, this License incorporates the limitation as if written in the "
"body of this License.\n"
"\n"
"  9. The Free Software Foundation may publish revised and/or new versions of "
"the General Public License from time to time.  Such new versions will be "
"similar in spirit to the present version, but may differ in detail to "
"address new problems or concerns.\n"
"\n"
"Each version is given a distinguishing version number.  If the Program "
"specifies a version number of this License which applies to it and \"any "
"later version\", you have the option of following the terms and conditions "
"either of that version or of any later version published by the Free "
"Software Foundation.  If the Program does not specify a version number of "
"this License, you may choose any version ever published by the Free Software "
"Foundation.\n"
"\n"
"  10. If you wish to incorporate parts of the Program into other free "
"programs whose distribution conditions are different, write to the author to "
"ask for permission.  For software which is copyrighted by the Free Software "
"Foundation, write to the Free Software Foundation; we sometimes make "
"exceptions for this.  Our decision will be guided by the two goals of "
"preserving the free status of all derivatives of our free software and of "
"promoting the sharing and reuse of software generally.\n"
"\n"
"\t\t\t    NO WARRANTY\n"
"\n"
"  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY "
"FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN "
"OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES "
"PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED "
"OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF "
"MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO "
"THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE PROGRAM "
"PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR "
"CORRECTION.\n"
"\n"
"  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING "
"WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR "
"REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, "
"INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING "
"OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO "
"LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR "
"THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER "
"PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE "
"POSSIBILITY OF SUCH DAMAGES."
msgstr ""

#: ../applets/maintained/dialect/dialect.ui.h:206
msgid "User List"
msgstr ""

#: ../applets/maintained/digital-clock/awn-applet-digital-clock.schema-ini.in.h:1
msgid "Command to execute when a calendar day is double-clicked."
msgstr ""

#: ../applets/maintained/digital-clock/awn-applet-digital-clock.schema-ini.in.h:2
msgid "Command to execute when the user wishes to adjust the date/time."
msgstr ""

#: ../applets/maintained/digital-clock/awn-applet-digital-clock.schema-ini.in.h:3
msgid "Show the date before the time."
msgstr ""

#: ../applets/maintained/digital-clock/awn-applet-digital-clock.schema-ini.in.h:4
msgid "The color of the clock text."
msgstr ""

#: ../applets/maintained/digital-clock/awn-applet-digital-clock.schema-ini.in.h:5
msgid "The font face of the clock text."
msgstr ""

#: ../applets/maintained/digital-clock/awn-applet-digital-clock.schema-ini.in.h:6
msgid "The shadow color of the clock text."
msgstr ""

#: ../applets/maintained/digital-clock/awn-applet-digital-clock.schema-ini.in.h:7
msgid "Toggle 12-hour mode."
msgstr ""

#: ../applets/maintained/digital-clock/dg-prefs.ui.h:1
msgid "12 hour format"
msgstr ""

#: ../applets/maintained/digital-clock/dg-prefs.ui.h:2
msgid "24 hour format"
msgstr ""

#: ../applets/maintained/digital-clock/dg-prefs.ui.h:3
msgid "<b>Clock Format</b>"
msgstr ""

#: ../applets/maintained/digital-clock/dg-prefs.ui.h:5
msgid "Appearance"
msgstr ""

#: ../applets/maintained/digital-clock/dg-prefs.ui.h:6
msgid "Commands"
msgstr ""

#: ../applets/maintained/digital-clock/dg-prefs.ui.h:7
msgid "Date below time"
msgstr ""

#: ../applets/maintained/digital-clock/dg-prefs.ui.h:8
msgid "Digital Clock Preferences"
msgstr ""

#: ../applets/maintained/digital-clock/dg-prefs.ui.h:9
msgid "Run Calendar:"
msgstr ""

#: ../applets/maintained/digital-clock/dg-prefs.ui.h:10
msgid "Run Time Admin:"
msgstr ""

#: ../applets/maintained/digital-clock/dg-prefs.ui.h:11
msgid "Show the date"
msgstr ""

#: ../applets/maintained/digital-clock/dg-prefs.ui.h:12
msgid "Use default Awn colors"
msgstr ""

#: ../applets/maintained/digital-clock/digital-clock.desktop.in.in.h:1
msgid "A clock and calendar in one."
msgstr ""

#: ../applets/maintained/digital-clock/digital-clock.desktop.in.in.h:2
#: ../applets/maintained/digital-clock/digital-clock.vala:57
msgid "Digital Clock"
msgstr ""

#. "Copy Time" menu item
#: ../applets/maintained/digital-clock/digital-clock.vala:335
msgid "Copy Time"
msgstr ""

#. "Copy Date" menu item
#: ../applets/maintained/digital-clock/digital-clock.vala:354
msgid "Copy Date"
msgstr ""

#. "Adjust Date & Time" menu item
#: ../applets/maintained/digital-clock/digital-clock.vala:366
msgid "Adjust Date & Time"
msgstr ""

#: ../applets/maintained/digital-clock/digital-clock.vala:412
msgid "Displays digital clock."
msgstr ""

#. vim:ft=vala:et:ts=2 sts=2 sw=2:ai:cindent
#: ../applets/maintained/feeds/awn-applet-feeds.schema-ini.in.h:1
msgid "Notify if any feeds have new items"
msgstr ""

#: ../applets/maintained/feeds/awn-applet-feeds.schema-ini.in.h:2
msgid "Show each feed's website's icon in the dialog"
msgstr ""

#: ../applets/maintained/feeds/awn-applet-feeds.schema-ini.in.h:3
msgid "The interval (in minutes) at which to update (3-60)"
msgstr ""

#: ../applets/maintained/feeds/awn-applet-feeds.schema-ini.in.h:4
msgid "Update automatically at a configurable interval"
msgstr ""

#: ../applets/maintained/feeds/classes.py:328
msgid "Google"
msgstr ""

#: ../applets/maintained/feeds/classes.py:488
#: ../applets/maintained/feeds/prefs.py:516
msgid "Google Reader"
msgstr ""

#: ../applets/maintained/feeds/classes.py:533
msgid "Google Wave"
msgstr ""

#: ../applets/maintained/feeds/classes.py:619
msgid "Reddit Inbox"
msgstr ""

#: ../applets/maintained/feeds/classes.py:720
#, python-format
msgid "Comment reply from %s"
msgstr ""

#: ../applets/maintained/feeds/classes.py:723
#, python-format
msgid "Post reply from %s"
msgstr ""

#: ../applets/maintained/feeds/classes.py:765
#: ../applets/maintained/feeds/prefs.py:410
msgid "Twitter"
msgstr ""

#: ../applets/maintained/feeds/classes.py:892
msgid "Untitled"
msgstr ""

#: ../applets/maintained/feeds/feeds.desktop.in.h:1
#: ../applets/maintained/feeds/feeds.py:241
#: ../applets/maintained/feeds/feeds.py:404
#: ../applets/maintained/feeds/feeds.py:480
#: ../applets/maintained/feeds/feeds.py:1031
msgid "Feeds Applet"
msgstr ""

#: ../applets/maintained/feeds/feeds.desktop.in.h:2
#: ../applets/maintained/feeds/feeds.py:1036
msgid "Monitor Web Feeds"
msgstr ""

#. "Loading feeds..." label
#: ../applets/maintained/feeds/feeds.py:96
#: ../applets/maintained/feeds/feeds.py:153
#: ../applets/maintained/feeds/feeds.py:230
msgid "Loading feeds..."
msgstr ""

#. No feeds label
#: ../applets/maintained/feeds/feeds.py:160
msgid "You don't have any feeds."
msgstr ""

#: ../applets/maintained/feeds/feeds.py:472
#, python-format
msgid ""
"%s\n"
"  <a href='%s'>%s</a>\n"
"  <a href='%s'>%s</a>\n"
"(%s More)\n"
msgstr ""

#: ../applets/maintained/feeds/feeds.py:481
#, python-format
msgid "%s New Item%s - Feeds Applet"
msgstr ""

#. +Add Feed button
#: ../applets/maintained/feeds/feeds.py:518
msgid "_Add Feed"
msgstr ""

#: ../applets/maintained/feeds/feeds.py:567
msgid "Open this feed's website"
msgstr ""

#: ../applets/maintained/feeds/feeds.py:576
#: ../applets/maintained/feeds/prefs.py:257
msgid "Loading..."
msgstr ""

#: ../applets/maintained/feeds/feeds.py:614
#: ../applets/maintained/feeds/feeds.py:773
msgid "Show this feed's items"
msgstr ""

#: ../applets/maintained/feeds/feeds.py:763
msgid "Hide this feed's items"
msgstr ""

#. Create the items
#: ../applets/maintained/feeds/feeds.py:991
#: ../applets/maintained/feeds/prefs.py:341
msgid "Add Feed"
msgstr ""

#: ../applets/maintained/feeds/feeds.py:1079
msgid "OPML Import"
msgstr ""

#: ../applets/maintained/feeds/feeds.py:1083
msgid "Do you want to add this feed?"
msgstr ""

#: ../applets/maintained/feeds/feeds.py:1086
#, python-format
msgid "Do you want to add these %s feeds?"
msgstr ""

#: ../applets/maintained/feeds/prefs.py:58
msgid "Feeds Applet Preferences"
msgstr ""

#: ../applets/maintained/feeds/prefs.py:68
msgid "Feeds"
msgstr ""

#: ../applets/maintained/feeds/prefs.py:69
msgid "Updating"
msgstr ""

#: ../applets/maintained/feeds/prefs.py:108
msgid "_Show website icons"
msgstr ""

#. TODO: this position is a little ugly, but I don't know how to do it better.
#. Import and export buttons (OPML)
#: ../applets/maintained/feeds/prefs.py:115
msgid "Import"
msgstr ""

#: ../applets/maintained/feeds/prefs.py:118
msgid "Export"
msgstr ""

#. Updating section (enable/disable automatically updating and change how often)
#. Checkbox: Notify for updated feeds
#: ../applets/maintained/feeds/prefs.py:144
msgid "_Notify for updated feeds"
msgstr ""

#. Checkbox: Update automatically
#: ../applets/maintained/feeds/prefs.py:150
msgid "_Update automatically"
msgstr ""

#. Update every [SpinButton] minutes
#: ../applets/maintained/feeds/prefs.py:156
msgid "Update every "
msgstr ""

#: ../applets/maintained/feeds/prefs.py:157
msgid " minutes"
msgstr ""

#: ../applets/maintained/feeds/prefs.py:264
msgid "Open OPML File"
msgstr ""

#: ../applets/maintained/feeds/prefs.py:278
msgid "Save OPML File"
msgstr ""

#. Note: the following string is used as an exmaple filename
#: ../applets/maintained/feeds/prefs.py:284
msgid "feeds.opml"
msgstr ""

#: ../applets/maintained/feeds/prefs.py:295
msgid "Awn Feeds Applet Items"
msgstr ""

#. Source: label and radio buttons
#: ../applets/maintained/feeds/prefs.py:345
msgid "Source:"
msgstr ""

#: ../applets/maintained/feeds/prefs.py:355
#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:594
#: ../applets/maintained/tomboy-applet/tomboy-applet.py:157
msgid "Search"
msgstr ""

#: ../applets/maintained/feeds/prefs.py:358
msgid "You must sign in to a Google service to search for feeds."
msgstr ""

#: ../applets/maintained/feeds/prefs.py:367
msgid "RSS/Atom"
msgstr ""

#: ../applets/maintained/feeds/prefs.py:412
msgid "Timeline"
msgstr ""

#: ../applets/maintained/feeds/prefs.py:417
msgid "Replies"
msgstr ""

#. "Search for" label and entry
#: ../applets/maintained/feeds/prefs.py:446
msgid "Search for"
msgstr ""

#. URL: label and entry
#: ../applets/maintained/feeds/prefs.py:460
#: ../applets/maintained/webapplet/applet.c:276
msgid "URL:"
msgstr ""

#. Username: label and entry
#: ../applets/maintained/feeds/prefs.py:474
#: ../applets/maintained/mail/mail.py:393
#: ../applets/maintained/mail/mail.py:630
#: ../applets/maintained/mail/mail.py:758
#: ../applets/maintained/mail/mail.py:851
msgid "Username:"
msgstr "שם המשתמש:"

#. Password: label and entry
#: ../applets/maintained/feeds/prefs.py:488
#: ../applets/maintained/mail/mail.py:397
#: ../applets/maintained/mail/mail.py:633
#: ../applets/maintained/mail/mail.py:761
#: ../applets/maintained/mail/mail.py:854
msgid "Password:"
msgstr "סיסמה:"

#: ../applets/maintained/feeds/prefs.py:515
msgid "Feed search by "
msgstr ""

#. If signed in to Google Reader
#: ../applets/maintained/feeds/prefs.py:553
msgid "_Search"
msgstr ""

#: ../applets/maintained/feeds/prefs.py:760
msgid ""
"There was an error while searching.\n"
"Please try again later."
msgstr ""

#: ../applets/maintained/feeds/prefs.py:810
msgid ""
"No results found.\n"
"Try checking your spelling or using different search terms."
msgstr ""

#: ../applets/maintained/file-browser-launcher/about.py:39
#: ../applets/maintained/file-browser-launcher/file-browser-launcher.desktop.in.h:2
#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:63
msgid "File Browser Launcher"
msgstr ""

#: ../applets/maintained/file-browser-launcher/about.py:42
msgid "A customizable launcher for browsing your files."
msgstr ""

#: ../applets/maintained/file-browser-launcher/awn-applet-file-browser-launcher.schema-ini.in.h:1
msgid " persistent docklet"
msgstr ""

#: ../applets/maintained/file-browser-launcher/awn-applet-file-browser-launcher.schema-ini.in.h:2
msgid "The action to perform on left click"
msgstr ""

#: ../applets/maintained/file-browser-launcher/awn-applet-file-browser-launcher.schema-ini.in.h:3
msgid "The action to perform on middle click"
msgstr ""

#: ../applets/maintained/file-browser-launcher/awn-applet-file-browser-launcher.schema-ini.in.h:4
msgid "The file browser to use"
msgstr ""

#: ../applets/maintained/file-browser-launcher/awn-applet-file-browser-launcher.schema-ini.in.h:5
msgid "The path to use on left click"
msgstr ""

#: ../applets/maintained/file-browser-launcher/awn-applet-file-browser-launcher.schema-ini.in.h:6
msgid "The path to use on middle click"
msgstr ""

#: ../applets/maintained/file-browser-launcher/awn-applet-file-browser-launcher.schema-ini.in.h:7
msgid "Whether or not to display Connect to server"
msgstr ""

#: ../applets/maintained/file-browser-launcher/awn-applet-file-browser-launcher.schema-ini.in.h:8
msgid "Whether or not to display bookmarks"
msgstr ""

#: ../applets/maintained/file-browser-launcher/awn-applet-file-browser-launcher.schema-ini.in.h:9
msgid "Whether or not to display local drives"
msgstr ""

#: ../applets/maintained/file-browser-launcher/awn-applet-file-browser-launcher.schema-ini.in.h:10
msgid "Whether or not to display network drives"
msgstr ""

#: ../applets/maintained/file-browser-launcher/awn-applet-file-browser-launcher.schema-ini.in.h:11
msgid "Whether or not to display the Filesystem"
msgstr ""

#: ../applets/maintained/file-browser-launcher/awn-applet-file-browser-launcher.schema-ini.in.h:12
msgid "Whether or not to display the home folder"
msgstr ""

#: ../applets/maintained/file-browser-launcher/awn-applet-file-browser-launcher.schema-ini.in.h:13
msgid "Whether or not to focus the location text box"
msgstr ""

#: ../applets/maintained/file-browser-launcher/awn-applet-file-browser-launcher.schema-ini.in.h:14
msgid "Whether or not to open the place when clicked"
msgstr ""

#: ../applets/maintained/file-browser-launcher/file-browser-launcher.desktop.in.h:1
msgid "A launcher for your file manager"
msgstr ""

#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:346
msgid "Home Folder"
msgstr ""

#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:350
#: ../applets/maintained/file-browser-launcher/prefs.py:223
msgid "Filesystem"
msgstr ""

#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:473
msgid "Connect to Server..."
msgstr ""

#. Documents
#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:524
msgid "Documents"
msgstr ""

#. Downloads
#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:528
msgid "Downloads"
msgstr ""

#. Music
#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:532
msgid "Music"
msgstr ""

#. Pictures
#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:536
#: ../applets/maintained/slickswitcher/prefs.py:347
msgid "Pictures"
msgstr ""

#. Public
#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:540
msgid "Public"
msgstr ""

#. Templates
#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:544
msgid "Templates"
msgstr ""

#. Videos
#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:548
msgid "Videos"
msgstr ""

#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:597
msgid "CD/DVD Burner"
msgstr ""

#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:600
msgid "Fonts"
msgstr ""

#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:604
#: ../applets/maintained/file-browser-launcher/prefs.py:289
#: ../applets/maintained/file-browser-launcher/prefs.py:364
msgid "Folder"
msgstr ""

#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:709
msgid "DVD Drive"
msgstr ""

#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:713
msgid "CD Drive"
msgstr ""

#: ../applets/maintained/file-browser-launcher/file-browser-launcher.py:1017
msgid "Eject"
msgstr ""

#: ../applets/maintained/file-browser-launcher/prefs.py:44
msgid "File Browser Launcher Preferences"
msgstr ""

#: ../applets/maintained/file-browser-launcher/prefs.py:93
msgid "File Browser"
msgstr ""

#. xdg-open (aka system default)
#: ../applets/maintained/file-browser-launcher/prefs.py:103
msgid "System Default"
msgstr ""

#. Last option: custom with an entry for the app name
#: ../applets/maintained/file-browser-launcher/prefs.py:127
msgid "Other"
msgstr ""

#: ../applets/maintained/file-browser-launcher/prefs.py:163
msgid "One icon with dialog"
msgstr ""

#: ../applets/maintained/file-browser-launcher/prefs.py:168
msgid "One icon with docklet"
msgstr ""

#: ../applets/maintained/file-browser-launcher/prefs.py:175
msgid "Multiple icons"
msgstr ""

#: ../applets/maintained/file-browser-launcher/prefs.py:182
msgid "Focus text entry"
msgstr ""

#: ../applets/maintained/file-browser-launcher/prefs.py:191
msgid "Open place when clicked"
msgstr ""

#. Show all places
#: ../applets/maintained/file-browser-launcher/prefs.py:211
msgid "Show all places"
msgstr ""

#: ../applets/maintained/file-browser-launcher/prefs.py:223
msgid "Home folder"
msgstr ""

#: ../applets/maintained/file-browser-launcher/prefs.py:224
msgid "Mounted local drives"
msgstr ""

#: ../applets/maintained/file-browser-launcher/prefs.py:224
msgid "Mounted network drives"
msgstr ""

#: ../applets/maintained/file-browser-launcher/prefs.py:225
msgid "Connect to server"
msgstr ""

#: ../applets/maintained/file-browser-launcher/prefs.py:225
msgid "Bookmarks"
msgstr ""

#: ../applets/maintained/file-browser-launcher/prefs.py:264
#: ../applets/maintained/file-browser-launcher/prefs.py:339
msgid "Display dialog/docklet"
msgstr ""

#: ../applets/maintained/file-browser-launcher/prefs.py:264
#: ../applets/maintained/file-browser-launcher/prefs.py:339
msgid "Open the folder"
msgstr ""

#: ../applets/maintained/file-browser-launcher/prefs.py:265
#: ../applets/maintained/file-browser-launcher/prefs.py:340
msgid "Nothing"
msgstr ""

#: ../applets/maintained/file-browser-launcher/prefs.py:540
msgid "Choose a folder"
msgstr ""

#: ../applets/maintained/garbage/applet.vala:57
#: ../applets/maintained/garbage/garbage.desktop.in.in.h:2
msgid "Garbage"
msgstr ""

#. set the title as well
#. $display_name: $count item(s)
#: ../applets/maintained/garbage/applet.vala:174
#, c-format
msgid "%s: %u item"
msgid_plural "%s: %u items"
msgstr[0] ""
msgstr[1] ""

#: ../applets/maintained/garbage/applet.vala:194
#, c-format
msgid "Could not open the trash folder with your file manager: %s"
msgstr ""

#: ../applets/maintained/garbage/applet.vala:209
msgid "_Empty Trash"
msgstr ""

#: ../applets/maintained/garbage/applet.vala:235
#, c-format
msgid ""
"Are you sure you want to empty your trash? It currently contains %u item(s)."
msgstr ""

#: ../applets/maintained/garbage/applet.vala:344
#, c-format
msgid "Could not send the dragged file(s) to the trash: %s"
msgstr ""

#. vim: set ft=vala et ts=2 sts=2 sw=2 ai :
#: ../applets/maintained/garbage/awn-applet-garbage.schema-ini.in.h:1
msgid ""
"Enable the confirmation dialog form when one wishes to empty the trash."
msgstr ""

#: ../applets/maintained/garbage/awn-applet-garbage.schema-ini.in.h:2
msgid "Show the number of items in the trash on top of the icon."
msgstr ""

#: ../applets/maintained/garbage/garbage.desktop.in.in.h:1
msgid "A lightweight, cross-desktop trash applet"
msgstr ""

#: ../applets/maintained/garbage/prefs.vala:32
#, c-format
msgid "%s Preferences"
msgstr ""

#: ../applets/maintained/garbage/prefs.vala:47
msgid "Confirm when emptying the trash"
msgstr ""

#: ../applets/maintained/garbage/prefs.vala:52
msgid "Show the item count on the icon"
msgstr ""

#. vim: set ft=vala et ts=2 sts=2 sw=2 ai :
#: ../applets/maintained/hardware-sensors/awn-applet-hardware-sensors.schema-ini.in.h:1
msgid "Applet theme."
msgstr ""

#: ../applets/maintained/hardware-sensors/awn-applet-hardware-sensors.schema-ini.in.h:2
msgid "For each sensor, whether to show it in main dialog or not."
msgstr ""

#: ../applets/maintained/hardware-sensors/awn-applet-hardware-sensors.schema-ini.in.h:3
msgid "High value limit (at which alarm triggers) for each sensor."
msgstr ""

#: ../applets/maintained/hardware-sensors/awn-applet-hardware-sensors.schema-ini.in.h:4
msgid "If enabled, show sensor value(s) as an overlay in the icon."
msgstr ""

#: ../applets/maintained/hardware-sensors/awn-applet-hardware-sensors.schema-ini.in.h:5
msgid "In what row of dialog is the sensor shown."
msgstr ""

#: ../applets/maintained/hardware-sensors/awn-applet-hardware-sensors.schema-ini.in.h:7
msgid "Low value limit (at which alarm triggers) for each sensor."
msgstr ""

#: ../applets/maintained/hardware-sensors/awn-applet-hardware-sensors.schema-ini.in.h:8
msgid "Sensor ids."
msgstr ""

#: ../applets/maintained/hardware-sensors/awn-applet-hardware-sensors.schema-ini.in.h:9
msgid "Sensor labels."
msgstr ""

#: ../applets/maintained/hardware-sensors/awn-applet-hardware-sensors.schema-ini.in.h:10
msgid "The color (RGBA) of the meter hand/needle."
msgstr ""

#: ../applets/maintained/hardware-sensors/awn-applet-hardware-sensors.schema-ini.in.h:11
msgid "Timeout between two value updates (in seconds)."
msgstr ""

#: ../applets/maintained/hardware-sensors/awn-applet-hardware-sensors.schema-ini.in.h:12
msgid "Whether alarm should trigger at high value limit or not."
msgstr ""

#: ../applets/maintained/hardware-sensors/awn-applet-hardware-sensors.schema-ini.in.h:13
msgid "Whether alarm should trigger at low value limit or not."
msgstr ""

#: ../applets/maintained/hardware-sensors/awn-applet-hardware-sensors.schema-ini.in.h:14
msgid "Whether to show a sensor in applet icon or not."
msgstr ""

#: ../applets/maintained/hardware-sensors/awn-applet-hardware-sensors.schema-ini.in.h:15
#: ../applets/maintained/weather/awn-applet-weather.schema-ini.in.h:8
msgid "large)."
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.desktop.in.h:1
msgid "Applet to show the hw sensors readouts"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.desktop.in.h:2
msgid "Hardware Sensors"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.py:49
msgid "Applet to show the hardware sensors readouts"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.py:83
msgid ""
"Warning: No sensors found. Install one or more of ACPI, HDDTemp, LM-Sensors "
"and restart the applet."
msgstr ""

#. == Dialog == #
#. Create main applet dialog showing selected sensors.
#: ../applets/maintained/hardware-sensors/hardware-sensors.py:117
#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:14
msgid "Sensors"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.py:470
msgid "Name"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.py:472
msgid "Label"
msgstr ""

#. Set the cell "active" attribute to column_show - retrieve the state
#. of the toggle button from that column in liststore
#: ../applets/maintained/hardware-sensors/hardware-sensors.py:476
msgid "In dialog"
msgstr ""

#. Add treeview-column to treeview
#: ../applets/maintained/hardware-sensors/hardware-sensors.py:514
msgid "Sensors displayed in icon"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.py:532
msgid "properties"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:1
msgid "<b>Alarms</b>"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:3
msgid "<b>Sensor value limits</b>"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:4
#: ../applets/maintained/mail/mail.ui.h:3
msgid "<b>Update</b>"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:5
msgid "Add"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:6
msgid "Enable high alarm"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:7
msgid "Enable low alarm"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:8
msgid "Font size:"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:10
msgid "Meter hand color:"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:11
msgid "Remove"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:12
msgid "Sensor high value"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:13
msgid "Sensor low value"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:15
msgid "Show value in icon"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:16
msgid "Temperature unit:"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:17
msgid "Theme:"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:18
#: ../applets/maintained/mail/mail.ui.h:4
msgid "Update interval:"
msgstr ""

#: ../applets/maintained/hardware-sensors/hardware-sensors.ui.h:19
#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:45
msgid "seconds"
msgstr ""

#. Unit long strings
#: ../applets/maintained/hardware-sensors/sensorvalues/units.py:34
msgid "Celsius"
msgstr ""

#: ../applets/maintained/hardware-sensors/sensorvalues/units.py:35
msgid "Volt"
msgstr ""

#: ../applets/maintained/hardware-sensors/sensorvalues/units.py:35
msgid "rpm"
msgstr ""

#: ../applets/maintained/mail/awn-applet-mail.schema-ini.in.h:1
msgid "Display any network errors"
msgstr ""

#: ../applets/maintained/mail/awn-applet-mail.schema-ini.in.h:2
msgid "Hide the icon if there is no new mail"
msgstr ""

#: ../applets/maintained/mail/awn-applet-mail.schema-ini.in.h:3
msgid "The Desktop Email client to use"
msgstr ""

#: ../applets/maintained/mail/awn-applet-mail.schema-ini.in.h:4
msgid "The Email backend to use"
msgstr ""

#: ../applets/maintained/mail/awn-applet-mail.schema-ini.in.h:5
msgid "The theme to use for the icon"
msgstr ""

#: ../applets/maintained/mail/awn-applet-mail.schema-ini.in.h:6
msgid "Timeout between two value updates (in minutes)."
msgstr ""

#: ../applets/maintained/mail/awn-applet-mail.schema-ini.in.h:7
msgid "Used for logging in; do not touch"
msgstr ""

#: ../applets/maintained/mail/mail.desktop.in.h:1
msgid "Check Your Email from AWN"
msgstr ""

#: ../applets/maintained/mail/mail.desktop.in.h:2
#: ../applets/maintained/mail/mail.py:134
#: ../applets/maintained/mail/mail.py:903
msgid "Mail Applet"
msgstr "יישומון הדואל"

#: ../applets/maintained/mail/mail.py:37
#, python-format
msgid "You have %d new message"
msgid_plural "You have %d new messages"
msgstr[0] "יש לך הודעה חדשה %d"
msgstr[1] "יש לך %d הודעות חדשות"

#: ../applets/maintained/mail/mail.py:41
#, python-format
msgid "%d unread message"
msgid_plural "%d unread messages"
msgstr[0] "הודעה %d שלא נקראה"
msgstr[1] "%d הודעות שלא נקראו"

#: ../applets/maintained/mail/mail.py:74
msgid "Mail Applet (Click to Log In)"
msgstr "יישומון הדואל (לחץ להתחברות)"

#: ../applets/maintained/mail/mail.py:135
#, python-format
msgid "Logging in as %s"
msgstr "מתחבר תחת השם %s"

#: ../applets/maintained/mail/mail.py:165
msgid "New Mail - Mail Applet"
msgstr "דואל חדש - יישומון הדואל"

#: ../applets/maintained/mail/mail.py:283
msgid "Mail"
msgstr ""

#: ../applets/maintained/mail/mail.py:319
msgid "Open Web Mail"
msgstr ""

#: ../applets/maintained/mail/mail.py:328
msgid "Open Desktop Client"
msgstr ""

#: ../applets/maintained/mail/mail.py:337
msgid "Refresh"
msgstr ""

#: ../applets/maintained/mail/mail.py:346
msgid "Log Out"
msgstr ""

#: ../applets/maintained/mail/mail.py:376
msgid "No unread messages"
msgstr ""

#: ../applets/maintained/mail/mail.py:378
msgid "No new messages"
msgstr ""

#: ../applets/maintained/mail/mail.py:417
msgid "Wrong username or password"
msgstr ""

#: ../applets/maintained/mail/mail.py:425
#: ../applets/maintained/mail/mail.py:486
msgid "Log In"
msgstr "התחבר"

#: ../applets/maintained/mail/mail.py:462
msgid "Type:"
msgstr ""

#: ../applets/maintained/mail/mail.py:467
msgid "Backend"
msgstr "מנגנון"

#: ../applets/maintained/mail/mail.py:525
#: ../applets/maintained/mail/mail.py:584
msgid ""
"There seem to be problems with our                     connection to your "
"account. Your best bet is probably                     to log out and try "
"again."
msgstr ""

#: ../applets/maintained/mail/mail.py:547
#: ../applets/maintained/mail/mail.py:606
msgid "[No Subject]"
msgstr "[ללא נושא]"

#: ../applets/maintained/mail/mail.py:569
msgid "Google Apps"
msgstr ""

#: ../applets/maintained/mail/mail.py:637
msgid "Domain:"
msgstr "מתחם:"

#: ../applets/maintained/mail/mail.py:659
msgid "Unix Spool"
msgstr ""

#: ../applets/maintained/mail/mail.py:681
msgid "Spool Path:"
msgstr ""

#: ../applets/maintained/mail/mail.py:714
#: ../applets/maintained/mail/mail.py:716
msgid "Could not log in: "
msgstr ""

#: ../applets/maintained/mail/mail.py:723
msgid "Could not log in: Username or password incorrect"
msgstr ""

#: ../applets/maintained/mail/mail.py:765
#: ../applets/maintained/mail/mail.py:858
msgid "Server:"
msgstr "שרת:"

#: ../applets/maintained/mail/mail.py:768
#: ../applets/maintained/mail/mail.py:861
msgid "Use SSL encryption"
msgstr "השתמש בהצפנת SSL"

#: ../applets/maintained/mail/mail.py:804
msgid "Could not log in"
msgstr "לא ניתן להתחבר"

#: ../applets/maintained/mail/mail.py:810
msgid "Folder does not exst"
msgstr ""

#: ../applets/maintained/mail/mail.py:864
msgid "Get messages from only one folder"
msgstr ""

#: ../applets/maintained/mail/mail.py:871
msgid "Folder:"
msgstr ""

#: ../applets/maintained/mail/mail.py:906
msgid "An applet to check one's email"
msgstr "יישומון לבדיקת הדואר האלקטרוני"

#: ../applets/maintained/mail/mail.ui.h:2
msgid "<b>Mail</b>"
msgstr ""

#: ../applets/maintained/mail/mail.ui.h:5
msgid "_Alert on network errors"
msgstr ""

#: ../applets/maintained/mail/mail.ui.h:6
msgid "_Email client:"
msgstr ""

#: ../applets/maintained/mail/mail.ui.h:7
msgid "_Hide applet if no new messages"
msgstr ""

#: ../applets/maintained/mail/mail.ui.h:9
msgid "minutes"
msgstr ""

#: ../applets/maintained/media-control/awn-applet-media-control.schema-ini.in.h:1
msgid "Close the docklet when mouse moves out from it."
msgstr ""

#: ../applets/maintained/media-control/awn-applet-media-control.schema-ini.in.h:2
msgid "Display album art if available."
msgstr ""

#: ../applets/maintained/media-control/awn-applet-media-control.schema-ini.in.h:3
msgid "Display docklet instead of standard applet dialog."
msgstr ""

#: ../applets/maintained/media-control/awn-applet-media-control.schema-ini.in.h:4
msgid "Size of the album art."
msgstr ""

#: ../applets/maintained/media-control/awn-applet-media-control.schema-ini.in.h:5
msgid "Tooltip format to use."
msgstr ""

#: ../applets/maintained/media-control/media-control.desktop.in.h:1
msgid "Control your music player"
msgstr ""

#: ../applets/maintained/media-control/media-control.desktop.in.h:2
msgid "Media Control"
msgstr ""

#: ../applets/maintained/media-control/media_control.py:612
msgid "Title - Artist"
msgstr ""

#: ../applets/maintained/media-control/media_control.py:612
msgid "Artist - Title"
msgstr ""

#: ../applets/maintained/media-control/media-control.ui.h:2
msgid "Close docklet when mouse leaves it"
msgstr ""

#: ../applets/maintained/media-control/media-control.ui.h:3
msgid "Display _docklet instead of dialog"
msgstr ""

#: ../applets/maintained/media-control/media-control.ui.h:4
msgid "Media-control preferences"
msgstr ""

#: ../applets/maintained/media-control/media-control.ui.h:5
msgid "Show _album art when available"
msgstr ""

#: ../applets/maintained/media-control/media-control.ui.h:6
msgid "_Size of the album art:"
msgstr ""

#: ../applets/maintained/media-control/media-control.ui.h:7
msgid "_Tooltip format:"
msgstr ""

#: ../applets/maintained/media-control/media-control.ui.h:8
#: ../applets/maintained/media-player/media-player-prefs.ui.h:8
#: ../applets/maintained/notification-area/na-prefs.ui.h:12
#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:44
#: ../applets/maintained/weather/weather.ui.h:19
msgid "pixels"
msgstr ""

#: ../applets/maintained/media-icons/media-icon-next.desktop.in.h:1
#: ../applets/maintained/media-icons/media-icons.py:68
msgid "A media-control applet (Next Track)"
msgstr ""

#: ../applets/maintained/media-icons/media-icon-next.desktop.in.h:2
#: ../applets/maintained/media-icons/media-icons.py:74
msgid "Media Icons Next"
msgstr ""

#: ../applets/maintained/media-icons/media-icon-previous.desktop.in.h:1
#: ../applets/maintained/media-icons/media-icons.py:69
msgid "A media-control applet (Previous Track)"
msgstr ""

#: ../applets/maintained/media-icons/media-icon-previous.desktop.in.h:2
#: ../applets/maintained/media-icons/media-icons.py:75
msgid "Media Icons Previous"
msgstr ""

#: ../applets/maintained/media-icons/media-icons.desktop.in.h:1
#: ../applets/maintained/media-icons/media-icons.py:70
msgid "A media-control applet (Play/Pause)"
msgstr ""

#: ../applets/maintained/media-icons/media-icons.desktop.in.h:2
#: ../applets/maintained/media-icons/media-icons.py:76
msgid "Media Icons Play/Pause"
msgstr ""

#: ../applets/maintained/media-icons/media-icons.py:57
msgid "Next"
msgstr ""

#: ../applets/maintained/media-icons/media-icons.py:58
msgid "Previous"
msgstr ""

#: ../applets/maintained/media-icons/media-icons.py:59
msgid "Play/Pause"
msgstr ""

#: ../applets/maintained/media-player/awn-applet-media-player.schema-ini.in.h:1
msgid "Audio sink to use."
msgstr ""

#: ../applets/maintained/media-player/awn-applet-media-player.schema-ini.in.h:2
msgid "Height of the video window."
msgstr ""

#: ../applets/maintained/media-player/awn-applet-media-player.schema-ini.in.h:3
msgid "List of recently played URLs."
msgstr ""

#: ../applets/maintained/media-player/awn-applet-media-player.schema-ini.in.h:4
msgid "Video sink to use."
msgstr ""

#: ../applets/maintained/media-player/awn-applet-media-player.schema-ini.in.h:5
msgid "Width of the video window."
msgstr ""

#: ../applets/maintained/media-player/media-player.desktop.in.h:1
msgid "Media Player"
msgstr ""

#: ../applets/maintained/media-player/media-player.desktop.in.h:2
msgid "Plays any media files you drop on the applet"
msgstr ""

#: ../applets/maintained/media-player/media-player-prefs.ui.h:1
msgid "<b>GStreamer properties</b>"
msgstr ""

#: ../applets/maintained/media-player/media-player-prefs.ui.h:2
msgid "<b>Video size</b>"
msgstr ""

#: ../applets/maintained/media-player/media-player-prefs.ui.h:3
msgid "Media Player Preferences"
msgstr ""

#: ../applets/maintained/media-player/media-player-prefs.ui.h:4
msgid "_Audiosink:"
msgstr ""

#: ../applets/maintained/media-player/media-player-prefs.ui.h:5
msgid "_Height:"
msgstr ""

#: ../applets/maintained/media-player/media-player-prefs.ui.h:6
msgid "_Videosink:"
msgstr ""

#: ../applets/maintained/media-player/media-player-prefs.ui.h:7
msgid "_Width:"
msgstr ""

#: ../applets/maintained/mount/awn-applet-mount.schema-ini.in.h:1
msgid "Command to execute after mounting a mountpoint."
msgstr ""

#: ../applets/maintained/mount/awn-applet-mount.schema-ini.in.h:2
msgid "List of mountpoints that should remain hidden in the UI."
msgstr ""

#: ../applets/maintained/mount/mount.desktop.in.h:1
msgid "An applet to (un)mount devices"
msgstr ""

#: ../applets/maintained/mount/mount.desktop.in.h:2
msgid "Mount Applet"
msgstr ""

#: ../applets/maintained/mount/mount.ui.h:2
#, no-c-format
msgid "<i><b>Note:</b> use %D for the mountpoint</i>"
msgstr ""

#: ../applets/maintained/mount/mount.ui.h:3
msgid "List of hidden mountpoints, separated by a space"
msgstr ""

#: ../applets/maintained/mount/mount.ui.h:4
msgid "_Execute command after successful mount:"
msgstr ""

#: ../applets/maintained/mount/mount.ui.h:5
msgid "_Hidden mountpoints:"
msgstr ""

#: ../applets/maintained/notification-area/awn-applet-notification-area.schema-ini.in.h:1
msgid "Extra offset from the panel's egde."
msgstr ""

#: ../applets/maintained/notification-area/awn-applet-notification-area.schema-ini.in.h:2
msgid ""
"Maximum number of rows (or columns depending on the orientation of the "
"panel) of the tray icons in the applet."
msgstr ""

#: ../applets/maintained/notification-area/awn-applet-notification-area.schema-ini.in.h:3
msgid "Size of the icons (in percent of applet size)."
msgstr ""

#: ../applets/maintained/notification-area/awn-applet-notification-area.schema-ini.in.h:4
msgid "The background color of the notification-area."
msgstr ""

#: ../applets/maintained/notification-area/awn-applet-notification-area.schema-ini.in.h:5
msgid "The border color of the notification-area."
msgstr ""

#: ../applets/maintained/notification-area/egg-tray-child.c:170
#, c-format
msgid "tray icon has requested a size of (%i x %i), resizing to (%i x %i)"
msgstr ""

#: ../applets/maintained/notification-area/eggtraymanager.c:148
msgid "Orientation"
msgstr ""

#: ../applets/maintained/notification-area/eggtraymanager.c:149
msgid "The orientation of the tray."
msgstr ""

#: ../applets/maintained/notification-area/na-prefs.ui.h:2
#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:2
#, no-c-format
msgid "%"
msgstr ""

#: ../applets/maintained/notification-area/na-prefs.ui.h:3
msgid "<b>Background Color</b>"
msgstr ""

#: ../applets/maintained/notification-area/na-prefs.ui.h:4
msgid "<b>Border Color</b>"
msgstr ""

#: ../applets/maintained/notification-area/na-prefs.ui.h:6
msgid "Automatic"
msgstr ""

#: ../applets/maintained/notification-area/na-prefs.ui.h:7
msgid "Custom:"
msgstr ""

#: ../applets/maintained/notification-area/na-prefs.ui.h:8
msgid "Extra _offset:"
msgstr ""

#: ../applets/maintained/notification-area/na-prefs.ui.h:9
msgid "Icon _size:"
msgstr ""

#: ../applets/maintained/notification-area/na-prefs.ui.h:10
msgid "Notification Area Preferences"
msgstr ""

#: ../applets/maintained/notification-area/na-prefs.ui.h:11
msgid "_Number of icon rows:"
msgstr ""

#: ../applets/maintained/notification-area/notification-area.desktop.in.in.h:1
msgid "A Notification Area (systray)"
msgstr ""

#: ../applets/maintained/notification-area/notification-area.desktop.in.in.h:2
msgid "Notification Area"
msgstr ""

#: ../applets/maintained/notification-daemon/awn-applet-notification-daemon.schema-ini.in.h:1
msgid "Background colour in the form (Hex) rrggbbaa"
msgstr ""

#: ../applets/maintained/notification-daemon/awn-applet-notification-daemon.schema-ini.in.h:2
msgid "Border Width. A value of 0 indicates that is should not be drawn."
msgstr ""

#: ../applets/maintained/notification-daemon/awn-applet-notification-daemon.schema-ini.in.h:3
msgid ""
"Border colour in the form (Hex) rrggbbaa.  Also use for the timer widget"
msgstr ""

#: ../applets/maintained/notification-daemon/awn-applet-notification-daemon.schema-ini.in.h:4
msgid ""
"Display icon for awn notification daemon.  Allows toggling of notification "
"display"
msgstr ""

#: ../applets/maintained/notification-daemon/awn-applet-notification-daemon.schema-ini.in.h:5
msgid ""
"Gradient Factor applied to the notification window. Range of 0 to 1. The "
"lower the number the more noticeable the effect."
msgstr ""

#: ../applets/maintained/notification-daemon/awn-applet-notification-daemon.schema-ini.in.h:6
msgid ""
"If the value is >0.0 then this opacity value will be applied to window "
"instead of hiding."
msgstr ""

#: ../applets/maintained/notification-daemon/awn-applet-notification-daemon.schema-ini.in.h:7
msgid ""
"NOTE:  This key should not be considered stable... it is likely to change.  "
"Arbitrary X position for notification window.  Default is -1 which signifies "
"awn-notification-daemon should place windows relative to its position in the "
"bar."
msgstr ""

#: ../applets/maintained/notification-daemon/awn-applet-notification-daemon.schema-ini.in.h:8
msgid ""
"NOTE:  This key should not be considered stable... it is likely to change.  "
"Arbitrary Y position for notification window.  Default is -1 which signifies "
"awn-notification-daemon should place windows relative to its position in the "
"bar."
msgstr ""

#: ../applets/maintained/notification-daemon/awn-applet-notification-daemon.schema-ini.in.h:9
msgid "Sound."
msgstr ""

#: ../applets/maintained/notification-daemon/awn-applet-notification-daemon.schema-ini.in.h:10
msgid ""
"Text colour in the form (Hex) rrggbbaa. Currently the alpha component is "
"ignored"
msgstr ""

#: ../applets/maintained/notification-daemon/awn-applet-notification-daemon.schema-ini.in.h:11
msgid ""
"The default sound file used unless a notification supplies the 'sound-file' "
"or 'suppress-sound' hint. Leave empty for no default sound."
msgstr ""

#: ../applets/maintained/notification-daemon/awn-applet-notification-daemon.schema-ini.in.h:12
msgid ""
"This will override the client and default timeout periods for all "
"notification windows with a timeout.  Value is in ms. A value less than or "
"equal to 0 indicates that client and default values should be honoured."
msgstr ""

#: ../applets/maintained/notification-daemon/awn-applet-notification-daemon.schema-ini.in.h:13
msgid "Use bold text."
msgstr ""

#: ../applets/maintained/notification-daemon/awn-applet-notification-daemon.schema-ini.in.h:14
msgid "Whether to attempt to kill any running notification-daemons."
msgstr ""

#: ../applets/maintained/notification-daemon/awn-applet-notification-daemon.schema-ini.in.h:15
msgid "Whether to honour client notification window positioning requests."
msgstr ""

#: ../applets/maintained/notification-daemon/awn-applet-notification-daemon.schema-ini.in.h:16
msgid "Whether to the use configured awn theme color values for xxxx."
msgstr ""

#: ../applets/maintained/notification-daemon/daemon.c:1422
#, c-format
msgid "%u is not a valid notification ID"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:35
msgid "Whether to show tooltips when hovering over a place.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:33
msgid "The width of the menu's border.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:31
msgid "The size of the text in the menu, in pixels.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:29
msgid "The icon theme name of the applet's icon.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:27
msgid "The file manager that shows the contents of the places.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:25
msgid ""
"The colour (RGBA) of the text when a place is selected or the mouse hovers "
"over it.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:23
msgid "The colour (RGBA) of the text in the menu.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:21
msgid ""
"The colour (RGBA) of the menu's border, if the border width is greater than "
"zero.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:19
msgid ""
"The color (RGBA) of the text when a place is selected or the mouse hovers "
"over it.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:17
msgid "The color (RGBA) of the text in the menu.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:15
msgid ""
"The color (RGBA) of the menu's border, if the border width is greater than "
"zero.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:13
msgid "The background colour (RGBA) of the menu.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:11
msgid ""
"The background colour (RGBA) of an entry in the menu when it is selected or "
"the mouse hovers over it.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:9
msgid "The background color (RGBA) of the menu.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:7
msgid ""
"The background color (RGBA) of an entry in the menu when it is selected or "
"the mouse hovers over it.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:5
msgid ""
"Determines whether to use the current Gtk+ theme's colour/font settings, or "
"the applet-specific style settings.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:3
msgid ""
"Determines whether to use the current Gtk+ theme's color/font settings, or "
"the applet-specific style settings.);"
msgstr ""

#: ../applets/maintained/places/awn-applet-places.schema-ini.in.h:1
msgid ""
"Creates an alpha gradient in the menu item background.  At the top and "
"bottom of the menu, the alpha value is the background color's alpha value "
"multiplied by this value.  At 20 percent from the top of the menu, the alpha "
"value is the background color's alpha value.);"
msgstr ""

#: ../applets/maintained/places/places.desktop.in.in.h:1
msgid "Launch your folder bookmarks"
msgstr ""

#: ../applets/maintained/python-test/python-test.desktop.in.h:1
msgid "A simple applet to test python support"
msgstr ""

#: ../applets/maintained/python-test/python-test.desktop.in.h:2
msgid "Test Python Applet"
msgstr ""

#: ../applets/maintained/quit/awn-applet-quit.schema-ini.in.h:1
msgid "Action to perform when left clicking on the icon."
msgstr ""

#: ../applets/maintained/quit/awn-applet-quit.schema-ini.in.h:2
msgid "Command to execute if org.gnome.ScreenSaver is not available."
msgstr ""

#: ../applets/maintained/quit/awn-applet-quit.schema-ini.in.h:3
msgid "Command to execute if org.gnome.SessionManager is not available."
msgstr ""

#: ../applets/maintained/quit/quit.desktop.in.h:1
msgid "An applet to exit or log out of your session"
msgstr ""

#: ../applets/maintained/quit/quit.desktop.in.h:2
msgid "Quit-Log Out applet"
msgstr ""

#: ../applets/maintained/quit/quit-lock-screen.desktop.in.h:2
msgid "Protect your computer from unauthorized use"
msgstr ""

#: ../applets/maintained/quit/quit-log-out.desktop.in.h:1
msgid "Log Out..."
msgstr ""

#: ../applets/maintained/quit/quit-log-out.desktop.in.h:2
msgid "Log out of this session to log in as a different user"
msgstr ""

#: ../applets/maintained/quit/quit-shut-down.desktop.in.h:1
msgid "Shut Down..."
msgstr ""

#: ../applets/maintained/quit/quit-shut-down.desktop.in.h:2
msgid "Shut down the system"
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:1
msgid " The color (RGBA) applet border."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:2
msgid " The color of the desktop (RGBA) if grab_wallpaper is FALSE."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:3
msgid " gdk."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:4
msgid "0... centre  1 NW    2 NE   3 SE  4 SW\t"
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:5
msgid "1"
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:6
msgid "Alpha to apply to icon overlayed on active window."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:7
msgid "Alpha to apply to icon overlayed on inactive window."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:8
msgid "Alpha value to apply to active workspace background."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:9
msgid "Alpha value to apply to inactive workspace background."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:10
msgid "Applet border width.  0 indicates no border."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:11
msgid ""
"Mousewheel  0. off. 1 up left, down right. 2 Opposite direction of 1. 3 Same "
"as 1 no wrap. 4 opposite direction of 3."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:12
msgid ""
"Number of seconds before a cached window surface is considered to be "
"expired.  After this duration it will be updated when needed if it possible "
"to do so."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:13
msgid ""
"Queued render timer. Number of milliseconds between queued render updates. "
"The smaller the number the less lag will be apparent on shinyswitcher "
"updates.  Multiples of 1000 are more power and CPU efficient."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:14
msgid "Scales the applet size relative to the maximum icon size"
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:15
msgid "The colour (RGBA) of the applet border."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:16
msgid "The colour of the desktop (RGBA) if grab_wallpaper is FALSE."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:17
msgid "The number of columns in the pager."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:18
msgid "The number of rows in the pager."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:19
msgid ""
"When to  overly the app icon:  0...no\t1...on inactive workspace onlt\t"
"2...all but active win\t3..all."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:20
msgid ""
"When to scale icons:  0...none  1...on all active ws  2...on_active_win "
"3...all"
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:21
msgid "Whether to grab wallpaper."
msgstr ""

#: ../applets/maintained/shiny-switcher/awn-applet-shinyswitcher.schema-ini.in.h:22
msgid ""
"Win grabs:  0...none\t1...all (grab method may override) 2..active ws (and "
"sticky)  3...active win"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:3
msgid "<b>Background transparency</b>"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:4
msgid "<b>Background</b>"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:6
msgid "<b>Icon transparency</b>"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:7
msgid "<b>Timers</b>"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:8
msgid "<b>Viewport size</b>"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:9
msgid "<b>Windows</b>"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:10
msgid "Active window:"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:11
msgid "Active workspace"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:12
msgid "Active workspace:"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:13
msgid "All window"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:14
msgid "All windows"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:15
msgid "B_order color:"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:17
msgid "Border _size:"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:18
msgid "C_ustom color:"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:19
msgid "Cache expiration:"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:20
msgid "Center"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:21
msgid "Co_lumns:"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:22
msgid "Icon _display:"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:23
msgid "Icon _scaling:"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:24
msgid "Inactive window:"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:25
msgid "Inactive windows"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:26
msgid "Inactive workspace:"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:27
msgid "Inactive workspaces"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:28
msgid "Look"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:29
msgid "Lower left"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:30
msgid "Lower right"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:31
msgid "Never"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:33
msgid "Only active window"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:34
msgid "Render update:"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:35
msgid "Scale _amount:"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:36
msgid "Scaled icon _position:"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:37
msgid "Shiny Switcher Preferences"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:38
msgid "Upper left"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:39
msgid "Upper right"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:40
msgid "Use _desktop background"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:41
msgid "_Applet size:"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:42
msgid "_Rows:"
msgstr ""

#: ../applets/maintained/shiny-switcher/shiny-prefs.ui.h:43
msgid "_Thumbnailing:"
msgstr ""

#: ../applets/maintained/showdesktop/applet.vala:40
#: ../applets/maintained/showdesktop/showdesktop.desktop.in.in.h:2
msgid "Show Desktop"
msgstr ""

#. vim:ft=vala:et:ts=2 sts=2 sw=2:ai:cindent
#: ../applets/maintained/showdesktop/applet.vala:78
#: ../applets/maintained/showdesktop/showdesktop.desktop.in.in.h:1
msgid "Hides your windows and shows your desktop."
msgstr ""

#: ../applets/maintained/showdesktop/applet.vala:93
msgid "Show hidden windows"
msgstr ""

#: ../applets/maintained/showdesktop/applet.vala:98
msgid "Hide windows and show desktop"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:1
msgid "The background color of the dialog"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:2
msgid "The border color of a drawn window"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:3
msgid "The border color of the dialog"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:4
msgid "The bottom part of the shiny gradient"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:5
msgid "The bottom part of the shiny gradient when hovered"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:6
msgid "The drop shadow color of the drawn number"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:7
msgid "The file to use as the background image"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:8
msgid "The height of a workspace widget"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:9
msgid "The hovered border color of a workspace widget"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:10
msgid "The icon's border color"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:11
msgid "The main color of a drawn window"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:12
msgid "The main color of the drawn number"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:13
msgid "The normal border color of a workspace widget"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:14
msgid "The top part of the shiny gradient"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:15
msgid "The top part of the shiny gradient when hovered"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:16
msgid "The width of a workspace widget"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:17
msgid "Whether or not to use custom colors for the dialog"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:18
msgid "Whether or not to use the standard text overlay"
msgstr ""

#: ../applets/maintained/slickswitcher/awn-applet-slickswitcher.schema-ini.in.h:19
msgid "Which background image(s) source to use: gnome, compiz, file"
msgstr ""

#: ../applets/maintained/slickswitcher/prefs.py:69
msgid "SlickSwitcher Preferences"
msgstr ""

#. Colors: Borders, Windows, and Dialog
#. Border Colors
#: ../applets/maintained/slickswitcher/prefs.py:94
msgid "Border Colors"
msgstr ""

#. Icon Border
#: ../applets/maintained/slickswitcher/prefs.py:100
msgid "Icon border:"
msgstr ""

#. Normal Border
#: ../applets/maintained/slickswitcher/prefs.py:103
msgid "Normal border:"
msgstr ""

#. Hovered Border
#: ../applets/maintained/slickswitcher/prefs.py:106
msgid "Hovered border:"
msgstr ""

#. Window Colors
#: ../applets/maintained/slickswitcher/prefs.py:109
msgid "Window Colors"
msgstr ""

#. Main Color
#: ../applets/maintained/slickswitcher/prefs.py:115
#: ../applets/maintained/slickswitcher/prefs.py:200
msgid "Main color:"
msgstr ""

#. Border Color
#: ../applets/maintained/slickswitcher/prefs.py:118
#: ../applets/maintained/slickswitcher/prefs.py:137
msgid "Border color:"
msgstr ""

#. Dialog Colors
#: ../applets/maintained/slickswitcher/prefs.py:121
msgid "Dialog colors"
msgstr ""

#. Use custom colors (CheckButton)
#: ../applets/maintained/slickswitcher/prefs.py:127
#: ../applets/maintained/slickswitcher/prefs.py:193
msgid "Use custom colors"
msgstr ""

#. Background Color
#: ../applets/maintained/slickswitcher/prefs.py:134
msgid "Background color:"
msgstr ""

#: ../applets/maintained/slickswitcher/prefs.py:183
msgid "Colors"
msgstr ""

#. Other colors: text and shine
#. Number Colors
#: ../applets/maintained/slickswitcher/prefs.py:187
msgid "Number Colors"
msgstr ""

#. Drop-Shadow Color
#: ../applets/maintained/slickswitcher/prefs.py:203
msgid "Drop-shadow color:"
msgstr ""

#. Shine Colors
#: ../applets/maintained/slickswitcher/prefs.py:206
msgid "Shine Colors"
msgstr ""

#. Top Color
#: ../applets/maintained/slickswitcher/prefs.py:212
msgid "Top color:"
msgstr ""

#. Bottom Color
#: ../applets/maintained/slickswitcher/prefs.py:215
msgid "Bottom color:"
msgstr ""

#. Hover Top Color
#: ../applets/maintained/slickswitcher/prefs.py:218
msgid "Hover top color:"
msgstr ""

#. Hover Bottom Color
#: ../applets/maintained/slickswitcher/prefs.py:221
msgid "Hover bottom color:"
msgstr ""

#: ../applets/maintained/slickswitcher/prefs.py:254
msgid "Other colors"
msgstr ""

#. Width
#: ../applets/maintained/slickswitcher/prefs.py:262
msgid "Width:"
msgstr ""

#. Height
#: ../applets/maintained/slickswitcher/prefs.py:279
msgid "Height:"
msgstr ""

#: ../applets/maintained/slickswitcher/prefs.py:299
msgid "Workspace Size"
msgstr ""

#. Mode
#: ../applets/maintained/slickswitcher/prefs.py:315
msgid "Mode:"
msgstr ""

#: ../applets/maintained/slickswitcher/prefs.py:318
msgid "GNOME"
msgstr ""

#: ../applets/maintained/slickswitcher/prefs.py:319
msgid "Compiz Wallpaper Plugin"
msgstr ""

#: ../applets/maintained/slickswitcher/prefs.py:320
msgid "File"
msgstr ""

#. File
#: ../applets/maintained/slickswitcher/prefs.py:339
msgid "File:"
msgstr ""

#: ../applets/maintained/slickswitcher/prefs.py:341
msgid "Choose a Background Image"
msgstr ""

#: ../applets/maintained/slickswitcher/prefs.py:367
#: ../applets/maintained/to-do/prefs.py:445
msgid "Background"
msgstr ""

#: ../applets/maintained/slickswitcher/prefs.py:379
msgid "Advanced"
msgstr ""

#: ../applets/maintained/slickswitcher/slickswitcher.desktop.in.h:1
#: ../applets/maintained/slickswitcher/slickswitcher.py:281
msgid "A visual workspace switcher"
msgstr ""

#: ../applets/maintained/slickswitcher/slickswitcher.desktop.in.h:2
#: ../applets/maintained/slickswitcher/slickswitcher.py:63
#: ../applets/maintained/slickswitcher/slickswitcher.py:272
msgid "SlickSwitcher"
msgstr ""

#: ../applets/maintained/sysmon/awn-applet-sysmon.schema-ini.in.h:1
msgid ""
"CPU graph type to use.  Note that some Icons do not support all graph types. "
" If this occurs an icon will revert to it's own default (value of 0)."
msgstr ""

#: ../applets/maintained/sysmon/awn-applet-sysmon.schema-ini.in.h:2
msgid "If the updates are time based then how frequently to update in ms."
msgstr ""

#: ../applets/maintained/sysmon/awn-applet-sysmon.schema-ini.in.h:3
msgid "Just a dummy key.. this will be removed later."
msgstr ""

#: ../applets/maintained/sysmon/awn-applet-sysmon.schema-ini.in.h:4
msgid "List of icons"
msgstr ""

#: ../applets/maintained/sysmon/awn-applet-sysmon.schema-ini.in.h:5
msgid "Render background."
msgstr ""

#: ../applets/maintained/sysmon/sysmon.desktop.in.in.h:1
#: ../applets/unmaintained/awnsystemmonitor/awnsystemmonitor.desktop.in.in.h:2
msgid "Manage system activity"
msgstr ""

#: ../applets/maintained/sysmon/sysmon.desktop.in.in.h:2
msgid "System Monitor"
msgstr ""

#: ../applets/maintained/thinkhdaps/thinkhdaps.desktop.in.h:1
msgid "Applet that shows the shock protection status of your disks"
msgstr ""

#: ../applets/maintained/thinkhdaps/thinkhdaps.desktop.in.h:2
msgid "ThinkHDAPS"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:1
msgid "Background color for high priority items"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:2
msgid "Background color for low priority items"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:3
msgid "Background color for medium priority items"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:4
msgid "List of colors to use for the custom color"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:5
msgid "List of items' details"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:6
msgid "List of items' names"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:7
msgid "List of items' priorities (0-3)"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:8
msgid "List of items' progresses in percent (0-100)"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:9
msgid "Text color for high priority items"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:10
msgid "Text color for low priority items"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:11
msgid "Text color for medium priority items"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:12
msgid "The color to use for the icon"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:13
msgid "The custom width for the item entries"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:14
msgid "The icon's opacity (10-100)"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:15
msgid "The list of categories that are expanded"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:16
msgid "The list of categories' names"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:17
msgid "The list of items' categories"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:18
msgid "The title to display"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:19
msgid "What type of icon to display (progress, progress-items, items)"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:20
msgid "Whether or not to confirm the deletion of categories"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:21
msgid "Whether or not to confirm the deletion of items"
msgstr ""

#: ../applets/maintained/to-do/awn-applet-to-do.schema-ini.in.h:22
msgid "Whether or not to use a custom width for the entries"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:32
msgid "Custom"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:32
msgid "Current Theme"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:32
msgid "Butter"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:33
msgid "Chameleon"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:33
msgid "Orange"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:33
msgid "Sky Blue"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:33
msgid "Plum"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:33
msgid "Chocolate"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:34
msgid "Scarlet Red"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:34
msgid "Aluminium 1"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:34
msgid "Aluminium 2"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:37
msgid "Number of Items"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:37
msgid "Progress"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:37
msgid "Both"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:45
msgid "To-Do List Preferences"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:61
msgid "Priority"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:62
msgid "Icon"
msgstr ""

#. Label: Title (bold)
#: ../applets/maintained/to-do/prefs.py:72
msgid "Title"
msgstr ""

#. Label: Confirm when removing... (bold)
#: ../applets/maintained/to-do/prefs.py:86
msgid "Confirm when removing..."
msgstr ""

#. CheckButton: Items
#: ../applets/maintained/to-do/prefs.py:95
msgid "_Items"
msgstr ""

#. CheckButton: Categories
#: ../applets/maintained/to-do/prefs.py:102
msgid "C_ategories"
msgstr ""

#. Label: Width (bold)
#: ../applets/maintained/to-do/prefs.py:109
msgid "Width"
msgstr ""

#. CheckButton: Use Custom Width
#: ../applets/maintained/to-do/prefs.py:118
msgid "_Use Custom Width"
msgstr ""

#. Label: Width (pixels)
#: ../applets/maintained/to-do/prefs.py:125
msgid "Width (pixels)"
msgstr ""

#. Label: Low Priority (bold)
#: ../applets/maintained/to-do/prefs.py:173
msgid "Low Priority"
msgstr ""

#. Label: Medium Priority (bold)
#: ../applets/maintained/to-do/prefs.py:186
msgid "Medium Priority"
msgstr ""

#. Label: High Priority (bold)
#: ../applets/maintained/to-do/prefs.py:199
msgid "High Priority"
msgstr ""

#. Label: Icon Color (bold)
#: ../applets/maintained/to-do/prefs.py:251
msgid "Icon Color"
msgstr ""

#. Label: Custom Colors (bold)
#: ../applets/maintained/to-do/prefs.py:274
msgid "Custom Colors"
msgstr ""

#. Colors: Outer Border, Inner Border, Main Color, Text Color
#: ../applets/maintained/to-do/prefs.py:283
msgid "Outer Border"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:284
msgid "Inner Border"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:285
msgid "Main"
msgstr ""

#: ../applets/maintained/to-do/prefs.py:286
#: ../applets/maintained/to-do/prefs.py:447
msgid "Text"
msgstr ""

#. Label: Icon Type (bold)
#: ../applets/maintained/to-do/prefs.py:289
msgid "Icon Type"
msgstr ""

#: ../applets/maintained/to-do/to-do.desktop.in.h:1
msgid "Manage a simple To-Do list"
msgstr ""

#: ../applets/maintained/to-do/to-do.desktop.in.h:2
#: ../applets/maintained/to-do/to-do.py:68
#: ../applets/maintained/to-do/to-do.py:217
#: ../applets/maintained/to-do/to-do.py:269
#: ../applets/maintained/to-do/to-do.py:907
msgid "To-Do List"
msgstr ""

#: ../applets/maintained/to-do/to-do.py:220
msgid "A simple To-Do List"
msgstr ""

#: ../applets/maintained/to-do/to-do.py:299
msgid "Remove item"
msgstr ""

#: ../applets/maintained/to-do/to-do.py:381
msgid "Remove category"
msgstr ""

#: ../applets/maintained/to-do/to-do.py:405
msgid "View/Edit details"
msgstr ""

#. Make the RadioButtons for each category
#. First category: No category! (Uncategorized)
#: ../applets/maintained/to-do/to-do.py:525
msgid "_Uncategorized"
msgstr ""

#. First RadioButton - ( )Category
#: ../applets/maintained/to-do/to-do.py:549
msgid "_Category"
msgstr ""

#. Second RadioButton - (-)To-Do item
#. TODO: better text than "To-Do item"?
#: ../applets/maintained/to-do/to-do.py:556
msgid "_To-Do item"
msgstr ""

#. Label: Priority:
#: ../applets/maintained/to-do/to-do.py:641
msgid "Priority: "
msgstr ""

#. Neutral, Low, Medium, and High priority RadioButtons
#: ../applets/maintained/to-do/to-do.py:644
msgid "_Neutral"
msgstr ""

#: ../applets/maintained/to-do/to-do.py:646
msgid "_Low"
msgstr ""

#: ../applets/maintained/to-do/to-do.py:648
msgid "_Medium"
msgstr ""

#: ../applets/maintained/to-do/to-do.py:650
msgid "_High"
msgstr ""

#. Label: Progress(%):
#: ../applets/maintained/to-do/to-do.py:678
msgid "Progress(%): "
msgstr ""

#. Make Label
#: ../applets/maintained/to-do/to-do.py:1130
#, python-format
msgid ""
"Are you sure you want to remove the category \"%s?\"\n"
"All of its items will be removed."
msgstr ""

#. Make CheckButton
#: ../applets/maintained/to-do/to-do.py:1134
#: ../applets/maintained/to-do/to-do.py:1170
msgid "Don't show this again."
msgstr ""

#. Make Label
#: ../applets/maintained/to-do/to-do.py:1167
msgid "Are you sure you want to remove this item?"
msgstr ""

#. Reset the tooltip
#: ../applets/maintained/to-do/to-do.py:1366
#, python-format
msgid "% done"
msgstr ""

#: ../applets/maintained/tomboy-applet/tomboy-applet.desktop.in.h:1
#: ../applets/maintained/tomboy-applet/tomboy-applet.py:34
msgid "Control Tomboy with D-Bus"
msgstr ""

#: ../applets/maintained/tomboy-applet/tomboy-applet.desktop.in.h:2
#: ../applets/maintained/tomboy-applet/tomboy-applet.py:33
msgid "Tomboy Applet"
msgstr ""

#: ../applets/maintained/tomboy-applet/tomboy-applet.py:114
#: ../applets/maintained/tomboy-applet/tomboy-applet.py:136
msgid "Select a tag:"
msgstr ""

#: ../applets/maintained/tomboy-applet/tomboy-applet.py:120
msgid "No tags were created yet"
msgstr ""

#: ../applets/maintained/tomboy-applet/tomboy-applet.py:125
msgid "Select a note:"
msgstr ""

#: ../applets/maintained/tomboy-applet/tomboy-applet.py:155
#, python-format
msgid "Version: %s"
msgstr ""

#: ../applets/maintained/tomboy-applet/tomboy-applet.py:161
msgid "New Note"
msgstr ""

#: ../applets/maintained/tomboy-applet/tomboy-applet.py:165
msgid "New Tagged Note"
msgstr ""

#: ../applets/maintained/tomboy-applet/tomboy-applet.py:169
msgid "View Tagged Note"
msgstr ""

#: ../applets/maintained/vala-test/vala-test.desktop.in.in.h:1
msgid "A simple applet to test vala support"
msgstr ""

#: ../applets/maintained/vala-test/vala-test.desktop.in.in.h:2
msgid "Test Vala Applet"
msgstr ""

#: ../applets/maintained/volume-control/awn-applet-volume-control.schema-ini.in.h:1
msgid "Name of the device."
msgstr ""

#: ../applets/maintained/volume-control/awn-applet-volume-control.schema-ini.in.h:2
msgid "Name of the mixer track."
msgstr ""

#: ../applets/maintained/volume-control/volume-control.desktop.in.h:1
msgid "Control your computer's volume"
msgstr ""

#: ../applets/maintained/volume-control/volume-control.desktop.in.h:2
msgid "Volume Control"
msgstr ""

#: ../applets/maintained/volume-control/volume-control.ui.h:1
msgid "+"
msgstr ""

#: ../applets/maintained/volume-control/volume-control.ui.h:2
msgid "-"
msgstr ""

#: ../applets/maintained/volume-control/volume-control.ui.h:3
msgid "<b>Audio Options</b>"
msgstr ""

#: ../applets/maintained/volume-control/volume-control.ui.h:5
msgid "_Device:"
msgstr ""

#: ../applets/maintained/volume-control/volume-control.ui.h:6
msgid "_Mixer track:"
msgstr ""

#: ../applets/maintained/weather/awn-applet-weather.schema-ini.in.h:1
msgid "City, and country of the weather location."
msgstr ""

#: ../applets/maintained/weather/awn-applet-weather.schema-ini.in.h:2
msgid "Code that identifies the weather location."
msgstr ""

#: ../applets/maintained/weather/awn-applet-weather.schema-ini.in.h:3
msgid "Fahrenheit)."
msgstr ""

#: ../applets/maintained/weather/awn-applet-weather.schema-ini.in.h:4
msgid "If enabled, show the temperature as an overlay in the icon."
msgstr ""

#: ../applets/maintained/weather/awn-applet-weather.schema-ini.in.h:5
msgid "Maximum width of map in pixels."
msgstr ""

#: ../applets/maintained/weather/awn-applet-weather.schema-ini.in.h:6
msgid "Show days of forecast in a transparent, curved dialog."
msgstr ""

#: ../applets/maintained/weather/forecast.py:54
#: ../applets/maintained/weather/forecast.py:82
msgid "Forecast"
msgstr ""

#: ../applets/maintained/weather/forecast.py:54
#: ../applets/maintained/weather/forecast.py:82
msgid "for"
msgstr ""

#: ../applets/maintained/weather/forecast.py:167
msgid "WEEKDAY"
msgstr ""

#: ../applets/maintained/weather/forecast.py:171
msgid "Tomorrow"
msgstr ""

#. Weather condition
#: ../applets/maintained/weather/forecast.py:197
#: ../applets/maintained/weather/weather.py:452
msgid "DESCRIPTION"
msgstr ""

#: ../applets/maintained/weather/forecast.py:249
msgid "Weather data provided by weather.com"
msgstr ""

#: ../applets/maintained/weather/weather.desktop.in.h:1
msgid "Display the local weather"
msgstr ""

#: ../applets/maintained/weather/weather.desktop.in.h:2
msgid "Weather Applet"
msgstr ""

#: ../applets/maintained/weather/weather.py:215
msgid "Fetching conditions for"
msgstr ""

#: ../applets/maintained/weather/weather.py:254
msgid "Show _Map"
msgstr ""

#: ../applets/maintained/weather/weather.py:302
#: ../applets/maintained/weather/weather.py:380
msgid "No records found"
msgstr ""

#: ../applets/maintained/weather/weather.py:371
msgid "Searching..."
msgstr ""

#: ../applets/maintained/weather/weather.ui.h:4
msgid "<b>Icon Display</b>"
msgstr ""

#: ../applets/maintained/weather/weather.ui.h:5
msgid ""
"<i><b>Examples:</b> Boston; Portland, ME, Amsterdam; or Osaka, Japan.</i>"
msgstr ""

#: ../applets/maintained/weather/weather.ui.h:6
msgid "Current _location:"
msgstr ""

#: ../applets/maintained/weather/weather.ui.h:7
msgid ""
"If enabled, the dialog will be transparent, and the five days of the "
"forecast will be curved"
msgstr ""

#: ../applets/maintained/weather/weather.ui.h:8
msgid "If enabled, the temperature will be displayed in the icon"
msgstr ""

#: ../applets/maintained/weather/weather.ui.h:9
msgid "Large"
msgstr ""

#: ../applets/maintained/weather/weather.ui.h:10
msgid "Maximum _map width:"
msgstr ""

#: ../applets/maintained/weather/weather.ui.h:11
msgid "Medium"
msgstr ""

#: ../applets/maintained/weather/weather.ui.h:12
msgid "Show temperature in _icon"
msgstr ""

#: ../applets/maintained/weather/weather.ui.h:13
msgid "Small"
msgstr ""

#: ../applets/maintained/weather/weather.ui.h:14
msgid "Temperature _unit:"
msgstr ""

#: ../applets/maintained/weather/weather.ui.h:15
msgid "Temperature font _size:"
msgstr ""

#: ../applets/maintained/weather/weather.ui.h:16
msgid "Use transparent/curved _forecast dialog"
msgstr ""

#: ../applets/maintained/weather/weather.ui.h:17
msgid "_Location Name:"
msgstr ""

#. Make the dialog
#: ../applets/maintained/webapplet/applet.c:262
#: ../applets/maintained/webapplet/applet.c:460
msgid "Open Location"
msgstr ""

#: ../applets/maintained/webapplet/applet.c:281
msgid "Set as new _Home Page"
msgstr ""

#: ../applets/maintained/webapplet/applet.c:399
#: ../applets/maintained/webapplet/webapplet.desktop.in.in.h:2
msgid "Web Applet"
msgstr ""

#. vim: set et ts=2 sts=2 sw=2 :
#: ../applets/maintained/webapplet/awn-applet-webapplet.schema-ini.in.h:1
msgid ""
"Flag that enables usage of the \"Open Location\" dialog in the applet."
msgstr ""

#: ../applets/maintained/webapplet/awn-applet-webapplet.schema-ini.in.h:2
msgid "HTML engine to use."
msgstr ""

#: ../applets/maintained/webapplet/awn-applet-webapplet.schema-ini.in.h:3
msgid "If true display location entry and website buttons"
msgstr ""

#: ../applets/maintained/webapplet/awn-applet-webapplet.schema-ini.in.h:4
msgid "Name of specialized website to use"
msgstr ""

#: ../applets/maintained/webapplet/awn-applet-webapplet.schema-ini.in.h:5
msgid "URI"
msgstr ""

#: ../applets/maintained/webapplet/awn-applet-webapplet.schema-ini.in.h:7
#, no-c-format
msgid "Width in %% or px."
msgstr ""

#: ../applets/maintained/webapplet/awn-applet-webapplet.schema-ini.in.h:9
#, no-c-format
msgid "height in %% or px."
msgstr ""

#: ../applets/maintained/webapplet/webapplet.desktop.in.in.h:1
msgid "Applet for Websites"
msgstr ""

#: ../applets/maintained/wobblyzini/wobblyzini.desktop.in.in.h:1
msgid "A simple test animation"
msgstr ""

#: ../applets/maintained/wobblyzini/wobblyzini.desktop.in.in.h:2
msgid "Wobbly Zini"
msgstr ""

#: ../applets/maintained/yama/yama.desktop.in.h:1
msgid "Main menu with places and recent documents"
msgstr ""

#: ../applets/maintained/yama/yama.desktop.in.h:2
msgid "Yet Another Menu Applet"
msgstr ""

#: ../applets/unmaintained/awnsystemmonitor/awnsystemmonitor.desktop.in.in.h:1
msgid "Awn System Monitor"
msgstr ""

#: ../applets/unmaintained/awnsystemmonitor/awnsystemmonitor.schemas.in.h:1
msgid "Graph update frequency, in milliseconds."
msgstr ""

#: ../applets/unmaintained/awnsystemmonitor/awnsystemmonitor.schemas.in.h:2
msgid "Set to 1 (true) to draw the gradient overlay on the graph."
msgstr ""

#: ../applets/unmaintained/awnsystemmonitor/awnsystemmonitor.schemas.in.h:3
msgid "The color used in the applet border."
msgstr ""

#: ../applets/unmaintained/awnsystemmonitor/awnsystemmonitor.schemas.in.h:4
msgid "The color used in the graph lines."
msgstr ""

#: ../applets/unmaintained/awnsystemmonitor/awnsystemmonitor.schemas.in.h:5
msgid "The color used in the graph lines. Valid values are 0.0 through 1.0."
msgstr ""

#: ../applets/unmaintained/awnsystemmonitor/awnsystemmonitor.schemas.in.h:6
msgid "The pixel width of the applet border."
msgstr ""

#: ../applets/unmaintained/main-menu/applet.c:394
#: ../applets/unmaintained/main-menu/main-menu.desktop.in.in.h:2
msgid "Awn Main Menu"
msgstr ""

#: ../applets/unmaintained/main-menu/applet.c:395
msgid "Displays a list of all your applications"
msgstr ""

#: ../applets/unmaintained/main-menu/applet.c:453
msgid "Main Menu"
msgstr ""

#: ../applets/unmaintained/main-menu/main-menu.desktop.in.in.h:1
msgid "A main menu for Awn"
msgstr ""

#: ../applets/unmaintained/pandora/awn-applet-pandora.schema-ini.in.h:1
msgid "The url of the Pandora mini flash player."
msgstr ""

#: ../applets/unmaintained/pandora/pandora.desktop.in.h:1
msgid "Listen to Pandora Internet Radio"
msgstr ""

#: ../applets/unmaintained/pandora/pandora.desktop.in.h:2
msgid "Pandora Radio"
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:1
msgid " sort by date)."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:2
msgid ""
"Backend type for this applet (0 - file, 1 - folder, 2 - plugger, 3 - "
"trasher, 4 - recent files)."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:3
msgid "Close dialog on focusout."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:4
msgid "Display number of items in the stack."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:5
msgid "File operation to use."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:6
msgid "Hoverbox background color 1."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:7
msgid "Hoverbox background color 2."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:8
msgid "Hoverbox border color."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:9
msgid "Icon to use for empty stack."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:10
msgid "Icon to use for full stack."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:11
msgid "Label background color."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:12
msgid "Label border color."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:13
msgid "Label hover background color."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:14
msgid "Label hover border color."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:15
msgid "Label length."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:16
msgid "Label text color."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:17
msgid "Label text hover color."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:18
msgid "Layout direction."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:19
msgid "Layout interval."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:20
msgid "Layout radius."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:21
msgid "Number of columns to use."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:22
msgid "Number of rows to use."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:23
msgid "Size of the icons inside stack."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:24
msgid "Sort direction of the items."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:25
msgid "Sort folders before files."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:26
msgid "Stack tooltip description."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:27
msgid "Stacks backend file/directory."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:28
msgid "Tooltip background color 1."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:29
msgid "Tooltip background color 2."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:30
msgid "Tooltip border color."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:31
msgid "Tooltip font name."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:32
msgid "Tooltip text color."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:33
msgid "Type of UI used for the stack."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:34
msgid "Use Awn's tooltip font."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:35
msgid "Whether hoverbox contains label."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:36
msgid "Whether to browse stack contents."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:37
msgid ""
"Whether to combine icons of the files inside the stacks with its icon."
msgstr ""

#: ../applets/unmaintained/stacks/awn-applet-stacks.schema-ini.in.h:38
msgid "Whether tooltips are enabled."
msgstr ""