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
|
# control-center for Latvian.
# Copyright (C) YEAR Free Software Foundation, Inc.
# Artis Trops <hornet@navigators.lv>, 2001.
#
msgid ""
msgstr ""
"Project-Id-Version: control-center\n"
"POT-Creation-Date: 2002-02-12 00:27-0600\n"
"PO-Revision-Date: 2001-11-01 17:40+0200\n"
"Last-Translator: Artis Trops <hornet@navigators.lv>\n"
"Language-Team: Latvian <hornet@navigators.lv>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-13\n"
"Content-Transfer-Encoding: 8bit\n"
#: capplets/background/background.desktop.in.h:1
msgid "Background"
msgstr ""
#: capplets/background/background.desktop.in.h:2
msgid "Configuration of the desktop's background"
msgstr ""
#: capplets/background/background-properties-capplet.c:291
#: capplets/common/capplet-util.c:243
#: capplets/default-applications/gnome-default-applications-properties.c:575
#: capplets/keyboard/gnome-keyboard-properties.c:319
#: capplets/mouse/gnome-mouse-properties.c:493
#: capplets/sound/sound-properties-capplet.c:139
msgid "Retrieve and store legacy settings"
msgstr ""
#: capplets/background/background-properties-capplet.c:315
#, fuzzy
msgid "Background properties"
msgstr "Paplašinātās Opcijas"
#: capplets/common/capplet-util.c:239 capplets/common/capplet-util.c:241
msgid "Just apply settings and quit"
msgstr ""
#: capplets/common/gconf-property-editor.c:144
msgid "Key"
msgstr ""
#: capplets/common/gconf-property-editor.c:145
msgid "GConf key to which this property editor is attached"
msgstr ""
#: capplets/common/gconf-property-editor.c:151
msgid "Callback"
msgstr ""
#: capplets/common/gconf-property-editor.c:152
msgid "Issue this callback when the value associated with key gets changed"
msgstr ""
#: capplets/common/gconf-property-editor.c:157
msgid "Change set"
msgstr ""
#: capplets/common/gconf-property-editor.c:158
msgid ""
"GConf change set containing data to be forwarded to the gconf client on apply"
msgstr ""
#: capplets/common/gconf-property-editor.c:163
msgid "Conversion to widget callback"
msgstr ""
#: capplets/common/gconf-property-editor.c:164
msgid ""
"Callback to be issued when data are to be converted from GConf to the widget"
msgstr ""
#: capplets/common/gconf-property-editor.c:169
msgid "Conversion from widget callback"
msgstr ""
#: capplets/common/gconf-property-editor.c:170
msgid ""
"Callback to be issued when data are to be converted to GConf from the widget"
msgstr ""
#: capplets/common/gconf-property-editor.c:175
msgid "UI Control"
msgstr ""
#: capplets/common/gconf-property-editor.c:176
msgid "Object that controls the property (normally a widget)"
msgstr ""
#: capplets/default-applications/default-applications.desktop.in.h:1
msgid "Choose the applications used by default"
msgstr ""
#: capplets/default-applications/default-applications.desktop.in.h:2
msgid "Default Applications"
msgstr ""
#: capplets/desktop-links/Advanced.directory.in.in.h:1
msgid "Advanced"
msgstr ""
#: capplets/desktop-links/Advanced.directory.in.in.h:2
#, fuzzy
msgid "Advanced Settings"
msgstr "Uzstādījumi"
#: capplets/desktop-links/cd.desktop.in.in.h:1
#, fuzzy
msgid "CD Properties"
msgstr "Galvenie Rekvizīti"
#: capplets/desktop-links/cd.desktop.in.in.h:2
#, fuzzy
msgid "Configure handling of CD devices"
msgstr "Ekrāna centrā"
#: capplets/desktop-links/legacy-applications.desktop.in.in.h:1
msgid "Legacy Applications"
msgstr ""
#: capplets/desktop-links/legacy-applications.desktop.in.in.h:2
msgid "Legacy applications settings (grdb)"
msgstr ""
#: capplets/desktop-links/Sawfish/appearance-properties.desktop.in.h:1
msgid "Appearance"
msgstr "Izskats"
#: capplets/desktop-links/Sawfish/appearance-properties.desktop.in.h:2
msgid "Configure window appearance"
msgstr ""
#: capplets/desktop-links/Sawfish/bindings-properties.desktop.in.h:1
msgid "Configure key shortcuts"
msgstr ""
#: capplets/desktop-links/Sawfish/bindings-properties.desktop.in.h:2
#, fuzzy
msgid "Shortcuts"
msgstr "Īss"
#: capplets/desktop-links/Sawfish/focus-properties.desktop.in.h:1
msgid "Configure window focusing"
msgstr ""
#: capplets/desktop-links/Sawfish/focus-properties.desktop.in.h:2
msgid "Focus behavior"
msgstr ""
#: capplets/desktop-links/Sawfish/match-properties.desktop.in.h:1
#, fuzzy
msgid "Configure window properties"
msgstr "Paplašinātās Opcijas"
#: capplets/desktop-links/Sawfish/match-properties.desktop.in.h:2
#, fuzzy
msgid "Matched Windows"
msgstr "Atsevišķi logi"
#: capplets/desktop-links/Sawfish/maximize-properties.desktop.in.h:1
msgid "Configure window minimization and maximization"
msgstr ""
#: capplets/desktop-links/Sawfish/maximize-properties.desktop.in.h:2
msgid "Minimizing and Maximizing"
msgstr ""
#: capplets/desktop-links/Sawfish/meta-properties.desktop.in.h:1
msgid "Configure window manager configuration properties"
msgstr ""
#: capplets/desktop-links/Sawfish/meta-properties.desktop.in.h:2
msgid "Meta"
msgstr ""
#: capplets/desktop-links/Sawfish/misc-properties.desktop.in.h:1
msgid "Configure miscellaneous window features"
msgstr ""
#: capplets/desktop-links/Sawfish/misc-properties.desktop.in.h:2
msgid "Miscellaneous"
msgstr "Dažādi"
#: capplets/desktop-links/Sawfish/move-properties.desktop.in.h:1
msgid "Configure window move/resize"
msgstr ""
#: capplets/desktop-links/Sawfish/move-properties.desktop.in.h:2
msgid "Moving and Resizing"
msgstr ""
#: capplets/desktop-links/Sawfish/placement-properties.desktop.in.h:1
msgid "Configure window placement"
msgstr ""
#: capplets/desktop-links/Sawfish/placement-properties.desktop.in.h:2
#, fuzzy
msgid "Placement"
msgstr "Garums"
#: capplets/desktop-links/Sawfish/Sawfish.directory.in.in.h:1
#, fuzzy
msgid "Control Center Menu"
msgstr "GNOME Vadības Centrs"
#: capplets/desktop-links/Sawfish/Sawfish.directory.in.in.h:2
#, fuzzy
msgid "Sawfish window manager"
msgstr "Rediģēt Logu Pārvaldnieku"
#: capplets/desktop-links/Sawfish/sound-properties.desktop.in.h:1
#, fuzzy
msgid "Enable window manager sound events"
msgstr "Aktivizēt Strāvas Vadību"
#: capplets/desktop-links/Sawfish/sound-properties.desktop.in.h:2
#: capplets/sound/sound.desktop.in.h:2
#, fuzzy
msgid "Sound"
msgstr "Sekundes"
#: capplets/desktop-links/Sawfish/workspace-properties.desktop.in.h:1
msgid "Configure workspaces"
msgstr ""
#: capplets/desktop-links/Sawfish/workspace-properties.desktop.in.h:2
msgid "Workspaces"
msgstr ""
#: capplets/desktop-links/session.desktop.in.in.h:1
msgid "Configure which non-session aware programs are started up"
msgstr ""
#: capplets/desktop-links/session.desktop.in.in.h:2
#, fuzzy
msgid "Startup Programs"
msgstr "Pievienot Sāknēšanas Programmu"
#.
#. * Translatable strings file
#. * Add this file to your project's POTFILES.in.
#. * DO NOT compile it as part of your application.
#.
#: capplets/file-types/category-names.h:7
#, fuzzy
msgid "Documents"
msgstr "Vairāko dokumenti"
#: capplets/file-types/category-names.h:8
msgid "Word Processor"
msgstr ""
#: capplets/file-types/category-names.h:9
msgid "Published Materials"
msgstr ""
#: capplets/file-types/category-names.h:10
#, fuzzy
msgid "Spreadsheet"
msgstr "Izstiepts"
#: capplets/file-types/category-names.h:11
msgid "Presentation"
msgstr ""
#: capplets/file-types/category-names.h:12
msgid "Diagram"
msgstr ""
#: capplets/file-types/category-names.h:13
#, fuzzy
msgid "TeX"
msgstr "hornet"
#: capplets/file-types/category-names.h:14
msgid "Vector Graphics"
msgstr ""
#: capplets/file-types/category-names.h:15
msgid "World Wide Web"
msgstr ""
#: capplets/file-types/category-names.h:16
msgid "Plain Text"
msgstr ""
#: capplets/file-types/category-names.h:17
msgid "Extended Markup Language (XML)"
msgstr ""
#: capplets/file-types/category-names.h:18
#, fuzzy
msgid "Information"
msgstr "Informācija atjaunināta"
#: capplets/file-types/category-names.h:19
msgid "Financial"
msgstr ""
#: capplets/file-types/category-names.h:20
msgid "Calendar"
msgstr ""
#: capplets/file-types/category-names.h:21
msgid "Contacts"
msgstr ""
#: capplets/file-types/category-names.h:22
msgid "Packages"
msgstr ""
#: capplets/file-types/category-names.h:23
msgid "Software Development"
msgstr ""
#: capplets/file-types/category-names.h:24
msgid "Source Code"
msgstr ""
#: capplets/file-types/category-names.h:25
msgid "Audio"
msgstr ""
#: capplets/file-types/category-names.h:26
#, fuzzy
msgid "Images"
msgstr "Liels"
#: capplets/file-types/category-names.h:27
#, fuzzy
msgid "Video"
msgstr "Skatīt"
#: capplets/file-types/file-types-capplet.c:212
msgid "Description"
msgstr "Apraksts"
#: capplets/file-types/file-types-capplet.c:219
msgid "Extensions"
msgstr "Paplašinājumi"
#: capplets/file-types/file-types.desktop.in.h:1
msgid "File Types and Programs"
msgstr ""
#: capplets/file-types/file-types.desktop.in.h:2
msgid "Specify which programs are used to open or view each file type"
msgstr ""
#: capplets/file-types/mime-category-edit-dialog.c:137
msgid "Edit file category"
msgstr ""
#: capplets/file-types/mime-category-edit-dialog.c:171
#: capplets/file-types/mime-edit-dialog.c:204
#: capplets/file-types/service-edit-dialog.c:166
#: capplets/file-types/service-edit-dialog.c:167
#, fuzzy
msgid "Model"
msgstr "Vairāk"
#: capplets/file-types/mime-category-edit-dialog.c:172
msgid "GtkTreeModel that contains the category data"
msgstr ""
#: capplets/file-types/mime-category-edit-dialog.c:177
msgid "MIME category info"
msgstr ""
#: capplets/file-types/mime-category-edit-dialog.c:178
msgid "Structure containing information on the MIME category"
msgstr ""
#: capplets/file-types/mime-category-edit-dialog.c:343
#: capplets/file-types/mime-edit-dialog.c:392
#: capplets/file-types/mime-edit-dialog.c:492
#: capplets/file-types/service-edit-dialog.c:351
#: capplets/file-types/service-edit-dialog.c:397
msgid "Custom"
msgstr "Pēc Izvēles"
#: capplets/file-types/mime-edit-dialog.c:164
#, fuzzy
msgid "Extension"
msgstr "Paplašinājums:"
#: capplets/file-types/mime-edit-dialog.c:167
msgid "Edit file type"
msgstr ""
#: capplets/file-types/mime-edit-dialog.c:205
msgid "Underlying model to notify when Ok is clicked"
msgstr ""
#: capplets/file-types/mime-edit-dialog.c:212
msgid "MIME type information"
msgstr ""
#: capplets/file-types/mime-edit-dialog.c:213
msgid "Structure with data on the MIME type"
msgstr ""
#: capplets/file-types/mime-edit-dialog.c:219
msgid "Is add dialog"
msgstr ""
#: capplets/file-types/mime-edit-dialog.c:220
msgid "True if this dialog is for adding a MIME type"
msgstr ""
#: capplets/file-types/mime-edit-dialog.c:387
#: capplets/file-types/mime-edit-dialog.c:442
#, fuzzy
msgid "None"
msgstr "(nekas)"
#: capplets/file-types/mime-edit-dialog.c:673
msgid ""
"Invalid MIME type. Please enter a valid MIME type, or leave the field blank "
"to have one generated for you."
msgstr ""
#: capplets/file-types/mime-edit-dialog.c:684
msgid "There already exists a MIME type of that name."
msgstr ""
#: capplets/file-types/mime-edit-dialog.c:748
msgid "Category"
msgstr ""
#: capplets/file-types/mime-edit-dialog.c:753
msgid "Choose a file category"
msgstr ""
#: capplets/file-types/mime-types-model.c:167
#: capplets/file-types/mime-types-model.c:168
msgid "Model for categories only"
msgstr ""
#: capplets/file-types/mime-types-model.c:420
#, fuzzy
msgid "Internet Services"
msgstr "Saskrane"
#: capplets/file-types/service-edit-dialog.c:133
msgid "Edit service information"
msgstr ""
#: capplets/file-types/service-edit-dialog.c:174
msgid "Service info"
msgstr ""
#: capplets/file-types/service-edit-dialog.c:175
msgid "Structure containing service information"
msgstr ""
#: capplets/file-types/service-edit-dialog.c:181
msgid "Is add"
msgstr ""
#: capplets/file-types/service-edit-dialog.c:182
msgid "TRUE if this is an add service dialog"
msgstr ""
#: capplets/file-types/service-edit-dialog.c:489
#, fuzzy
msgid "Please enter a protocol name."
msgstr "Lūdzu zemāk ievadi komandrindu"
#: capplets/file-types/service-edit-dialog.c:502
msgid ""
"Invalid protocol name. Please enter a protocol name without any spaces or "
"punctuation."
msgstr ""
#: capplets/file-types/service-edit-dialog.c:515
msgid "There is already a protocol by that name."
msgstr ""
#: capplets/file-types/service-info.c:44
#, fuzzy
msgid "Unknown service types"
msgstr "Nezināms lietotājs"
#: capplets/file-types/service-info.c:45
msgid "World wide web"
msgstr ""
#: capplets/file-types/service-info.c:46
msgid "File transfer protocol"
msgstr ""
#: capplets/file-types/service-info.c:47
#, fuzzy
msgid "Detailed documentation"
msgstr "Palaist Terminālī"
#: capplets/file-types/service-info.c:48
msgid "Manual pages"
msgstr ""
#: capplets/file-types/service-info.c:49
msgid "Electronic mail transmission"
msgstr ""
#: capplets/font/font-properties.desktop.in.h:1
#, fuzzy
msgid "Font"
msgstr "Lietotāja Fonts"
#: capplets/font/font-properties.desktop.in.h:2
msgid "Select which font to use"
msgstr ""
#: capplets/keyboard/gnome-keyboard-properties.c:315
#: capplets/keyboard/gnome-keyboard-properties.c:317
#: capplets/sound/sound-properties-capplet.c:135
#: capplets/sound/sound-properties-capplet.c:137
msgid ""
"Just apply settings and quit (compatibility only; now handled by daemon)"
msgstr ""
#: capplets/keyboard/keyboard.desktop.in.h:1
#, fuzzy
msgid "Keyboard"
msgstr "Klaviatūras Zvans"
#: capplets/keyboard/keyboard.desktop.in.h:2
#, fuzzy
msgid "Keyboard Properties"
msgstr "Galvenie Rekvizīti"
#: capplets/mouse/gnome-mouse-properties.c:518
#: capplets/mouse/mouse.desktop.in.h:2
#, fuzzy
msgid "Mouse Properties"
msgstr "Galvenie Rekvizīti"
#: capplets/mouse/mouse.desktop.in.h:1
#, fuzzy
msgid "Mouse"
msgstr "Moe"
#: capplets/screensaver/screensaver.desktop.in.h:1
#, fuzzy
msgid "Configure the settings of the screensaver"
msgstr "Ekrāna centrā"
#: capplets/screensaver/screensaver.desktop.in.h:2
#, fuzzy
msgid "Screensaver"
msgstr "Nav ekrānglabātāja"
#: capplets/sound/sound.desktop.in.h:1
msgid "Configure GNOME's use of sound"
msgstr ""
#: capplets/sound/sound-properties-capplet.c:167
#, fuzzy
msgid "Sound properties"
msgstr "Paplašinātās Opcijas"
#. just 8 short names that will serve as samples for titles in demo
#: capplets/theme-switcher/control/control.c:19
msgid "Eenie"
msgstr "Eenie"
#: capplets/theme-switcher/control/control.c:19
msgid "Mynie"
msgstr "Mynie"
#: capplets/theme-switcher/control/control.c:19
msgid "Catcha"
msgstr "Catcha"
#: capplets/theme-switcher/control/control.c:19
msgid "By Its"
msgstr "By Its"
#: capplets/theme-switcher/control/control.c:20
msgid "Meenie"
msgstr "Meenie"
#: capplets/theme-switcher/control/control.c:20
#, fuzzy
msgid "Moe"
msgstr "Moe"
#: capplets/theme-switcher/control/control.c:20
msgid "Tiger"
msgstr "Tiger"
#: capplets/theme-switcher/control/control.c:20
#, fuzzy
msgid "Toe"
msgstr "Augšā"
#: capplets/theme-switcher/control/control.c:38
msgid "Selected themes from above will be tested by previewing here."
msgstr "Augstāk izvēlētās tēmas tiks testētas parādot priekšapskati šeit"
#. column one
#: capplets/theme-switcher/control/control.c:43
msgid "Sample Button"
msgstr "Piemēra Poga"
#: capplets/theme-switcher/control/control.c:47
msgid "Sample Check Button"
msgstr "Piemēra Rūtiņu Poga"
#: capplets/theme-switcher/control/control.c:53
msgid "Sample Text Entry Field"
msgstr "Piemēra Teksta Ievades Lauks"
#: capplets/theme-switcher/control/control.c:64
msgid "Submenu"
msgstr "Apakšizvēlne"
#: capplets/theme-switcher/control/control.c:69
msgid "Item 1"
msgstr "Priekšmets 1"
#: capplets/theme-switcher/control/control.c:71
msgid "Another item"
msgstr "Vēlviens priekšmets"
#: capplets/theme-switcher/control/control.c:75
msgid "Radio Button 1"
msgstr "Radio Poga 1"
#: capplets/theme-switcher/control/control.c:81
msgid "Radio Button 2"
msgstr "Radio Poga 2"
#: capplets/theme-switcher/control/control.c:102
msgid "One"
msgstr "Viens"
#: capplets/theme-switcher/control/control.c:108
msgid "Two"
msgstr "Divi"
#: capplets/theme-switcher/gtk-theme-selector.desktop.in.h:1
msgid "Gtk+ Theme Selector"
msgstr ""
#: capplets/theme-switcher/gtk-theme-selector.desktop.in.h:2
msgid "Select which gtk+ theme to use"
msgstr ""
#: capplets/theme-switcher/main.c:217
#, fuzzy
msgid "Select a theme to install"
msgstr "Izvēlies tēmu, kuru "
#: capplets/ui-properties/behavior.desktop.in.h:1
msgid "Sets the default behavior of GNOME applications"
msgstr ""
#: capplets/ui-properties/behavior.desktop.in.h:2
msgid "Toolbars & Menus"
msgstr ""
#: control-center/capplet-dir-view.c:146
msgid "Layout"
msgstr ""
#: control-center/capplet-dir-view.c:147
msgid "Layout to use for this view of the capplets"
msgstr ""
#: control-center/capplet-dir-view.c:153
msgid "Capplet directory object"
msgstr ""
#: control-center/capplet-dir-view.c:154
msgid "Capplet directory that this view is viewing"
msgstr ""
#: control-center/capplet-dir-view.c:308 control-center/gnomecc.desktop.in.h:1
msgid "GNOME Control Center"
msgstr "GNOME Vadības Centrs"
#: control-center/capplet-dir-view.c:311
msgid "Desktop properties manager."
msgstr "Darbvirsmas Rekvizītu Pārvaldnieks"
#: control-center/capplet-dir-view.c:445
#, fuzzy, c-format
msgid "Gnome Control Center : %s"
msgstr "GNOME Vadības Centrs"
#: control-center/capplet-dir-view.c:488
msgid ""
"No help is available/installed. Please make sure you\n"
"have the GNOME User's Guide installed on your system."
msgstr ""
"Palīdzība nav pieejama/uzinstalēta. Lūdzu pārliecinies,\n"
"ka tavā sistēmā ir uzstādīta GNOME Lietotāja Pamācība."
#: control-center/capplet-dir-view.c:491
msgid "Close"
msgstr "Aizvērt"
#: control-center/capplet-dir-view-list.c:325
#, fuzzy, c-format
msgid "GNOME Control Center: %s"
msgstr "GNOME Vadības Centrs"
#: control-center/gnomecc.desktop.in.h:2
msgid "The GNOME configuration tool"
msgstr ""
#: control-center/main.c:44
msgid "Use shell even if nautilus is running."
msgstr ""
#: libbackground/applier.c:239
#, fuzzy
msgid "Type"
msgstr "Mime Tips"
#: libbackground/applier.c:240
msgid ""
"Type of bg_applier: BG_APPLIER_ROOT for root window or BG_APPLIER_PREVIEW "
"for preview"
msgstr ""
#: libbackground/applier.c:399
#, c-format
msgid "Could not load pixbuf \"%s\"; disabling wallpaper."
msgstr "Nevar ielādēt pixbuf \"%s\"; deaktivizē fonu."
#: libbackground/applier.c:522
msgid "Disabled"
msgstr "Deaktivizēts"
#: libsounds/sound-view.c:99
msgid "The sound file for this event does not exist."
msgstr ""
#: libsounds/sound-view.c:101
msgid ""
"The sound file for this event does not exist.\n"
"You may want to install the gnome-audio package\n"
"for a set of default sounds."
msgstr ""
#: libsounds/sound-view.c:154
msgid "Event"
msgstr "Notikums"
#: libsounds/sound-view.c:154
msgid "File to Play"
msgstr "Fails, kuru Atskaņot"
#: libsounds/sound-view.c:187
msgid "Play"
msgstr "Atskaņot"
#: libsounds/sound-view.c:193
#, fuzzy
msgid "Select sound file"
msgstr "Izvēlies failu..."
#, fuzzy
#~ msgid "Main"
#~ msgstr "Daudzi"
#, fuzzy
#~ msgid "Main Settings"
#~ msgstr "Uzstādījumi"
#, fuzzy
#~ msgid "Initialize session settings"
#~ msgstr "Saglabāju sesijas detaļas."
#, fuzzy
#~ msgid "Global panel properties"
#~ msgstr "Galvenie Rekvizīti"
#, fuzzy
#~ msgid "Panel"
#~ msgstr "Atcelt"
#, fuzzy
#~ msgid "Default location"
#~ msgstr "Palaist Terminālī"
#, fuzzy
#~ msgid "Full containment"
#~ msgstr "Vertikāla Novirze"
#, fuzzy
#~ msgid "Partial containment"
#~ msgstr "Vertikāla Novirze"
#~ msgid "Wallpaper Selection"
#~ msgstr "Fona attēla Izvēle"
#~ msgid "Can't find an hbox, using a normal file selection"
#~ msgstr "Nevar atrast hbox, lietoju normālu failu atlasīšanu"
#~ msgid "Preview"
#~ msgstr "Apskate"
#, fuzzy
#~ msgid "Gnome Default Editor"
#~ msgstr "Gnome redaktors"
#, fuzzy
#~ msgid "Select an Editor"
#~ msgstr "Izvēlies Ikonu..."
#, fuzzy
#~ msgid "Custom Editor"
#~ msgstr "Gnome redaktors"
#, fuzzy
#~ msgid "Start in Terminal"
#~ msgstr "Palaist Terminālī"
#~ msgid "Command:"
#~ msgstr "Komanda:"
#, fuzzy
#~ msgid "Please enter the command line used to start this editor"
#~ msgstr "Lūdzu zemāk ievadi komandrindu"
#, fuzzy
#~ msgid "Text Editor"
#~ msgstr "Gnome redaktors"
#, fuzzy
#~ msgid "Select a Web Browser"
#~ msgstr "Palīdzības pārlūks"
#, fuzzy
#~ msgid "Please enter the command line used to start this web browser"
#~ msgstr "Lūdzu zemāk ievadi komandrindu"
#, fuzzy
#~ msgid "Web Browser"
#~ msgstr "Palīdzības pārlūks"
#, fuzzy
#~ msgid "Select a Viewer"
#~ msgstr "Izvēlies failu..."
#, fuzzy
#~ msgid "Please enter the command line used to start this help viewer"
#~ msgstr "Lūdzu zemāk ievadi komandrindu"
#, fuzzy
#~ msgid "Help Viewer"
#~ msgstr "Palīdzības pārlūks"
#, fuzzy
#~ msgid "Default Terminal"
#~ msgstr "Palaist Terminālī"
#, fuzzy
#~ msgid "Custom Terminal"
#~ msgstr "Palaist Terminālī"
#, fuzzy
#~ msgid "Please enter the command line used to start this terminal"
#~ msgstr "Lūdzu zemāk ievadi komandrindu"
#, fuzzy
#~ msgid "Terminal"
#~ msgstr "Palaist Terminālī"
#, fuzzy
#~ msgid "30 minutes ago"
#~ msgstr "minūtēm"
#, fuzzy
#~ msgid "10 minutes ago"
#~ msgstr "minūtēm"
#, fuzzy
#~ msgid "5 minutes ago"
#~ msgstr "minūtēm"
#, fuzzy
#~ msgid "1 minute ago"
#~ msgstr "minūtēm"
#, fuzzy
#~ msgid "Current time"
#~ msgstr "Centrēt attēlu"
#~ msgid "Custom screensaver. No description available"
#~ msgstr "Ekrāna saudzētājs pēc izvēles. Nekāds apraksts nav pieejams"
#~ msgid "Name:"
#~ msgstr "Nosaukums:"
#~ msgid "Settings"
#~ msgstr "Uzstādījumi"
#~ msgid "label1"
#~ msgstr "atzīme1"
#~ msgid "Demo"
#~ msgstr "Demonstrācija"
#~ msgid ""
#~ "Cannot find the data to configure this screensaver. Please edit the "
#~ "command line below."
#~ msgstr ""
#~ "Nevar atrast datus, lai konfigurētu šo ekrānglabātāju. Lūdzu rediģē "
#~ "zemākesošo komandrindu."
#~ msgid "Visual:"
#~ msgstr "Vizuāls:"
#~ msgid "Any"
#~ msgstr "Jebkurš"
#~ msgid "Fast"
#~ msgstr "Ātrs"
#~ msgid "High"
#~ msgstr "Augsts"
#~ msgid "Large"
#~ msgstr "Liels"
#~ msgid "Low"
#~ msgstr "Zems"
#~ msgid "Size:"
#~ msgstr "Lielums:"
#~ msgid "Slow"
#~ msgstr "Lēns"
#~ msgid "Small"
#~ msgstr "Mazs"
#~ msgid "Twist speed:"
#~ msgstr "Grozīšanās ātrums:"
#~ msgid "Twist:"
#~ msgstr "Grozīšanās:"
#~ msgid "Wobble:"
#~ msgstr "Grīļošanās:"
#, fuzzy
#~ msgid "Ant"
#~ msgstr "Jebkurš"
#~ msgid "Four Sided cells"
#~ msgstr "Četrstūrainas šūnas"
#~ msgid "Full Color"
#~ msgstr "Pilnkrāsas"
#~ msgid "Many"
#~ msgstr "Daudzi"
#~ msgid "Monochrome"
#~ msgstr "Melnbalts"
#~ msgid "Nine Sided cells"
#~ msgstr "Devņstūrainas šūnas"
#~ msgid "Number of colours"
#~ msgstr "Krāsu skaits"
#~ msgid "Random"
#~ msgstr "Gadījuma izvēles"
#~ msgid "Random size upto"
#~ msgstr "Gadījumizmēra līdz"
#~ msgid "Randomize"
#~ msgstr "Pēc gadījumizvēles"
#~ msgid "Sharp turns"
#~ msgstr "Asi pagriezieni"
#~ msgid "Six Sided cells"
#~ msgstr "Sešstūrainas šūnas"
#~ msgid "Specific"
#~ msgstr "Specifisks"
#~ msgid "Specific size of"
#~ msgstr "Precīzs izmērs"
#~ msgid "Speed"
#~ msgstr "Ātrums"
#~ msgid "Three Sided cells"
#~ msgstr "Trīsstūrainas šūnas"
#~ msgid "Timeout"
#~ msgstr "Taimauts"
#~ msgid "Truchet lines"
#~ msgstr "Pārtrauktas līnijas"
#~ msgid "Twelve Sided cells"
#~ msgstr "Divpadsmitstūrainas šūnas"
#~ msgid "number of Ants"
#~ msgstr "Skudru daudzums"
#, fuzzy
#~ msgid "Attraction (balls)"
#~ msgstr "Ilgums (ms)"
#~ msgid "Balls"
#~ msgstr "Bumbas"
#~ msgid "Color Contrast"
#~ msgstr "Krāsu Kontrasts"
#~ msgid "Length of Trail"
#~ msgstr "Pēdu Garums"
#~ msgid "Lines"
#~ msgstr "Līnijas"
#~ msgid "Long"
#~ msgstr "Garš"
#~ msgid "Number of Colors"
#~ msgstr "Krāsu Skaits"
#~ msgid "Polygons"
#~ msgstr "Poligoni"
#~ msgid "Splines"
#~ msgstr "Splīnes"
#~ msgid "Tails"
#~ msgstr "Astes"
#~ msgid "Threshold of repulsion"
#~ msgstr "Atsišanās robeža"
#, fuzzy
#~ msgid "Blaster"
#~ msgstr "Ātrāk"
#~ msgid "Display screensaver in monochrome."
#~ msgstr "Parādīt ekrānsaudzētāju melnbaltā režīmā."
#~ msgid "Faster"
#~ msgstr "Ātrāk"
#~ msgid "Slower"
#~ msgstr "Lēnāk"
#~ msgid "Speed of rotation."
#~ msgstr "Rotācijas ātrums"
#~ msgid "Speed of the 90 degree rotation."
#~ msgstr "90 grādu rotācijas ātrums."
#~ msgid "Colors:"
#~ msgstr "Krāsas"
#~ msgid "Count:"
#~ msgstr "Skaits:"
#~ msgid "Number of Colors."
#~ msgstr "Krāsu Skaits"
#~ msgid "Number of bubbles to use."
#~ msgstr "Lietojamo burbuļu skaits"
#~ msgid "Speed of Motion."
#~ msgstr "Kustības Ātrums"
#~ msgid "Use red/blue 3d seperation."
#~ msgstr "Lietot sarkano/zilo 3d atdalīšanu."
#, fuzzy
#~ msgid "Braid"
#~ msgstr "Pamata"
#~ msgid "Bubbles exist in three dimensions."
#~ msgstr "Burbuļiem ir trīs dimensijas."
#~ msgid "Don't hide bubbles when they pop."
#~ msgstr "Nepaslēpt burbuļus, kad tie parādās."
#~ msgid "Draw circles instead of pixmap bubbles."
#~ msgstr "Zīmēt apļus nevis burbuļus."
#~ msgid "Don't use double bufferinge"
#~ msgstr "Nelietot dubultbuferi"
#~ msgid "Use double buffering"
#~ msgstr "Lietot dubultbuferi"
#, fuzzy
#~ msgid "Coral"
#~ msgstr "Normāls"
#~ msgid "Denser"
#~ msgstr "Blīvāk"
#~ msgid "Density"
#~ msgstr "Blīvums"
#~ msgid "Number of seeds"
#~ msgstr "Sēklu skaits"
#~ msgid "Seeds"
#~ msgstr "Sēklas"
#~ msgid "Thinner"
#~ msgstr "Retāk"
#, fuzzy
#~ msgid "Cosmos"
#~ msgstr "Krāsas"
#~ msgid "Cell"
#~ msgstr "Šūna"
#~ msgid "Center image."
#~ msgstr "Centrēt attēlu"
#~ msgid "Have at maximum size"
#~ msgstr "Lietot maksimālu izmēru"
#~ msgid "Number of polygons to use."
#~ msgstr "Lietojamo poligonu daudzums"
#, fuzzy
#~ msgid "Cynosure"
#~ msgstr "Aizvērt"
#~ msgid "Less"
#~ msgstr "Mazāk"
#~ msgid "Number of iterations."
#~ msgstr "Atkārtojumu skaits."
#~ msgid "Cycle through colors."
#~ msgstr "Ciklēt cauri krāsām"
#, fuzzy
#~ msgid "Deco"
#~ msgstr "Demonstrācija"
#~ msgid "Time between redraws:"
#~ msgstr "Laiks starp pārzīmēšanām:"
#~ msgid "Use color when drawing."
#~ msgstr "Lietot krāsu, kad zīmē."
#~ msgid "seconds"
#~ msgstr "sekundes"
#, fuzzy
#~ msgid "Deluxe"
#~ msgstr "Dzēst"
#, fuzzy
#~ msgid "Demon"
#~ msgstr "Demonstrācija"
#, fuzzy
#~ msgid "Discrete"
#~ msgstr "Nošķirtas Līnijas"
#~ msgid "Number to use."
#~ msgstr "Numurs, kuru lietot"
#~ msgid "Fractals should grow."
#~ msgstr "Fraktāliem jāpieaug."
#~ msgid "Number of pixels to use."
#~ msgstr "Lietojamo pikseļu skaits."
#~ msgid "Use lissajous figures to get points."
#~ msgstr "Lietot lisējošas figūras, lai iegūtu punktus."
#~ msgid "Seconds"
#~ msgstr "Sekundes"
#~ msgid "Time finished product is shown."
#~ msgstr "Laiks, kurā pabeigtais produkts tiek rādīts."
#, fuzzy
#~ msgid "Extrusion"
#~ msgstr "Paplašinājums"
#~ msgid "Number"
#~ msgstr "Numurs"
#~ msgid "Number of cycles"
#~ msgstr "Ciklu skaits"
#~ msgid "Speed of Motion"
#~ msgstr "Kustības Ātrums"
#~ msgid "Bitmap for flag"
#~ msgstr "Karoga attēls"
#~ msgid "Random size up to"
#~ msgstr "Gadījuma izmērs līdz"
#~ msgid "Text for flag"
#~ msgstr "Karoga teksts"
#, fuzzy
#~ msgid "Flame"
#~ msgstr "Fails"
#~ msgid "Iterations:"
#~ msgstr "Atkārtošanās:"
#~ msgid "Number of fractals to generate."
#~ msgstr "Ģenerējamo fraktālu skaits."
#~ msgid "Pixels per fractal."
#~ msgstr "Pikseļi uz fraktālu."
#, fuzzy
#~ msgid "Flow"
#~ msgstr "Lēns"
#~ msgid "Delay between redraws."
#~ msgstr "Aizture starp pārzīmēšanām."
#, fuzzy
#~ msgid "Forest"
#~ msgstr "Vairāk"
#~ msgid "Number of trees to use."
#~ msgstr "Koku skaits, kurus lietot."
#, fuzzy
#~ msgid "Galaxy"
#~ msgstr "Atskaņot"
#, fuzzy
#~ msgid "GLText"
#~ msgstr "Pa Kreisi"
#~ msgid "Have transparent bubbles."
#~ msgstr "Burbuļiem būt caurspīdīgiem."
#~ msgid "Use additive color model."
#~ msgstr "Lietot pievienoto krāsu modeli."
#~ msgid "Number of planets to use."
#~ msgstr "Lietojamo planētu daudzums."
#~ msgid "Objects should leave trails behind them."
#~ msgstr "Objektiem aiz sevis ir jāatstāj pēdas."
#~ msgid "Orbit should decay."
#~ msgstr "Orbītai jāsagrūst."
#~ msgid "Animate circles."
#~ msgstr "Animēt apļus."
#~ msgid "Cycle through colormap."
#~ msgstr "Ciklēt cauri krāsu kartei."
#~ msgid "Number of circles to use."
#~ msgstr "Lietojamo apļu daudzums."
#~ msgid "Use a gradient of colors between circles."
#~ msgstr "Lietot krāsu nobīdes starp riņķiem."
#~ msgid "Time between redraws."
#~ msgstr "Laiks starp pārzīmēšanām."
#~ msgid "Number of pixels before a color change."
#~ msgstr "Pikseļu skaits pirms krāsa mainās."
#~ msgid "Closer"
#~ msgstr "Tuvāk"
#~ msgid "Distance from center of cube"
#~ msgstr "Distance no kuba centra"
#~ msgid "Farther"
#~ msgstr "Tālāk"
#~ msgid "Number of segments."
#~ msgstr "Segmentu daudzums."
#~ msgid "Number of trails."
#~ msgstr "Pēdu daudzums."
#~ msgid "Segments"
#~ msgstr "Segmenti"
#~ msgid "Duration of laser burst."
#~ msgstr "Lāzera uzliesmojuma ilgums."
#, fuzzy
#~ msgid "Laser"
#~ msgstr "Ātrāk"
#~ msgid "Longer"
#~ msgstr "Garāk"
#~ msgid "Segments:"
#~ msgstr "Segmenti:"
#~ msgid "Shorter"
#~ msgstr "Īsāk"
#~ msgid "Size of burst."
#~ msgstr "Uzliesmojuma ilgums."
#~ msgid "Larger"
#~ msgstr "Lielāks"
#, fuzzy
#~ msgid "Lisa"
#~ msgstr "Līnijas"
#~ msgid "Size of object."
#~ msgstr "Objekta izmērs."
#~ msgid "Smaller"
#~ msgstr "Mazāks"
#, fuzzy
#~ msgid "Lissie"
#~ msgstr "Mazāk"
#, fuzzy
#~ msgid "LMorph"
#~ msgstr "Vairāk"
#~ msgid "Number of interpolation steps."
#~ msgstr "Interpolācijas soļu skaits."
#~ msgid "Number of points."
#~ msgstr "Punktu skaits."
#~ msgid "Open figures."
#~ msgstr "Atvērt figūras."
#~ msgid "Points:"
#~ msgstr "Punkti:"
#~ msgid "Delay between drawing the maze and starting the solution."
#~ msgstr "Aizture pirms labirinta zīmēšanas un atrisinājuma sākšanas."
#~ msgid "Delay between each step in the maze."
#~ msgstr "Aizture starp katru soli labirintā."
#~ msgid "Delay between finishing the maze and starting a new one."
#~ msgstr "Aizture starp labirinta pabeigšanu un jauna sākšanu."
#~ msgid "Less Delay"
#~ msgstr "Mazāka Aizture"
#~ msgid "More Delay"
#~ msgstr "Lielāka Aizture"
#~ msgid "Put a bridge over the logo?"
#~ msgstr "Novietot tiltu pāri logo?"
#, fuzzy
#~ msgid "Moebius"
#~ msgstr "Izvēlnes"
#~ msgid "Maximum radius increment"
#~ msgstr "Maksimālais rādiusa pieaugums"
#, fuzzy
#~ msgid "Moire"
#~ msgstr "Vairāk"
#, fuzzy
#~ msgid "Moire2"
#~ msgstr "Vairāk"
#, fuzzy
#~ msgid "Mountain"
#~ msgstr "Peles kustība"
#~ msgid "Draw square at weird starting points."
#~ msgstr "Zīmēt kvadrātu dažādos sākumpunktos."
#~ msgid "Use XOR drawing function."
#~ msgstr "Lietot XOR zīmēšanas funkciju."
#~ msgid "Maximum number of lines."
#~ msgstr "Maksimālais līniju skaits"
#~ msgid "Time to fade away."
#~ msgstr "Laiks pirms izgaist."
#~ msgid "Time to show each picture."
#~ msgstr "Laiks, kurā parādīt katru bildi."
#, fuzzy
#~ msgid "Penetrate"
#~ msgstr "Vispārīgi"
#, fuzzy
#~ msgid "Penrose"
#~ msgstr "Blīvāk"
#, fuzzy
#~ msgid "Pipes"
#~ msgstr "Līnijas"
#, fuzzy
#~ msgid "Pulsar"
#~ msgstr "Atskaņot"
#~ msgid "Frequency of missile launch"
#~ msgstr "Raķetes palaišanas frekvence"
#~ msgid "Number of particles"
#~ msgstr "Daļiņu skaits"
#~ msgid "Particles on screen"
#~ msgstr "Daļiņas uz ekrāna"
#~ msgid "Color contrast"
#~ msgstr "Krāsu kontrasts"
#~ msgid "Discrete Lines"
#~ msgstr "Nošķirtas Līnijas"
#~ msgid "Length"
#~ msgstr "Garums"
#~ msgid "Narrow"
#~ msgstr "Šaurs"
#~ msgid "Number of points:"
#~ msgstr "Punktu skaits:"
#~ msgid "Number of trails:"
#~ msgstr "Pēdu skaits:"
#~ msgid "Solid Trails"
#~ msgstr "Viendabīgas Pēdas"
#~ msgid "Spread between lines"
#~ msgstr "Izplatīties starp līnijām"
#~ msgid "Trails attract each other"
#~ msgstr "Pēdas pievelk viena otru"
#~ msgid "Transparent Trails"
#~ msgstr "Caurspīdīgas Pēdas"
#~ msgid "Wide"
#~ msgstr "Plats"
#~ msgid "Width"
#~ msgstr "Platums"
#~ msgid "XOR Trails"
#~ msgstr "XOR Pēdas"
#~ msgid "Delay before next redraw"
#~ msgstr "Aizture pirms nākamās pārzīmēšanas"
#~ msgid "Number of Iterations"
#~ msgstr "Atkārtojumu Skaits."
#~ msgid "Offset"
#~ msgstr "Nobīde"
#~ msgid "Speed to clear the screen"
#~ msgstr "Ātrums, kādā attīrīt ekrānu"
#~ msgid "With X-axis Symmetry"
#~ msgstr "Ar X Ass Simetriju"
#~ msgid "With Y-axis Symmetry"
#~ msgstr "Ar Y Ass Simetriju"
#, fuzzy
#~ msgid "Slip"
#~ msgstr "Tievs"
#, fuzzy
#~ msgid "Sonar"
#~ msgstr "Īss"
#, fuzzy
#~ msgid "SpeedMine"
#~ msgstr "Ātrums"
#, fuzzy
#~ msgid "Sphere"
#~ msgstr "Ātrums"
#, fuzzy
#~ msgid "Sproingies"
#~ msgstr "Splīnes"
#~ msgid "Change to display in monochrome."
#~ msgstr "Pāriet uz melnbalto ekrānu."
#~ msgid "Duration of current shape."
#~ msgstr "Pašreizējās formas ilgums."
#~ msgid "Quickness of rotation at each step (0 = Random)"
#~ msgstr "Rotācijas ātrums katrā solī (0 = Gadījumizvēles)"
#~ msgid "Slim"
#~ msgstr "Tievs"
#~ msgid "Speed of animation."
#~ msgstr "Animācijas ātrums"
#, fuzzy
#~ msgid "Starfish"
#~ msgstr "Startēju"
#~ msgid "Thickness of color bands (0 = Random)"
#~ msgstr "Krāsu joslu biezums (0 = Gadījumizvēles)"
#~ msgid "Use raw shapes "
#~ msgstr "Lietot cietas formas "
#, fuzzy
#~ msgid "Strange"
#~ msgstr "Startēju"
#, fuzzy
#~ msgid "Triangle"
#~ msgstr "Dakstiņklājumā"
#, fuzzy
#~ msgid "Truchet"
#~ msgstr "Pārtrauktas līnijas"
#, fuzzy
#~ msgid "Vines"
#~ msgstr "Līnijas"
#, fuzzy
#~ msgid "Wander"
#~ msgstr "apstrādātājs:"
#, fuzzy
#~ msgid "Worm"
#~ msgstr "Normāls"
#, fuzzy
#~ msgid "Xearth"
#~ msgstr "Tālāk"
#, fuzzy
#~ msgid "Xroger"
#~ msgstr "Lielāks"
#~ msgid "Add a new screensaver"
#~ msgstr "Pievienot jaunu ekrānglabātāju"
#~ msgid "Select the screensaver to run from the list below:"
#~ msgstr "Izvēlies ekrānglabātāju, kuru palaist no zemākesošā saraksta"
#~ msgid "New screensaver"
#~ msgstr "Nav ekrānglabātāja"
#, fuzzy
#~ msgid "GNOME Control Center:"
#~ msgstr "GNOME Vadības Centrs"
#~ msgid "Pipe error.\n"
#~ msgstr "Pipe kļūda.\n"
#~ msgid "Cannot fork().\n"
#~ msgstr "Nevar sazarot().\n"
#~ msgid "dup2() error.\n"
#~ msgstr "dup2() kļūda.\n"
#~ msgid "execl() error, errno=%d\n"
#~ msgstr "execl() kļūda, kļūdnr=%d\n"
#~ msgid ""
#~ "The password you typed is invalid.\n"
#~ "Please try again."
#~ msgstr ""
#~ "Parole, kuru tu ievadīji, ir nepareiza.\n"
#~ "Lūdzu mēģini vēlreiz."
#~ msgid ""
#~ "One or more of the changed fields is invalid.\n"
#~ "This is probably due to either colons or commas in one of the fields.\n"
#~ "Please remove those and try again."
#~ msgstr ""
#~ "Viens vai vairāki izmainītie lauki ir nepareizi.\n"
#~ "Tas iespējams ir tādēļ, ka laukos ir vai nu koli cai komati.\n"
#~ "Lūdzu izņem tos un mēģini vēlreiz."
#~ msgid "Password resetting error."
#~ msgstr "Paroles pārstādīšanas kļūda."
#~ msgid ""
#~ "Some systems files are locked.\n"
#~ "Please try again in a few moments."
#~ msgstr ""
#~ "Daži no sistēmas failiem ir noslēgti.\n"
#~ "Lūdzu mēģini vēlāk vēlreiz."
#~ msgid "Insufficient rights."
#~ msgstr "Nepietiekamas tiesības"
#~ msgid "Invalid call to sub process."
#~ msgstr "Nepareizs zemprocesa signāls."
#~ msgid ""
#~ "Your current shell is not listed in /etc/shells.\n"
#~ "You are not allowed to change your shell.\n"
#~ "Consult your system administrator."
#~ msgstr ""
#~ "Tava pašreizējā čaula nav /etc/shells sarakstā.\n"
#~ "Tev nav ļauts mainīt čaulu.\n"
#~ "Konsultējies ar savu sistēmadministrātoru."
#~ msgid "Out of memory."
#~ msgstr "Nav vairs atmiņas."
#~ msgid "The exec() call failed."
#~ msgstr "exec() signāls neizdevās."
#~ msgid "Failed to find selected program."
#~ msgstr "Nevarēja atrast izvēlēto programmu."
#~ msgid "Unknown error."
#~ msgstr "Nepazīstama kļūda."
#~ msgid "Unknown exit code."
#~ msgstr "Nezināms izejas kods."
#~ msgid "Input"
#~ msgstr "Ievade"
#~ msgid "Need %d responses.\n"
#~ msgstr "Vajag %d atbildes.\n"
#~ msgid ""
#~ "In order to make changes to your system, you\n"
#~ "must enter the administrator (root) password."
#~ msgstr ""
#~ "Lai izdarītu izmaiņas savā sistēmā, jums\n"
#~ "jāievada administrātora (root) parole."
#~ msgid "Error"
#~ msgstr "Kļūda"
#~ msgid "You want %d response(s) from %d entry fields!?!?!\n"
#~ msgstr "Tu gribi %d atbildi(es) no %d ieraksta laukiem!?!?!\n"
#~ msgid "Run Unprivileged"
#~ msgstr "Palaist Bez Privilēģijām"
#~ msgid "Got error %d.\n"
#~ msgstr "Saņēmām kļūdu %d.\n"
#~ msgid "Password for %s"
#~ msgstr "Parole priekš %s"
#~ msgid "Consistency checking is not turned on."
#~ msgstr "Konsekvences pārbaudīšana nav ieslēgta."
#~ msgid "Block is fine."
#~ msgstr "Blokam nav ne vainas."
#~ msgid "Block freed twice."
#~ msgstr "Bloks atbrīvots divreiz."
#~ msgid "Memory before the block was clobbered."
#~ msgstr "Atmiņa pirms bloks tika sakauts."
#~ msgid "Memory after the block was clobbered."
#~ msgstr "Atmiņa pēc bloks tika sakauts."
#~ msgid "userhelper must be setuid root\n"
#~ msgstr "userhelper vajag būt setuid root\n"
#~ msgid "Usage: root-helper fd\n"
#~ msgstr "Lietošana: root-helper fd\n"
#~ msgid "PAM returned = %d\n"
#~ msgstr "PAM paziņoja = %d\n"
#~ msgid "about to authenticate \"%s\"\n"
#~ msgstr "autentificēju \"%s\"\n"
#~ msgid "about to exec \"%s\"\n"
#~ msgstr "palaižu \"%s\"\n"
#~ msgid "Enable sound server startup"
#~ msgstr "Aktivizēt skaņas servera sāknēšanos"
#~ msgid "General"
#~ msgstr "Vispārīgi"
#~ msgid "Sound Events"
#~ msgstr "Skaņu Notikumi"
#~ msgid "Sounds for events"
#~ msgstr "Skaņas notikumiem"
#~ msgid ""
#~ "No help is available/installed for these settings. Please make sure you\n"
#~ "have the GNOME User's Guide installed on your system."
#~ msgstr ""
#~ "Palīdzība nav pieejama/instalēta šiem uzstādījumiem. Lūdzu pārliecinies, "
#~ "ka tev sistēmā ir instalēta GNOME Lietotāja Pamācība."
#~ msgid "Mime Type: "
#~ msgstr "Mime Tips:"
#~ msgid "Add"
#~ msgstr "Pievienot"
#~ msgid "Remove"
#~ msgstr "Izņemt"
#~ msgid "First Regular Expression: "
#~ msgstr "Pirmā Regulārā Izteiksme:"
#~ msgid "Second Regular Expression: "
#~ msgstr "Otrā Regulārā Izteiksme:"
#~ msgid "Mime Type Actions"
#~ msgstr "Mime Tipu Darbības"
#~ msgid "Example: emacs %f"
#~ msgstr "Piemērs: emacs %f"
#~ msgid "Open"
#~ msgstr "Atvērt"
#~ msgid "Edit"
#~ msgstr "Rediģēt"
#~ msgid "Set actions for %s"
#~ msgstr "Uzstādīt darbību priekš %s"
#~ msgid "You must enter a mime-type"
#~ msgstr "Tev jāievada mime-tips"
#~ msgid ""
#~ "You must add either a regular-expression or\n"
#~ "a file-name extension"
#~ msgstr ""
#~ "Tev ir jāpievieno vai nu regulāra izteiksme\n"
#~ "vai arī faila vārda paplašīnājums"
#~ msgid ""
#~ "Please put your mime-type in the format:\n"
#~ "CATEGORY/TYPE\n"
#~ "\n"
#~ "For Example:\n"
#~ "image/png"
#~ msgstr ""
#~ "Lūdzu veido savu mime-tipu pēc formāta:\n"
#~ "KATEGORIJA/TIPS\n"
#~ "\n"
#~ "Piemēram:\n"
#~ "attēls/png"
#~ msgid "This mime-type already exists"
#~ msgstr "Šis mime-tips jau eksistē"
#~ msgid ""
#~ "We are unable to create the directory\n"
#~ "~/.gnome/mime-info\n"
#~ "\n"
#~ "We will not be able to save the state."
#~ msgstr ""
#~ "Mēs nevarējām izveidot direktoriju\n"
#~ "~/.gnome/mime-info\n"
#~ "\n"
#~ "Mēs nebūsim spējīgi noglabāt esošo stāvokli."
#~ msgid ""
#~ "We are unable to access the directory\n"
#~ "~/.gnome/mime-info\n"
#~ "\n"
#~ "We will not be able to save the state."
#~ msgstr ""
#~ "Mēs nevarējām tikt klāt direktorijai\n"
#~ "~/.gnome/mime-info\n"
#~ "\n"
#~ "Mēs nebūsim spējīgi noglabāt esošo stāvokli."
#~ msgid ""
#~ "Cannot create the file\n"
#~ "~/.gnome/mime-info/user.mime\n"
#~ "\n"
#~ "We will not be able to save the state"
#~ msgstr ""
#~ "Nevar izveidot failu\n"
#~ "~/.gnome/mime-info/user.mime\n"
#~ "\n"
#~ "Mēs nevarēsim noglabāt stāvokli"
#~ msgid ""
#~ "We are unable to create the directory\n"
#~ "~/.gnome/mime-info.\n"
#~ "\n"
#~ "We will not be able to save the state."
#~ msgstr ""
#~ "Mēs nevarēj;am izveidot direktoriju\n"
#~ "~/.gnome/mime-info.\n"
#~ "\n"
#~ "Mēs nevarēsim noglabāt stāvokli."
#~ msgid ""
#~ "We are unable to access the directory\n"
#~ "~/.gnome/mime-info.\n"
#~ "\n"
#~ "We will not be able to save the state."
#~ msgstr ""
#~ "Mēs nevaram piekļūt direktorijai\n"
#~ "~/.gnome/mime-info.\n"
#~ "\n"
#~ "Mēs nevarēsim noglabāt stāvokli."
#~ msgid ""
#~ "Cannot create the file\n"
#~ "~/.gnome/mime-info/user.keys.\n"
#~ "\n"
#~ "We will not be able to save the state"
#~ msgstr ""
#~ "Nevar izveidot failu\n"
#~ "~/.gnome/mime-info/user.keys.\n"
#~ "\n"
#~ "Mēs nevarēsim noglabāt stāvokli"
#~ msgid "Add..."
#~ msgstr "Pievienot..."
#~ msgid "Edit..."
#~ msgstr "Rediģēt..."
#~ msgid "Add Mime Type"
#~ msgstr "Pievienot Mime Tipu"
#~ msgid ""
#~ "Add a new Mime Type\n"
#~ "For example: image/tiff; text/x-scheme"
#~ msgstr ""
#~ "Pievieno jaunu Mime Tipu\n"
#~ "Piemēram: image/tiff; text/x-scheme"
#~ msgid "Mime Type:"
#~ msgstr "Mime Tips:"
#~ msgid ""
#~ "Type in the extensions for this mime-type.\n"
#~ "For example: .html, .htm"
#~ msgstr ""
#~ "Ieraksti paplašinājumu šim mime-tipam.\n"
#~ "Piemēram: .html, .htm"
#~ msgid "Regular Expressions"
#~ msgstr "Regulāras Izteiksmes"
#~ msgid ""
#~ "You can set up two regular expressions here to identify the Mime Type\n"
#~ "by. These fields are optional."
#~ msgstr ""
#~ "Tu vari šeit uzstādīt divas regulāras izteiksmes, pēc kurām identificēt "
#~ "Mime Tipu\n"
#~ ". Šie lauki ir pēc izvēles."
#~ msgid "window2"
#~ msgstr "logs2"
#~ msgid "Use GNOME for setting background"
#~ msgstr "Lietot GNOME lai uzstādītu fonu"
#~ msgid "Effect"
#~ msgstr "Efekts"
#~ msgid "Primary color"
#~ msgstr "Primārā krāsa"
#~ msgid "Right or bottom color"
#~ msgstr "Pa labi vai apakšas krāsa"
#~ msgid "Pick a color"
#~ msgstr "Izvēlies krāsu"
#~ msgid "Solid Color"
#~ msgstr "Viendabīga Krāsa"
#~ msgid "Horizontal Gradient"
#~ msgstr "Horizontāla Novirze"
#~ msgid "Apply changes automatically"
#~ msgstr "Pielietot izmaiņas automātiski"
#~ msgid "Wallpaper"
#~ msgstr "Fona attēls"
#~ msgid "Display Style"
#~ msgstr "Displeja Stils"
#~ msgid "Centered"
#~ msgstr "Centrēts"
#~ msgid "Scaled (keep aspect ratio)"
#~ msgstr "Mērogots (paturēt izskata proporcijas)"
#~ msgid "Stretched (change aspect ratio)"
#~ msgstr "Izstiepts (izmainīt izskata proporcijas)"
#~ msgid "Browse..."
#~ msgstr "Lūkoties..."
#~ msgid "Adjust wallpaper's transparency"
#~ msgstr "Pieregulēt fona attēla caurspīdīgumu"
#~ msgid "More Transparent"
#~ msgstr "Vairāk caurspīdīgs"
#~ msgid "More Solid"
#~ msgstr "Vēl Viendabīgāks"
#~ msgid "Volume"
#~ msgstr "Skaļums"
#~ msgid "Pitch (Hz)"
#~ msgstr "Pīkstiens (Hz)"
#~ msgid "Test"
#~ msgstr "Testēt"
#~ msgid "window1"
#~ msgstr "logs1"
#~ msgid "Enable Keyboard Repeat"
#~ msgstr "Aktivizēt Tastatūras Atkārtošanos"
#~ msgid "Delay Until Repeat"
#~ msgstr "Aizture Pirms Atkārtošanās"
#~ msgid "....a"
#~ msgstr "....a"
#~ msgid "...a"
#~ msgstr "...a"
#~ msgid "..a"
#~ msgstr "..a"
#~ msgid ".a"
#~ msgstr ".a"
#~ msgid "Key Repeat Rate"
#~ msgstr "Taustiņu Atkārtošnās Temps"
#~ msgid "a....a"
#~ msgstr "a....a"
#~ msgid "a...a"
#~ msgstr "a...a"
#~ msgid "a..a"
#~ msgstr "a..a"
#~ msgid "a.a"
#~ msgstr "a.a"
#~ msgid "Enable Keyboard Click"
#~ msgstr "Aktivizēt Tastatūras Klikšķi"
#~ msgid "Keyboard click"
#~ msgstr "Tastatūras klikšķis"
#~ msgid "Click volume"
#~ msgstr "Klikšķa skaļums"
#~ msgid "Type here to test setting"
#~ msgstr "Raksti šeit, lai pārbaudītu uzstādījumus"
#~ msgid "Mouse buttons"
#~ msgstr "Peles pogas"
#~ msgid "Left handed"
#~ msgstr "Kreilis"
#~ msgid "Right handed"
#~ msgstr "Labietis"
#~ msgid "Acceleration"
#~ msgstr "Paātrinājums"
#~ msgid "Threshold"
#~ msgstr "Solis"
#~ msgid "Selection"
#~ msgstr "Izvēle"
#~ msgid "Disable screensaver"
#~ msgstr "Deaktivizēt ekrāna saudzētāju"
#~ msgid "Black screen only"
#~ msgstr "Tikai melns ekrāns"
#~ msgid "One screensaver all the time"
#~ msgstr "Viens ekrānsaudzētājs visu laiku"
#~ msgid "Choose randomly from those checked off"
#~ msgstr "Izvēlēties pēc nejaušības no izķeksētajiem"
#~ msgid "Choose randomly among all screensavers"
#~ msgstr "Gadījumizvēle starp visiem ekrānsaudzētājiem"
#~ msgid "Settings..."
#~ msgstr "Uzstādījumi"
#~ msgid "Demo Next"
#~ msgstr "Nākamā Demonstrācija"
#~ msgid "Demo Previous"
#~ msgstr "Iepriekšējā Demonstrācija"
#~ msgid "Screensaver Selection"
#~ msgstr "Ekrānsaudzētāja Izvēle"
#~ msgid "Start screensaver after"
#~ msgstr "Palaist ekrānsaudzētāju pēc"
#~ msgid "Switch screensavers every"
#~ msgstr "Pērslēgt ekrānsaudzētāju katru"
#~ msgid "Security"
#~ msgstr "Drošība"
#~ msgid "Require password to unlock"
#~ msgstr "Nepieciešama parole, lai atslēgtu"
#~ msgid "Only after the screensaver has run for"
#~ msgstr "Tikai tad, kad ekrānsaudzētājs ir ticis palaists"
#~ msgid "Power Management"
#~ msgstr "Strāvas Vadība"
#~ msgid "Go to standby mode after"
#~ msgstr "Ieiet gatavības režīmā pēc"
#~ msgid "Go to suspend mode after"
#~ msgstr "Ieiet īslaicīgā izslēgšanas režīmā pēc"
#~ msgid "Shut down monitor after"
#~ msgstr "Izslēgt monitoru pēc"
#~ msgid "Priority"
#~ msgstr "Prioritāte"
#~ msgid "Be verbose"
#~ msgstr "Vārdisks"
#~ msgid "Effects"
#~ msgstr "Efekti"
#~ msgid "Install colormap"
#~ msgstr "Instalēt krāsu karti"
#~ msgid "Fade to black when activating screensaver"
#~ msgstr "Satumst aktivizējot ekrānsaudzētāju"
#~ msgid "Fade desktop back when deactivating screensaver"
#~ msgstr "Izgaismot darbvirsmu atpakaļ, kad deaktivizē ekrānsaudzētāju"
#~ msgid "Fade Duration"
#~ msgstr "Sapūšanad Ilgums"
#~ msgid "Fade Smoothness"
#~ msgstr "Saplūšanas Vienveidīgums"
#~ msgid "Smooth"
#~ msgstr "Vienveidīgi"
#~ msgid "Jerky"
#~ msgstr "Saraustīti"
#~ msgid "Enable"
#~ msgstr "Aktivizēt"
#~ msgid "window4"
#~ msgstr "logs4"
#~ msgid "Menu bars are detachable"
#~ msgstr "Rīkjoslas ir atdalāmas"
#~ msgid "Menu bars have a border"
#~ msgstr "Izvēlnes joslām ir robeža"
#~ msgid "Menus can be torn off"
#~ msgstr "Izvēlnes var tikt izslēgtas"
#~ msgid "Menu items have icons"
#~ msgstr "Izvēlnes priekšmetiem ir ikonas"
#~ msgid "Status Bar"
#~ msgstr "Statusa Josla"
#~ msgid "Use status bar instead of dialog when possible"
#~ msgstr "Lietot statusa joslu dialoga vietā, kad iespējams"
#~ msgid "Status bar is interactive when possible"
#~ msgstr "Kad iespējams, statusa josla ir neaktīva"
#~ msgid "Progress bar is on the left"
#~ msgstr "Progresa josla ir pa kreisi"
#~ msgid "Progress bar is on the right"
#~ msgstr "Progresa jola ir pa labi"
#~ msgid "Tool Bars"
#~ msgstr "Rikjoslas"
#~ msgid "Tool bars have a border"
#~ msgstr "Rīku joslām ir robeža"
#~ msgid "Tool bar buttons pop up on mouse over"
#~ msgstr "Rīkjoslas pogas izvirzās, kad pele slīd pāri"
#~ msgid "Tool bars have line separators"
#~ msgstr "Rīkjoslām ir atdalītājsvītras"
#~ msgid "Tool bars are detachable"
#~ msgstr "Rīkjoslas ir atdalāmas"
#~ msgid "Tool bar buttons are icons only"
#~ msgstr "Rīkjoslas pogas ir tikai ikonas"
#~ msgid "Tool bar buttons are text below icons"
#~ msgstr "Zem rīkjoslas pogu ikonām ir teksts"
#~ msgid "Dialogs"
#~ msgstr "Dialogs"
#~ msgid "Dialog buttons have icons"
#~ msgstr "Dialogu pogām ir ikonas"
#~ msgid "Place dialogs over application window when possible"
#~ msgstr "Novietot dialogus pāri aplikācijām, kad iespējams"
#~ msgid "Dialogs open"
#~ msgstr "\"Dialogi atveras"
#~ msgid "Wherever the Window Manager places them"
#~ msgstr "Jebkur, kur Logu Pārvaldnieks tos novieto"
#~ msgid "At the mouse pointer"
#~ msgstr "Pie peles kursora"
#~ msgid "Dialogs are treated"
#~ msgstr "Dialogi tiek apstrādāti"
#~ msgid "Like any other window"
#~ msgstr "Kā jebkurš cits logs"
#~ msgid "Specially by the window manager"
#~ msgstr "Speciāli pēc logu pārvalnieka"
#~ msgid "Dialog Buttons"
#~ msgstr "Dialoga Pogas"
#~ msgid "Default (Spread out - big)"
#~ msgstr "Noklusētais (Izstiepts - liels)"
#~ msgid "Spread out (big)"
#~ msgstr "Izstiepts (liels)"
#~ msgid "Left aligned"
#~ msgstr "Nolīdzināts pa kreisi"
#~ msgid "Right aligned"
#~ msgstr "Nolīdzināts pa labi"
#~ msgid "Notebook tabs"
#~ msgstr "Piezīmjgrāmatas šķirkļi"
#~ msgid "The same window"
#~ msgstr "Tas pats logs"
#~ msgid "Right"
#~ msgstr "Pa Labi"
#~ msgid "Bottom"
#~ msgstr "Lejā"
#~ msgid "When opening Multiple documents, use"
#~ msgstr "Kad atver Vairākus dokumentus, lietot"
#~ msgid "When using Notebook tabs, place the tabs on the"
#~ msgstr "Kad lieto Piezīmjgrāmatas šķirkļus, novietot tos"
#~ msgid "Settings will not take effect until applications restart"
#~ msgstr "Uzstādījumi nestāsies spēkā līdz aplikācijas netiks pārstartētas"
#~ msgid "Session"
#~ msgstr "Sesija"
#~ msgid "Session Chooser"
#~ msgstr "Sesijas Izvēle"
#~ msgid "Start Session"
#~ msgstr "Sāknēt Sesiju"
#~ msgid "Cancel Login"
#~ msgstr "Atcelt Ieiešanu"
#~ msgid "Order: "
#~ msgstr "Secība:"
#~ msgid "Style: "
#~ msgstr "Stils:"
#~ msgid "This button sets the start order of the selected programs.\n"
#~ msgstr "Šī poga uzstāda izvēlēto programmu kārtību.\n"
#~ msgid ""
#~ "This button sets the restart style of the selected programs:\n"
#~ "Normal programs are unaffected by logouts but can die;\n"
#~ "Respawn programs are never allowed to die;\n"
#~ "Trash programs are discarded on logout and can die;\n"
#~ "Settings programs are always started on every login."
#~ msgstr ""
#~ "Šī poga uzstāda pārstartēšanās stilu izvēlētajām programmām:\n"
#~ "Parasti programmas iziešana neietekmē, bet tās var atmirt;\n"
#~ "Atdzimstošās progrmmas nekad neatmirst;\n"
#~ "Izmetamās programmas tiek atmestas pie iziešanas un var atmirt;\n"
#~ "Uzstādījumu programmas tiek sāknētas oie katras ieiešanas."
#~ msgid ""
#~ "This button produces a key to the program states below:\n"
#~ "Inactive programs are waiting to start or have finished;\n"
#~ "Starting programs are being given time to get running;\n"
#~ "Running programs are normal members of the session;\n"
#~ "Saving programs are saving their session details;\n"
#~ "Programs which make no contact have Unknown states.\n"
#~ msgstr ""
#~ "Šī poga uzrāda zemāk esošo programmu stāvokļu atšifrējumu:\n"
#~ "Neaktīvās programms gaida sāknēšanos vai ir jau darbību beigušas;\n"
#~ "Sāknējamajām programmām tiek dots laiks, lai varētu palaisties;\n"
#~ "Darbojošās programmas ir parasti sesijas locekļi;\n"
#~ "Glabājošās programmas saglabā savas sesijas detaļas;\n"
#~ "Programmām, ar kurām nav kontakta, ir Nezināms stāvoklis.\n"
#~ msgid "This column gives the command used to start a program."
#~ msgstr "Šī kolonna dod komandu, kuru lieto, lai sāknētu programmu."
#~ msgid "Order"
#~ msgstr "Kārtība"
#~ msgid "Style"
#~ msgstr "Stils"
#~ msgid "State"
#~ msgstr "Stāvoklis"
#~ msgid "Program"
#~ msgstr "Programma"
#~ msgid "Inactive"
#~ msgstr "Neaktīvs"
#~ msgid "Waiting to start or already finished."
#~ msgstr "Gaida, kad palaidīsies vai jau beidzis darboties."
#~ msgid "Started but has not yet reported state."
#~ msgstr "Palaists, bet nav vēl paziņojis stāvokli."
#~ msgid "Running"
#~ msgstr "Palaists"
#~ msgid "A normal member of the session."
#~ msgstr "Normāls sesijas loceklis."
#~ msgid "Saving"
#~ msgstr "Saglabāju"
#~ msgid "Unknown"
#~ msgstr "Nezināms"
#~ msgid "State not reported within timeout."
#~ msgstr "Taimauta laikā stāvoklis netika paziņots."
#~ msgid "Unaffected by logouts but can die."
#~ msgstr "Iziešanas neietekmēts, bet var atmirt."
#~ msgid "Respawn"
#~ msgstr "Atdzimt"
#~ msgid "Never allowed to die."
#~ msgstr "Nekad neļaut nomirt."
#~ msgid "Trash"
#~ msgstr "Miskaste"
#~ msgid "Discarded on logout and can die."
#~ msgstr "Atmet pie iziešanas un var atmirt."
#~ msgid "Always started on every login."
#~ msgstr "Vienmēr sāknēt pie katras ieiešanas"
#~ msgid "Remove Program"
#~ msgstr "Izņemt Programmu"
#~ msgid "Options"
#~ msgstr "Opcijas"
#~ msgid "Prompt on logout"
#~ msgstr "Pārjautāt pirms iziešanas"
#~ msgid "Automatically save changes to session"
#~ msgstr "Automātīski saglabāt izmaiņas sesijā"
#~ msgid "Non-session-managed Startup Programs"
#~ msgstr "Sesijas nepārvaldītas Sāknēšanas Programmas"
#~ msgid "Command"
#~ msgstr "Komanda"
#~ msgid "Browse Currently Running Programs..."
#~ msgstr "Lūkoties Pašreiz Palaistajās Programmās..."
#~ msgid "Only display warnings."
#~ msgstr "Parādīt tikai brīdinājumus"
#~ msgid "Startup Command"
#~ msgstr "Sāknēšanas Komanda"
#~ msgid ""
#~ "Programs with smaller values are started before programs with higher "
#~ "values. The default value should be OK"
#~ msgstr ""
#~ "Programmas ar mazākiem dotajiem skaitļiem tiek startētas pirms programmām "
#~ "ar lielākiem skaitļiem. Noklūsētajiem skaitļiem nav ne vainas."
#~ msgid "The startup command cannot be empty"
#~ msgstr "Sāknēšanas komanda nevar būt tukša"
#~ msgid "Edit Startup Program"
#~ msgstr "Rediģēt Sārnējamo Programmu"
#~ msgid ""
#~ "Error installing theme:\n"
#~ "'%s'\n"
#~ "%s"
#~ msgstr ""
#~ "Kļūda instalējot tēmu:\n"
#~ "'%s'\n"
#~ "%s"
#~ msgid "Available Themes"
#~ msgstr "Pieejamās Tēmas"
#~ msgid ""
#~ "Auto\n"
#~ "Preview"
#~ msgstr ""
#~ "Auto\n"
#~ "Priekšapskate"
#~ msgid ""
#~ "Install new\n"
#~ "theme..."
#~ msgstr ""
#~ "Instalēt jaunu\n"
#~ "tēmu..."
#~ msgid "-adobe-helvetica-medium-r-normal--*-120-*-*-*-*-*-*"
#~ msgstr "-adobe-helvetica-medium-r-normal--*-120-*-*-*-*-*-*"
#~ msgid "Use custom font."
#~ msgstr "Lietot fontu pēc izvēles."
#~ msgid "Home directory doesn't exist!\n"
#~ msgstr "Mājas direktorija neeksistē!\n"
#~ msgid "Theme does not exist"
#~ msgstr "Tēma neeksistē"
#~ msgid "Command '%s' failed"
#~ msgstr "Nevarēju palaist komandu %s"
#~ msgid "Unknown file format"
#~ msgstr "Nezināms faila formāts"
#~ msgid "Error initializing the `url-properties' capplet."
#~ msgstr "Kļūda inicializējot `url-properties' kaplets."
#~ msgid "Protocol"
#~ msgstr "Protokols"
#~ msgid "Netscape"
#~ msgstr "Netscape"
#~ msgid "Netscape (new window)"
#~ msgstr "Netscape (jauns logs)"
#~ msgid "Help browser (new window)"
#~ msgstr "Palīdzības pārlūks (jauns logs)"
#~ msgid "Set"
#~ msgstr "Uzstādīt"
#~ msgid ""
#~ "Starting %s\n"
#~ "(%d seconds left before operation times out)"
#~ msgstr ""
#~ "Startēju %s\n"
#~ "(atlikušas %d sekundes pirms operācijas laika iztecēšanas)"
#~ msgid "%s (Current)"
#~ msgstr "%s (Pašreizējais)"
#~ msgid "Run Configuration Tool for %s"
#~ msgstr "Palaist %s Konfigurācijas Rīku"
#~ msgid " (Not found)"
#~ msgstr " (Nav atrasts)"
#~ msgid ""
#~ "wm-properties-capplet: Unable to initialize window manager.\n"
#~ "\tAnother window manager is already running and could not be killed\n"
#~ msgstr ""
#~ "wm-properties-capplet: Nevarēju inicializēt logu pārvaldnieku.\n"
#~ "\tJau darbojas cits logu pārvalnieks un nevar tikt nokauts\n"
#~ msgid ""
#~ "wm-properties-capplet: Unable to initialize window manager.\n"
#~ "\t'%s' didn't start\n"
#~ msgstr ""
#~ "wm-properties-capplet: Nevarēju inicializēt logu pārvaldnieku.\n"
#~ "\tnepalaidu '%s'\n"
#~ msgid "Previous window manager did not die\n"
#~ msgstr "Iepriekšējais Logu Pārvaldnieks nav miris\n"
#~ msgid ""
#~ "Could not start '%s'.\n"
#~ "Falling back to previous window manager '%s'\n"
#~ msgstr ""
#~ "Nevarēju palaist '%s'.\n"
#~ "Atgriežamies atpakaļ pie pašreizējā logu pārvaldnieka '%s'\n"
#~ msgid ""
#~ "Could not start fallback window manager.\n"
#~ "Please run a window manager manually. You can\n"
#~ "do this by selecting \"Run Program\" in the\n"
#~ "foot menu\n"
#~ msgstr ""
#~ "Nevarēju palaist atkāpšanās logu pārvaldnieku.\n"
#~ "Lūdzu palaid logu pārvaldnieku pašrocīgi. Tu to\n"
#~ "vari izdarīt, izvēloties \"Palaist...\" no\n"
#~ "pēdas izvēlnes\n"
#~ msgid "OK"
#~ msgstr "OK"
#~ msgid ""
#~ "Your current window manager has been changed. In order for\n"
#~ "this change to be saved, you will need to save your current\n"
#~ "session. You can do so immediately by selecting the \"Save session\n"
#~ "now\" below, or you can save your session later. This can be\n"
#~ "done either selecting \"Save Current Session\" under \"Settings\"\n"
#~ "in the main menu, or by turning on \"Save Current Setup\" when\n"
#~ "you log out.\n"
#~ msgstr ""
#~ "Jūsu pašreizējais logu pārvaldnieks ir ticis mainīts. Lai šīs\n"
#~ "izmaiņas tiktu saglabātas, tev būs jāsaglabā pašreizējā\n"
#~ "sesija. Tu to vari izdarīt nekavējoties, izvēloties \"Saglabāt sesiju\n"
#~ "tagad\", vai arīt tu to vari saglabāt vēlāk. Tas var tikt izdarīts\n"
#~ "vai nu izvēloties \"Saglabāt pašreizējo sesiju\" zem \"Uzstādījumi\"\n"
#~ "galvenajā izvēlnē, vai arī ieslēdzot \"Saglabāt Pašreizējos Uzstādījumus"
#~ "\" kad\n"
#~ "izejat no sistēmas.\n"
#~ msgid "Save Session Later"
#~ msgstr "Saglabāt Sesiju Vēlāk"
#~ msgid "Save Session Now"
#~ msgstr "Saglabāt Sesiju Tagad"
#~ msgid ""
#~ "Your current window manager has been changed. In order for\n"
#~ "this change to be saved, you will need to save your current\n"
#~ "session. This can be done by either selecting \"Save Current Session\"\n"
#~ "under \"Settings\" in the main menu, or by turning on\n"
#~ "\"Save Current Setup\" when you log out.\n"
#~ msgstr ""
#~ "Jūsu pašreizējais logu pārvalnieks ir nomainīts. Lai šīs\n"
#~ "izmaiņas tiktu saglabātas, jums būs jāsaglabā sava pašreizējā\n"
#~ "sesija. Tas var tikt izdarīts vai nu izvēloties \"Saglabāt Pašreizējo "
#~ "Sesiju\"\n"
#~ "zem \"Uzstādījumi\" galvenajā izvēlnē, vai arī ieslēdzot\n"
#~ "\"Saglabāt Pašreizējos Uzstādījumus\", kad iziesiet.\n"
#~ msgid "Add New Window Manager"
#~ msgstr "Pievienot Jaunu Logu Pārvaldnieku"
#~ msgid "Configuration Command:"
#~ msgstr "Konfigurācijas Komanda:"
#~ msgid "Window manager is session managed"
#~ msgstr "Logu pārvaldnieks ir sesijas pārvaldīts"
#~ msgid "Name cannot be empty"
#~ msgstr "Nosaukums nevar būt tukšums"
#~ msgid "Command cannot be empty"
#~ msgstr "Komanda nevar būt tukša"
#~ msgid "You cannot delete the current Window Manager"
#~ msgstr "Jūs nevarat izdzēst pašreizējo Logu Pārvaldnieku"
#~ msgid ""
#~ "an initialization error occurred while starting 'wm-properties-capplet'.\n"
#~ "aborting...\n"
#~ msgstr ""
#~ "inicializācijas kļūda iestājās, startējot 'wm-properties-capplet'.\n"
#~ "pārtraucu...\n"
#~ msgid "Launch control panels in separate windows"
#~ msgstr "Palaist vadības paneļus atsevišķos logos"
#~ msgid "Put control panels in the control center's window"
#~ msgstr "Novietot vadības paneļus vadības centra logā"
#~ msgid "Display control panels as HTML"
#~ msgstr "Parādīt vadības paneļus kā HTML"
#~ msgid "Display control panels as a set of icons"
#~ msgstr "Parādīt vadības paneļus kā ikonu kopību"
#~ msgid "Display control panels as a tree"
#~ msgstr "Parādīt vadības paneļus kā koku"
#~ msgid "Browse with single window"
#~ msgstr "Pārlūkot ar vienu logu"
#~ msgid "Browse with multiple windows"
#~ msgstr "Pārlūkot ar vairākiem logiem"
#~ msgid "New-control-center"
#~ msgstr "Jauns-vadības-centrs"
#~ msgid "HTML"
#~ msgstr "HTML"
#~ msgid "Icon List"
#~ msgstr "Ikonu Saraksts"
#~ msgid "Tree"
#~ msgstr "Koks"
|