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
|
# translation of gnome-control-center.HEAD.po to Basque
# This file is distributed under the same license as the PACKAGE package.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
#
# Hizkuntza Politikarako Sailburuordetza <hizkpol@ej-gv.es>, 2004, 2005.
# Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>, 2004, 2005, 2006, 2007, 2008.
# Iñaki Larrañaga Murgoitio <dooteo@zundan.com>, 2007.
msgid ""
msgstr ""
"Project-Id-Version: gnome-control-center.HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-01-09 13:13+0100\n"
"PO-Revision-Date: 2008-01-09 13:11+0100\n"
"Last-Translator: Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>\n"
"Language-Team: Basque <itzulpena@euskalgnu.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ../capplets/about-me/eel-alert-dialog.c:114
msgid "Image/label border"
msgstr "Irudiaren/etiketaren ertza"
#: ../capplets/about-me/eel-alert-dialog.c:115
msgid "Width of border around the label and image in the alert dialog"
msgstr ""
"Etiketaren eta irudiaren inguruko ertzaren zabalera abisuaren elkarrizketa-"
"koadroan"
#: ../capplets/about-me/eel-alert-dialog.c:124
msgid "Alert Type"
msgstr "Abisu-mota"
#: ../capplets/about-me/eel-alert-dialog.c:125
msgid "The type of alert"
msgstr "Abisu-mota"
#: ../capplets/about-me/eel-alert-dialog.c:133
msgid "Alert Buttons"
msgstr "Abisu-botoiak"
#: ../capplets/about-me/eel-alert-dialog.c:134
msgid "The buttons shown in the alert dialog"
msgstr "Erakutsiko diren botoiak abisuaren elkarrizketa-koadroan"
#: ../capplets/about-me/eel-alert-dialog.c:198
msgid "Show more _details"
msgstr "Erakutsi _xehetasun gehiago"
#: ../capplets/about-me/gnome-about-me.c:665
msgid "Select Image"
msgstr "Hautatu irudia"
#: ../capplets/about-me/gnome-about-me.c:667
msgid "No Image"
msgstr "Irudirik gabe"
#: ../capplets/about-me/gnome-about-me.c:695
#: ../capplets/appearance/appearance-desktop.c:1100
msgid "Images"
msgstr "Irudiak"
#: ../capplets/about-me/gnome-about-me.c:699
#: ../capplets/appearance/theme-installer.c:700
msgid "All Files"
msgstr "Fitxategi guztiak"
#: ../capplets/about-me/gnome-about-me.c:836
msgid ""
"There was an error while trying to get the addressbook information\n"
"Evolution Data Server can't handle the protocol"
msgstr ""
"Errorea gertatu da helbide-liburuko informazioa hartzean\n"
"Evolution Datu-Zerbitzuak ezin du kudeatu protokoloa"
#: ../capplets/about-me/gnome-about-me.c:857
msgid "Unable to open address book"
msgstr "Ezin da helbide-liburua ireki"
#: ../capplets/about-me/gnome-about-me.c:871
msgid "Unknown login ID, the user database might be corrupted"
msgstr ""
"Saio-hasierako ID ezezaguna, erabiltzaileen datu-basea hondatuta egon daiteke"
#: ../capplets/about-me/gnome-about-me.c:901
#: ../capplets/about-me/gnome-about-me.c:903
#, c-format
msgid "About %s"
msgstr "%s(r)i buruz"
#: ../capplets/about-me/gnome-about-me.desktop.in.in.h:1
#: ../capplets/about-me/gnome-about-me.glade.h:12
msgid "About Me"
msgstr "Datu pertsonalak"
#: ../capplets/about-me/gnome-about-me.desktop.in.in.h:2
msgid "Set your personal information"
msgstr "Ezarri zure datu pertsonalak"
#: ../capplets/about-me/gnome-about-me.glade.h:1
msgid "<b>Email</b>"
msgstr "<b>Helb. el.</b>"
#: ../capplets/about-me/gnome-about-me.glade.h:2
msgid "<b>Home</b>"
msgstr "<b>Etxea</b>"
#: ../capplets/about-me/gnome-about-me.glade.h:3
msgid "<b>Instant Messaging</b>"
msgstr "<b>Berehalako mezularitza</b>"
#: ../capplets/about-me/gnome-about-me.glade.h:4
msgid "<b>Job</b>"
msgstr "<b>Lana</b>"
#: ../capplets/about-me/gnome-about-me.glade.h:5
msgid "<b>Telephone</b>"
msgstr "<b>Telefonoa</b>"
#: ../capplets/about-me/gnome-about-me.glade.h:6
msgid "<b>Web</b>"
msgstr "<b>Web gunea</b>"
#: ../capplets/about-me/gnome-about-me.glade.h:7
msgid "<b>Work</b>"
msgstr "<b>Lana</b>"
#: ../capplets/about-me/gnome-about-me.glade.h:8
msgid "<span size=\"larger\" weight=\"bold\">Change your password</span>"
msgstr "<span size=\"larger\" weight=\"bold\">Aldatu pasahitza</span>"
#: ../capplets/about-me/gnome-about-me.glade.h:9
msgid "A_IM/iChat:"
msgstr "A_IM/iChat:"
#: ../capplets/about-me/gnome-about-me.glade.h:10
msgid "A_ddress:"
msgstr "_Helbidea:"
#: ../capplets/about-me/gnome-about-me.glade.h:11
msgid "A_ssistant:"
msgstr "_Laguntzailea:"
#: ../capplets/about-me/gnome-about-me.glade.h:13
msgid "Address"
msgstr "Helbidea"
#: ../capplets/about-me/gnome-about-me.glade.h:14
msgid "C_ity:"
msgstr "_Herria:"
#: ../capplets/about-me/gnome-about-me.glade.h:15
msgid "C_ompany:"
msgstr "E_npresa:"
#: ../capplets/about-me/gnome-about-me.glade.h:16
msgid "Cale_ndar:"
msgstr "_Egutegia:"
#: ../capplets/about-me/gnome-about-me.glade.h:17
msgid "Change Passwo_rd..."
msgstr "Aldatu _pasahitza..."
#: ../capplets/about-me/gnome-about-me.glade.h:18
msgid "Change pa_ssword"
msgstr "Aldatu pa_sahitza"
#: ../capplets/about-me/gnome-about-me.glade.h:19
msgid "Change password"
msgstr "Aldatu pasahitza"
#: ../capplets/about-me/gnome-about-me.glade.h:20
msgid "Ci_ty:"
msgstr "_Herria:"
#: ../capplets/about-me/gnome-about-me.glade.h:21
msgid "Co_untry:"
msgstr "E_statua:"
#: ../capplets/about-me/gnome-about-me.glade.h:22
msgid "Contact"
msgstr "Kontaktua"
#: ../capplets/about-me/gnome-about-me.glade.h:23
msgid "Cou_ntry:"
msgstr "Es_tatua:"
#: ../capplets/about-me/gnome-about-me.glade.h:24
msgid "Current _password:"
msgstr "Uneko _pasahitza:"
#: ../capplets/about-me/gnome-about-me.glade.h:25
msgid "Full Name"
msgstr "Izen osoa"
#: ../capplets/about-me/gnome-about-me.glade.h:26
msgid "Hom_e:"
msgstr "E_txea:"
#: ../capplets/about-me/gnome-about-me.glade.h:27
msgid "IC_Q:"
msgstr "IC_Q:"
#: ../capplets/about-me/gnome-about-me.glade.h:28
msgid "M_SN:"
msgstr "M_SN:"
#: ../capplets/about-me/gnome-about-me.glade.h:29
msgid "P.O. _box:"
msgstr "Posta-_kutxatila:"
#: ../capplets/about-me/gnome-about-me.glade.h:30
msgid "P._O. box:"
msgstr "P_osta-kutxatila:"
#: ../capplets/about-me/gnome-about-me.glade.h:31
msgid "Personal Info"
msgstr "Datu pertsonalak"
#: ../capplets/about-me/gnome-about-me.glade.h:32
#: ../capplets/about-me/gnome-about-me-password.c:934
msgid ""
"Please type your password again in the <b>Retype new password</b> field."
msgstr "Idatzi pasahitza berriro <b>Berretsi pasahitz berria</b> eremuan"
#: ../capplets/about-me/gnome-about-me.glade.h:33
msgid "Select your photo"
msgstr "Hautatutako zure argazkia"
#: ../capplets/about-me/gnome-about-me.glade.h:34
msgid "State/Pro_vince:"
msgstr "Estatua/_Probintzia:"
#: ../capplets/about-me/gnome-about-me.glade.h:35
msgid ""
"To change your password, enter your current password in the field below and "
"click <b>Authenticate</b>.\n"
"After you have authenticated, enter your new password, retype it for "
"verification and click <b>Change password</b>."
msgstr ""
"Zure pasahitza aldatzeko sartu uneko pasahitza azpiko eremuan eta egin klik "
"<b>Autentifikatu</b> botoian.\n"
"Autentifikatu ondoren, sartu pasahitz berria, idatzi berriro egiaztatzeko "
"eta egin klik <b>Aldatu pasahitza</b> botoian."
#: ../capplets/about-me/gnome-about-me.glade.h:37
msgid "User name:"
msgstr "Erabiltzaile-izena:"
#: ../capplets/about-me/gnome-about-me.glade.h:38
msgid "Web _log:"
msgstr "Web-_egunkaria:"
#: ../capplets/about-me/gnome-about-me.glade.h:39
msgid "Wor_k:"
msgstr "_Lana:"
#: ../capplets/about-me/gnome-about-me.glade.h:40
msgid "Work _fax:"
msgstr "Laneko _faxa:"
#: ../capplets/about-me/gnome-about-me.glade.h:41
msgid "Zip/_Postal code:"
msgstr "Posta-kodea:"
#: ../capplets/about-me/gnome-about-me.glade.h:42
msgid "_Address:"
msgstr "_Helbidea:"
#: ../capplets/about-me/gnome-about-me.glade.h:43
msgid "_Authenticate"
msgstr "_Autentifikatu"
#: ../capplets/about-me/gnome-about-me.glade.h:44
msgid "_Department:"
msgstr "_Saila:"
#: ../capplets/about-me/gnome-about-me.glade.h:45
msgid "_Groupwise:"
msgstr "_GroupWise:"
#: ../capplets/about-me/gnome-about-me.glade.h:46
msgid "_Home page:"
msgstr "_Orri-pertsonala:"
#: ../capplets/about-me/gnome-about-me.glade.h:47
msgid "_Home:"
msgstr "_Etxea:"
#: ../capplets/about-me/gnome-about-me.glade.h:48
msgid "_Jabber:"
msgstr "_Jabber:"
#: ../capplets/about-me/gnome-about-me.glade.h:49
msgid "_Manager:"
msgstr "_Nagusia:"
#: ../capplets/about-me/gnome-about-me.glade.h:50
msgid "_Mobile:"
msgstr "_Mugikorra:"
#: ../capplets/about-me/gnome-about-me.glade.h:51
msgid "_New password:"
msgstr "_Pasahitz berria:"
#: ../capplets/about-me/gnome-about-me.glade.h:52
msgid "_Profession:"
msgstr "_Lanbidea:"
#: ../capplets/about-me/gnome-about-me.glade.h:53
msgid "_Retype new password:"
msgstr "_Berretsi pasahitz berria:"
#: ../capplets/about-me/gnome-about-me.glade.h:54
msgid "_State/Province:"
msgstr "_Estatua/Probintzia:"
#: ../capplets/about-me/gnome-about-me.glade.h:55
msgid "_Title:"
msgstr "_Titulua:"
#: ../capplets/about-me/gnome-about-me.glade.h:56
msgid "_Work:"
msgstr "_Lana:"
#: ../capplets/about-me/gnome-about-me.glade.h:57
msgid "_Yahoo:"
msgstr "_Yahoo:"
#: ../capplets/about-me/gnome-about-me.glade.h:58
msgid "_Zip/Postal code:"
msgstr "_Posta-kodea:"
#: ../capplets/about-me/gnome-about-me-password.c:162
msgid "Child exited unexpectedly"
msgstr "Umea ustekabean amaitu da"
#: ../capplets/about-me/gnome-about-me-password.c:297
#, c-format
msgid "Could not shutdown backend_stdin IO channel: %s"
msgstr "Ezin izan da backend_stdin S/I kanala itzali: %s"
#: ../capplets/about-me/gnome-about-me-password.c:310
#, c-format
msgid "Could not shutdown backend_stdout IO channel: %s"
msgstr "Ezin izan da backend_stdout S/I kanala itzali: %s"
#: ../capplets/about-me/gnome-about-me-password.c:409
msgid "Authenticated!"
msgstr "Autentifikatua!"
#. This is a re-auth, and it failed.
#. * The password must have been changed in the meantime!
#. * Ask the user to re-authenticate
#.
#. Update status message and auth state
#. Authentication failure
#: ../capplets/about-me/gnome-about-me-password.c:475
#: ../capplets/about-me/gnome-about-me-password.c:551
msgid ""
"Your password has been changed since you initially authenticated! Please re-"
"authenticate."
msgstr ""
"Pasahitza aldatu egin da hasieran autentifikatu zinenetik. Autentifikatu "
"zaitez berriro."
#: ../capplets/about-me/gnome-about-me-password.c:477
msgid "That password was incorrect."
msgstr "Pasahitz hori okerra zen."
#: ../capplets/about-me/gnome-about-me-password.c:524
msgid "Your password has been changed."
msgstr "Zure pasahitza aldatu egin da."
#. What does this indicate?
#. * "Authentication information cannot be recovered?" from libpam?
#: ../capplets/about-me/gnome-about-me-password.c:534
#, c-format
msgid "System error: %s."
msgstr "Sistemako errorea: %s."
#: ../capplets/about-me/gnome-about-me-password.c:537
msgid "The password is too short."
msgstr "Pasahitza laburregia da."
#: ../capplets/about-me/gnome-about-me-password.c:540
msgid "The password is too simple."
msgstr "Pasahitza sinpleegia da."
#: ../capplets/about-me/gnome-about-me-password.c:543
msgid "The old and new passwords are too similar."
msgstr "Pasahitz zaharra eta berria oso antzekoak dira."
#: ../capplets/about-me/gnome-about-me-password.c:545
msgid "The new password must contain numeric or special character(s)."
msgstr "Pasahitz berriak karaktere numeriko edo berezia(k) eduki behar ditu."
#: ../capplets/about-me/gnome-about-me-password.c:548
msgid "The old and new passwords are the same."
msgstr "Pasahitz zaharra eta berria berdinak dira."
#. translators: Unable to launch <program>: <error message>
#: ../capplets/about-me/gnome-about-me-password.c:818
#, c-format
msgid "Unable to launch %s: %s"
msgstr "Ezin izan da %s abiarazi: %s"
#: ../capplets/about-me/gnome-about-me-password.c:821
msgid "Unable to launch backend"
msgstr "Ezin da motorra abiarazi"
#: ../capplets/about-me/gnome-about-me-password.c:822
msgid "A system error has occurred"
msgstr "Sistemako errorea gertatu da"
#. Update status message
#: ../capplets/about-me/gnome-about-me-password.c:842
msgid "Checking password..."
msgstr "Pasahitza egiaztatzen..."
#: ../capplets/about-me/gnome-about-me-password.c:928
msgid "Click <b>Change password</b> to change your password."
msgstr "Egin klik <b>Aldatu pasahitza</b>n zure pasahitza aldatzeko."
#: ../capplets/about-me/gnome-about-me-password.c:931
msgid "Please type your password in the <b>New password</b> field."
msgstr "Idatzi zure pasahitza <b>Pasahitz berria</b> eremuan."
#: ../capplets/about-me/gnome-about-me-password.c:937
msgid "The two passwords are not equal."
msgstr "Bi pasahitzak ez dira berdinak."
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:1
msgid "<b>Assistive Technologies</b>"
msgstr "<b>Laguntza-teknologiak</b>"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:2
msgid "<b>Preferences</b>"
msgstr "<b>Hobespenak</b>"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:3
msgid "Accessible Lo_gin"
msgstr "Erabilerraztasuneko _saio-hasiera"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:4
msgid "Assistive Technology Preferences"
msgstr "Laguntza-teknologiaren hobespenak"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:5
msgid ""
"Changes to enable assistive technologies will not take effect until your "
"next log in."
msgstr ""
"Laguntzako teknologia gaitzeko egindako aldaketek ez dute eraginik izango "
"saioa berriro hasi arte."
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:6
msgid "Close and _Log Out"
msgstr "Itxi eta _irten saiotik"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:7
msgid "Jump to Preferred Applications dialog"
msgstr "Saltatu hobetsitako aplikazioen elkarrizketa-koadrora"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:8
msgid "Jump to the Accessible Login dialog"
msgstr "Saltatu erabilerraztasuneko saio-hasieraren elkarrizketa-koadrora"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:9
msgid "Jump to the Keyboard Accessibility dialog"
msgstr "Saltuta teklatuaren erabilerraztasunaren elkarrizketa-koadrora"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:10
msgid "_Enable assistive technologies"
msgstr "_Gaitu laguntza-teknologiak"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:11
msgid "_Keyboard Accessibility"
msgstr "_Teklatuaren erabilerraztasuna"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:12
msgid "_Preferred Applications"
msgstr "_Hobetsitako aplikazioak"
#: ../capplets/accessibility/at-properties/at-properties.desktop.in.in.h:1
msgid "Assistive Technology"
msgstr "Laguntza-teknologiak"
#: ../capplets/accessibility/at-properties/at-properties.desktop.in.in.h:2
msgid "Enable support for GNOME assistive technologies at login"
msgstr "Gaitu GNOMEren laguntza-teknologiaren laguntza saioa hastean"
#: ../capplets/accessibility/keyboard/accessibility-keyboard.c:250
#, c-format
msgid "There was an error launching the mouse preferences dialog: %s"
msgstr ""
"Errorea gertatu da saguaren hobespenenen elkarrizketa-koadroa abiaraztean: %s"
#: ../capplets/accessibility/keyboard/accessibility-keyboard.c:346
#: ../capplets/accessibility/keyboard/accessibility-keyboard.c:407
#, c-format
msgid "Unable to import AccessX settings from file '%s'"
msgstr "Ezin izan dira AccessX-en ezarpenak inportatu '%s' fitxategitik"
#: ../capplets/accessibility/keyboard/accessibility-keyboard.c:444
msgid "Import Feature Settings File"
msgstr "Inportatu ezaugarrien ezarpen-fitxategia"
#: ../capplets/accessibility/keyboard/accessibility-keyboard.c:448
msgid "_Import"
msgstr "_Inportatu"
#: ../capplets/accessibility/keyboard/accessibility-keyboard.desktop.in.in.h:1
msgid "Keyboard Accessibility"
msgstr "Teklatuaren erabilerraztasuna"
#: ../capplets/accessibility/keyboard/accessibility-keyboard.desktop.in.in.h:2
msgid "Set your keyboard accessibility preferences"
msgstr "Ezarri zure teklatuaren erabilerraztasun-hobespenak"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.c:59
msgid ""
"This system does not seem to have the XKB extension. The keyboard "
"accessibility features will not operate without it."
msgstr ""
"Badirudi sistema honek ez duela XKB luzapenik. Teklatuaren erabilerraztasun-"
"ezaugarriek ez dute hura gabe funtzionatuko."
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:1
msgid "<b>Enable Bo_unce Keys</b>"
msgstr "<b>Gaitu erre_bote-teklak</b>"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:2
msgid "<b>Enable Slo_w Keys</b>"
msgstr "<b>Gaitu tekla _motelak</b>"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:3
msgid "<b>Enable _Mouse Keys</b>"
msgstr "<b>Gaitu _sagu-teklak</b>"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:4
msgid "<b>Enable _Repeat Keys</b>"
msgstr "<b>Gaitu _errepikatze-teklak</b>"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:5
msgid "<b>Enable _Sticky Keys</b>"
msgstr "<b>Gaitu _tekla itsaskorrak</b>"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:6
msgid "<b>Features</b>"
msgstr "<b>Ezaugarriak</b>"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:7
msgid "<b>Toggle Keys</b>"
msgstr "<b>Tekla txandakariak</b>"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:8
msgid "Basic"
msgstr "Oinarrizkoa"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:9
msgid "Beep if key is re_jected"
msgstr "Jo soinua tekla _ezesten bada"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:10
msgid "Beep when _features turned on or off from keyboard"
msgstr "Jo soinua teklatuko e_zaugarriak aktibatzen eta desaktibatzen direnean"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:11
msgid "Beep when _modifier is pressed"
msgstr "_Jo soinua aldatzailea sakatzean"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:12
msgid "Beep when an LED is turned on and two beeps when one is turned off."
msgstr "Jo soinua behin LED aktibatzean eta bi aldiz desaktibatzean."
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:13
msgid "Beep when key is:"
msgstr "Jo soinua tekla:"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:14
msgid "Del_ay:"
msgstr "_Atzerapena:"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:15
msgid "Delay between keypress and pointer mo_vement:"
msgstr "Te_kla sakatzearen eta erakuslearen mugimenduaren arteko atzerapena:"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:16
msgid "Disa_ble if two keys pressed together"
msgstr "Desg_aitu bi tekla batera sakatzen badira"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:17
msgid "E_nable Toggle Keys"
msgstr "Gaitu t_xandakatze-teklak"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:18
msgid "Filters"
msgstr "Iragazkiak"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:19
msgid "I_gnore duplicate keypresses within:"
msgstr "_Jaramonik ez egin epe honetan egindako tekla-sakatze errepikatuei:"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:20
msgid ""
"Ignore all subsequent presses of the SAME key if they happen within a user "
"selectable period of time."
msgstr ""
"Jaramonik ez egin erabiltzaileak hautatutako denbora-tartean tekla BERA "
"behin baino gehiagotan sakatzean bada."
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:21
msgid "Keyboard Accessibility Preferences (AccessX)"
msgstr "Teklatuaren erabilerraztasun-hobespenak (AccessX)"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:22
msgid "Ma_ximum pointer speed:"
msgstr "Erakuslearen ge_hienezko abiadura:"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:23
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:41
msgid "Mouse Keys"
msgstr "Sagu-teklak"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:24
msgid "Mouse _Preferences..."
msgstr "Saguaren ho_bespenak..."
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:25
msgid ""
"Only accept keys after they have been pressed and held for a user adjustable "
"amount of time."
msgstr ""
"Erabiltzaileak adierazitako denboran sakatuta edukitzen direnean bakarrik "
"onartu tekla-sakatzeak."
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:26
msgid ""
"Perform multiple simultaneous key press operations by pressing modifier keys "
"in sequence."
msgstr ""
"Landu hainbat tekla aldi berean sakatzeko eragiketak tekla aldatzaileak "
"segidan sakatuz."
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:27
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:45
msgid "S_peed:"
msgstr "Abia_dura:"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:28
msgid "Time to acce_lerate to maximum speed:"
msgstr "Gehiene_zko abiadurara iristeko denbora:"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:29
msgid "Turn the numeric keypad into a mouse control pad."
msgstr "Bihurtu zenbakizko teklatua saguaren kontrol-teklatu."
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:30
msgid "_Disable if unused for:"
msgstr "De_sgaitu denbora honetan erabiltzen ez bada:"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:31
msgid "_Enable keyboard accessibility features"
msgstr "_Gaitu teklatuaren erabilerraztasun-ezaugarriak"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:32
msgid "_Import Feature Settings..."
msgstr "_Inportatu funtzionalitateen ezarpenak..."
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:33
msgid "_Only accept keys held for:"
msgstr "_Denbora honetan sakatutako teklak bakarrik onartu:"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:34
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:61
msgid "_Type to test settings:"
msgstr "_Idatzi ezarpenak probatzeko:"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:35
msgid "_accepted"
msgstr "o_nartuta"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:36
msgid "_pressed"
msgstr "_sakatuta"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:37
msgid "_rejected"
msgstr "_ezetsita"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:38
msgid "characters/second"
msgstr "karaktere/segundo"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:39
#: ../capplets/mouse/gnome-mouse-properties.glade.h:19
msgid "milliseconds"
msgstr "milisegundo"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:40
msgid "pixels/second"
msgstr "pixel/segundo"
#: ../capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade.h:41
#: ../capplets/windows/gnome-window-properties.glade.h:10
msgid "seconds"
msgstr "segundo"
#: ../capplets/appearance/appearance-desktop.c:1068
msgid "Add Wallpaper"
msgstr "Gehitu horma-papera"
#: ../capplets/appearance/appearance-desktop.c:1104
msgid "All files"
msgstr "Fitxategi guztiak"
#: ../capplets/appearance/appearance-font.c:494
msgid "Font may be too large"
msgstr "Letra-tipoa handiegia izan daiteke"
#: ../capplets/appearance/appearance-font.c:498
#, c-format
msgid ""
"The font selected is %d point large, and may make it difficult to "
"effectively use the computer. It is recommended that you select a size "
"smaller than %d."
msgid_plural ""
"The font selected is %d points large, and may make it difficult to "
"effectively use the computer. It is recommended that you select a size "
"smaller than %d."
msgstr[0] ""
"Hautatutako letra-tipoak %d puntuko luzera du, eta baliteke ordenagailua "
"eraginkortasunez erabiltzea zailtzea. %d baino tamaina txikiagoa hautatzea "
"gomendatzen dizugu."
msgstr[1] ""
"Hautatutako letra-tipoak %d puntuko luzera du, eta baliteke ordenagailua "
"eraginkortasunez erabiltzea zailtzea. %d baino tamaina txikiagoa hautatzea "
"gomendatzen dizugu."
#: ../capplets/appearance/appearance-font.c:511
#, c-format
msgid ""
"The font selected is %d point large, and may make it difficult to "
"effectively use the computer. It is recommended that you select a smaller "
"sized font."
msgid_plural ""
"The font selected is %d points large, and may make it difficult to "
"effectively use the computer. It is recommended that you select a smaller "
"sized font."
msgstr[0] ""
"Hautatutako letra-tipoak %d puntuko luzera du, eta baliteke ordenagailua "
"eraginkortasunez erabiltzea zailtzea. Tamaina txikiagoko letra-tipoa "
"hautatzea gomendatzen dizugu."
msgstr[1] ""
"Hautatutako letra-tipoak %d puntuko luzera du, eta baliteke ordenagailua "
"eraginkortasunez erabiltzea zailtzea. Tamaina txikiagoko letra-tipoa "
"hautatzea gomendatzen dizugu."
#: ../capplets/appearance/appearance-font.c:533
msgid "Use previous font"
msgstr "Erabili aurreko letra-tipoa"
#: ../capplets/appearance/appearance-font.c:535
msgid "Use selected font"
msgstr "Erabili hautatutako letra-tipoa"
#: ../capplets/appearance/appearance-main.c:108
msgid "Specify the filename of a theme to install"
msgstr "Zehaztu gaiaren fitxategi-izena instalatzeko"
#: ../capplets/appearance/appearance-main.c:109
msgid "filename"
msgstr "fitxategi-izena"
#. TRANSLATORS: don't translate the terms in brackets
#: ../capplets/appearance/appearance-main.c:116
msgid "Specify the name of the page to show (theme|background|fonts|interface)"
msgstr ""
"Zehaztu orrialdearen izena erakusteko (gaia|atzeko planoa|letra-tipoak|"
"interfazea)"
#: ../capplets/appearance/appearance-main.c:117
msgid "page"
msgstr "orrialdea"
#: ../capplets/appearance/appearance-main.c:124
msgid "[WALLPAPER...]"
msgstr "[HORMA-PAPERA...]"
#: ../capplets/appearance/appearance-style.c:156
#: ../capplets/common/gnome-theme-info.c:439
#: ../capplets/common/gnome-theme-info.c:638
msgid "Default Pointer"
msgstr "Erakusle lehenetsia"
#: ../capplets/appearance/appearance-themes.c:534
msgid "Apply Background"
msgstr "Aplikatu atzeko planoa"
#: ../capplets/appearance/appearance-themes.c:538
msgid "Apply Font"
msgstr "Aplikatu letra-tipoa"
#: ../capplets/appearance/appearance-themes.c:563
msgid "The current theme suggests a background and a font."
msgstr "Gai honek atzeko plano bat eta letra-tipoa iradokitzen du."
#: ../capplets/appearance/appearance-themes.c:568
msgid "The current theme suggests a background."
msgstr "Gai honek atzeko planoa iradokitzen du."
#: ../capplets/appearance/appearance-themes.c:573
msgid "The current theme suggests a font."
msgstr "Gai honek letra-tipoa iradokitzen du."
#: ../capplets/appearance/appearance-themes.c:857
#: ../capplets/default-applications/gnome-da-capplet.c:1080
#: ../capplets/sound/sound-properties-capplet.c:327
msgid "Custom"
msgstr "Pertsonalizatua"
#: ../capplets/appearance/data/appearance.glade.h:1
msgid "<b>C_olors</b>"
msgstr "<b>_Koloreak</b>"
#: ../capplets/appearance/data/appearance.glade.h:2
msgid "<b>Hinting</b>"
msgstr "<b>Optimizazioa</b>"
#: ../capplets/appearance/data/appearance.glade.h:3
msgid "<b>Menus and Toolbars</b>"
msgstr "<b>Menuak eta tresna-barrak</b>"
#: ../capplets/appearance/data/appearance.glade.h:4
msgid "<b>Preview</b>"
msgstr "<b>Aurrebista</b>"
#: ../capplets/appearance/data/appearance.glade.h:5
msgid "<b>Rendering</b>"
msgstr "<b>Errendatzea</b>"
#: ../capplets/appearance/data/appearance.glade.h:6
msgid "<b>Smoothing</b>"
msgstr "<b>Leuntzea</b>"
#: ../capplets/appearance/data/appearance.glade.h:7
msgid "<b>Subpixel Order</b>"
msgstr "<b>Azpipixelen ordena</b>"
#: ../capplets/appearance/data/appearance.glade.h:8
msgid "<b>_Wallpaper</b>"
msgstr "<b>_Horma-papera</b>"
#: ../capplets/appearance/data/appearance.glade.h:9
msgid "Appearance Preferences"
msgstr "Itxuraren hobespenak"
#: ../capplets/appearance/data/appearance.glade.h:10
msgid "Background"
msgstr "Atzeko planoa"
#: ../capplets/appearance/data/appearance.glade.h:11
msgid "Best _shapes"
msgstr "F_orma onenak"
#: ../capplets/appearance/data/appearance.glade.h:12
msgid "Best co_ntrast"
msgstr "Ko_ntraste onena"
#: ../capplets/appearance/data/appearance.glade.h:13
msgid "C_ustomize..."
msgstr "_Pertsonalizatu..."
#: ../capplets/appearance/data/appearance.glade.h:14
msgid "C_ut"
msgstr "E_baki"
#: ../capplets/appearance/data/appearance.glade.h:15
msgid ""
"Centered\n"
"Fill screen\n"
"Scaled\n"
"Zoom\n"
"Tiled"
msgstr ""
"Erdian\n"
"Bete pantaila\n"
"Eskalatu\n"
"Zooma\n"
"Lauza moduan"
#: ../capplets/appearance/data/appearance.glade.h:20
msgid "Changing your cursor theme takes effect the next time you log in."
msgstr ""
"Kurtsorearen gaiaren aldaketak ez du eraginik izango saioa berriro hasi arte."
#: ../capplets/appearance/data/appearance.glade.h:21
msgid "Colors"
msgstr "Koloreak"
#: ../capplets/appearance/data/appearance.glade.h:22
msgid "Controls"
msgstr "Kontrolak"
#: ../capplets/appearance/data/appearance.glade.h:23
msgid "Customize Theme"
msgstr "Pertsonalizatu gaia"
#: ../capplets/appearance/data/appearance.glade.h:24
msgid "D_etails..."
msgstr "_Xehetasunak..."
#: ../capplets/appearance/data/appearance.glade.h:25
msgid "Des_ktop font:"
msgstr "_Mahaigaineko letra-tipoa:"
#: ../capplets/appearance/data/appearance.glade.h:26
msgid "Edit"
msgstr "Editatu"
#: ../capplets/appearance/data/appearance.glade.h:27
msgid "Font Rendering Details"
msgstr "Letra-tipoak errendatzeko xehetasunak"
#: ../capplets/appearance/data/appearance.glade.h:28
msgid "Fonts"
msgstr "Letra-tipoa"
#: ../capplets/appearance/data/appearance.glade.h:29
msgid "Go _to Fonts Folder"
msgstr "Joan _letra-tipoen karpetara"
#: ../capplets/appearance/data/appearance.glade.h:30
msgid "Gra_yscale"
msgstr "Gris-es_kala"
#: ../capplets/appearance/data/appearance.glade.h:31
msgid "Icons"
msgstr "Ikonoak"
#: ../capplets/appearance/data/appearance.glade.h:32
msgid "Interface"
msgstr "Interfazea"
#: ../capplets/appearance/data/appearance.glade.h:33
msgid "Large"
msgstr "Handia"
#: ../capplets/appearance/data/appearance.glade.h:34
msgid "N_one"
msgstr "B_at ere ez"
#: ../capplets/appearance/data/appearance.glade.h:35
msgid "New File"
msgstr "Fitxategi berria"
#: ../capplets/appearance/data/appearance.glade.h:36
msgid "Open File"
msgstr "Ireki fitxategia"
#: ../capplets/appearance/data/appearance.glade.h:37
msgid "Open a dialog to specify the color"
msgstr "Ireki elkarrizketa-koadroa kolorea zehazteko"
#: ../capplets/appearance/data/appearance.glade.h:38
msgid "Pointer"
msgstr "Erakuslea"
#: ../capplets/appearance/data/appearance.glade.h:39
msgid "R_esolution:"
msgstr "_Bereizmena:"
#: ../capplets/appearance/data/appearance.glade.h:40
msgid "Save File"
msgstr "Gorde fitxategia"
#: ../capplets/appearance/data/appearance.glade.h:41
msgid "Save Theme As..."
msgstr "Gorde gaia honela..."
#: ../capplets/appearance/data/appearance.glade.h:42
msgid "Save _As..."
msgstr "Gorde _honela..."
#: ../capplets/appearance/data/appearance.glade.h:43
msgid "Save _background image"
msgstr "Gorde _atzeko planoko irudia"
#: ../capplets/appearance/data/appearance.glade.h:44
msgid "Show _icons in menus"
msgstr "Erakutsi _ikonoak menuetan"
#: ../capplets/appearance/data/appearance.glade.h:45
msgid "Small"
msgstr "Txikia"
#: ../capplets/appearance/data/appearance.glade.h:46
msgid ""
"Solid color\n"
"Horizontal gradient\n"
"Vertical gradient"
msgstr ""
"Kolore lisoa\n"
"Gradiente horizontala\n"
"Gradiente bertikala"
#: ../capplets/appearance/data/appearance.glade.h:49
msgid "Sub_pixel (LCDs)"
msgstr "Azpi_pixela (LCDak)"
#: ../capplets/appearance/data/appearance.glade.h:50
msgid "Sub_pixel smoothing (LCDs)"
msgstr "Azpi_pixelen leuntzea (LCDak)"
#: ../capplets/appearance/data/appearance.glade.h:51
msgid "Text"
msgstr "Testua"
#: ../capplets/appearance/data/appearance.glade.h:52
msgid ""
"Text below items\n"
"Text beside items\n"
"Icons only\n"
"Text only"
msgstr ""
"Testua ikonoen azpian\n"
"Testua ikonoen alboan\n"
"Ikonoak bakarrik\n"
"Testua bakarrik"
#: ../capplets/appearance/data/appearance.glade.h:56
msgid "The current controls theme does not support color schemes."
msgstr "Uneko kontrolen gaiak ez du kolore-eskemarik onartzen."
#: ../capplets/appearance/data/appearance.glade.h:57
#: ../vfs-methods/themus/themus-properties-main.c:92
msgid "Theme"
msgstr "Gaia"
#: ../capplets/appearance/data/appearance.glade.h:58
msgid "Toolbar _button labels:"
msgstr "Tresna-barrako _botoien etiketak:"
#. vertical hinting, pixel order blue, green, red
#: ../capplets/appearance/data/appearance.glade.h:60
msgid "VB_GR"
msgstr "BU_BG"
#: ../capplets/appearance/data/appearance.glade.h:61
msgid "Window Border"
msgstr "Leiho-ertza"
#: ../capplets/appearance/data/appearance.glade.h:62
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:48
msgid "_Add..."
msgstr "_Gehitu..."
#: ../capplets/appearance/data/appearance.glade.h:63
msgid "_Application font:"
msgstr "_Aplikazioetarako letra-tipoa:"
#. pixel order blue, green, red
#: ../capplets/appearance/data/appearance.glade.h:65
msgid "_BGR"
msgstr "_UGB"
#: ../capplets/appearance/data/appearance.glade.h:66
msgid "_Copy"
msgstr "_Kopiatu"
#: ../capplets/appearance/data/appearance.glade.h:67
msgid "_Description:"
msgstr "_Azalpena:"
#: ../capplets/appearance/data/appearance.glade.h:68
msgid "_Document font:"
msgstr "_Dokumentuaren letra-tipoa:"
#: ../capplets/appearance/data/appearance.glade.h:69
msgid "_Editable menu shortcut keys"
msgstr "Menuen laster-tekla _editagarriak"
#: ../capplets/appearance/data/appearance.glade.h:70
msgid "_File"
msgstr "_Fitxategia"
#: ../capplets/appearance/data/appearance.glade.h:71
msgid "_Fixed width font:"
msgstr "_Zabalera finkodun letra-tipoa:"
#: ../capplets/appearance/data/appearance.glade.h:72
msgid "_Full"
msgstr "_Osoa"
#: ../capplets/appearance/data/appearance.glade.h:73
msgid "_Input boxes:"
msgstr "_Sarrerako guneak:"
#: ../capplets/appearance/data/appearance.glade.h:74
msgid "_Install..."
msgstr "_Instalatu..."
#: ../capplets/appearance/data/appearance.glade.h:75
msgid "_Medium"
msgstr "_Tartekoa"
#: ../capplets/appearance/data/appearance.glade.h:76
msgid "_Monochrome"
msgstr "_Kolore bakarra"
#: ../capplets/appearance/data/appearance.glade.h:77
msgid "_Name:"
msgstr "I_zena:"
#: ../capplets/appearance/data/appearance.glade.h:78
msgid "_New"
msgstr "Be_rria"
#: ../capplets/appearance/data/appearance.glade.h:79
msgid "_None"
msgstr "_Bat ere ez"
#: ../capplets/appearance/data/appearance.glade.h:80
msgid "_Open"
msgstr "_Ireki"
#: ../capplets/appearance/data/appearance.glade.h:81
msgid "_Paste"
msgstr "It_satsi"
#: ../capplets/appearance/data/appearance.glade.h:82
msgid "_Print"
msgstr "I_nprimatu"
#: ../capplets/appearance/data/appearance.glade.h:83
msgid "_Quit"
msgstr "Ir_ten"
#. pixel order red, green, blue
#: ../capplets/appearance/data/appearance.glade.h:85
msgid "_RGB"
msgstr "_GBU"
#: ../capplets/appearance/data/appearance.glade.h:86
msgid "_Reset to Defaults"
msgstr "Berrasieratu _lehenespenera"
#: ../capplets/appearance/data/appearance.glade.h:87
msgid "_Save"
msgstr "_Gorde"
#: ../capplets/appearance/data/appearance.glade.h:88
msgid "_Selected items:"
msgstr "_Hautatutako elementuak:"
#: ../capplets/appearance/data/appearance.glade.h:89
msgid "_Size:"
msgstr "_Tamaina:"
#: ../capplets/appearance/data/appearance.glade.h:90
msgid "_Slight"
msgstr "_Arina"
#: ../capplets/appearance/data/appearance.glade.h:91
msgid "_Style:"
msgstr "_Estiloa:"
#: ../capplets/appearance/data/appearance.glade.h:92
msgid "_Tooltips:"
msgstr "_Argibidea:"
#. vertical hinting, pixel order red, green, blue
#: ../capplets/appearance/data/appearance.glade.h:94
msgid "_VRGB"
msgstr "_BGBU"
#: ../capplets/appearance/data/appearance.glade.h:95
msgid "_Window title font:"
msgstr "_Leihoaren izenburuaren letra-tipoa:"
#: ../capplets/appearance/data/appearance.glade.h:96
msgid "_Windows:"
msgstr "_Leihoak:"
#: ../capplets/appearance/data/appearance.glade.h:97
msgid "dots per inch"
msgstr "puntu hazbeteko"
#: ../capplets/appearance/data/gnome-appearance-properties.desktop.in.in.h:1
msgid "Appearance"
msgstr "Itxura"
#: ../capplets/appearance/data/gnome-appearance-properties.desktop.in.in.h:2
msgid "Customize the look of the desktop"
msgstr "Pertsonalizatu mahaigainaren itxura"
#: ../capplets/appearance/data/gnome-theme-installer.desktop.in.in.h:1
msgid "Installs themes packages for various parts of the desktop"
msgstr "Mahaigaineko hainbat zatiren gaiak instalatzen ditu"
#: ../capplets/appearance/data/gnome-theme-installer.desktop.in.in.h:2
msgid "Theme Installer"
msgstr "Gai-instalatzailea"
#: ../capplets/appearance/data/gnome-theme-package.xml.in.h:1
msgid "Gnome Theme Package"
msgstr "GNOMEko gai-paketea"
#: ../capplets/appearance/gnome-wp-info.c:45
msgid "No Wallpaper"
msgstr "Irudirik ez"
#. translators: <b>wallpaper name</b>
#. * mime type, x pixel(s) by y pixel(s)
#. * Folder: /path/to/file
#.
#: ../capplets/appearance/gnome-wp-item.c:364
#, c-format
msgid ""
"<b>%s</b>\n"
"%s, %d %s by %d %s\n"
"Folder: %s"
msgstr ""
"<b>%s</b>\n"
"%s, %d %s [%d %s(e)k]\n"
"Karpeta: %s"
#: ../capplets/appearance/gnome-wp-item.c:370
#: ../capplets/appearance/gnome-wp-item.c:372
msgid "pixel"
msgid_plural "pixels"
msgstr[0] "pixel"
msgstr[1] "pixel"
#: ../capplets/appearance/theme-installer.c:171
#: ../capplets/appearance/theme-installer.c:221
msgid "Cannot install theme"
msgstr "Ezin da gaia instalatu"
#: ../capplets/appearance/theme-installer.c:173
#, c-format
msgid "The %s utility is not installed."
msgstr "%s tresna instalatu gabe dago."
#: ../capplets/appearance/theme-installer.c:223
msgid "There was a problem while extracting the theme."
msgstr "Arazoa gertatuta da gaia erauztean."
#: ../capplets/appearance/theme-installer.c:246
msgid "There was an error installing the selected file"
msgstr "Errorea gertatu da hautatutako fitxategia instalatzean"
#: ../capplets/appearance/theme-installer.c:247
#, c-format
msgid "\"%s\" does not appear to be a valid theme."
msgstr "\"%s\" ez dirudi baliozko gaia denik."
#: ../capplets/appearance/theme-installer.c:248
#, c-format
msgid ""
"\"%s\" does not appear to be a valid theme. It may be a theme engine which "
"you need to compile."
msgstr ""
"\"%s\" ez dirudi baliozko gaia denik. Agian konpilatu behar den gaien "
"motorea da."
#: ../capplets/appearance/theme-installer.c:287
#, c-format
msgid "GNOME Theme %s correctly installed"
msgstr "GNOMEren %s gaia ongi instalatu da"
#: ../capplets/appearance/theme-installer.c:347
#, c-format
msgid "Installation for theme \"%s\" failed."
msgstr "\"%s\" gaiaren instalazioak huts egin du."
#: ../capplets/appearance/theme-installer.c:379
#, c-format
msgid "The theme \"%s\" has been installed."
msgstr "\"%s\" gaia instalatu da."
#: ../capplets/appearance/theme-installer.c:385
msgid "Would you like to apply it now, or keep your current theme?"
msgstr "Nahiago duzu orain aplikatzea, edo uneko gaia mantentzea?"
#: ../capplets/appearance/theme-installer.c:387
msgid "Keep Current Theme"
msgstr "Mantendu uneko gaia"
#: ../capplets/appearance/theme-installer.c:389
msgid "Apply New Theme"
msgstr "Aplikatu gai berria"
#: ../capplets/appearance/theme-installer.c:491
msgid "Failed to create temporary directory"
msgstr "Huts egin du aldi baterako direktorioa sortzean"
#: ../capplets/appearance/theme-installer.c:551
msgid "New themes have been successfully installed."
msgstr "Gai berriak ongi instalatu dira."
#: ../capplets/appearance/theme-installer.c:579
msgid "No theme file location specified to install"
msgstr "Ez da gaia-fitxategiaren kokalekurik zehaztu instalatzeko"
#: ../capplets/appearance/theme-installer.c:599
#, c-format
msgid ""
"Insufficient permissions to install the theme in:\n"
"%s"
msgstr ""
"Ez dituzu gaia hemen instalatzeko behar adina baimen:\n"
"%s"
#: ../capplets/appearance/theme-installer.c:621
#, c-format
msgid ""
"%s is the path where the theme files will be installed. This can not be "
"selected as the source location"
msgstr ""
"%s bide-izenean instalatuko dira gai-fitxategiak. Ezin da iturburu-kokaleku "
"gisa hautatu"
#: ../capplets/appearance/theme-installer.c:689
msgid "Select Theme"
msgstr "Hautatu gaia"
#: ../capplets/appearance/theme-installer.c:693
msgid "Theme Packages"
msgstr "Gai-paketeak"
#: ../capplets/appearance/theme-save.c:91
msgid "Theme name must be present"
msgstr "Gaiaren izenak agertu egin behar du"
#: ../capplets/appearance/theme-save.c:161
msgid "The theme already exists. Would you like to replace it?"
msgstr "Gaia jadanik badago. Ordeztea nahi duzu?"
#: ../capplets/appearance/theme-save.c:162
msgid "_Overwrite"
msgstr "_Gainidatzi"
#: ../capplets/appearance/theme-util.c:69
msgid "Would you like to delete this theme?"
msgstr "Gai hau kentzea nahi duzu?"
#: ../capplets/appearance/theme-util.c:121
msgid "Theme cannot be deleted"
msgstr "Gaia ezin da ezabatu"
#: ../capplets/common/activate-settings-daemon.c:16
msgid ""
"Unable to start the settings manager 'gnome-settings-daemon'.\n"
"Without the GNOME settings manager running, some preferences may not take "
"effect. This could indicate a problem with Bonobo, or a non-GNOME (e.g. KDE) "
"settings manager may already be active and conflicting with the GNOME "
"settings manager."
msgstr ""
"Ezin izan da 'gnome-settings-daemon' ezarpen-kudeatzailea abiarazi.\n"
"GNOMEren ezarpen-kudeatzailea exekutatu gabe, baliteke hobespen batzuek "
"eraginik ez izatea. Horrek Bonoborekin arazoa dagoela adieraz dezake, edo "
"GNOMErena ez den ezarpen-kudeatzailea (adib. KDE) aktibatuta egon daiteke "
"eta GNOME ezarpen-kudeatzailearekin gatazkan egon."
#: ../capplets/common/capplet-stock-icons.c:92
#, c-format
msgid "Unable to load stock icon '%s'\n"
msgstr "Ezin izan da '%s' ikono generikoa kargatu \n"
#: ../capplets/common/capplet-util.c:240 ../capplets/common/capplet-util.c:242
msgid "Just apply settings and quit"
msgstr "Aplikatu ezarpenak eta irten"
#: ../capplets/common/capplet-util.c:244
#: ../capplets/keyboard/gnome-keyboard-properties.c:252
#: ../capplets/sound/sound-properties-capplet.c:1030
msgid "Retrieve and store legacy settings"
msgstr "Berreskuratu eta gorde aurreko ezarpenak"
#: ../capplets/common/capplet-util.c:344
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:390
#, c-format
msgid "There was an error displaying help: %s"
msgstr "Errorea gertatu da laguntza bistaratzean: %s"
#: ../capplets/common/file-transfer-dialog.c:94
#, c-format
msgid "Copying file: %u of %u"
msgstr "Fitxategiak kopiatzen: %u / %u"
#: ../capplets/common/file-transfer-dialog.c:154
#, c-format
msgid "Copying '%s'"
msgstr "'%s' kopiatzen"
#: ../capplets/common/file-transfer-dialog.c:185
#: ../capplets/common/file-transfer-dialog.c:309
msgid "Copying files"
msgstr "Fitxategiak kopiatzea"
#: ../capplets/common/file-transfer-dialog.c:221
msgid "Parent Window"
msgstr "Guraso-leihoa"
#: ../capplets/common/file-transfer-dialog.c:222
msgid "Parent window of the dialog"
msgstr "Elkarizketa-koadroaren guraso-leihoa"
#: ../capplets/common/file-transfer-dialog.c:228
msgid "From URI"
msgstr "URItik"
#: ../capplets/common/file-transfer-dialog.c:229
msgid "URI currently transferring from"
msgstr "URI unean hemendik transferitzen ari da:"
#: ../capplets/common/file-transfer-dialog.c:236
msgid "To URI"
msgstr "URIra"
#: ../capplets/common/file-transfer-dialog.c:237
msgid "URI currently transferring to"
msgstr "URI unean hona transferitzen ari da:"
#: ../capplets/common/file-transfer-dialog.c:244
msgid "Fraction completed"
msgstr "Frakzioa bukatuta"
#: ../capplets/common/file-transfer-dialog.c:245
msgid "Fraction of transfer currently completed"
msgstr "Transferentzia-frakzioa unean bukatuta"
#: ../capplets/common/file-transfer-dialog.c:252
msgid "Current URI index"
msgstr "Uneko URIaren indizea"
#: ../capplets/common/file-transfer-dialog.c:253
msgid "Current URI index - starts from 1"
msgstr "Uneko URIaren indizea - 1etik hasten da"
#: ../capplets/common/file-transfer-dialog.c:260
msgid "Total URIs"
msgstr "URIak guztira"
#: ../capplets/common/file-transfer-dialog.c:261
msgid "Total number of URIs"
msgstr "URIen kopurua guztira"
#: ../capplets/common/file-transfer-dialog.c:422
msgid "Connecting..."
msgstr "Konektatzen..."
#: ../capplets/common/gconf-property-editor.c:170
msgid "Key"
msgstr "Tekla"
#: ../capplets/common/gconf-property-editor.c:171
msgid "GConf key to which this property editor is attached"
msgstr "Propietate-editore hau asoziatuta duen Gconf-en tekla"
#: ../capplets/common/gconf-property-editor.c:177
msgid "Callback"
msgstr "Atzeradeia"
#: ../capplets/common/gconf-property-editor.c:178
msgid "Issue this callback when the value associated with key gets changed"
msgstr "Egin atzeradei hau teklarekin lotutako balioa aldatzen denean"
#: ../capplets/common/gconf-property-editor.c:183
msgid "Change set"
msgstr "Aldaketa-multzoa"
#: ../capplets/common/gconf-property-editor.c:184
msgid ""
"GConf change set containing data to be forwarded to the gconf client on apply"
msgstr ""
"GConf-eko aldaketa-multzoa, aplikatzean gconf-en bezeroari bidali behar "
"zaizkion datuak dituena"
#: ../capplets/common/gconf-property-editor.c:189
msgid "Conversion to widget callback"
msgstr "Trepeta-atzeradeirako bihurketa"
#: ../capplets/common/gconf-property-editor.c:190
msgid ""
"Callback to be issued when data are to be converted from GConf to the widget"
msgstr ""
"Datuak Gconf-etik trepetara bihurtu behar direnean egin beharreko atzeradeia"
#: ../capplets/common/gconf-property-editor.c:195
msgid "Conversion from widget callback"
msgstr "Bihurketa trepeta-atzeradeitik"
#: ../capplets/common/gconf-property-editor.c:196
msgid ""
"Callback to be issued when data are to be converted to GConf from the widget"
msgstr ""
"Datuak trepetatik Gconf-era bihurtu behar direnean egin beharreko atzeradeia"
#: ../capplets/common/gconf-property-editor.c:201
msgid "UI Control"
msgstr "UI Kontrola"
#: ../capplets/common/gconf-property-editor.c:202
msgid "Object that controls the property (normally a widget)"
msgstr "Propietatea kontrolatzen duen objektua (normalean trepeta)"
#: ../capplets/common/gconf-property-editor.c:217
msgid "Property editor object data"
msgstr "Propietate-editorearen objektuaren datuak"
#: ../capplets/common/gconf-property-editor.c:218
msgid "Custom data required by the specific property editor"
msgstr "Zehaztutako propietate-editoreak informazio pertsonalizatua behar du"
#: ../capplets/common/gconf-property-editor.c:224
msgid "Property editor data freeing callback"
msgstr "Propietate-editorearen datuak atzeradeia libratzen"
#: ../capplets/common/gconf-property-editor.c:225
msgid "Callback to be issued when property editor object data is to be freed"
msgstr ""
"Propietate-editorearen objektuaren datuak libratu behar direnean egin "
"beharreko atzeradeia"
#: ../capplets/common/gconf-property-editor.c:1468
#, c-format
msgid ""
"Couldn't find the file '%s'.\n"
"\n"
"Please make sure it exists and try again, or choose a different background "
"picture."
msgstr ""
"Ezin izan da '%s' fitxategia aurkitu.\n"
"\n"
"Ziurtatu existitzen dela eta saiatu berriro, edo aukeratu atzeko planoko "
"beste irudi bat."
#: ../capplets/common/gconf-property-editor.c:1476
#, c-format
msgid ""
"I don't know how to open the file '%s'.\n"
"Perhaps it's a kind of picture that is not yet supported.\n"
"\n"
"Please select a different picture instead."
msgstr ""
"Ezin da jakin '%s' fitxategia nola ireki.\n"
"Beharbada irudi-mota hori oraindik ez da onartzen.\n"
"\n"
"Hautatu beste irudi bat."
#: ../capplets/common/gconf-property-editor.c:1595
msgid "Please select an image."
msgstr "Hautatu irudi bat."
#: ../capplets/common/gconf-property-editor.c:1600
msgid "_Select"
msgstr "_Hautatu"
#: ../capplets/common/gnome-theme-info.c:639
msgid "Default Pointer - Current"
msgstr "Erakusle lehenetsia - Unekoa"
#: ../capplets/common/gnome-theme-info.c:643
msgid "White Pointer"
msgstr "Erakusle zuria"
#: ../capplets/common/gnome-theme-info.c:644
msgid "White Pointer - Current"
msgstr "Erakusle zuria - Unekoa"
#: ../capplets/common/gnome-theme-info.c:648
msgid "Large Pointer"
msgstr "Erakusle handia"
#: ../capplets/common/gnome-theme-info.c:649
msgid "Large Pointer - Current"
msgstr "Erakusle handia - Unekoa"
#: ../capplets/common/gnome-theme-info.c:653
msgid "Large White Pointer - Current"
msgstr "Erakusle zuria handia - Unekoa"
#: ../capplets/common/gnome-theme-info.c:654
msgid "Large White Pointer"
msgstr "Erakusle zuria handia"
#: ../capplets/default-applications/default-applications.desktop.in.in.h:1
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:22
msgid "Preferred Applications"
msgstr "Hobetsitako aplikazioak"
#: ../capplets/default-applications/default-applications.desktop.in.in.h:2
msgid "Select your default applications"
msgstr "Hautatu zure aplikazio lehenetsiak"
#: ../capplets/default-applications/gnome-at-session.desktop.in.in.h:1
msgid "Autostart the preferred AT"
msgstr "Autoabiarazi AT hobetsia"
#: ../capplets/default-applications/gnome-at-session.desktop.in.in.h:2
msgid "Visual"
msgstr "Bisuala"
#: ../capplets/default-applications/gnome-da-capplet.c:80
#: ../capplets/default-applications/gnome-da-capplet.c:112
#: ../capplets/default-applications/gnome-da-capplet.c:133
#: ../capplets/default-applications/gnome-da-capplet.c:177
#: ../capplets/default-applications/gnome-da-capplet.c:222
#: ../capplets/default-applications/gnome-da-capplet.c:279
#: ../capplets/default-applications/gnome-da-capplet.c:330
#: ../capplets/default-applications/gnome-da-capplet.c:381
#: ../capplets/default-applications/gnome-da-capplet.c:434
#: ../capplets/default-applications/gnome-da-capplet.c:484
#: ../capplets/default-applications/gnome-da-capplet.c:877
#: ../capplets/default-applications/gnome-da-capplet.c:899
#, c-format
msgid "Error saving configuration: %s"
msgstr "Errorea konfigurazioa gordetzean: %s"
#: ../capplets/default-applications/gnome-da-capplet.c:1100
msgid "Could not load the main interface"
msgstr "Ezin izan da interfaze nagusia kargatu"
#: ../capplets/default-applications/gnome-da-capplet.c:1102
msgid "Please make sure that the applet is properly installed"
msgstr "Ziurtatu zaitez daemon hau ongi instalatu dela."
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:1
msgid "<b>Image Viewer</b>"
msgstr "<b>Irudi-ikustailea</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:2
msgid "<b>Instant Messenger</b>"
msgstr "<b>Berehalako mezularitza</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:3
msgid "<b>Mail Reader</b>"
msgstr "<b>Posta-irakurlea</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:4
msgid "<b>Mobility</b>"
msgstr "<b>Mugikortasuna</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:5
msgid "<b>Multimedia Player</b>"
msgstr "<b>Multimedia-erreproduzigailua</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:6
msgid "<b>Terminal Emulator</b>"
msgstr "<b>Terminal-emuladorea</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:7
msgid "<b>Text Editor</b>"
msgstr "<b>Testu-editorea</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:8
msgid "<b>Video Player</b>"
msgstr "<b>Bideo-erreproduzigailua</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:9
msgid "<b>Visual</b>"
msgstr "<b>Bisuala</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:10
msgid "<b>Web Browser</b>"
msgstr "<b>Web arakatzailea</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:11
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:14
msgid "Accessibility"
msgstr "Erabilerraztasuna"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:13
#, no-c-format
msgid "All %s occurrences will be replaced with actual link"
msgstr "%s(r)en gertaera guztiak uneko estekarekin ordeztuko dira"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:14
msgid "C_ommand:"
msgstr "Ko_mandoa:"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:15
msgid "Co_mmand:"
msgstr "Ko_mandoa:"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:16
msgid "E_xecute flag:"
msgstr "E_xekutatu bandera:"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:17
msgid "Internet"
msgstr "Internet"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:18
msgid "Multimedia"
msgstr "Multimedia"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:19
msgid "Open link in new _tab"
msgstr "Ireki esteka _fitxa berrian"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:20
msgid "Open link in new _window"
msgstr "Ireki esteka _leiho berrian"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:21
msgid "Open link with web browser _default"
msgstr "Ireki esteka lehenetsitako web arakatzailearekin"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:23
msgid "Run at st_art"
msgstr "Exekutatu _abioan"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:24
msgid "Run in t_erminal"
msgstr "Exekutatu _terminalean"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:25
msgid "System"
msgstr "Sistema"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:26
msgid "_Run at start"
msgstr "Exekutatu _abioan"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:1
msgid "Balsa"
msgstr "Balsa"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:2
msgid "Banshee Music Player"
msgstr "Banshee musika erreproduzigailua"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:3
msgid "Claws Mail"
msgstr "Claws posta"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:4
msgid "Dasher"
msgstr "Dasher"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:5
msgid "Debian Sensible Browser"
msgstr "Debianeko web arakatzaile lehenetsia"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:6
msgid "Debian Terminal Emulator"
msgstr "Debianeko terminal lehenetsia"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:7
msgid "ETerm"
msgstr "ETerm"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:8
msgid "Encompass"
msgstr "Encompass"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:9
msgid "Epiphany Web Browser"
msgstr "Epiphany web arakatzailea"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:10
msgid "Evolution Mail Reader"
msgstr "Evolution posta-irakurlea"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:11
msgid "Firebird"
msgstr "Firebird"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:12
msgid "Firefox"
msgstr "Firebox"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:13
msgid "GNOME Magnifier without Screen Reader"
msgstr "GNOMEren lupa pantaila-irakurgailurik gabe"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:14
msgid "GNOME OnScreen Keyboard"
msgstr "GNOMEren pantailako teklatua"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:15
msgid "GNOME Terminal"
msgstr "GNOMEko terminala"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:16
msgid "Galeon"
msgstr "Galeon"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:17
msgid "Gnopernicus"
msgstr "Gnopernicus"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:18
msgid "Gnopernicus with Magnifier"
msgstr "Gnopernicus luparekin"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:19
msgid "Iceape"
msgstr "Iceape"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:20
msgid "Iceape Mail"
msgstr "Iceape posta"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:21
msgid "Icedove"
msgstr "Icedove"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:22
msgid "Iceweasel"
msgstr "Iceweasel"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:23
msgid "KDE Magnifier without Screen Reader"
msgstr "KDEren lupa pantaila-irakurgailurik gabe"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:24
msgid "KMail"
msgstr "KMail"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:25
msgid "Konqueror"
msgstr "Konqueror"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:26
msgid "Linux Screen Reader"
msgstr "Linuxeko pantaila-irakurgailua"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:27
msgid "Linux Screen Reader with Magnifier"
msgstr "Linuxeko pantaila-irakurgailua luparekin"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:28
msgid "Midori"
msgstr "Midori"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:29
msgid "Mozilla"
msgstr "Mozilla"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:30
msgid "Mozilla 1.6"
msgstr "Mozilla 1.6"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:31
msgid "Mozilla Mail"
msgstr "Mozilla posta"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:32
msgid "Mozilla Thunderbird"
msgstr "Mozilla Thunderbird"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:33
msgid "Muine Music Player"
msgstr "Muine musika-erreproduzigailua"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:34
msgid "Mutt"
msgstr "Mutt"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:35
msgid "NXterm"
msgstr "NXterm"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:36
msgid "Netscape Communicator"
msgstr "Netscape Communicator"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:37
msgid "Opera"
msgstr "Opera"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:38
msgid "Orca"
msgstr "Orca"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:39
msgid "Orca with Magnifier"
msgstr "Orca luparekin"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:40
msgid "RXVT"
msgstr "RXVT"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:41
msgid "Rhythmbox Music Player"
msgstr "Rhythmbox musika-erreproduzigailua"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:42
msgid "SeaMonkey"
msgstr "SeaMonkey"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:43
msgid "SeaMonkey Mail"
msgstr "SeaMonkey posta"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:44
msgid "Standard XTerminal"
msgstr "Xterminal estandarra"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:45
msgid "Sylpheed"
msgstr "Sylpheed"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:46
msgid "Sylpheed-Claws"
msgstr "Sylpheed-Claws"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:47
msgid "Thunderbird"
msgstr "Thunderbird"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:48
msgid "Totem Movie Player"
msgstr "Totem film-erreproduzigailua"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:49
msgid "aterm"
msgstr "aterm"
#: ../capplets/display/display-properties.desktop.in.in.h:1
msgid "Change screen resolution"
msgstr "Aldatu pantailaren bereizmena"
#: ../capplets/display/display-properties.desktop.in.in.h:2
msgid "Screen Resolution"
msgstr "Pantailaren bereizmena"
#: ../capplets/display/main.c:29
msgid "Normal"
msgstr "Arrunta"
#: ../capplets/display/main.c:30
msgid "Left"
msgstr "Ezkerrera"
#: ../capplets/display/main.c:31
msgid "Inverted"
msgstr "Alderantzikatuta"
#: ../capplets/display/main.c:32
msgid "Right"
msgstr "Eskuinera"
#: ../capplets/display/main.c:374
#, c-format
msgid "%d Hz"
msgstr "%d Hz"
#: ../capplets/display/main.c:514
msgid "_Resolution:"
msgstr "_Bereizmena:"
#: ../capplets/display/main.c:532
msgid "Re_fresh rate:"
msgstr "_Freskatze-maiztasuna:"
#: ../capplets/display/main.c:550
msgid "R_otation:"
msgstr "_Biraketa:"
#: ../capplets/display/main.c:569
msgid "Default Settings"
msgstr "Ezarpen lehenetsiak"
#: ../capplets/display/main.c:571
#, c-format
msgid "Screen %d Settings\n"
msgstr "Pantailaren %d ezarpenak\n"
#: ../capplets/display/main.c:592
msgid "Screen Resolution Preferences"
msgstr "Pantailaren bereizmenaren hobespenak"
#: ../capplets/display/main.c:627
#, c-format
msgid "_Make default for this computer (%s) only"
msgstr "Lehenetsi orde_nagailu honentzat (%s) bakarrik"
#: ../capplets/display/main.c:644
msgid "Options"
msgstr "Aukerak"
#: ../capplets/display/main.c:664
#, c-format
msgid ""
"Testing the new settings. If you don't respond in %d second the previous "
"settings will be restored."
msgid_plural ""
"Testing the new settings. If you don't respond in %d seconds the previous "
"settings will be restored."
msgstr[0] ""
"Ezarpen berriak probatzen. Segundo %d-ean erantzuten ez baduzu, aurreko "
"ezarpenak leheneratuko dira."
msgstr[1] ""
"Ezarpen berriak probatzen. %d segundotan erantzuten ez baduzu, aurreko "
"ezarpenak leheneratuko dira."
#: ../capplets/display/main.c:704
msgid "Keep Resolution"
msgstr "Mantendu bereizmena"
#: ../capplets/display/main.c:708
msgid "Do you want to keep this resolution?"
msgstr "Bereizmen hau utzi nahi duzu?"
#: ../capplets/display/main.c:734
msgid "Use _Previous Resolution"
msgstr "Erabili _aurreko bereizmena"
#: ../capplets/display/main.c:735
msgid "_Keep Resolution"
msgstr "_Mantendu bereizmena"
#: ../capplets/display/main.c:883
msgid ""
"The X server does not support the XRandR extension. Runtime resolution "
"changes to the display size are not available."
msgstr ""
"X zerbitzariak ez du XRandR luzapena onartzen. Saioan zehar pantailaren "
"bereizmenean egindako aldaketak ez daude erabilgarri."
#: ../capplets/display/main.c:890
msgid ""
"The version of the XRandR extension is incompatible with this program. "
"Runtime changes to the display size are not available."
msgstr ""
"XRandR luzapenaren bertsioa ez da bateragarria programa honekin. Saioan "
"zehar pantailaren tamainan egindako aldaketak ez daude erabilgarri."
#: ../capplets/keybindings/00-multimedia-key.xml.in.h:1
#: ../capplets/sound/gnome-settings-sound.desktop.in.in.h:2
msgid "Sound"
msgstr "Soinua"
#: ../capplets/keybindings/01-desktop-key.xml.in.h:1
msgid "Desktop"
msgstr "Mahaigaina"
#: ../capplets/keybindings/eggcellrendererkeys.c:21
msgid "New accelerator..."
msgstr "Bizkortzaile berria..."
#: ../capplets/keybindings/eggcellrendererkeys.c:163
#: ../capplets/keybindings/eggcellrendererkeys.c:164
msgid "Accelerator key"
msgstr "Tekla bizkortzailea"
#: ../capplets/keybindings/eggcellrendererkeys.c:173
#: ../capplets/keybindings/eggcellrendererkeys.c:174
msgid "Accelerator modifiers"
msgstr "Aldatzaile bizkortzaileak"
#: ../capplets/keybindings/eggcellrendererkeys.c:182
#: ../capplets/keybindings/eggcellrendererkeys.c:183
msgid "Accelerator keycode"
msgstr "Tekla bizkortzailearen kodea"
#: ../capplets/keybindings/eggcellrendererkeys.c:193
msgid "Accel Mode"
msgstr "Bizkortze-modua"
#: ../capplets/keybindings/eggcellrendererkeys.c:194
msgid "The type of accelerator."
msgstr "Bizkortzaile-mota."
#: ../capplets/keybindings/eggcellrendererkeys.c:242
#: ../capplets/keybindings/gnome-keybinding-properties.c:112
#: ../libbackground/applier.c:624 ../typing-break/drwright.c:482
msgid "Disabled"
msgstr "Desgaituta"
#: ../capplets/keybindings/gnome-keybinding-properties.c:523
msgid "<Unknown Action>"
msgstr "<Ekintza ezezaguna>"
#: ../capplets/keybindings/gnome-keybinding-properties.c:915
#, c-format
msgid ""
"The shortcut \"%s\" cannot be used because it will become impossible to type "
"using this key.\n"
"Please try with a key such as Control, Alt or Shift at the same time.\n"
msgstr ""
"\"%s\" laster-tekla ezin da erabili: erabilkaitza izango delako tekla hau "
"erabiltzean.\n"
"Saiatu Kontrol, Alt edo Maius bezalako tekla batekin aldi berean.\n"
#: ../capplets/keybindings/gnome-keybinding-properties.c:944
#, c-format
msgid ""
"The shortcut \"%s\" is already used for:\n"
" \"%s\"\n"
msgstr ""
"\"%s\" lasterbidea erabilita dago honetarako:\n"
" \"%s\"\n"
#: ../capplets/keybindings/gnome-keybinding-properties.c:976
#, c-format
msgid "Error setting new accelerator in configuration database: %s\n"
msgstr ""
"Errorea gertatu da konfigurazioko datu-basean bizkortzaile berria ezartzean: "
"%s\n"
#: ../capplets/keybindings/gnome-keybinding-properties.c:1026
#, c-format
msgid "Error unsetting accelerator in configuration database: %s\n"
msgstr ""
"Errorea gertatu da konfigurazioko datu-basean bizkortzailearen ezarpena "
"kentzean: %s\n"
#: ../capplets/keybindings/gnome-keybinding-properties.c:1141
msgid "Action"
msgstr "Ekintza"
#: ../capplets/keybindings/gnome-keybinding-properties.c:1165
msgid "Shortcut"
msgstr "Lasterbidea"
#.
#. * vim: sw=2 ts=8 cindent noai bs=2
#.
#: ../capplets/keybindings/gnome-keybinding-properties.glade.h:1
#: ../capplets/keybindings/keybinding.desktop.in.in.h:2
msgid "Keyboard Shortcuts"
msgstr "Laster-teklak"
#: ../capplets/keybindings/gnome-keybinding-properties.glade.h:2
msgid ""
"To edit a shortcut key, click on the corresponding row and type a new "
"accelerator, or press backspace to clear."
msgstr ""
"Laster-tekla bat editatzeko, egin klik dagokion errenkadan eta idatzi beste "
"bizkortzaile bat edo sakatu Atzera-tekla garbitzeko."
#: ../capplets/keybindings/keybinding.desktop.in.in.h:1
msgid "Assign shortcut keys to commands"
msgstr "Esleitu laster-teklak komandoei"
#: ../capplets/keyboard/gnome-keyboard-properties.c:244
#: ../capplets/keyboard/gnome-keyboard-properties.c:249
#: ../capplets/sound/sound-properties-capplet.c:1026
#: ../capplets/sound/sound-properties-capplet.c:1028
msgid ""
"Just apply settings and quit (compatibility only; now handled by daemon)"
msgstr ""
"Aplikatu ezarpenak eta irten (bateragarritasuna bakarrik; orain daemon-ek "
"kudeatzen du)"
#: ../capplets/keyboard/gnome-keyboard-properties.c:256
msgid "Start the page with the typing break settings showing"
msgstr "Abiarazi orria idazketa-etenaren ezarpenak erakutsiz"
#: ../capplets/keyboard/gnome-keyboard-properties.c:261
msgid "Start the page with the accessibility settings showing"
msgstr "Abiarazi orria erabilgarritasunaren ezarpenak erakutsiz"
#: ../capplets/keyboard/gnome-keyboard-properties.c:270
msgid "- GNOME Keyboard Preferences"
msgstr "- GNOMEko teklatuaren hobespenak"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:1
msgid " "
msgstr " "
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:2
msgid "<b>Bounce Keys</b>"
msgstr "<b>Errebote-teklak</b>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:3
msgid "<b>Cursor Blinking</b>"
msgstr "<b>Kurtsore keinukaria</b>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:4
msgid "<b>General</b>"
msgstr "<b>Orokorra</b>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:5
msgid "<b>Repeat Keys</b>"
msgstr "<b>Errepikatze-teklak</b>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:6
msgid "<b>Slow Keys</b>"
msgstr "<b>Tekla motelak</b>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:7
msgid "<b>Sticky Keys</b>"
msgstr "<b>Tekla itsaskorrak</b>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:8
msgid "<b>_Lock screen to enforce typing break</b>"
msgstr "<b>_Blokeatu pantaila idazketa-etena bultzatzeko</b>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:9
msgid "<small><i>Fast</i></small>"
msgstr "<small><i>Bizkorra</i></small>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:10
msgid "<small><i>Long</i></small>"
msgstr "<small><i>Luzea</i></small>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:11
msgid "<small><i>Short</i></small>"
msgstr "<small><i>Motza</i></small>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:12
msgid "<small><i>Slow</i></small>"
msgstr "<small><i>Mantsoa</i></small>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:13
msgid "A_cceleration:"
msgstr "_Azelerazioa:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:15
msgid "All_ow postponing of breaks"
msgstr "Baimena ematen du etenak atzeratzeko"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:16
msgid "Beep when _accessibility features are turned on or off"
msgstr ""
"Jo soinua erabilgarritasunaren funtzionalitatea aktibatzean/desaktibatzean"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:17
msgid "Beep when a _modifier key is pressed"
msgstr "Jo soinua tekla _aldatzailea sakatzean"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:18
msgid "Beep when a _toggle key is pressed"
msgstr "Jo soinua tekla _txandakari bat sakatzean"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:19
msgid "Beep when a key is pr_essed"
msgstr "_Jo soinua tekla bat sakatzean"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:20
msgid "Beep when a key is reje_cted"
msgstr "Jo soinua tekla bat _ezesten bada"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:21
msgid "Beep when key is _accepted"
msgstr "Jo soinua tekla bat _onartzen bada"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:22
msgid "Beep when key is _rejected"
msgstr "Jo soinua tekla _ezesten bada"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:23
msgid "Check if breaks are allowed to be postponed"
msgstr "Egiaztatu etenak atzeratzea baimenduta dagoen"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:24
msgid "Choose a Keyboard Model"
msgstr "Aukeratu teklatu modeloa"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:25
msgid "Choose a Layout"
msgstr "Aukeratu diseinua"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:26
msgid "Cursor _blinks in text fields"
msgstr "Kurtsorea _keinuka testu-eremuetan"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:27
msgid "Cursor blinks speed"
msgstr "Kurtsore-keinuaren abiadura"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:28
msgid "D_elay:"
msgstr "_Atzerapena:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:29
msgid "Disa_ble sticky keys if two keys are pressed together"
msgstr "_Desgaitu tekla itsaskorrak bi tekla batera sakatzen badira"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:30
msgid "Duration of the break when typing is disallowed"
msgstr "Etenaren iraupena idaztea debekatuta dagoenean"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:31
msgid "Duration of work before forcing a break"
msgstr "Lanaren iraupena etena egitera behartu baino lehen"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:32
msgid "General"
msgstr "Orokorra"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:33
msgid "Key presses _repeat when key is held down"
msgstr ""
"T_ekla sakatuta dagoen bitartean, tekla hori behin eta berriz errepikatzen da"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:34
msgid "Keyboard Accessibility Notifications"
msgstr "Teklatuaren erabilerraztasunaren jakinarazpenak"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:35
msgid "Keyboard Layout Options"
msgstr "Teklatuaren diseinu-aukerak"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:36
msgid "Keyboard Preferences"
msgstr "Teklatuaren hobespenak"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:37
msgid "Keyboard _model:"
msgstr "Teklatu _modeloa:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:38
msgid "Layout _Options..."
msgstr "Diseinu-_aukerak..."
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:39
msgid "Layouts"
msgstr "Diseinuak"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:40
msgid ""
"Lock screen after a certain duration to help prevent repetitive keyboard use "
"injuries"
msgstr ""
"Blokeatu pantaila denbora baten ondoren, teklatua denbora askoan erabiltzeak "
"eragindako kalteak saihesten laguntzeko"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:42
msgid "Preview:"
msgstr "Aurrebista:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:43
msgid "Repeat keys speed"
msgstr "Tekla-errepikatzeen abiadura"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:44
msgid "Reset to De_faults"
msgstr "Berrasieratu _lehenespenetara"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:46
msgid "Separate _layout for each window"
msgstr "Bereiztu _diseinuak leiho bakoitzeko"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:47
msgid "Typing Break"
msgstr "Idazketa-etena"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:49
msgid "_Allow to control the pointer using the keyboard"
msgstr "_Baimendu kurtsorea teklatuarekin kontrolatzea"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:50
msgid "_Allow to turn accessibility features on and off from the keyboard"
msgstr ""
"_Baimendu erabilgarritasunaren funtzionalitatea teklatutik aktibatzea/"
"desaktibatzea"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:51
msgid "_Break interval lasts:"
msgstr "_Etenak iraupen hau du:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:52
msgid "_Delay:"
msgstr "Atzera_pena:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:53
msgid "_Ignore fast duplicate keypresses"
msgstr "_Ez ikusi egin azkar sakatutako bikoiztutako teklei"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:54
msgid "_Layouts:"
msgstr "_Diseinuak:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:55
msgid "_Models:"
msgstr "_Modeloak:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:56
msgid "_Notifications..."
msgstr "_Jakinarazpenak..."
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:57
msgid "_Only accept long keypresses"
msgstr "_Denbora luzean sakatutako teklak soilik onartu"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:58
msgid "_Selected layouts:"
msgstr "Hautatutako _diseinuak:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:59
msgid "_Simulate simultanous keypresses"
msgstr "_Simulatu tekla anitzak sakatzea"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:60
msgid "_Speed:"
msgstr "Abia_dura:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:62
msgid "_Variants:"
msgstr "_Aldagaiak:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:63
msgid "_Vendors:"
msgstr "_Hornitzaileak:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:64
msgid "_Work interval lasts:"
msgstr "_Lanaren etenak iraupen hau du:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:65
msgid "gtk-close"
msgstr ""
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:66
msgid "gtk-help"
msgstr ""
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:67
msgid "minutes"
msgstr "minutu"
#: ../capplets/keyboard/gnome-keyboard-properties-xkb.c:82
msgid "Unknown"
msgstr "Ezezaguna"
#: ../capplets/keyboard/gnome-keyboard-properties-xkbltadd.c:211
#: ../capplets/keyboard/gnome-keyboard-properties-xkblt.c:307
#: ../capplets/keyboard/gnome-keyboard-properties-xkbot.c:211
msgid "Default"
msgstr "Lehenetsia"
#: ../capplets/keyboard/gnome-keyboard-properties-xkblt.c:301
msgid "Layout"
msgstr "Diseinua"
#: ../capplets/keyboard/gnome-keyboard-properties-xkbmc.c:169
msgid "Vendors"
msgstr "Hornitzaileak"
#: ../capplets/keyboard/gnome-keyboard-properties-xkbmc.c:235
msgid "Models"
msgstr "Modeloak"
#: ../capplets/keyboard/keyboard.desktop.in.in.h:1
msgid "Keyboard"
msgstr "Teklatua"
#: ../capplets/keyboard/keyboard.desktop.in.in.h:2
msgid "Set your keyboard preferences"
msgstr "Ezarri zure teklatuaren hobespenak"
#: ../capplets/localization/localization.desktop.in.in.h:1
msgid "Language and Location"
msgstr "Hizkuntza eta kokalekua"
#: ../capplets/localization/localization.desktop.in.in.h:2
msgid "Set your language and location preferences"
msgstr "Ezarri zure hizkuntza eta kokalekuaren hobespenak"
#: ../capplets/localization/localization.glade.h:1
msgid ""
"<i>Region and language changes take effect the next time you log in.</i>"
msgstr ""
"<i>Eskualdearen eta hizkuntzaren aldaketek ez dute eraginik izango saioa "
"berriro hasi arte.</i>"
#: ../capplets/localization/localization.glade.h:2
msgid "Localization Preferences"
msgstr "Kokalekuaren hobespenak"
#: ../capplets/localization/localization.glade.h:3
msgid "Region:"
msgstr "Eskualdea:"
#: ../capplets/localization/localization.glade.h:4
msgid "Selected languages:"
msgstr "Hautatutako hizkuntzak:"
#. set the timeout value label with correct value of timeout
#: ../capplets/mouse/gnome-mouse-properties.c:126
#: ../capplets/mouse/gnome-mouse-properties.c:384
#, c-format
msgid "%d millisecond"
msgid_plural "%d milliseconds"
msgstr[0] "Milisegundo %d"
msgstr[1] "%d milisegundo"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:1
msgid "<b>Double-Click Timeout </b>"
msgstr "<b>Klik bikoitzaren denbora-muga</b>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:2
msgid "<b>Drag and Drop</b>"
msgstr "<b>Arrastatu eta jaregin</b>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:3
msgid "<b>Mouse Orientation</b>"
msgstr "<b>Saguaren orientazioa</b>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:4
msgid "<b>Speed</b>"
msgstr "<b>Abiadura</b>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:5
msgid "<i>Fast</i>"
msgstr "<i>Bizkorra</i>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:6
msgid "<i>High</i>"
msgstr "<i>Altua</i>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:7
msgid "<i>Large</i>"
msgstr "<i>Handia</i>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:8
msgid "<i>Low</i>"
msgstr "<i>Baxua</i>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:9
msgid "<i>Slow</i>"
msgstr "<i>Mantsoa</i>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:10
msgid "<i>Small</i>"
msgstr "<i>Txikia</i>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:11
msgid "Buttons"
msgstr "Botoiak"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:12
msgid "Motion"
msgstr "Mugimendua"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:13
msgid "Mouse Preferences"
msgstr "Saguaren hobespenak"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:14
msgid "_Acceleration:"
msgstr "_Azelerazioa:"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:15
msgid "_Left-handed mouse"
msgstr "_Ezkertientzako sagua"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:16
msgid "_Sensitivity:"
msgstr "_Sentikortasuna:"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:17
msgid "_Threshold:"
msgstr "_Muga:"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:18
msgid "_Timeout:"
msgstr "_Denbora-muga:"
#: ../capplets/mouse/gnome-settings-mouse.desktop.in.in.h:1
msgid "Mouse"
msgstr "Sagua"
#: ../capplets/mouse/gnome-settings-mouse.desktop.in.in.h:2
msgid "Set your mouse preferences"
msgstr "Ezarri saguaren hobespenak"
#: ../capplets/network/gnome-network-preferences.desktop.in.in.h:1
msgid "Network Proxy"
msgstr "Sareko proxy-a"
#: ../capplets/network/gnome-network-preferences.desktop.in.in.h:2
msgid "Set your network proxy preferences"
msgstr "Sareko proxy-aren hobespenak ezartzen ditu"
#: ../capplets/network/gnome-network-preferences.glade.h:1
msgid " "
msgstr " "
#: ../capplets/network/gnome-network-preferences.glade.h:2
msgid "<b>Di_rect internet connection</b>"
msgstr "<b>_Interneteko konexio zuzena</b>"
#: ../capplets/network/gnome-network-preferences.glade.h:3
msgid "<b>Ignore Host List</b>"
msgstr "<b>Ez ikusi egin ostalari-zerrendari</b>"
#: ../capplets/network/gnome-network-preferences.glade.h:4
msgid "<b>_Automatic proxy configuration</b>"
msgstr "<b>_Proxy-konfigurazio automatikoa</b>"
#: ../capplets/network/gnome-network-preferences.glade.h:5
msgid "<b>_Manual proxy configuration</b>"
msgstr "<b>_Eskuzko proxy-konfigurazioa</b>"
#: ../capplets/network/gnome-network-preferences.glade.h:6
msgid "<b>_Use authentication</b>"
msgstr "<b>E_rabili autentifikazioa</b>"
#: ../capplets/network/gnome-network-preferences.glade.h:7
msgid "Advanced Configuration"
msgstr "Konfigurazio aurreratua"
#: ../capplets/network/gnome-network-preferences.glade.h:8
msgid "Autoconfiguration _URL:"
msgstr "_URLaren autokonfigurazioa:"
#: ../capplets/network/gnome-network-preferences.glade.h:9
msgid "HTTP Proxy Details"
msgstr "HTTP proxy-aren xehetasunak"
#: ../capplets/network/gnome-network-preferences.glade.h:10
msgid "H_TTP proxy:"
msgstr "H_TTP proxy-a:"
#: ../capplets/network/gnome-network-preferences.glade.h:11
msgid "Network Proxy Preferences"
msgstr "Sareko proxy-aren hobespenak"
#: ../capplets/network/gnome-network-preferences.glade.h:12
msgid "Port:"
msgstr "Ataka:"
#: ../capplets/network/gnome-network-preferences.glade.h:13
msgid "Proxy Configuration"
msgstr "Proxy-aren konfigurazioa"
#: ../capplets/network/gnome-network-preferences.glade.h:14
msgid "S_ocks host:"
msgstr "S_ock-en ostalaria:"
#: ../capplets/network/gnome-network-preferences.glade.h:15
msgid "U_sername:"
msgstr "_Erabiltzaile-izena:"
#: ../capplets/network/gnome-network-preferences.glade.h:16
msgid "_Details"
msgstr "_Xehetasunak"
#: ../capplets/network/gnome-network-preferences.glade.h:17
msgid "_FTP proxy:"
msgstr "_FTP proxy-a:"
#: ../capplets/network/gnome-network-preferences.glade.h:18
msgid "_Password:"
msgstr "_Pasahitza:"
#: ../capplets/network/gnome-network-preferences.glade.h:19
msgid "_Secure HTTP proxy:"
msgstr "HTTP prox_y segurua:"
#: ../capplets/network/gnome-network-preferences.glade.h:20
msgid "_Use the same proxy for all protocols"
msgstr "_Erabili proxy berdina protokolo guztietan"
#: ../capplets/sound/gnome-settings-sound.desktop.in.in.h:1
msgid "Enable sound and associate sounds with events"
msgstr "Gaitu soinua eta erlazionatu soinuak gertaerekin"
#: ../capplets/sound/mixer-support.c:79
#, c-format
msgid "Unknown Volume Control %d"
msgstr "%d. bolumen-kontrol ezezaguna"
#: ../capplets/sound/pipeline-tests.c:84
#, c-format
msgid "Failed to construct test pipeline for '%s'"
msgstr "Huts egin du '%s'(r)en probako hodia eraikitzean"
#: ../capplets/sound/sound-properties-capplet.c:325
#: ../capplets/sound/sound-properties-capplet.c:378
msgid "Not connected"
msgstr "Konektatu gabe"
#: ../capplets/sound/sound-properties-capplet.c:661
msgid "Autodetect"
msgstr "Autodetektatu"
#: ../capplets/sound/sound-properties-capplet.c:666
#: ../capplets/sound/sound-properties-capplet.c:667
msgid "ALSA - Advanced Linux Sound Architecture"
msgstr "ALSA - Advanced Linux Sound Architecture"
#: ../capplets/sound/sound-properties-capplet.c:668
msgid "Artsd - ART Sound Daemon"
msgstr "Artsd - ART Sound Daemon"
#: ../capplets/sound/sound-properties-capplet.c:669
#: ../capplets/sound/sound-properties-capplet.c:670
msgid "ESD - Enlightened Sound Daemon"
msgstr "ESD - Enlightened Sound Daemon"
#: ../capplets/sound/sound-properties-capplet.c:671
#: ../capplets/sound/sound-properties-capplet.c:672
msgid "OSS - Open Sound System"
msgstr "OSS - Open Sound System"
#: ../capplets/sound/sound-properties-capplet.c:673
#: ../capplets/sound/sound-properties-capplet.c:674
msgid "PulseAudio Sound Server"
msgstr "PulseAudio soinu-zerbitzaria"
#: ../capplets/sound/sound-properties-capplet.c:675
msgid "Test Sound"
msgstr "Probatu soinua"
#: ../capplets/sound/sound-properties-capplet.c:676
msgid "Silence"
msgstr "Isildu"
#: ../capplets/sound/sound-properties-capplet.c:1043
msgid "- GNOME Sound Preferences"
msgstr "- GNOMEren soinu-hobespenak"
#: ../capplets/sound/sound-properties.glade.h:1
msgid "<b>Audio Conferencing</b>"
msgstr "<b>Audio-konferentzia</b>"
#: ../capplets/sound/sound-properties.glade.h:2
msgid "<b>Default Mixer Tracks</b>"
msgstr "<b>Pista-nahasgailu lehenetsia</b>"
#: ../capplets/sound/sound-properties.glade.h:3
msgid "<b>Music and Movies</b>"
msgstr "<b>Musika eta filmak</b>"
#: ../capplets/sound/sound-properties.glade.h:4
msgid "<b>Sound Events</b>"
msgstr "<b>Soinu-gertaerak</b>"
#: ../capplets/sound/sound-properties.glade.h:5
msgid "<span weight=\"bold\" size=\"x-large\">Testing...</span>"
msgstr "<span weight=\"bold\" size=\"x-large\">Probatzen...</span>"
#: ../capplets/sound/sound-properties.glade.h:6
msgid "Click OK to finish."
msgstr "Egin klik 'Ados' botoian amaitzeko."
#: ../capplets/sound/sound-properties.glade.h:7
msgid "Devices"
msgstr "Gailuak"
#: ../capplets/sound/sound-properties.glade.h:8
msgid "E_nable software sound mixing (ESD)"
msgstr "_Gaitu soinua software bidez nahastea (ESD)"
#: ../capplets/sound/sound-properties.glade.h:9
msgid "Flash _entire screen"
msgstr "Pa_ntaila osoa keinuka"
#: ../capplets/sound/sound-properties.glade.h:10
msgid "Flash _window titlebar"
msgstr "_Leihoaren titulu-barra keinuka"
#: ../capplets/sound/sound-properties.glade.h:11
msgid "S_ound playback:"
msgstr "_Soinua erreproduzitzea:"
#: ../capplets/sound/sound-properties.glade.h:12
msgid ""
"Select the device and tracks to control with the keyboard. Use the Shift and "
"Control keys to select multiple tracks if required."
msgstr ""
"Hautatu gailua eta pistak teklatuarekin kontrolatzeko. Erabili Maius eta "
"Kontrol teklak hainbat pista hautatzea nahi izanez gero."
#: ../capplets/sound/sound-properties.glade.h:13
msgid "So_und playback:"
msgstr "_Soinua erreproduzitzea:"
#: ../capplets/sound/sound-properties.glade.h:14
msgid "Sou_nd capture:"
msgstr "Soinu-_kaptura:"
#: ../capplets/sound/sound-properties.glade.h:15
msgid "Sound Preferences"
msgstr "Soinu-hobespenak"
#: ../capplets/sound/sound-properties.glade.h:16
msgid "Sounds"
msgstr "Soinuak"
#: ../capplets/sound/sound-properties.glade.h:17
msgid "System Beep"
msgstr "Sistemaren kanpaia"
#: ../capplets/sound/sound-properties.glade.h:18
msgid "Test"
msgstr "Proba"
#: ../capplets/sound/sound-properties.glade.h:19
msgid "Testing Pipeline"
msgstr "Probatu hodia"
#: ../capplets/sound/sound-properties.glade.h:20
msgid "_Device:"
msgstr "_Gailua:"
#: ../capplets/sound/sound-properties.glade.h:21
msgid "_Enable system beep"
msgstr "_Gaitu sistemaren kanpaia"
#: ../capplets/sound/sound-properties.glade.h:22
msgid "_Play system sounds"
msgstr "_Erreproduzitu sistemaren soinuak"
#: ../capplets/sound/sound-properties.glade.h:23
msgid "_Sound playback:"
msgstr "_Soinua erreproduzitzea:"
#: ../capplets/sound/sound-properties.glade.h:24
msgid "_Visual system beep"
msgstr "_Sistemaren kanpai bisuala"
#: ../capplets/windows/gnome-window-properties.c:344
msgid "Cannot start the preferences application for your window manager"
msgstr "Ezin da zure leiho-kudeatzailearen hobespen-aplikazioa abiarazi"
#. translators: this is the Control key
#: ../capplets/windows/gnome-window-properties.c:602
msgid "C_ontrol"
msgstr "_Kontrol"
#: ../capplets/windows/gnome-window-properties.c:607
msgid "_Alt"
msgstr "_Alt"
#: ../capplets/windows/gnome-window-properties.c:613
msgid "H_yper"
msgstr "_Hiper"
#: ../capplets/windows/gnome-window-properties.c:620
msgid "S_uper (or \"Windows logo\")"
msgstr "_Super (edo \"Windows-en logotipoa\")"
#: ../capplets/windows/gnome-window-properties.c:627
msgid "_Meta"
msgstr "_Meta"
#: ../capplets/windows/gnome-window-properties.glade.h:1
msgid "<b>Movement Key</b>"
msgstr "<b>Mugitzeko tekla</b>"
#: ../capplets/windows/gnome-window-properties.glade.h:2
msgid "<b>Titlebar Action</b>"
msgstr "<b>Titulu-barraren ekintza</b>"
#: ../capplets/windows/gnome-window-properties.glade.h:3
msgid "<b>Window Selection</b>"
msgstr "<b>Leiho-hautapena</b>:"
#: ../capplets/windows/gnome-window-properties.glade.h:4
msgid "To move a window, press-and-hold this key then grab the window:"
msgstr ""
"Leiho bat lekuz aldatzeko, eduki sakatuta tekla hau eta ondoren egin klik "
"leiho honetan:"
#: ../capplets/windows/gnome-window-properties.glade.h:5
msgid "Window Preferences"
msgstr "Leihoaren hobespenak"
#: ../capplets/windows/gnome-window-properties.glade.h:6
msgid "_Double-click titlebar to perform this action:"
msgstr "_Egin klik bikoitza titulu-barran ekintza hori burutzeko:"
#: ../capplets/windows/gnome-window-properties.glade.h:7
msgid "_Interval before raising:"
msgstr "Gora_tu aurretiko tartea:"
#: ../capplets/windows/gnome-window-properties.glade.h:8
msgid "_Raise selected windows after an interval"
msgstr "_Goratu hautatutako leihoak tarte baten ondoren"
#: ../capplets/windows/gnome-window-properties.glade.h:9
msgid "_Select windows when the mouse moves over them"
msgstr "_Hautatu leihoak sagua gainetik mugitzean"
#: ../capplets/windows/window-properties.desktop.in.in.h:1
msgid "Set your window properties"
msgstr "Leihoaren propietateak ezartzen ditu"
#: ../capplets/windows/window-properties.desktop.in.in.h:2
msgid "Windows"
msgstr "Leihoak"
#: ../gnome-settings-daemon/actions/acme.glade.h:1
msgid "Volume"
msgstr "Bolumena"
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:463
msgid "Slow Keys Alert"
msgstr "Tekla geldoen abisua"
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:464
msgid ""
"You just held down the Shift key for 8 seconds. This is the shortcut for "
"the Slow Keys feature, which affects the way your keyboard works."
msgstr ""
"Maius tekla 8 segundoz sakatuta eduki duzu. Tekla motelen eginbidearen "
"laster-tekla da eta teklatuaren funtzionamenduari eragiten dio."
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:466
msgid "Do you want to activate Slow Keys?"
msgstr "Tekla geldoak aktibatzea nahi duzu?"
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:467
msgid "Do you want to deactivate Slow Keys?"
msgstr "Tekla geldoak desaktibatzea nahi duzu?"
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:468
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:485
msgid "_Activate"
msgstr "_Aktibatu"
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:468
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:485
msgid "_Deactivate"
msgstr "_Desaktibatu"
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:469
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:486
msgid "Do_n't activate"
msgstr "_Ez aktibatu"
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:469
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:486
msgid "Do_n't deactivate"
msgstr "E_z desaktibatu"
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:478
msgid "Sticky Keys Alert"
msgstr "Tekla itsaskorren abisua"
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:479
msgid ""
"You just pressed the Shift key 5 times in a row. This is the shortcut for "
"the Sticky Keys feature, which affects the way your keyboard works."
msgstr ""
"Maius tekla 5 aldiz segidan sakatu duzu. Tekla itsaskorren funtziorako "
"laster-tekla da eta teklatuaren funtzionamenduari eragiten dio."
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:481
msgid ""
"You just pressed two keys at once, or pressed the Shift key 5 times in a "
"row. This turns off the Sticky Keys feature, which affects the way your "
"keyboard works."
msgstr ""
"Bi tekla batera sakatu dituzu edo Maius tekla 5 aldiz segidan sakatu duzu. "
"Horrek Tekla itsasgarrien eginbidea desaktibatzen du eta horrek teklatuaren "
"funtzionamenduari eragiten dio."
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:483
msgid "Do you want to activate Sticky Keys?"
msgstr "Tekla itsaskorrak aktibatzea nahi duzu?"
#: ../gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:484
msgid "Do you want to deactivate Sticky Keys?"
msgstr "Tekla itsaskorrak desaktibatzea nahi duzu?"
#: ../gnome-settings-daemon/gnome-settings-font.c:150
#, c-format
msgid ""
"Cannot create the directory \"%s\".\n"
"This is needed to allow changing the mouse pointer theme."
msgstr ""
"Ezin da \"%s\" direktorioa sortu.\n"
"Beharrezkoa da saguaren erakuslearen gaia aldatzeko."
#: ../gnome-settings-daemon/gnome-settings-font.c:171
#, c-format
msgid ""
"Cannot create the directory \"%s\".\n"
"This is needed to allow changing cursors."
msgstr ""
"Ezin da \"%s\" direktorioa sortu.\n"
"Beharrezkoa da kurtsoreak aldatu ahal izateko."
#: ../gnome-settings-daemon/gnome-settings-keybindings.c:275
#, c-format
msgid "Key Binding (%s) has its action defined multiple times\n"
msgstr "(%s) laster-teklak ekintza behin baino gehiagotan definituta du\n"
#: ../gnome-settings-daemon/gnome-settings-keybindings.c:281
#, c-format
msgid "Key Binding (%s) has its binding defined multiple times\n"
msgstr "(%s) laster-teklak lotura behin baino gehiagotan definituta du\n"
#: ../gnome-settings-daemon/gnome-settings-keybindings.c:289
#, c-format
msgid "Key Binding (%s) is incomplete\n"
msgstr "(%s) laster-tekla ez dago osorik\n"
#: ../gnome-settings-daemon/gnome-settings-keybindings.c:316
#, c-format
msgid "Key Binding (%s) is invalid\n"
msgstr "(%s) laster-tekla baliogabea da\n"
#: ../gnome-settings-daemon/gnome-settings-keybindings.c:353
#, c-format
msgid "It seems that another application already has access to key '%u'."
msgstr "Badirudi beste aplikazio batek '%u' teklarako sarbidea duela."
#: ../gnome-settings-daemon/gnome-settings-keybindings.c:418
#, c-format
msgid "Key Binding (%s) is already in use\n"
msgstr "(%s) laster-tekla erabilita dago\n"
#: ../gnome-settings-daemon/gnome-settings-keybindings.c:489
#, c-format
msgid ""
"Error while trying to run (%s)\n"
"which is linked to the key (%s)"
msgstr ""
"Errorea gertatu da (%s) exekutatzen saiatzean\n"
"eta hori (%s) teklari lotuta dago"
#: ../gnome-settings-daemon/gnome-settings-keyboard-xkb.c:98
#, c-format
msgid ""
"Error activating XKB configuration.\n"
"It can happen under various circumstances:\n"
"- a bug in libxklavier library\n"
"- a bug in X server (xkbcomp, xmodmap utilities)\n"
"- X server with incompatible libxkbfile implementation\n"
"\n"
"X server version data:\n"
"%s\n"
"%d\n"
"%s\n"
"If you report this situation as a bug, please include:\n"
"- The result of <b>%s</b>\n"
"- The result of <b>%s</b>"
msgstr ""
"Errorea XKB konfigurazioa aktibatzean.\n"
"Honako egoeratan gerta daiteke:\n"
"- libxklavier liburutegian errorea\n"
"- X zerbitzariko errorea (xkbcomp, xmodmap utilities)\n"
"- X zerbitzaria libxklavier liburutegiarekin bateraezina izatea\n"
"\n"
"X zerbitzariaren bertsioaren datuak:\n"
"%s\n"
"%d\n"
"%s\n"
"Egoera honen berri errore gisa ematen baduzu, mesedez, datu hauek ere "
"sartu:\n"
"- Honen emaitza: %s\n"
"- Honen emaitza:%s"
#: ../gnome-settings-daemon/gnome-settings-keyboard-xkb.c:112
msgid ""
"You are using XFree 4.3.0.\n"
"There are known problems with complex XKB configurations.\n"
"Try using a simpler configuration or taking a fresher version of XFree "
"software."
msgstr ""
"XFree 4.3.0. erabiltzen ari zara\n"
"Arazo ezagunak daude XKBren konfigurazio konplexuekin.\n"
"Saiatu konfigurazio arruntagoa erabiltzen edo XFree softwarearen bertsio "
"berriagoa eskuratzen."
#: ../gnome-settings-daemon/gnome-settings-multimedia-keys.c:187
msgid ""
"Could not get default terminal. Verify that your default terminal command is "
"set and points to a valid application."
msgstr ""
"Ezin izan da terminal lehenetsia eskuratu. Ziurtatu terminal lehenetsiaren "
"komandoa ezarrita dagoela eta baliozko aplikaziora bideratzen duela."
#: ../gnome-settings-daemon/gnome-settings-multimedia-keys.c:215
#, c-format
msgid ""
"Couldn't execute command: %s\n"
"Verify that this is a valid command."
msgstr ""
"Ezin izan da komandoa exekutatu: %s\n"
"Egiaztatu baliozko komandoa dela."
#: ../gnome-settings-daemon/gnome-settings-multimedia-keys.c:230
msgid ""
"Couldn't put the machine to sleep.\n"
"Verify that the machine is correctly configured."
msgstr ""
"Ezin izan da gailua lotan jarri.\n"
"Egiaztatu gailua egokiro konfiguratua dagoela."
#: ../gnome-settings-daemon/gnome-settings-screensaver.c:190
#, c-format
msgid ""
"There was an error starting up the screensaver:\n"
"\n"
"%s\n"
"\n"
"Screensaver functionality will not work in this session."
msgstr ""
"Errorea sortu da pantaila-babeslea abiaraztean:\n"
"\n"
"%s\n"
"\n"
"Pantaila-babesleak ez du saio honetan behar bezala funtzionatuko."
#: ../gnome-settings-daemon/gnome-settings-screensaver.c:200
msgid "_Do not show this message again"
msgstr "_Ez erakutsi mezu hau aurrerantzean"
#: ../gnome-settings-daemon/gnome-settings-sound.c:199
#, c-format
msgid "Couldn't load sound file %s as sample %s"
msgstr "Ezin izan da %s soinu-fitxategia %s adibide gisa kargatu"
#: ../gnome-settings-daemon/gnome-settings-xrdb.c:243
#: ../gnome-settings-daemon/gnome-settings-xrdb.c:291
msgid "Cannot determine user's home directory"
msgstr "Ezin da erabiltzailearen etxeko direktorioa zehaztu"
#: ../gnome-settings-daemon/gnome-settings-xsettings.c:303
#, c-format
msgid "GConf key %s set to type %s but its expected type was %s\n"
msgstr "%s GConf gakoa %s motarako ezarrita dago, baina %s mota espero da\n"
#: ../gnome-settings-daemon/modmap-dialog.glade.h:1
msgid "A_vailable files:"
msgstr "_Fitxategi eskuragarriak:"
#: ../gnome-settings-daemon/modmap-dialog.glade.h:2
msgid "Do _not show this warning again."
msgstr "_Ez erakutsi mezu hau aurrerantzean."
#: ../gnome-settings-daemon/modmap-dialog.glade.h:3
msgid "Load modmap files"
msgstr "Kargatu 'modmap' fitxategiak"
#: ../gnome-settings-daemon/modmap-dialog.glade.h:4
msgid "Would you like to load the modmap file(s)?"
msgstr "'modmap' fitxategia(k) kargatzea nahi duzu?"
#: ../gnome-settings-daemon/modmap-dialog.glade.h:5
msgid "_Load"
msgstr "_Kargatu"
#: ../gnome-settings-daemon/modmap-dialog.glade.h:6
msgid "_Loaded files:"
msgstr "_Kargatutako fitxategiak:"
#: ../gnome-settings-daemon/reaper.c:103
msgid "Error creating signal pipe."
msgstr "Errorea gertatu da seinale-kanalizazioa sortzean."
#: ../libbackground/applier.c:255
msgid "Type"
msgstr "Mota"
#: ../libbackground/applier.c:256
msgid ""
"Type of bg_applier: BG_APPLIER_ROOT for root window or BG_APPLIER_PREVIEW "
"for preview"
msgstr ""
"bg_applier-en mota: BG_APPLIER_ROOT erroko leihorako edo BG_APPLIER_PREVIEW "
"aurrebistarako"
#: ../libbackground/applier.c:263
msgid "Preview Width"
msgstr "Aurrebista-zabalera"
#: ../libbackground/applier.c:264
msgid "Width if applier is a preview: Defaults to 64."
msgstr "Zabalera aplikatzailea aurrebista bada: lehenetsiak 64ean."
#: ../libbackground/applier.c:271
msgid "Preview Height"
msgstr "Aurrebista-altuera"
#: ../libbackground/applier.c:272
msgid "Height if applier is a preview: Defaults to 48."
msgstr "Altuera aplikatzailea aurrebista bada: lehenetsiak 48an."
#: ../libbackground/applier.c:279
msgid "Screen"
msgstr "Pantaila"
#: ../libbackground/applier.c:280
msgid "Screen on which BGApplier is to draw"
msgstr "BGApplier zein pantailatan marraztu behar den"
#. make start action
#: ../libslab/application-tile.c:369
#, c-format
msgid "<b>Start %s</b>"
msgstr "<b>Abiarazi %s</b>"
#: ../libslab/application-tile.c:388
msgid "Help"
msgstr "Laguntza"
#: ../libslab/application-tile.c:435
msgid "Upgrade"
msgstr "Bertsio-berritu"
#: ../libslab/application-tile.c:450
msgid "Uninstall"
msgstr "Desinstalatu"
#: ../libslab/application-tile.c:777 ../libslab/document-tile.c:528
msgid "Remove from Favorites"
msgstr "Kendu gogokoetatik"
#: ../libslab/application-tile.c:779 ../libslab/document-tile.c:530
msgid "Add to Favorites"
msgstr "Gehitu gogokoetan"
#: ../libslab/application-tile.c:864
msgid "Remove from Startup Programs"
msgstr "Kendu hasierako programa-zerrendatik"
#: ../libslab/application-tile.c:866
msgid "Add to Startup Programs"
msgstr "Gehitu hasierako programa-zerrendari"
#: ../libslab/app-shell.c:750
#, c-format
msgid ""
"<span size=\"large\"><b>No matches found.</b> </span><span>\n"
"\n"
" Your filter \"<b>%s</b>\" does not match any items.</span>"
msgstr ""
"<span size=\"large\"><b>Ez da parekorik aurkitu.</b> </span><span>\n"
"\n"
"\"<b>%s</b>\" iragazkiak ez du bat datorren elementurik aurkitu.</span>"
#: ../libslab/app-shell.c:900
msgid "Other"
msgstr "Bestelakoa"
#: ../libslab/bookmark-agent.c:1034
msgid "New Spreadsheet"
msgstr "Kalkulu-orri berria"
#: ../libslab/bookmark-agent.c:1038
msgid "New Document"
msgstr "Dokumentu berria"
#: ../libslab/bookmark-agent.c:1088
msgid "Home"
msgstr "Etxea"
#: ../libslab/bookmark-agent.c:1104
msgid "File System"
msgstr "Fitxategi-sistema"
#: ../libslab/bookmark-agent.c:1108
msgid "Network Servers"
msgstr "Sareko zerbitzariak"
#: ../libslab/bookmark-agent.c:1137
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:25
msgid "Search"
msgstr "Bilatu"
#. make open with default action
#: ../libslab/directory-tile.c:170
msgid "<b>Open</b>"
msgstr "<b>Ireki</b>"
#. make rename action
#: ../libslab/directory-tile.c:189 ../libslab/document-tile.c:234
msgid "Rename..."
msgstr "Izena aldatu..."
#: ../libslab/directory-tile.c:203 ../libslab/directory-tile.c:212
#: ../libslab/document-tile.c:248 ../libslab/document-tile.c:257
msgid "Send To..."
msgstr "Bidali honi..."
#. make move to trash action
#: ../libslab/directory-tile.c:227 ../libslab/document-tile.c:283
msgid "Move to Trash"
msgstr "Bota zakarrontzira"
#: ../libslab/directory-tile.c:237 ../libslab/directory-tile.c:450
#: ../libslab/document-tile.c:293 ../libslab/document-tile.c:641
msgid "Delete"
msgstr "Ezabatu"
#: ../libslab/directory-tile.c:575 ../libslab/document-tile.c:813
#, c-format
msgid "Are you sure you want to permanently delete \"%s\"?"
msgstr "Ziur zaude \"%s\" betirako ezabatzea nahi duzula?"
#: ../libslab/directory-tile.c:580 ../libslab/document-tile.c:817
msgid "If you delete an item, it is permanently lost."
msgstr "Elementu bat ezabatzen baduzu, betirako galduko da."
#: ../libslab/document-tile.c:155
msgid "Edited %m/%d/%Y"
msgstr "%Y/%m/%d editatua"
#: ../libslab/document-tile.c:195
#, c-format
msgid "<b>Open with \"%s\"</b>"
msgstr "<b>Ireki honekin: %s</b>"
#: ../libslab/document-tile.c:207
msgid "Open with Default Application"
msgstr "Ireki aplikazio lehenetsiarekin"
#: ../libslab/document-tile.c:218
msgid "Open in File Manager"
msgstr "Ireki fitxategi-kudeatzailean"
#: ../libslab/libslab-bookmarkfile.c:700 ../libslab/libslab-bookmarkfile.c:777
#: ../libslab/libslab-bookmarkfile.c:856 ../libslab/libslab-bookmarkfile.c:903
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "'%2$s' elementuaren '%1$s' atributu baliogabea"
#: ../libslab/libslab-bookmarkfile.c:711 ../libslab/libslab-bookmarkfile.c:788
#: ../libslab/libslab-bookmarkfile.c:798 ../libslab/libslab-bookmarkfile.c:914
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "'%2$s' elementuaren '%1$s' atributua ez da aurkitu"
#: ../libslab/libslab-bookmarkfile.c:1087
#: ../libslab/libslab-bookmarkfile.c:1152
#: ../libslab/libslab-bookmarkfile.c:1216
#: ../libslab/libslab-bookmarkfile.c:1226
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Ustekabeko '%s' etiketa, '%s' espero zen"
#: ../libslab/libslab-bookmarkfile.c:1112
#: ../libslab/libslab-bookmarkfile.c:1126
#: ../libslab/libslab-bookmarkfile.c:1194
#: ../libslab/libslab-bookmarkfile.c:1246
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Ustekabeko '%s' etiketa '%s'(r)en barruan"
#: ../libslab/libslab-bookmarkfile.c:1929
msgid "No valid bookmark file found in data dirs"
msgstr "Ez da baliozko laster-marken fitxategirik aurkitu datuen direktorioan"
#: ../libslab/libslab-bookmarkfile.c:2130
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "'%s' URIaren laster-marka badago lehendik ere"
#: ../libslab/libslab-bookmarkfile.c:2176
#: ../libslab/libslab-bookmarkfile.c:2333
#: ../libslab/libslab-bookmarkfile.c:2418
#: ../libslab/libslab-bookmarkfile.c:2499
#: ../libslab/libslab-bookmarkfile.c:2584
#: ../libslab/libslab-bookmarkfile.c:2667
#: ../libslab/libslab-bookmarkfile.c:2745
#: ../libslab/libslab-bookmarkfile.c:2824
#: ../libslab/libslab-bookmarkfile.c:2866
#: ../libslab/libslab-bookmarkfile.c:2963
#: ../libslab/libslab-bookmarkfile.c:3089
#: ../libslab/libslab-bookmarkfile.c:3279
#: ../libslab/libslab-bookmarkfile.c:3355
#: ../libslab/libslab-bookmarkfile.c:3508
#: ../libslab/libslab-bookmarkfile.c:3573
#: ../libslab/libslab-bookmarkfile.c:3663
#: ../libslab/libslab-bookmarkfile.c:3790
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Ez da '%s' URIaren laster-markarik aurkitu"
#: ../libslab/libslab-bookmarkfile.c:2508
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Ez da MIME motarik definitu '%s' URIaren laster-markan"
#: ../libslab/libslab-bookmarkfile.c:2593
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Ez da bandera pribaturik definitu '%s' URIaren laster-markan"
#: ../libslab/libslab-bookmarkfile.c:2972
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Ez da talderik ezarri '%s' URIaren laster-markan"
#: ../libslab/libslab-bookmarkfile.c:3373
#: ../libslab/libslab-bookmarkfile.c:3518
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
"Ez da '%s' izeneko aplikaziorik erregistratu '%s' URIaren laster-markan"
#: ../libslab/search-bar.c:255
msgid "Find Now"
msgstr "Bilatu orain"
#: ../libslab/system-tile.c:128
#, c-format
msgid "<b>Open %s</b>"
msgstr "<b>Ireki %s</b>"
#: ../libslab/system-tile.c:141
msgid "Remove from System Items"
msgstr "Kendu sistemako elementuetatik"
#: ../libsounds/sound-view.c:44
msgid "Login"
msgstr "Saio-hasiera"
#: ../libsounds/sound-view.c:45
msgid "Logout"
msgstr "Saioa amaitu"
#: ../libsounds/sound-view.c:46
msgid "Boing"
msgstr "Booing"
#: ../libsounds/sound-view.c:47
msgid "Siren"
msgstr "Sirena"
#: ../libsounds/sound-view.c:48
msgid "Clink"
msgstr "Klink"
#: ../libsounds/sound-view.c:49
msgid "Beep"
msgstr "Biip"
#: ../libsounds/sound-view.c:50
msgid "No sound"
msgstr "Soinurik ez"
#: ../libsounds/sound-view.c:132
msgid "Sound not set for this event."
msgstr "Ez da gertaera honen soinurik ezarri."
#: ../libsounds/sound-view.c:141
msgid ""
"The sound file for this event does not exist.\n"
"You may want to install the gnome-audio package for a set of default sounds."
msgstr ""
"Gertaera honen soinu-fitxategia ez da existitzen.\n"
"Gnome-audio paketea instalatzea komeni da\n"
"soinu lehenetsien sorta bat izateko."
#: ../libsounds/sound-view.c:152
msgid "The sound file for this event does not exist."
msgstr "Gertaera honek ez du soinu-fitxategirik."
#: ../libsounds/sound-view.c:183
msgid "Select Sound File"
msgstr "Hautatu soinu-fitxategia"
#: ../libsounds/sound-view.c:203
#, c-format
msgid "The file %s is not a valid wav file"
msgstr "%s fitxategia ez da baliozko wav fitxategia"
#: ../libsounds/sound-view.c:264
msgid "Select sound file..."
msgstr "Hautatu soinu-fitxategia..."
#: ../libsounds/sound-view.c:366
msgid "System Sounds"
msgstr "Sistemaren soinuak"
#: ../libwindow-settings/gnome-wm-manager.c:318
#, c-format
msgid "Window manager \"%s\" has not registered a configuration tool\n"
msgstr "\"%s\" leiho-kudeatzaileak ez du konfigurazio-tresnarik erregistratu\n"
#: ../libwindow-settings/metacity-window-manager.c:390
msgid "Maximize"
msgstr "Maximizatu"
#: ../libwindow-settings/metacity-window-manager.c:391
msgid "Minimize"
msgstr "Ikonotu"
#: ../libwindow-settings/metacity-window-manager.c:392
msgid "Roll up"
msgstr "Bildu"
#: ../libwindow-settings/metacity-window-manager.c:393
msgid "None"
msgstr "Bat ere ez"
#: ../schemas/apps_gnome_settings_daemon_default_editor.schemas.in.h:1
msgid ""
"If true, the mime handlers for text/plain and text/* will be kept in sync"
msgstr ""
"Egia bada, testu/soilerako eta testu/*-(e)rako mime maneiatzaileak "
"sinkronizatuta mantenduko dira"
#: ../schemas/apps_gnome_settings_daemon_default_editor.schemas.in.h:2
msgid "Sync text/plain and text/* handlers"
msgstr "Sinkronizatu testu/soilaren eta testu/*-(a)ren maneiatzaileak"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:1
msgid "E-mail"
msgstr "Helb.el."
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:2
msgid "E-mail's shortcut."
msgstr "Helb.elektrokikoaren lasterbidea"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:3
msgid "Eject"
msgstr "Egotzi"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:4
msgid "Eject's shortcut."
msgstr "Egozteko lasterbideak."
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:5
msgid "Home folder"
msgstr "Etxearen karpeta"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:6
msgid "Home folder's shortcut."
msgstr "Etxeko karpetaren lasterbidea"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:7
msgid "Launch calculator"
msgstr "Abiarazi kalkulagailua"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:8
msgid "Launch calculator's shortcut"
msgstr "Abiatu kalkulagailuaren lasterbidea"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:9
msgid "Launch help browser"
msgstr "Abiatu Lagutza-arakatzailea"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:10
msgid "Launch help browser's shortcut."
msgstr "Abiatu lagutza-arakatzailearen lasterbidea."
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:11
msgid "Launch web browser"
msgstr "Abiatu web arakatzailea"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:12
msgid "Launch web browser's shortcut."
msgstr "Abiatu web arakatzailearen lasterbidea"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:13
msgid "Lock screen"
msgstr "Blokeatu pantaila"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:14
msgid "Lock screen's shortcut."
msgstr "Blokeatu pantailaren lasterbidea."
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:15
msgid "Log out"
msgstr "Saioa amaitu"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:16
msgid "Log out's shortcut."
msgstr "Saioa amaitzeko lasterbidea"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:17
msgid "Media player"
msgstr "Multimedia-erreproduzigailua"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:18
msgid "Media player key's shortcut."
msgstr "Multimedia-erreproduzigailuaren lasterbidea."
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:19
msgid "Next track key's shortcut."
msgstr "Hurrengo pistarentzako lasterbidea"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:20
msgid "Pause"
msgstr "Pausarazi"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:21
msgid "Pause key's shortcut."
msgstr "Pausarazteko lasterbidea"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:22
msgid "Play (or play/pause)"
msgstr "Erreproduzitu (edo Erreprod./Pausarazi)"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:23
msgid "Play (or play/pause) key's shortcut."
msgstr "Erreproduzitzeko (edo Erreprod./Pausarazi) lasterbidea."
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:24
msgid "Previous track key's shortcut."
msgstr "Aurreko pistarentzako lasterbidea."
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:26
msgid "Search's shortcut."
msgstr "Bilatzeko lasterbidea."
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:27
msgid "Skip to next track"
msgstr "Saltatu hurrengo pistara"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:28
msgid "Skip to previous track"
msgstr "Saltatu aurreko pistara"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:29
msgid "Sleep"
msgstr "Lo egin"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:30
msgid "Sleep's shortcut."
msgstr "Lo egiteko lasterbidea"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:31
msgid "Stop playback key"
msgstr "Erreprodukzioa gelditu"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:32
msgid "Stop playback key's shortcut."
msgstr "Erreprodukzioa gelditzeko lasterbidea"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:33
msgid "Volume down"
msgstr "Bolumena jeitsi"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:34
msgid "Volume down's shortcut."
msgstr "Bolumena jeisteko lasterbidea"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:35
msgid "Volume mute"
msgstr "Bolumena mututu"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:36
msgid "Volume mute's shortcut."
msgstr "Bolumena mututzeko lasterbidea"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:37
msgid "Volume step"
msgstr "Bolumen maila"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:38
msgid "Volume step as percentage of volume."
msgstr "Bolumen maila, bolumenaren ehuneko gisa."
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:39
msgid "Volume up"
msgstr "Bolumena igo"
#: ../schemas/apps_gnome_settings_daemon_keybindings.schemas.in.h:40
msgid "Volume up's shortcut."
msgstr "Bolumena igotzeko lasterbidea."
#: ../schemas/apps_gnome_settings_daemon_screensaver.schemas.in.h:1
msgid "Display a dialog when there are errors running the screensaver"
msgstr ""
"Bistaratu elkarrizketa-koadroa pantaila-babeslea exekutatzean erroreak "
"daudenean"
#: ../schemas/apps_gnome_settings_daemon_screensaver.schemas.in.h:2
msgid "Run screensaver at login"
msgstr "Exekutatu pantaila-babeslea saioa hastean"
#: ../schemas/apps_gnome_settings_daemon_screensaver.schemas.in.h:3
msgid "Show Startup Errors"
msgstr "Erakutsi abioko erroreak"
#: ../schemas/apps_gnome_settings_daemon_screensaver.schemas.in.h:4
msgid "Start screensaver"
msgstr "Abiarazi pantaila-babeslea"
#: ../shell/control-center.c:62
#, c-format
msgid "key not found [%s]\n"
msgstr "ez da gakoa aurkitu [%s]\n"
#: ../shell/control-center.c:159
msgid "Filter"
msgstr "Iragazkia"
#: ../shell/control-center.c:159
msgid "Groups"
msgstr "Taldeak"
#: ../shell/control-center.c:159
msgid "Common Tasks"
msgstr "Ataza arruntak"
#: ../shell/control-center.c:163 ../shell/gnomecc.desktop.in.in.h:1
#: ../shell/gnomecc.directory.in.h:1
msgid "Control Center"
msgstr "Kontrol-zentroa"
#: ../shell/control-center.schemas.in.h:1
msgid "Close the control-center when a task is activated"
msgstr "Itxi kontrol-zentroa ataza aktibatzean"
#: ../shell/control-center.schemas.in.h:2
msgid "Exit shell on add or remove action performed"
msgstr "Irten komando-lerrotik gehitzeko edo kentzeko ekintza lantzean"
#: ../shell/control-center.schemas.in.h:3
msgid "Exit shell on help action performed"
msgstr "Irten komando-lerrotik laguntzako ekintza lantzean"
#: ../shell/control-center.schemas.in.h:4
msgid "Exit shell on start action performed"
msgstr "Irten komando-lerrotik abiarazteko ekintza lantzean"
#: ../shell/control-center.schemas.in.h:5
msgid "Exit shell on upgrade or uninstall action performed"
msgstr ""
"Irten komando-lerrotik eguneratzeko edo desinstalatzeko ekintza lantzean"
#: ../shell/control-center.schemas.in.h:6
msgid "Indicates whether to close the shell when a help action is performed"
msgstr "Laguntzako ekintza lantzen denean komando-lerroa itxi edo ez"
#: ../shell/control-center.schemas.in.h:7
msgid "Indicates whether to close the shell when a start action is performed"
msgstr "Abiarazteko ekintza lantzen denean komando-lerroa itxi edo ez"
#: ../shell/control-center.schemas.in.h:8
msgid ""
"Indicates whether to close the shell when an add or remove action is "
"performed"
msgstr ""
"Gehitzeko edo kentzeko ekintza lantzen denean komando-lerroa itxi edo ez"
#: ../shell/control-center.schemas.in.h:9
msgid ""
"Indicates whether to close the shell when an upgrade or uninstall action is "
"performed"
msgstr ""
"Eguneratzeko edo desinstalatzeko ekintza lantzen denean komando-lerroa itxi "
"edo ez"
#: ../shell/control-center.schemas.in.h:10
msgid "Task names and associated .desktop files"
msgstr "Ataza-izenak eta dagokien '.desktop' fitxategiak"
#: ../shell/control-center.schemas.in.h:11
msgid ""
"The task name to be displayed in the control-center followed by a \";\" "
"separator then the filename of an associated .desktop file to launch for "
"that task."
msgstr ""
"Atazaren izena kontrol-zentroan bistaratzeko, ';' bereizlearekin jarraituz "
"eta dagokion '.desktop' luzapeneko fitxategi-izenarekin jarraituz."
#. Translators: The format of this string is the task name to be displayed (translate that part) followed by a ";" separator then the filename (DONT translate the file name) of a .desktop file to launch. Multiple entries are separated by a ","
#: ../shell/control-center.schemas.in.h:13
msgid ""
"[Change Theme;gtk-theme-selector.desktop,Set Preferred Applications;default-"
"applications.desktop,Add Printer;gnome-cups-manager.desktop]"
msgstr ""
"[Aldatu gaia;gtk-theme-selector.desktop,Ezarri hobetsitako aplikazioak;"
"default-applications.desktop,Gehitu inprimagailua;gnome-cups-manager.desktop]"
#: ../shell/control-center.schemas.in.h:14
msgid ""
"if true, the control-center will close when a \"Common Task\" is activated"
msgstr ""
"egia bada, kontrol-zentroa itxi egingo da \"Ataza arruntak\" aktibatzean"
#: ../shell/gnomecc.desktop.in.in.h:2
msgid "The GNOME configuration tool"
msgstr "GNOMEren konfigurazio-tresna"
#: ../typing-break/drw-break-window.c:188
msgid "_Postpone Break"
msgstr "_Atzeratu atsedena"
#: ../typing-break/drw-break-window.c:244
msgid "Take a break!"
msgstr "Hartu atsedena!"
#. { N_("/_Enabled"), NULL, GIF_CB (popup_enabled_cb), POPUP_ITEM_ENABLED, "<ToggleItem>", NULL },
#: ../typing-break/drwright.c:128
msgid "/_Preferences"
msgstr "/_Hobespenak"
#: ../typing-break/drwright.c:129
msgid "/_About"
msgstr "/Ho_ni buruz..."
#: ../typing-break/drwright.c:131
msgid "/_Take a Break"
msgstr "/Ha_rtu atsedena"
#: ../typing-break/drwright.c:500
#, c-format
msgid "%d minute until the next break"
msgid_plural "%d minutes until the next break"
msgstr[0] "minutu %d geratzen da hurrengo atsedenerako"
msgstr[1] "%d minutu geratzen dira hurrengo atsedenerako"
#: ../typing-break/drwright.c:504
msgid "Less than one minute until the next break"
msgstr "Minutu bat baino gutxiago geratzen da hurrengo atsedenerako"
#: ../typing-break/drwright.c:591
#, c-format
msgid ""
"Unable to bring up the typing break properties dialog with the following "
"error: %s"
msgstr ""
"Ezin da idazketa-etenaren propietateen elkarrizketa-koadroa ireki, errore "
"honengatik: %s"
#: ../typing-break/drwright.c:610
msgid "Written by Richard Hult <richard@imendio.com>"
msgstr "Richard Hult-ek idatzia <richard@imendio.com>"
#: ../typing-break/drwright.c:611
msgid "Eye candy added by Anders Carlsson"
msgstr "Bistarako gozagarria Anders Carlsson-ek gehitua"
#: ../typing-break/drwright.c:620
msgid "A computer break reminder."
msgstr "Ordenagailuaren atsedenari buruzko abisua."
#: ../typing-break/drwright.c:622
msgid "translator-credits"
msgstr ""
"Hizkuntza Politikarako Sailburuordetza <hizkpol@ej-gv.es>\n"
"Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>"
#: ../typing-break/main.c:61
msgid "Enable debugging code"
msgstr "Gaitu kodea araztea"
#: ../typing-break/main.c:63
msgid "Don't check whether the notification area exists"
msgstr "Ez egiaztatu jakinarazpeneko arearik existitzen den"
#: ../typing-break/main.c:89
msgid "Typing Monitor"
msgstr "Idazketako monitorea"
#: ../typing-break/main.c:105
msgid ""
"The typing monitor uses the notification area to display information. You "
"don't seem to have a notification area on your panel. You can add it by "
"right-clicking on your panel and choosing 'Add to panel', selecting "
"'Notification area' and clicking 'Add'."
msgstr ""
"Idazketa-monitoreak jakinarazpenaren eremua erabiltzen du informazioa "
"bistaratzeko. Badirudi zuk ez duzula jakinarazpen-arearik zure panelean. "
"Area gehitzeko, egin klik eskuineko botoiarekin panelean eta aukeratu "
"'Gehitu panelera -> Utilitateak-> Jakinarazpen-eremua'."
#: ../vfs-methods/fontilus/fontilus-context-menu.c:132
msgid "Set as Application Font"
msgstr "Ezarri aplikazioen letra-tipo gisa"
#: ../vfs-methods/fontilus/fontilus-context-menu.c:133
msgid "Sets the default application font"
msgstr "Aplikazioen letra-tipo lehenetsia ezartzen du"
#: ../vfs-methods/fontilus/fontilus.schemas.in.h:1
msgid "If set to true, then OpenType fonts will be thumbnailed."
msgstr ""
"Egia ezartzen bada, OpenType letra-tipoak koadro txikian bistaratuko dira."
#: ../vfs-methods/fontilus/fontilus.schemas.in.h:2
msgid "If set to true, then PCF fonts will be thumbnailed."
msgstr "Egia ezartzen bada, PCF letra-tipoak koadro txikian bistaratuko dira."
#: ../vfs-methods/fontilus/fontilus.schemas.in.h:3
msgid "If set to true, then TrueType fonts will be thumbnailed."
msgstr ""
"Egia ezartzen bada, TrueType letra-tipoak koadro txikian bistaratuko dira."
#: ../vfs-methods/fontilus/fontilus.schemas.in.h:4
msgid "If set to true, then Type1 fonts will be thumbnailed."
msgstr ""
"Egia ezartzen bada, Type1 letra-tipoak koadro txikian bistaratuko dira."
#: ../vfs-methods/fontilus/fontilus.schemas.in.h:5
msgid ""
"Set this key to the command used to create thumbnails for OpenType fonts."
msgstr ""
"Ezarri tekla hau OpenType letra-tipoetarako koadro txikiak sortzeko "
"erabilitako komandoari."
#: ../vfs-methods/fontilus/fontilus.schemas.in.h:6
msgid "Set this key to the command used to create thumbnails for PCF fonts."
msgstr ""
"Ezarri tekla hau PCF letra-tipoetarako koadro txikiak sortzeko erabilitako "
"komandoari."
#: ../vfs-methods/fontilus/fontilus.schemas.in.h:7
msgid ""
"Set this key to the command used to create thumbnails for TrueType fonts."
msgstr ""
"Ezarri tekla hau TrueType letra-tipoetarako koadro txikiak sortzeko "
"erabilitako komandoari."
#: ../vfs-methods/fontilus/fontilus.schemas.in.h:8
msgid "Set this key to the command used to create thumbnails for Type1 fonts."
msgstr ""
"Ezarri tekla hau Type1 letra-tipoetarako koadro txikiak sortzeko erabilitako "
"komandoari."
#: ../vfs-methods/fontilus/fontilus.schemas.in.h:9
msgid "Thumbnail command for OpenType fonts"
msgstr "OpenType letra-tipoetarako koadro txikien komandoa"
#: ../vfs-methods/fontilus/fontilus.schemas.in.h:10
msgid "Thumbnail command for PCF fonts"
msgstr "PCF letra-tipoetarako koadro txikien komandoa"
#: ../vfs-methods/fontilus/fontilus.schemas.in.h:11
msgid "Thumbnail command for TrueType fonts"
msgstr "TrueType letra-tipoetarako koadro txikien komandoa"
#: ../vfs-methods/fontilus/fontilus.schemas.in.h:12
msgid "Thumbnail command for Type1 fonts"
msgstr "Type1 letra-tipoetarako koadro txikien komandoa"
#: ../vfs-methods/fontilus/fontilus.schemas.in.h:13
msgid "Whether to thumbnail OpenType fonts"
msgstr "OpenType letra-tipoak koadro txikian bistaratuko diren ala ez"
#: ../vfs-methods/fontilus/fontilus.schemas.in.h:14
msgid "Whether to thumbnail PCF fonts"
msgstr "PVF letra-tipoak koadro txikian bistaratuko diren ala ez"
#: ../vfs-methods/fontilus/fontilus.schemas.in.h:15
msgid "Whether to thumbnail TrueType fonts"
msgstr "TrueType letra-tipoak koadro txikian bistaratuko diren ala ez"
#: ../vfs-methods/fontilus/fontilus.schemas.in.h:16
msgid "Whether to thumbnail Type1 fonts"
msgstr "Type1 letra-tipoak koadro txikian bistaratuko diren ala ez"
#: ../vfs-methods/fontilus/font-view.c:115
msgid "The quick brown fox jumps over the lazy dog. 0123456789"
msgstr ""
"Iñaki Gorrotxategiren familia jatorrak ez ditu probatu nahi Quebec-eko vodka "
"eta whiskya. 0123456789"
#: ../vfs-methods/fontilus/font-view.c:276
msgid "Name:"
msgstr "Izena:"
#: ../vfs-methods/fontilus/font-view.c:279
msgid "Style:"
msgstr "Estiloa:"
#: ../vfs-methods/fontilus/font-view.c:289
msgid "Type:"
msgstr "Mota:"
#: ../vfs-methods/fontilus/font-view.c:295
msgid "Size:"
msgstr "Tamaina:"
#: ../vfs-methods/fontilus/font-view.c:339
#: ../vfs-methods/fontilus/font-view.c:352
msgid "Version:"
msgstr "Bertsioa:"
#: ../vfs-methods/fontilus/font-view.c:343
#: ../vfs-methods/fontilus/font-view.c:354
msgid "Copyright:"
msgstr "Copyright-a:"
#: ../vfs-methods/fontilus/font-view.c:347
msgid "Description:"
msgstr "Azalpena:"
#: ../vfs-methods/fontilus/font-view.c:408
#, c-format
msgid "usage: %s fontfile\n"
msgstr "erabilera: %s letra-tipoen fitxategia\n"
#: ../vfs-methods/fontilus/gnome-font-viewer.desktop.in.in.h:1
msgid "Font Viewer"
msgstr "Letra-tipoen ikustailea"
#: ../vfs-methods/fontilus/gnome-font-viewer.desktop.in.in.h:2
msgid "Preview fonts"
msgstr "Letra-tipoen aurrebista"
#: ../vfs-methods/fontilus/thumbnailer.c:242
msgid "Text to thumbnail (default: Aa)"
msgstr "Testua koadro txikian bistaratzeko (lehenetsia: Aa)"
#: ../vfs-methods/fontilus/thumbnailer.c:242
msgid "TEXT"
msgstr "TESTUA"
#: ../vfs-methods/fontilus/thumbnailer.c:244
msgid "Font size (default: 64)"
msgstr "Letra-tamaina (lehenetsia: 64)"
#: ../vfs-methods/fontilus/thumbnailer.c:244
msgid "SIZE"
msgstr "TAMAINA"
#: ../vfs-methods/fontilus/thumbnailer.c:246
msgid "FONT-FILE OUTPUT-FILE"
msgstr "LETRA-FITXATEGIA IRTEERAKO-FITXATEGIA"
#: ../vfs-methods/fontilus/thumbnailer.c:262
#, c-format
msgid "Error parsing arguments: %s\n"
msgstr "Errorea argumentuak analizatzean: %s\n"
#: ../vfs-methods/themus/apply-font.glade.h:1
msgid "<span weight=\"bold\" size=\"larger\">Apply new font?</span>"
msgstr ""
"<span weight=\"bold\" size=\"larger\">Letra-tipo berria aplikatu?</span>"
#: ../vfs-methods/themus/apply-font.glade.h:2
msgid "Do _not apply font"
msgstr "Ez _aplikatu letra-tipoa"
#: ../vfs-methods/themus/apply-font.glade.h:3
msgid ""
"The theme you have selected suggests a new font. A preview of the font is "
"shown below."
msgstr ""
"Hautatu duzun gaiak beste letra-tipo bat iradokitzen du. Letra-tipoaren "
"aurrebista behean ikus dezakezu."
#: ../vfs-methods/themus/apply-font.glade.h:4
msgid "_Apply font"
msgstr "_Aplikatu letra-tipoa"
#: ../vfs-methods/themus/theme-method.c:485
msgid "Themes"
msgstr "Gaiak"
#: ../vfs-methods/themus/themus-properties-view.c:126
msgid "Description"
msgstr "Azalpena"
#: ../vfs-methods/themus/themus-properties-view.c:133
msgid "Control theme"
msgstr "Kontrol-gaia"
#: ../vfs-methods/themus/themus-properties-view.c:139
msgid "Window border theme"
msgstr "Leiho-ertzaren gaia"
#: ../vfs-methods/themus/themus-properties-view.c:145
msgid "Icon theme"
msgstr "Ikonoen gaia"
#: ../vfs-methods/themus/themus.schemas.in.h:1
msgid "If set to true, then installed themes will be thumbnailed."
msgstr ""
"Egia ezartzen bada, instalatutako gaiak koadro txikian bistaratuko dira."
#: ../vfs-methods/themus/themus.schemas.in.h:2
msgid "If set to true, then themes will be thumbnailed."
msgstr "Egia ezartzen bada, gaiak koadro txikian bistaratuko dira."
#: ../vfs-methods/themus/themus.schemas.in.h:3
msgid ""
"Set this key to the command used to create thumbnails for installed themes."
msgstr ""
"Ezarri tekla hau instalatutako gaiak koadro txikietan bistaratzeko "
"erabilitako komandoari."
#: ../vfs-methods/themus/themus.schemas.in.h:4
msgid "Set this key to the command used to create thumbnails for themes."
msgstr ""
"Ezarri tekla hau gaiak koadro txikietan bistaratzeko erabilitako komandoari."
#: ../vfs-methods/themus/themus.schemas.in.h:5
msgid "Thumbnail command for installed themes"
msgstr "Instalatutako gaietarako koadro txikien komandoa"
#: ../vfs-methods/themus/themus.schemas.in.h:6
msgid "Thumbnail command for themes"
msgstr "Gaietarako koadro txikien komandoa"
#: ../vfs-methods/themus/themus.schemas.in.h:7
msgid "Whether to thumbnail installed themes"
msgstr "Instalatutako gaiak koadro txikian bistaratuko diren ala ez"
#: ../vfs-methods/themus/themus.schemas.in.h:8
msgid "Whether to thumbnail themes"
msgstr "Gaiak koadro txikian bistaratuko diren ala ez"
#. translators: you may want to include non-western chars here
#: ../vfs-methods/themus/themus-theme-applier.c:58
msgid "ABCDEFG"
msgstr "ABCDEFG"
#: ../vfs-methods/themus/themus-theme-applier.c:84
msgid "[FILE]"
msgstr "[FITXATEGIA]"
#: ../vfs-methods/themus/themus-theme-applier.desktop.in.in.h:1
msgid "Apply theme"
msgstr "Aplikatu gaia"
#: ../vfs-methods/themus/themus-theme-applier.desktop.in.in.h:2
msgid "Sets the default theme"
msgstr "Lehenetsitako gaia ezartzen du"
|