~canonical-dx-team/ubuntu/maverick/gtk+2.0/menuproxy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
# Indonesia translation of gtk+.
# Copyright (C) 2003 THE gtk+'S COPYRIGHT HOLDER
# This file is distributed under the same license as the gtk+ package.
# Ahmad Riza H Nst  <rizahnst@gnome.org>, 2006
# Mohammad DAMT <mdamt@bisnisweb.com>, 2003.
#
#
msgid ""
msgstr ""
"Project-Id-Version: gtk+ master\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-05-30 18:03-0400\n"
"PO-Revision-Date: 2010-04-15 20:29+0700\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: GNOME Indonesian Translation Team <gnome@i15n.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Poedit-Language: Indonesian\n"
"X-Poedit-Country: Indonesia\n"

#: gdk/gdk.c:103
#, c-format
msgid "Error parsing option --gdk-debug"
msgstr "Galat mengurai opsi --gdk-debug"

#: gdk/gdk.c:123
#, c-format
msgid "Error parsing option --gdk-no-debug"
msgstr "Galat mengurai opsi --gdk-no-debug"

#. Description of --class=CLASS in --help output
#: gdk/gdk.c:151
msgid "Program class as used by the window manager"
msgstr "Kelas program yang digunakan pengatur jendela program"

#. Placeholder in --class=CLASS in --help output
#: gdk/gdk.c:152
msgid "CLASS"
msgstr "KELAS"

#. Description of --name=NAME in --help output
#: gdk/gdk.c:154
msgid "Program name as used by the window manager"
msgstr "Nama program sebagaimana digunakan oleh program pengatur jendela"

#. Placeholder in --name=NAME in --help output
#: gdk/gdk.c:155
msgid "NAME"
msgstr "NAMA"

#. Description of --display=DISPLAY in --help output
#: gdk/gdk.c:157
msgid "X display to use"
msgstr "Tampilan X yang digunakan"

#. Placeholder in --display=DISPLAY in --help output
#: gdk/gdk.c:158
msgid "DISPLAY"
msgstr "TAMPILAN"

#. Description of --screen=SCREEN in --help output
#: gdk/gdk.c:160
msgid "X screen to use"
msgstr "Layar X yang digunakan"

#. Placeholder in --screen=SCREEN in --help output
#: gdk/gdk.c:161
msgid "SCREEN"
msgstr "LAYAR"

#. Description of --gdk-debug=FLAGS in --help output
#: gdk/gdk.c:164
msgid "Gdk debugging flags to set"
msgstr "Bendera debug Gdk yang hendak dipasang"

#. Placeholder in --gdk-debug=FLAGS in --help output
#. Placeholder in --gdk-no-debug=FLAGS in --help output
#. Placeholder in --gtk-debug=FLAGS in --help output
#. Placeholder in --gtk-no-debug=FLAGS in --help output
#: gdk/gdk.c:165 gdk/gdk.c:168 gtk/gtkmain.c:459 gtk/gtkmain.c:462
msgid "FLAGS"
msgstr "BENDERA"

#. Description of --gdk-no-debug=FLAGS in --help output
#: gdk/gdk.c:167
msgid "Gdk debugging flags to unset"
msgstr "Bendera debug Gdk yang hendak dilepas"

#: gdk/keyname-table.h:3940
msgctxt "keyboard label"
msgid "BackSpace"
msgstr "BackSpace"

#: gdk/keyname-table.h:3941
msgctxt "keyboard label"
msgid "Tab"
msgstr "Tab"

#: gdk/keyname-table.h:3942
msgctxt "keyboard label"
msgid "Return"
msgstr "Return"

#: gdk/keyname-table.h:3943
msgctxt "keyboard label"
msgid "Pause"
msgstr "Pause"

#: gdk/keyname-table.h:3944
msgctxt "keyboard label"
msgid "Scroll_Lock"
msgstr "Scroll_Lock"

#: gdk/keyname-table.h:3945
msgctxt "keyboard label"
msgid "Sys_Req"
msgstr "Sys_Req"

#: gdk/keyname-table.h:3946
msgctxt "keyboard label"
msgid "Escape"
msgstr "Escape"

#: gdk/keyname-table.h:3947
msgctxt "keyboard label"
msgid "Multi_key"
msgstr ""

#: gdk/keyname-table.h:3948
msgctxt "keyboard label"
msgid "Home"
msgstr "Home"

#: gdk/keyname-table.h:3949
msgctxt "keyboard label"
msgid "Left"
msgstr "Kiri"

#: gdk/keyname-table.h:3950
msgctxt "keyboard label"
msgid "Up"
msgstr "Atas"

#: gdk/keyname-table.h:3951
msgctxt "keyboard label"
msgid "Right"
msgstr "Kanan"

#: gdk/keyname-table.h:3952
msgctxt "keyboard label"
msgid "Down"
msgstr "Bawah"

#: gdk/keyname-table.h:3953
msgctxt "keyboard label"
msgid "Page_Up"
msgstr "Page_Up"

#: gdk/keyname-table.h:3954
msgctxt "keyboard label"
msgid "Page_Down"
msgstr "Page_Down"

#: gdk/keyname-table.h:3955
msgctxt "keyboard label"
msgid "End"
msgstr "End"

#: gdk/keyname-table.h:3956
msgctxt "keyboard label"
msgid "Begin"
msgstr "Begin"

#: gdk/keyname-table.h:3957
msgctxt "keyboard label"
msgid "Print"
msgstr "Cetak"

#: gdk/keyname-table.h:3958
msgctxt "keyboard label"
msgid "Insert"
msgstr "Sisipkan"

#: gdk/keyname-table.h:3959
msgctxt "keyboard label"
msgid "Num_Lock"
msgstr "Num_Lock"

#: gdk/keyname-table.h:3960
msgctxt "keyboard label"
msgid "KP_Space"
msgstr "KP_Space"

#: gdk/keyname-table.h:3961
msgctxt "keyboard label"
msgid "KP_Tab"
msgstr "KP_Tab"

#: gdk/keyname-table.h:3962
msgctxt "keyboard label"
msgid "KP_Enter"
msgstr "KP_Enter"

#: gdk/keyname-table.h:3963
msgctxt "keyboard label"
msgid "KP_Home"
msgstr "KP_Home"

#: gdk/keyname-table.h:3964
msgctxt "keyboard label"
msgid "KP_Left"
msgstr "KP_Left"

#: gdk/keyname-table.h:3965
msgctxt "keyboard label"
msgid "KP_Up"
msgstr "KP_Up"

#: gdk/keyname-table.h:3966
msgctxt "keyboard label"
msgid "KP_Right"
msgstr "KP_Right"

#: gdk/keyname-table.h:3967
msgctxt "keyboard label"
msgid "KP_Down"
msgstr "KP_Down"

#: gdk/keyname-table.h:3968
msgctxt "keyboard label"
msgid "KP_Page_Up"
msgstr "KP_Page_Up"

#: gdk/keyname-table.h:3969
msgctxt "keyboard label"
msgid "KP_Prior"
msgstr "KP_Prior"

#: gdk/keyname-table.h:3970
msgctxt "keyboard label"
msgid "KP_Page_Down"
msgstr "KP_Page_Down"

#: gdk/keyname-table.h:3971
msgctxt "keyboard label"
msgid "KP_Next"
msgstr "KP_Next"

#: gdk/keyname-table.h:3972
msgctxt "keyboard label"
msgid "KP_End"
msgstr "KP_End"

#: gdk/keyname-table.h:3973
msgctxt "keyboard label"
msgid "KP_Begin"
msgstr "KP_Begin"

#: gdk/keyname-table.h:3974
msgctxt "keyboard label"
msgid "KP_Insert"
msgstr "KP_Insert"

#: gdk/keyname-table.h:3975
msgctxt "keyboard label"
msgid "KP_Delete"
msgstr "KP_Delete"

#: gdk/keyname-table.h:3976
msgctxt "keyboard label"
msgid "Delete"
msgstr "Hapus"

#: gdk-pixbuf/gdk-pixbuf-animation.c:133 gdk-pixbuf/gdk-pixbuf-io.c:982
#: gdk-pixbuf/gdk-pixbuf-io.c:1242 tests/testfilechooser.c:222
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Gagal membuka berkas '%s': %s"

#: gdk-pixbuf/gdk-pixbuf-animation.c:146 gdk-pixbuf/gdk-pixbuf-io.c:994
#, c-format
msgid "Image file '%s' contains no data"
msgstr "Berkas gambar '%s' tak memuat data"

#: gdk-pixbuf/gdk-pixbuf-animation.c:188 gdk-pixbuf/gdk-pixbuf-io.c:1030
#: gdk-pixbuf/gdk-pixbuf-io.c:1294 tests/testfilechooser.c:267
#, c-format
msgid ""
"Failed to load image '%s': reason not known, probably a corrupt image file"
msgstr ""
"Gagal memuat citra '%s': alasan tak diketahui, mungkin berkas citra yang "
"rusak"

#: gdk-pixbuf/gdk-pixbuf-animation.c:221
#, c-format
msgid ""
"Failed to load animation '%s': reason not known, probably a corrupt "
"animation file"
msgstr ""
"Gagal memuat animasi '%s': alasan tak diketahui, mungkin berkas animasi yang "
"rusak"

#: gdk-pixbuf/gdk-pixbuf-io.c:715
#, c-format
msgid "Unable to load image-loading module: %s: %s"
msgstr "Tidak bisa jalankan modul pembuka gambar: %s: %s"

#: gdk-pixbuf/gdk-pixbuf-io.c:730
#, c-format
msgid ""
"Image-loading module %s does not export the proper interface; perhaps it's "
"from a different GTK version?"
msgstr ""
"Modul pembuka gambar %s tidak bisa ekspor interface yang benar; mungkin "
"modul berasal dari GTK versi lain?"

#: gdk-pixbuf/gdk-pixbuf-io.c:739 gdk-pixbuf/gdk-pixbuf-io.c:790
#, c-format
msgid "Image type '%s' is not supported"
msgstr "Tipe gambar '%s' tak didukung"

#: gdk-pixbuf/gdk-pixbuf-io.c:863
#, c-format
msgid "Couldn't recognize the image file format for file '%s'"
msgstr "Format berkas gambar pada berkas '%s' tidak dikenali"

#: gdk-pixbuf/gdk-pixbuf-io.c:871
msgid "Unrecognized image file format"
msgstr "Format berkas gambar tidak dikenali"

#: gdk-pixbuf/gdk-pixbuf-io.c:1039
#, c-format
msgid "Failed to load image '%s': %s"
msgstr "Gagal memuat berkas citra '%s': %s"

#: gdk-pixbuf/gdk-pixbuf-io.c:1673 gdk-pixbuf/io-gdip-utils.c:961
#, c-format
msgid "Error writing to image file: %s"
msgstr "Galat saat menulis ke berkas citra: %s"

#: gdk-pixbuf/gdk-pixbuf-io.c:1718 gdk-pixbuf/gdk-pixbuf-io.c:1848
#, c-format
msgid "This build of gdk-pixbuf does not support saving the image format: %s"
msgstr ""
"gdk-pixbuf yang ada sekarang tak mendukung penyimpanan bentuk citra: %s"

#: gdk-pixbuf/gdk-pixbuf-io.c:1752
msgid "Insufficient memory to save image to callback"
msgstr "Memori yang tersedia tidak mencukupi untuk menyimpan gambar"

#: gdk-pixbuf/gdk-pixbuf-io.c:1765
msgid "Failed to open temporary file"
msgstr "Gagal membuka berkas sementara"

#: gdk-pixbuf/gdk-pixbuf-io.c:1791
msgid "Failed to read from temporary file"
msgstr "Gagal membaca dari berkas sementara"

#: gdk-pixbuf/gdk-pixbuf-io.c:2044
#, c-format
msgid "Failed to open '%s' for writing: %s"
msgstr "Gagal membuka '%s' untuk menulis: %s"

#: gdk-pixbuf/gdk-pixbuf-io.c:2070
#, c-format
msgid ""
"Failed to close '%s' while writing image, all data may not have been saved: %"
"s"
msgstr ""
"Tak bisa menutup '%s' saat menyimpan gambar, mungkin ada data yang tidak "
"tersimpan: %s"

#: gdk-pixbuf/gdk-pixbuf-io.c:2290 gdk-pixbuf/gdk-pixbuf-io.c:2341
msgid "Insufficient memory to save image into a buffer"
msgstr ""
"Memori yang tersedia tidak mencukupi untuk menyimpan gambar ke dalam "
"penyangga"

#: gdk-pixbuf/gdk-pixbuf-io.c:2387
msgid "Error writing to image stream"
msgstr "Galat menulis citra ke stream"

#: gdk-pixbuf/gdk-pixbuf-loader.c:330
#, c-format
msgid ""
"Internal error: Image loader module '%s' failed to complete an operation, "
"but didn't give a reason for the failure"
msgstr ""
"Error intern: Modul pembuka gambar '%s' gagal menyelesaikan suatu operasi, "
"tapi tidak menyebutkan alasan errornya"

#: gdk-pixbuf/gdk-pixbuf-loader.c:372
#, c-format
msgid "Incremental loading of image type '%s' is not supported"
msgstr "Pemuatan bertahap gambar tipe '%s' tak didukung"

#: gdk-pixbuf/gdk-pixdata.c:147
msgid "Image header corrupt"
msgstr "Kepala berkas gambar rusak"

#: gdk-pixbuf/gdk-pixdata.c:152
msgid "Image format unknown"
msgstr "Format gambar tidak dikenal"

#: gdk-pixbuf/gdk-pixdata.c:157 gdk-pixbuf/gdk-pixdata.c:488
msgid "Image pixel data corrupt"
msgstr "Data piksel gambar rusak"

#: gdk-pixbuf/gdk-pixdata.c:432
#, fuzzy, c-format
msgid "failed to allocate image buffer of %u byte"
msgid_plural "failed to allocate image buffer of %u bytes"
msgstr[0] "Gagal mengalokasikan %d byte bagi penyangga baca berkas"

#: gdk-pixbuf/io-ani.c:244
msgid "Unexpected icon chunk in animation"
msgstr "Ada data error pada bagian ikon pada animasi"

#: gdk-pixbuf/io-ani.c:337
msgid "Unsupported animation type"
msgstr "Tipe animasi tidak bisa dibuka"

#: gdk-pixbuf/io-ani.c:348 gdk-pixbuf/io-ani.c:406 gdk-pixbuf/io-ani.c:432
#: gdk-pixbuf/io-ani.c:455 gdk-pixbuf/io-ani.c:482 gdk-pixbuf/io-ani.c:569
msgid "Invalid header in animation"
msgstr "Header pada animasi tidak benar"

#: gdk-pixbuf/io-ani.c:358 gdk-pixbuf/io-ani.c:380 gdk-pixbuf/io-ani.c:464
#: gdk-pixbuf/io-ani.c:491 gdk-pixbuf/io-ani.c:542 gdk-pixbuf/io-ani.c:614
msgid "Not enough memory to load animation"
msgstr "Tidak cukup memori untuk membuka animasi ini"

#: gdk-pixbuf/io-ani.c:398 gdk-pixbuf/io-ani.c:424 gdk-pixbuf/io-ani.c:443
msgid "Malformed chunk in animation"
msgstr "Ada bagian yang rusak pada animasi"

#: gdk-pixbuf/io-ani.c:711
msgid "The ANI image format"
msgstr "Format gambar ANI"

#: gdk-pixbuf/io-bmp.c:230 gdk-pixbuf/io-bmp.c:267 gdk-pixbuf/io-bmp.c:338
#: gdk-pixbuf/io-bmp.c:370 gdk-pixbuf/io-bmp.c:393 gdk-pixbuf/io-bmp.c:496
msgid "BMP image has bogus header data"
msgstr "Gambar BMP ini memiliki data header yang aneh"

#: gdk-pixbuf/io-bmp.c:241 gdk-pixbuf/io-bmp.c:433
msgid "Not enough memory to load bitmap image"
msgstr "Tidak cukup memori untuk membuka gambar bitmap"

#: gdk-pixbuf/io-bmp.c:319
msgid "BMP image has unsupported header size"
msgstr "Gambar BMP ini memiliki ukuran header yang tidak dikenal"

#: gdk-pixbuf/io-bmp.c:357
msgid "Topdown BMP images cannot be compressed"
msgstr "Gambar BMP topdown tidak dapat dikompresi"

#: gdk-pixbuf/io-bmp.c:717 gdk-pixbuf/io-pnm.c:709
msgid "Premature end-of-file encountered"
msgstr "Akhir berkas dijumpai secara mendadak"

#: gdk-pixbuf/io-bmp.c:1329
msgid "Couldn't allocate memory for saving BMP file"
msgstr "Tidak bisa menyediakan ruang memori saat membuka berkas BMP"

#: gdk-pixbuf/io-bmp.c:1370
msgid "Couldn't write to BMP file"
msgstr "Berkas BMP tidak dapat ditulis"

#: gdk-pixbuf/io-bmp.c:1423 gdk-pixbuf/io-gdip-bmp.c:82
msgid "The BMP image format"
msgstr "Format gambar BMP"

#: gdk-pixbuf/io-gif.c:222
#, c-format
msgid "Failure reading GIF: %s"
msgstr "Ada error saat membaca berkas GIF: %s"

#: gdk-pixbuf/io-gif.c:496 gdk-pixbuf/io-gif.c:1481 gdk-pixbuf/io-gif.c:1642
msgid "GIF file was missing some data (perhaps it was truncated somehow?)"
msgstr "Ada data yang hilang pada berkas GIF ini (mungkin rusak?)"

#: gdk-pixbuf/io-gif.c:505
#, c-format
msgid "Internal error in the GIF loader (%s)"
msgstr "Error intern pada pembuka berkas GIF (%s)"

#: gdk-pixbuf/io-gif.c:579
msgid "Stack overflow"
msgstr "Stack meluap"

#: gdk-pixbuf/io-gif.c:639
msgid "GIF image loader cannot understand this image."
msgstr "Pembuka gambar GIF tidak mengenali isi berkas ini"

#: gdk-pixbuf/io-gif.c:668
msgid "Bad code encountered"
msgstr "Ada kode yang salah"

#: gdk-pixbuf/io-gif.c:678
msgid "Circular table entry in GIF file"
msgstr "Ada entri tabel sirkular pada berkas GIF"

#: gdk-pixbuf/io-gif.c:866 gdk-pixbuf/io-gif.c:1468 gdk-pixbuf/io-gif.c:1515
#: gdk-pixbuf/io-gif.c:1630
msgid "Not enough memory to load GIF file"
msgstr "Tidak cukup memori untuk membuka berkas GIF"

#: gdk-pixbuf/io-gif.c:960
msgid "Not enough memory to composite a frame in GIF file"
msgstr "Tidak cukup memori untuk melakukan komposisi bingkai dalam  berkas GIF"

#: gdk-pixbuf/io-gif.c:1132
msgid "GIF image is corrupt (incorrect LZW compression)"
msgstr "Gambar dalam berkas GIF rusak (kompresi LZWnya salah)"

#: gdk-pixbuf/io-gif.c:1182
msgid "File does not appear to be a GIF file"
msgstr "Berkas ini bukan berkas GIF"

#: gdk-pixbuf/io-gif.c:1194
#, c-format
msgid "Version %s of the GIF file format is not supported"
msgstr "Versi %s berkas GIF ini tidak bisa dibuka"

#: gdk-pixbuf/io-gif.c:1303
msgid ""
"GIF image has no global colormap, and a frame inside it has no local "
"colormap."
msgstr ""
"Gambar GIF tidak memiliki peta warna global, dan frame di dalamnya tidak "
"memiliki peta warna lokal."

#: gdk-pixbuf/io-gif.c:1537
msgid "GIF image was truncated or incomplete."
msgstr "Gambar GIF rusak atau tidak lengkap."

#: gdk-pixbuf/io-gif.c:1693 gdk-pixbuf/io-gdip-gif.c:80
msgid "The GIF image format"
msgstr "Format gambar GIF"

#: gdk-pixbuf/io-ico.c:211 gdk-pixbuf/io-ico.c:225 gdk-pixbuf/io-ico.c:277
#: gdk-pixbuf/io-ico.c:290 gdk-pixbuf/io-ico.c:359
msgid "Invalid header in icon"
msgstr "Header error pada ikon"

#: gdk-pixbuf/io-ico.c:240 gdk-pixbuf/io-ico.c:300 gdk-pixbuf/io-ico.c:369
#: gdk-pixbuf/io-ico.c:432 gdk-pixbuf/io-ico.c:462
msgid "Not enough memory to load icon"
msgstr "Tidak cukup memori untuk membuka ikon"

#: gdk-pixbuf/io-ico.c:322
msgid "Icon has zero width"
msgstr "Ikon memiliki lebar 0"

#: gdk-pixbuf/io-ico.c:332
msgid "Icon has zero height"
msgstr "Ikon memiliki tinggi 0"

#: gdk-pixbuf/io-ico.c:384
msgid "Compressed icons are not supported"
msgstr "Ikon terkompresi tidak bisa dibuka"

#: gdk-pixbuf/io-ico.c:417
msgid "Unsupported icon type"
msgstr "Tipe ikon tidak bisa dibuka"

#: gdk-pixbuf/io-ico.c:511
msgid "Not enough memory to load ICO file"
msgstr "Tidak cukup memori untuk membuka berkas ICO"

#: gdk-pixbuf/io-ico.c:976
msgid "Image too large to be saved as ICO"
msgstr "Gambar ini terlalu besar untuk berkas ICO"

#: gdk-pixbuf/io-ico.c:987
msgid "Cursor hotspot outside image"
msgstr "Kursor hotspot di luar gambar"

#: gdk-pixbuf/io-ico.c:1010
#, c-format
msgid "Unsupported depth for ICO file: %d"
msgstr "Kedalaman warna berkas ICO ini tidak didukung: %d"

#: gdk-pixbuf/io-ico.c:1245 gdk-pixbuf/io-gdip-ico.c:59
msgid "The ICO image format"
msgstr "Format gambar ICO"

#: gdk-pixbuf/io-icns.c:347
#, c-format
msgid "Error reading ICNS image: %s"
msgstr "Galat saat membaca citra ICNS: %s"

#: gdk-pixbuf/io-icns.c:364
msgid "Could not decode ICNS file"
msgstr "Tak bisa mengurai kode berkas ICNS"

#: gdk-pixbuf/io-icns.c:397
msgid "The ICNS image format"
msgstr "Format citra ICNS"

#: gdk-pixbuf/io-jasper.c:75
msgid "Couldn't allocate memory for stream"
msgstr "Tak dapat mengalokasikan memori untuk stream"

#: gdk-pixbuf/io-jasper.c:105
msgid "Couldn't decode image"
msgstr "Tak bisa mengurai kode citra"

#: gdk-pixbuf/io-jasper.c:123
msgid "Transformed JPEG2000 has zero width or height"
msgstr "JPEG2000 yang telah ditransformasi memiliki lebar atau tinggi 0"

#: gdk-pixbuf/io-jasper.c:137
msgid "Image type currently not supported"
msgstr "Tipe citra kini belum didukung"

#: gdk-pixbuf/io-jasper.c:149 gdk-pixbuf/io-jasper.c:157
msgid "Couldn't allocate memory for color profile"
msgstr "Tak bisa mengalokasikan memori untuk profil warna"

#: gdk-pixbuf/io-jasper.c:183
msgid "Insufficient memory to open JPEG 2000 file"
msgstr "Tak cukup memori untuk membuka berkas JPEG 2000"

#: gdk-pixbuf/io-jasper.c:262
msgid "Couldn't allocate memory to buffer image data"
msgstr "Tak bisa mengalokasikan memori untuk menyangga data citra"

#: gdk-pixbuf/io-jasper.c:306
msgid "The JPEG 2000 image format"
msgstr "Format citra JPEG 2000"

#: gdk-pixbuf/io-jpeg.c:117
#, c-format
msgid "Error interpreting JPEG image file (%s)"
msgstr "Galat menginterpretasi berkas citra JPEG (%s)"

#: gdk-pixbuf/io-jpeg.c:528
msgid ""
"Insufficient memory to load image, try exiting some applications to free "
"memory"
msgstr ""
"Tidak cukup memori untuk membuka gambar, cobalah untuk menutup aplikasi "
"lainnya untuk mengosongkan memori"

#: gdk-pixbuf/io-jpeg.c:569 gdk-pixbuf/io-jpeg.c:775
#, c-format
msgid "Unsupported JPEG color space (%s)"
msgstr "Ruang warna JPEG tidak bisa ditampilkan (%s)"

#: gdk-pixbuf/io-jpeg.c:674 gdk-pixbuf/io-jpeg.c:944 gdk-pixbuf/io-jpeg.c:1177
#: gdk-pixbuf/io-jpeg.c:1186
msgid "Couldn't allocate memory for loading JPEG file"
msgstr "Tidak bisa menyediakan ruang memori saat membuka berkas JPEG"

#: gdk-pixbuf/io-jpeg.c:919
msgid "Transformed JPEG has zero width or height."
msgstr "JPEG yang telah ditransformasi memiliki lebar atau tinggi 0"

#: gdk-pixbuf/io-jpeg.c:1133 gdk-pixbuf/io-gdip-jpeg.c:53
#, c-format
msgid ""
"JPEG quality must be a value between 0 and 100; value '%s' could not be "
"parsed."
msgstr ""
"Kualitas JPEG harus bernilai antara 0 dan 100; nilai '%s' tidak bisa diurai."

#: gdk-pixbuf/io-jpeg.c:1148 gdk-pixbuf/io-gdip-jpeg.c:68
#, c-format
msgid ""
"JPEG quality must be a value between 0 and 100; value '%d' is not allowed."
msgstr "Kualitas JPEG harus bernilai antara 0 dan 100; nilai '%d' tidak boleh."

#: gdk-pixbuf/io-jpeg.c:1310 gdk-pixbuf/io-gdip-jpeg.c:136
msgid "The JPEG image format"
msgstr "Format gambar JPEG"

#: gdk-pixbuf/io-pcx.c:187
msgid "Couldn't allocate memory for header"
msgstr "Tidak dapat mengalokasikan memori untuk header"

#: gdk-pixbuf/io-pcx.c:202 gdk-pixbuf/io-pcx.c:560
msgid "Couldn't allocate memory for context buffer"
msgstr "Tidak dapat mengalokasikan memori untuk buffer konteks"

#: gdk-pixbuf/io-pcx.c:601
msgid "Image has invalid width and/or height"
msgstr "Gambar memiliki tinggi dan/atau lebar yang salah"

#: gdk-pixbuf/io-pcx.c:613 gdk-pixbuf/io-pcx.c:674
msgid "Image has unsupported bpp"
msgstr "Gambar ini memiliki bpp yang tidak dapat ditampilkan"

#: gdk-pixbuf/io-pcx.c:618 gdk-pixbuf/io-pcx.c:626
#, c-format
msgid "Image has unsupported number of %d-bit planes"
msgstr "Gambar ini memiliki jumlah bidang %d-bit yang tidak dapat ditampilkan"

#: gdk-pixbuf/io-pcx.c:642
msgid "Couldn't create new pixbuf"
msgstr "Tidak dapat membuat pixbuf baru"

#: gdk-pixbuf/io-pcx.c:650
msgid "Couldn't allocate memory for line data"
msgstr "Tidak dapat mengalokasikan memori untuk data baris"

#: gdk-pixbuf/io-pcx.c:657
msgid "Couldn't allocate memory for paletted data"
msgstr "Tidak dapat mengalokasikan memori untuk data berpalet"

#: gdk-pixbuf/io-pcx.c:704
msgid "Didn't get all lines of PCX image"
msgstr "Tidak berhasil memperoleh semua baris pada gambar PCX"

#: gdk-pixbuf/io-pcx.c:711
msgid "No palette found at end of PCX data"
msgstr "TIdak ada palet pada data PCX"

#: gdk-pixbuf/io-pcx.c:756
msgid "The PCX image format"
msgstr "Format gambar PCX"

#: gdk-pixbuf/io-png.c:55
msgid "Bits per channel of PNG image is invalid."
msgstr "Nilai bit per channel pada gambar PNG salah."

#: gdk-pixbuf/io-png.c:136 gdk-pixbuf/io-png.c:642
msgid "Transformed PNG has zero width or height."
msgstr "PNG tertransformasi memiliki lebar atau tinggi 0"

#: gdk-pixbuf/io-png.c:144
msgid "Bits per channel of transformed PNG is not 8."
msgstr "Nilai bit ber channel pada berkas PNG tertransformasi tidak bernilai 8"

#: gdk-pixbuf/io-png.c:153
msgid "Transformed PNG not RGB or RGBA."
msgstr "PNG tertransformasi bukan dalam mode RGB atau RGBA"

#: gdk-pixbuf/io-png.c:162
msgid "Transformed PNG has unsupported number of channels, must be 3 or 4."
msgstr ""
"PNG tertransformasi berisi nilai channel yang salah, seharusnya bernilai 3 "
"atau 4."

#: gdk-pixbuf/io-png.c:183
#, c-format
msgid "Fatal error in PNG image file: %s"
msgstr "Error fatal pada berkas gambar PNG: %s"

# r gdk-pixbuf/io-png.c:301
#: gdk-pixbuf/io-png.c:316
msgid "Insufficient memory to load PNG file"
msgstr "Tidak cukup memori untuk meload berkas PNG"

#: gdk-pixbuf/io-png.c:657
#, c-format
msgid ""
"Insufficient memory to store a %ld by %ld image; try exiting some "
"applications to reduce memory usage"
msgstr ""
"Memori tidak cukup untuk menyompan gambar %ld x %ld. Coba tutup beberapa "
"aplikasi untuk mengurangi penggunaan memori"

#: gdk-pixbuf/io-png.c:720
msgid "Fatal error reading PNG image file"
msgstr "Error fatal saat membaca berkas gambar PNG"

#: gdk-pixbuf/io-png.c:769
#, c-format
msgid "Fatal error reading PNG image file: %s"
msgstr "Error fatal saat membaca berkas gambar PNG: %s"

#: gdk-pixbuf/io-png.c:863
msgid ""
"Keys for PNG text chunks must have at least 1 and at most 79 characters."
msgstr "Key untuk teks bagian PNG harus berukuran antara 1 dan 79 karakter."

#: gdk-pixbuf/io-png.c:872
msgid "Keys for PNG text chunks must be ASCII characters."
msgstr "Key untuk teks bagian PNG harus dalam karakter ASCII"

#: gdk-pixbuf/io-png.c:886 gdk-pixbuf/io-tiff.c:738
#, c-format
msgid "Color profile has invalid length %d."
msgstr "Panjang profil warna %d tak valid."

#: gdk-pixbuf/io-png.c:899 gdk-pixbuf/io-gdip-png.c:56
#, c-format
msgid ""
"PNG compression level must be a value between 0 and 9; value '%s' could not "
"be parsed."
msgstr ""
"Tingkat kompresi PNG harus bernilai antara 0 dan 9; Nilai '%s' tidak bisa di "
"baca."

#: gdk-pixbuf/io-png.c:912 gdk-pixbuf/io-gdip-png.c:68
#, c-format
msgid ""
"PNG compression level must be a value between 0 and 9; value '%d' is not "
"allowed."
msgstr ""
"Tingkat kompresi PNG harus bernilai antara 0 dan 9; Nilai '%d' tidak "
"diperbolehkan."

#: gdk-pixbuf/io-png.c:951
#, c-format
msgid "Value for PNG text chunk %s cannot be converted to ISO-8859-1 encoding."
msgstr ""
"Nilai teks bagian PNG %s tidak bisa dikonversikan ke gugus karakter ISO-8859-"
"1."

#: gdk-pixbuf/io-png.c:1112 gdk-pixbuf/io-gdip-png.c:133
msgid "The PNG image format"
msgstr "Format gambar PNG"

#: gdk-pixbuf/io-pnm.c:250
msgid "PNM loader expected to find an integer, but didn't"
msgstr "Pembuka PNM mengalami kegagalan, harusnya menemukan bilangan bulat"

#: gdk-pixbuf/io-pnm.c:282
msgid "PNM file has an incorrect initial byte"
msgstr "Berkas PNM berisi byte awal yang salah"

#: gdk-pixbuf/io-pnm.c:312
msgid "PNM file is not in a recognized PNM subformat"
msgstr "Berkas PNM tidak dikenali"

#: gdk-pixbuf/io-pnm.c:337
msgid "PNM file has an image width of 0"
msgstr "Berkas PNM memiliki gambar dengan lebar 0"

#: gdk-pixbuf/io-pnm.c:358
msgid "PNM file has an image height of 0"
msgstr "Berkas PNM memiliki gambar dengan tinggi 0"

#: gdk-pixbuf/io-pnm.c:381
msgid "Maximum color value in PNM file is 0"
msgstr "Warna maksimum PNM bernilai 0"

#: gdk-pixbuf/io-pnm.c:389
msgid "Maximum color value in PNM file is too large"
msgstr "Nilai warna maksimum dalam berkas PNM terlalu besar"

#: gdk-pixbuf/io-pnm.c:429 gdk-pixbuf/io-pnm.c:459 gdk-pixbuf/io-pnm.c:504
msgid "Raw PNM image type is invalid"
msgstr "Tipe gambar PNM raw tidak bisa dibaca"

#: gdk-pixbuf/io-pnm.c:654
msgid "PNM image loader does not support this PNM subformat"
msgstr "Pembuka gambar PNM tidak bisa membaca subformat PNM ini"

#: gdk-pixbuf/io-pnm.c:741 gdk-pixbuf/io-pnm.c:968
msgid "Raw PNM formats require exactly one whitespace before sample data"
msgstr "Format PNM raw harus berisi satu whitespace sebelum data gambar"

#: gdk-pixbuf/io-pnm.c:768
msgid "Cannot allocate memory for loading PNM image"
msgstr "Tidak dapat mengalokasikan memori untuk membuka gambar PNM"

#: gdk-pixbuf/io-pnm.c:818
msgid "Insufficient memory to load PNM context struct"
msgstr ""
"Memori yang tersedia tidak mencukupi untuk membuka struktur konteks PNM"

#: gdk-pixbuf/io-pnm.c:869
msgid "Unexpected end of PNM image data"
msgstr "Akhir data gambar PNM berakhir secara mendadak"

#: gdk-pixbuf/io-pnm.c:997
msgid "Insufficient memory to load PNM file"
msgstr "Memori yang tersedia tidak mencukupi untuk membuka berkas PNM"

#: gdk-pixbuf/io-pnm.c:1081
msgid "The PNM/PBM/PGM/PPM image format family"
msgstr "Keluarga format gambar PNM/PBM/PGM/PPM"

#: gdk-pixbuf/io-qtif.c:128
msgid "Input file descriptor is NULL."
msgstr "Deskriptor berkas masukan adalah NULL."

#: gdk-pixbuf/io-qtif.c:143
msgid "Failed to read QTIF header"
msgstr "Gagal membaca header QTIF"

#: gdk-pixbuf/io-qtif.c:152 gdk-pixbuf/io-qtif.c:182 gdk-pixbuf/io-qtif.c:446
#, c-format
msgid "QTIF atom size too large (%d bytes)"
msgstr "Ukuran atom QTIF terlalu besar (%d byte)"

#: gdk-pixbuf/io-qtif.c:172
#, c-format
msgid "Failed to allocate %d bytes for file read buffer"
msgstr "Gagal mengalokasikan %d byte bagi penyangga baca berkas"

#: gdk-pixbuf/io-qtif.c:196
#, c-format
msgid "File error when reading QTIF atom: %s"
msgstr "Galat berkas ketika membaca atom QTIF: %s"

#: gdk-pixbuf/io-qtif.c:233
#, c-format
msgid "Failed to skip the next %d bytes with seek()."
msgstr "Gagal melompati %d byte berikutnya dengan seek()."

#: gdk-pixbuf/io-qtif.c:257
msgid "Failed to allocate QTIF context structure."
msgstr "Gagal mengalokasikan struktur konteks QTIF."

#: gdk-pixbuf/io-qtif.c:317
msgid "Failed to create GdkPixbufLoader object."
msgstr "Gagal membuat objek GdkPixbufLoader."

#: gdk-pixbuf/io-qtif.c:421
msgid "Failed to find an image data atom."
msgstr "Gagal menemukan atom data citra."

#: gdk-pixbuf/io-qtif.c:602
msgid "The QTIF image format"
msgstr "Format gambar QTIF"

#: gdk-pixbuf/io-ras.c:126
msgid "RAS image has bogus header data"
msgstr "Gambar RAS memiliki data header yang salah"

#: gdk-pixbuf/io-ras.c:148
msgid "RAS image has unknown type"
msgstr "Gambar RAS memiliki tipe yang tidak dikenali"

#: gdk-pixbuf/io-ras.c:156
msgid "unsupported RAS image variation"
msgstr "varian gambar RAS yang tidak dapat dibuka"

#: gdk-pixbuf/io-ras.c:171 gdk-pixbuf/io-ras.c:200
msgid "Not enough memory to load RAS image"
msgstr "Memori yang tersedia tidak mencukupi untuk membuka gambar RAS"

#: gdk-pixbuf/io-ras.c:545
msgid "The Sun raster image format"
msgstr "Format gambar raster Sun"

#: gdk-pixbuf/io-tga.c:154
msgid "Cannot allocate memory for IOBuffer struct"
msgstr "Tidak dapat mengalokasikan memori untuk struktur IOBuffer"

#: gdk-pixbuf/io-tga.c:173
msgid "Cannot allocate memory for IOBuffer data"
msgstr "Tidak dapat mengalokasikan memori untuk data IOBuffer"

#: gdk-pixbuf/io-tga.c:184
msgid "Cannot realloc IOBuffer data"
msgstr "Tidak dapat melakukan realokasi data IOBuffer"

#: gdk-pixbuf/io-tga.c:214
msgid "Cannot allocate temporary IOBuffer data"
msgstr "Tidak dapat mengalokasikan data sementara IOBuffer"

#: gdk-pixbuf/io-tga.c:347
msgid "Cannot allocate new pixbuf"
msgstr "Tidak dapat mengalokasikan pixbuf baru"

#: gdk-pixbuf/io-tga.c:686
msgid "Image is corrupted or truncated"
msgstr "Gambar rusak atau terpotong"

#: gdk-pixbuf/io-tga.c:693
msgid "Cannot allocate colormap structure"
msgstr "Tidak dapat mengalokasikan struktur peta warna"

#: gdk-pixbuf/io-tga.c:700
msgid "Cannot allocate colormap entries"
msgstr "Tidak dapat mengalokasikan isi peta warna"

#: gdk-pixbuf/io-tga.c:722
msgid "Unexpected bitdepth for colormap entries"
msgstr "Kedalaman bit untuk entri peta warna salah"

#: gdk-pixbuf/io-tga.c:740
msgid "Cannot allocate TGA header memory"
msgstr "Tidak dapat mengalokasikan memori untuk kepala TGA"

#: gdk-pixbuf/io-tga.c:773
msgid "TGA image has invalid dimensions"
msgstr "Gambar TGA ini memiliki dimensi yang salah"

#: gdk-pixbuf/io-tga.c:779 gdk-pixbuf/io-tga.c:788 gdk-pixbuf/io-tga.c:798
#: gdk-pixbuf/io-tga.c:808 gdk-pixbuf/io-tga.c:815
msgid "TGA image type not supported"
msgstr "Tipe gambar TGA jenis ini tidak dapat dibuka"

#: gdk-pixbuf/io-tga.c:862
msgid "Cannot allocate memory for TGA context struct"
msgstr "Tidak dapat mengalokasikan memori untuk struktur konteks TGA"

#: gdk-pixbuf/io-tga.c:927
msgid "Excess data in file"
msgstr "Data berlebih pada file"

#: gdk-pixbuf/io-tga.c:1008
msgid "The Targa image format"
msgstr "Format gambar Targa"

#: gdk-pixbuf/io-tiff.c:165
msgid "Could not get image width (bad TIFF file)"
msgstr "Tidak dapat menentukan lebar gambar (file TIFFnya rusak)"

#: gdk-pixbuf/io-tiff.c:172
msgid "Could not get image height (bad TIFF file)"
msgstr "Tidak dapat menentukan tinggi gambar (file TIFFnya rusak)"

#: gdk-pixbuf/io-tiff.c:180
msgid "Width or height of TIFF image is zero"
msgstr "Lebar atau tinggi gambar TIFF ini bernilai nol"

#: gdk-pixbuf/io-tiff.c:189 gdk-pixbuf/io-tiff.c:198
msgid "Dimensions of TIFF image too large"
msgstr "Dimensi gambar TIFF ini terlampau besar"

#: gdk-pixbuf/io-tiff.c:222 gdk-pixbuf/io-tiff.c:234 gdk-pixbuf/io-tiff.c:561
msgid "Insufficient memory to open TIFF file"
msgstr "Memori yang tersedia tidak mencukupi untuk membuka berkas TIFF"

#: gdk-pixbuf/io-tiff.c:295
msgid "Failed to load RGB data from TIFF file"
msgstr "Data RGB gagal dibaca dari berkas TIFF"

#: gdk-pixbuf/io-tiff.c:351
msgid "Failed to open TIFF image"
msgstr "Gambar TIFF ini tidak dapat dibuka"

#: gdk-pixbuf/io-tiff.c:363 gdk-pixbuf/io-tiff.c:778
msgid "TIFFClose operation failed"
msgstr "Operasi TIFFClose gagal"

#: gdk-pixbuf/io-tiff.c:493 gdk-pixbuf/io-tiff.c:506
msgid "Failed to load TIFF image"
msgstr "Berkas TIFF tidak dapat dibuka"

#: gdk-pixbuf/io-tiff.c:692
msgid "Failed to save TIFF image"
msgstr "Gambar TIFF ini tidak dapat disimpan"

#: gdk-pixbuf/io-tiff.c:727
msgid "TIFF compression doesn't refer to a valid codec."
msgstr "Kompresi TIFF tidak mengacu ke suatu codec yang valid."

#: gdk-pixbuf/io-tiff.c:767
msgid "Failed to write TIFF data"
msgstr "Gambar TIFF ini tidak dapat ditulis"

#: gdk-pixbuf/io-tiff.c:814
msgid "Couldn't write to TIFF file"
msgstr "Tidak bisa menulis ke berkas TIFF"

#: gdk-pixbuf/io-tiff.c:869
msgid "The TIFF image format"
msgstr "Format gambar TIFF"

#: gdk-pixbuf/io-wbmp.c:246
msgid "Image has zero width"
msgstr "Gambar memiliki lebar nol"

#: gdk-pixbuf/io-wbmp.c:264
msgid "Image has zero height"
msgstr "Gambar memiliki tinggi nol"

#: gdk-pixbuf/io-wbmp.c:275
msgid "Not enough memory to load image"
msgstr "Memori tidak mencukupi untuk membuka gambar"

#: gdk-pixbuf/io-wbmp.c:334
msgid "Couldn't save the rest"
msgstr "Saya tidak dapat menyimpan sisa data"

#: gdk-pixbuf/io-wbmp.c:375
msgid "The WBMP image format"
msgstr "Format gambar WBMP"

#: gdk-pixbuf/io-xbm.c:295
msgid "Invalid XBM file"
msgstr "Berkas XBM ini tidak dapat dibuka"

#: gdk-pixbuf/io-xbm.c:305
msgid "Insufficient memory to load XBM image file"
msgstr "Memori yang tersedia tidak mencukupi untuk membuka berkas gambar XBM"

#: gdk-pixbuf/io-xbm.c:453
msgid "Failed to write to temporary file when loading XBM image"
msgstr ""
"Saat membuka gambar XBM ini, ada kegagalan saat menulis ke berkas sementara"

#: gdk-pixbuf/io-xbm.c:492
msgid "The XBM image format"
msgstr "Format gambar XBM"

#: gdk-pixbuf/io-xpm.c:468
msgid "No XPM header found"
msgstr "Header XPM tidak dijumpai"

#: gdk-pixbuf/io-xpm.c:477
msgid "Invalid XPM header"
msgstr "Kepala XPM tidak benar"

#: gdk-pixbuf/io-xpm.c:485
msgid "XPM file has image width <= 0"
msgstr "Berkas XPM ini memiliki lebar gambar <= 0"

#: gdk-pixbuf/io-xpm.c:493
msgid "XPM file has image height <= 0"
msgstr "Berkas XPM ini memiliki tinggi gambar <= 0"

#: gdk-pixbuf/io-xpm.c:501
msgid "XPM has invalid number of chars per pixel"
msgstr "Berkas XPM ini memiliki jumlah karakter per pixel yang salah"

#: gdk-pixbuf/io-xpm.c:510
msgid "XPM file has invalid number of colors"
msgstr "Berkas XPM ini memiliki jumlah warna yang tidak benar"

#: gdk-pixbuf/io-xpm.c:522 gdk-pixbuf/io-xpm.c:531 gdk-pixbuf/io-xpm.c:583
msgid "Cannot allocate memory for loading XPM image"
msgstr "Tidak dapat mengalokasikan memori untuk membuka gambar XPM"

#: gdk-pixbuf/io-xpm.c:545
msgid "Cannot read XPM colormap"
msgstr "Saya tidak dapat membaca peta warna XPM"

#: gdk-pixbuf/io-xpm.c:777
msgid "Failed to write to temporary file when loading XPM image"
msgstr "Saat membuka gambar XPM ini, ada kegagalan menulis ke berkas sementara"

#: gdk-pixbuf/io-xpm.c:816
msgid "The XPM image format"
msgstr "Format gambar XPM"

#: gdk-pixbuf/io-gdip-emf.c:59
msgid "The EMF image format"
msgstr "Format gambar EMF"

#: gdk-pixbuf/io-gdip-utils.c:232
#, c-format
msgid "Could not allocate memory: %s"
msgstr "Tidak dapat mengalokasikan memori: %s"

#: gdk-pixbuf/io-gdip-utils.c:257 gdk-pixbuf/io-gdip-utils.c:371
#: gdk-pixbuf/io-gdip-utils.c:411
#, c-format
msgid "Could not create stream: %s"
msgstr "Tidak bisa membuat stream: %s"

#: gdk-pixbuf/io-gdip-utils.c:271
#, c-format
msgid "Could not seek stream: %s"
msgstr "Tidak dapat men-seek stream: %s"

#: gdk-pixbuf/io-gdip-utils.c:283
#, c-format
msgid "Could not read from stream: %s"
msgstr "Tidak bisa membaca dari stream: %s"

#: gdk-pixbuf/io-gdip-utils.c:694 gdk-pixbuf/io-gdip-utils.c:825
msgid "Couldn't load bitmap"
msgstr "Tak bisa memuat bitmap"

#: gdk-pixbuf/io-gdip-utils.c:847
msgid "Couldn't load metafile"
msgstr "Tak bisa memuat berkas meta"

#: gdk-pixbuf/io-gdip-utils.c:1006
msgid "Unsupported image format for GDI+"
msgstr "Bentuk gambar yang tak didukung bagi GDI+"

#: gdk-pixbuf/io-gdip-utils.c:1013
msgid "Couldn't save"
msgstr "Tak bisa menyimpan"

#: gdk-pixbuf/io-gdip-wmf.c:58
msgid "The WMF image format"
msgstr "Format gambar WMF"

#. Description of --sync in --help output
#: gdk/win32/gdkmain-win32.c:54
msgid "Don't batch GDI requests"
msgstr "Jangan antrikan permintaan GDI"

#. Description of --no-wintab in --help output
#: gdk/win32/gdkmain-win32.c:56
msgid "Don't use the Wintab API for tablet support"
msgstr "Jangan gunakan API Wintab untuk dukungan tablet"

#. Description of --ignore-wintab in --help output
#: gdk/win32/gdkmain-win32.c:58
msgid "Same as --no-wintab"
msgstr "Sama dengan --no-wintab"

#. Description of --use-wintab in --help output
#: gdk/win32/gdkmain-win32.c:60
msgid "Do use the Wintab API [default]"
msgstr "Jangan gunakan API Wintab (berlaku pada kondisi awal)"

#. Description of --max-colors=COLORS in --help output
#: gdk/win32/gdkmain-win32.c:62
msgid "Size of the palette in 8 bit mode"
msgstr "Ukuran palet dalam moda 8 bit"

#. Placeholder in --max-colors=COLORS in --help output
#: gdk/win32/gdkmain-win32.c:63
msgid "COLORS"
msgstr "WARNA"

#. Description of --sync in --help output
#: gdk/x11/gdkmain-x11.c:93
msgid "Make X calls synchronous"
msgstr "Buat panggilan X sinkronus"

#: gdk/x11/gdkapplaunchcontext-x11.c:313
#, c-format
msgid "Starting %s"
msgstr "Memulai %s"

#: gdk/x11/gdkapplaunchcontext-x11.c:315
#, c-format
msgid "Opening %s"
msgstr "Membuka '%s'"

#: gdk/x11/gdkapplaunchcontext-x11.c:318
#, fuzzy, c-format
msgid "Opening %d Item"
msgid_plural "Opening %d Items"
msgstr[0] "Membuka '%s'"

#: gtk/gtkaboutdialog.c:242
msgid "Could not show link"
msgstr "Tidak dapat menampilkan taut"

#: gtk/gtkaboutdialog.c:365 gtk/gtkaboutdialog.c:2263
msgid "License"
msgstr "Lisensi"

#: gtk/gtkaboutdialog.c:366
msgid "The license of the program"
msgstr "Lisensi program"

#. Add the credits button
#: gtk/gtkaboutdialog.c:625
msgid "C_redits"
msgstr "_Penyusun"

#. Add the license button
#: gtk/gtkaboutdialog.c:639
msgid "_License"
msgstr "_Lisensi"

#: gtk/gtkaboutdialog.c:917
#, c-format
msgid "About %s"
msgstr "Tentang %s"

#: gtk/gtkaboutdialog.c:2186
msgid "Credits"
msgstr "Penyusun"

#: gtk/gtkaboutdialog.c:2215
msgid "Written by"
msgstr "Ditulis oleh"

#: gtk/gtkaboutdialog.c:2218
msgid "Documented by"
msgstr "Dokumentasi oleh"

#: gtk/gtkaboutdialog.c:2230
msgid "Translated by"
msgstr "Alih bahasa oleh"

#: gtk/gtkaboutdialog.c:2234
msgid "Artwork by"
msgstr "Karya seni oleh"

#. This is the text that should appear next to menu accelerators
#. * that use the shift key. If the text on this key isn't typically
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
#: gtk/gtkaccellabel.c:146
msgctxt "keyboard label"
msgid "Shift"
msgstr "Shift"

#. This is the text that should appear next to menu accelerators
#. * that use the control key. If the text on this key isn't typically
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
#: gtk/gtkaccellabel.c:152
msgctxt "keyboard label"
msgid "Ctrl"
msgstr "Ctrl"

#. This is the text that should appear next to menu accelerators
#. * that use the alt key. If the text on this key isn't typically
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
#: gtk/gtkaccellabel.c:158
msgctxt "keyboard label"
msgid "Alt"
msgstr "Alt"

#. This is the text that should appear next to menu accelerators
#. * that use the super key. If the text on this key isn't typically
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
#: gtk/gtkaccellabel.c:743
msgctxt "keyboard label"
msgid "Super"
msgstr "Super"

#. This is the text that should appear next to menu accelerators
#. * that use the hyper key. If the text on this key isn't typically
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
#: gtk/gtkaccellabel.c:756
msgctxt "keyboard label"
msgid "Hyper"
msgstr "Hyper"

#. This is the text that should appear next to menu accelerators
#. * that use the meta key. If the text on this key isn't typically
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
#: gtk/gtkaccellabel.c:770
msgctxt "keyboard label"
msgid "Meta"
msgstr "Meta"

#: gtk/gtkaccellabel.c:787
msgctxt "keyboard label"
msgid "Space"
msgstr "Spasi"

#: gtk/gtkaccellabel.c:790
msgctxt "keyboard label"
msgid "Backslash"
msgstr "Backslash"

#: gtk/gtkbuilderparser.c:343
#, c-format
msgid "Invalid type function on line %d: '%s'"
msgstr "Tipe fungsi tak valid pada baris %d: '%s'"

#: gtk/gtkbuilderparser.c:407
#, c-format
msgid "Duplicate object id '%s' on line %d (previously on line %d)"
msgstr "Objek id duplikat '%s' pada baris %d (sebelumnya pada baris %d)"

#: gtk/gtkbuilderparser.c:859
#, c-format
msgid "Invalid root element: '%s'"
msgstr "Elemen akar tidak berlaku: %s"

#: gtk/gtkbuilderparser.c:898
#, c-format
msgid "Unhandled tag: '%s'"
msgstr "Tag tak tertangani: '%s'"

#. Translate to calendar:YM if you want years to be displayed
#. * before months; otherwise translate to calendar:MY.
#. * Do *not* translate it to anything else, if it
#. * it isn't calendar:YM or calendar:MY it will not work.
#. *
#. * Note that the ordering described here is logical order, which is
#. * further influenced by BIDI ordering. Thus, if you have a default
#. * text direction of RTL and specify "calendar:YM", then the year
#. * will appear to the right of the month.
#.
#: gtk/gtkcalendar.c:759
msgid "calendar:MY"
msgstr "calendar:MY"

#. Translate to calendar:week_start:0 if you want Sunday to be the
#. * first day of the week to calendar:week_start:1 if you want Monday
#. * to be the first day of the week, and so on.
#.
#: gtk/gtkcalendar.c:797
msgid "calendar:week_start:0"
msgstr "calendar:week_start:0"

#. Translators:  This is a text measurement template.
#. * Translate it to the widest year text
#. *
#. * If you don't understand this, leave it as "2000"
#.
#: gtk/gtkcalendar.c:1807
msgctxt "year measurement template"
msgid "2000"
msgstr "2000"

#. Translators: this defines whether the day numbers should use
#. * localized digits or the ones used in English (0123...).
#. *
#. * Translate to "%Id" if you want to use localized digits, or
#. * translate to "%d" otherwise.
#. *
#. * Note that translating this doesn't guarantee that you get localized
#. * digits. That needs support from your system and locale definition
#. * too.
#.
#: gtk/gtkcalendar.c:1838 gtk/gtkcalendar.c:2496
#, c-format
msgctxt "calendar:day:digits"
msgid "%d"
msgstr "%d"

#. Translators: this defines whether the week numbers should use
#. * localized digits or the ones used in English (0123...).
#. *
#. * Translate to "%Id" if you want to use localized digits, or
#. * translate to "%d" otherwise.
#. *
#. * Note that translating this doesn't guarantee that you get localized
#. * digits. That needs support from your system and locale definition
#. * too.
#.
#: gtk/gtkcalendar.c:1870 gtk/gtkcalendar.c:2359
#, c-format
msgctxt "calendar:week:digits"
msgid "%d"
msgstr "%d"

#. Translators: This dictates how the year is displayed in
#. * gtkcalendar widget.  See strftime() manual for the format.
#. * Use only ASCII in the translation.
#. *
#. * Also look for the msgid "2000".
#. * Translate that entry to a year with the widest output of this
#. * msgid.
#. *
#. * "%Y" is appropriate for most locales.
#.
#: gtk/gtkcalendar.c:2150
msgctxt "calendar year format"
msgid "%Y"
msgstr "%Y"

#. This label is displayed in a treeview cell displaying
#. * a disabled accelerator key combination.
#.
#: gtk/gtkcellrendereraccel.c:244
msgctxt "Accelerator"
msgid "Disabled"
msgstr "Dimatikan"

#. This label is displayed in a treeview cell displaying
#. * an accelerator key combination that is not valid according
#. * to gtk_accelerator_valid().
#.
#: gtk/gtkcellrendereraccel.c:254
msgctxt "Accelerator"
msgid "Invalid"
msgstr "Tak valid"

#. This label is displayed in a treeview cell displaying
#. * an accelerator when the cell is clicked to change the
#. * acelerator.
#.
#: gtk/gtkcellrendereraccel.c:389 gtk/gtkcellrendereraccel.c:603
msgid "New accelerator..."
msgstr "Akselerator baru..."

#: gtk/gtkcellrendererprogress.c:361 gtk/gtkcellrendererprogress.c:448
#, c-format
msgctxt "progress bar label"
msgid "%d %%"
msgstr "%d %%"

#: gtk/gtkcolorbutton.c:188 gtk/gtkcolorbutton.c:559
msgid "Pick a Color"
msgstr "Pilih Warna"

#: gtk/gtkcolorbutton.c:448
msgid "Received invalid color data\n"
msgstr "Data warna yang diterima salah\n"

#: gtk/gtkcolorsel.c:354
msgid ""
"Select the color you want from the outer ring. Select the darkness or "
"lightness of that color using the inner triangle."
msgstr ""
"Pilih warna untuk ring terluar. Pilih tingkat kegelapan atau keterangan pada "
"warna tersebut menggunakan segitiga yang ada di dalam."

#: gtk/gtkcolorsel.c:378
msgid ""
"Click the eyedropper, then click a color anywhere on your screen to select "
"that color."
msgstr ""
"Klik pada pengambil warna, lalu klik pada warna apa saja di layar untuk "
"memilih warna tersebut."

#: gtk/gtkcolorsel.c:387
msgid "_Hue:"
msgstr "Corak Warna/_Hue:"

#: gtk/gtkcolorsel.c:388
msgid "Position on the color wheel."
msgstr "Posisi pada roda warna."

#: gtk/gtkcolorsel.c:390
msgid "_Saturation:"
msgstr "Kemurnian Warna/_Saturasi:"

#: gtk/gtkcolorsel.c:391
msgid "\"Deepness\" of the color."
msgstr "\"Kedalaman\" warna."

#: gtk/gtkcolorsel.c:392
msgid "_Value:"
msgstr "Tingkat Cahaya/_Value:"

#: gtk/gtkcolorsel.c:393
msgid "Brightness of the color."
msgstr "Nilai terang/gelap warna."

#: gtk/gtkcolorsel.c:394
msgid "_Red:"
msgstr "Me_rah:"

#: gtk/gtkcolorsel.c:395
msgid "Amount of red light in the color."
msgstr "Jumlah warna merah pada warna."

#: gtk/gtkcolorsel.c:396
msgid "_Green:"
msgstr "_Hijau:"

#: gtk/gtkcolorsel.c:397
msgid "Amount of green light in the color."
msgstr "Jumlah warna hijau pada warna."

#: gtk/gtkcolorsel.c:398
msgid "_Blue:"
msgstr "_Biru:"

#: gtk/gtkcolorsel.c:399
msgid "Amount of blue light in the color."
msgstr "Jumlah warna biru pada warna."

#: gtk/gtkcolorsel.c:402
msgid "Op_acity:"
msgstr "Op_asitas:"

#: gtk/gtkcolorsel.c:409 gtk/gtkcolorsel.c:419
msgid "Transparency of the color."
msgstr "Nilai transparansi warna."

#: gtk/gtkcolorsel.c:426
msgid "Color _name:"
msgstr "_Nama warna:"

#: gtk/gtkcolorsel.c:440
msgid ""
"You can enter an HTML-style hexadecimal color value, or simply a color name "
"such as 'orange' in this entry."
msgstr ""
"Anda dapat memasukkan nilai warna dalam gaya HTML heksadesimal, atau bisa "
"juga masukkan namanya, misalnya 'orange'."

#: gtk/gtkcolorsel.c:470
msgid "_Palette:"
msgstr "_Palet:"

#: gtk/gtkcolorsel.c:499
msgid "Color Wheel"
msgstr "Roda Warna"

#: gtk/gtkcolorsel.c:958
msgid ""
"The previously-selected color, for comparison to the color you're selecting "
"now. You can drag this color to a palette entry, or select this color as "
"current by dragging it to the other color swatch alongside."
msgstr ""
"Warna yang sebelumnya dipilih sebagai warna perbandingan dengan warna yang "
"Anda pilih sekarang. Ambil warna ini ke dalam palet, atau pilih warna ini "
"sebagai warna aktif dengan menyeretnya ke dalam kotak warna."

#: gtk/gtkcolorsel.c:961
msgid ""
"The color you've chosen. You can drag this color to a palette entry to save "
"it for use in the future."
msgstr ""
"Warna yang Anda pilih. Ambil warna ini ke dalam palet agar dapat digunakan "
"di kemudian hari"

#: gtk/gtkcolorsel.c:966
msgid ""
"The previously-selected color, for comparison to the color you're selecting "
"now."
msgstr ""
"Warna yang sebelumnya dipilih, untuk perbandingan dengan warna yang kini "
"sedang Anda pilih."

#: gtk/gtkcolorsel.c:969
msgid "The color you've chosen."
msgstr "Warna yang telah Anda pilih."

#: gtk/gtkcolorsel.c:1382
msgid "_Save color here"
msgstr "_Simpan warna di sini"

#: gtk/gtkcolorsel.c:1587
msgid ""
"Click this palette entry to make it the current color. To change this entry, "
"drag a color swatch here or right-click it and select \"Save color here.\""
msgstr ""
"Klik pada palet untuk menjadikannya sebagai warna aktif. Untuk merubahnya, "
"ambil warna pada kotak warna atau klik kanan dan pilih \"Simpan warna di sini"
"\""

#: gtk/gtkcolorseldialog.c:170
msgid "Color Selection"
msgstr "Pemilihan Warna"

#. Translate to the default units to use for presenting
#. * lengths to the user. Translate to default:inch if you
#. * want inches, otherwise translate to default:mm.
#. * Do *not* translate it to "predefinito:mm", if it
#. * it isn't default:mm or default:inch it will not work
#.
#: gtk/gtkcustompaperunixdialog.c:118
msgid "default:mm"
msgstr "default:mm"

#. And show the custom paper dialog
#: gtk/gtkcustompaperunixdialog.c:373 gtk/gtkprintunixdialog.c:3226
msgid "Manage Custom Sizes"
msgstr "Kelola Ukuran Sesuaian"

#: gtk/gtkcustompaperunixdialog.c:533 gtk/gtkpagesetupunixdialog.c:778
msgid "inch"
msgstr "inci"

#: gtk/gtkcustompaperunixdialog.c:535 gtk/gtkpagesetupunixdialog.c:776
msgid "mm"
msgstr "mm"

#: gtk/gtkcustompaperunixdialog.c:580
msgid "Margins from Printer..."
msgstr "Batas dari Pencetak..."

#: gtk/gtkcustompaperunixdialog.c:746
#, c-format
msgid "Custom Size %d"
msgstr "Ukuran sesuaian %d"

#: gtk/gtkcustompaperunixdialog.c:1054
msgid "_Width:"
msgstr "_Lebar:"

#: gtk/gtkcustompaperunixdialog.c:1066
msgid "_Height:"
msgstr "_Tinggi:"

#: gtk/gtkcustompaperunixdialog.c:1078
msgid "Paper Size"
msgstr "Ukuran Kertas"

#: gtk/gtkcustompaperunixdialog.c:1087
msgid "_Top:"
msgstr "A_tas:"

#: gtk/gtkcustompaperunixdialog.c:1099
msgid "_Bottom:"
msgstr "_Bawah:"

#: gtk/gtkcustompaperunixdialog.c:1111
msgid "_Left:"
msgstr "_Kiri:"

#: gtk/gtkcustompaperunixdialog.c:1123
msgid "_Right:"
msgstr "_Kanan:"

#: gtk/gtkcustompaperunixdialog.c:1164
msgid "Paper Margins"
msgstr "Batas Kertas"

#: gtk/gtkentry.c:8747 gtk/gtktextview.c:7974
msgid "Input _Methods"
msgstr "_Metode Input"

#: gtk/gtkentry.c:8761 gtk/gtktextview.c:7988
msgid "_Insert Unicode Control Character"
msgstr "_Isikan karakter kontrol Unicode"

#: gtk/gtkentry.c:10140
msgid "Caps Lock is on"
msgstr "Caps Lock menyala"

#: gtk/gtkfilechooserbutton.c:64
msgid "Select A File"
msgstr "Pilih Berkas"

#: gtk/gtkfilechooserbutton.c:65 gtk/gtkfilechooserdefault.c:1839
msgid "Desktop"
msgstr "Desktop"

#: gtk/gtkfilechooserbutton.c:66
msgid "(None)"
msgstr "(Tidak ada)"

#: gtk/gtkfilechooserbutton.c:2021
msgid "Other..."
msgstr "Lainnya..."

#: gtk/gtkfilechooserdefault.c:148
msgid "Type name of new folder"
msgstr "Ketikkan nama untuk folder baru ini"

#: gtk/gtkfilechooserdefault.c:965
msgid "Could not retrieve information about the file"
msgstr "Informasi mengenai berkas ini tidak tersedia"

#: gtk/gtkfilechooserdefault.c:976
msgid "Could not add a bookmark"
msgstr "Tidak dapat menambah buku alamat"

#: gtk/gtkfilechooserdefault.c:987
msgid "Could not remove bookmark"
msgstr "Tidak dapat menghapus buku alamat"

#: gtk/gtkfilechooserdefault.c:998
msgid "The folder could not be created"
msgstr "Folder tidak dapat dibuat"

#: gtk/gtkfilechooserdefault.c:1011
msgid ""
"The folder could not be created, as a file with the same name already "
"exists.  Try using a different name for the folder, or rename the file first."
msgstr ""
"Folder ini tidak dapat dibuat karena sudah ada berkas di situ dengan nama "
"yang sama. Silakan ganti nama folder ini, atau ganti nama berkas itu "
"terlebih dahulu."

#: gtk/gtkfilechooserdefault.c:1022
msgid "Invalid file name"
msgstr "Nama berkas tidak benar"

#: gtk/gtkfilechooserdefault.c:1032
msgid "The folder contents could not be displayed"
msgstr "Isi folder tidak dapat ditampilkan"

#. Translators: the first string is a path and the second string
#. * is a hostname. Nautilus and the panel contain the same string
#. * to translate.
#.
#: gtk/gtkfilechooserdefault.c:1582
#, c-format
msgid "%1$s on %2$s"
msgstr "%1$s pada %2$s"

#: gtk/gtkfilechooserdefault.c:1758
msgid "Search"
msgstr "Pencarian"

#: gtk/gtkfilechooserdefault.c:1782 gtk/gtkfilechooserdefault.c:9458
msgid "Recently Used"
msgstr "Baru-baru Ini Dipakai"

#: gtk/gtkfilechooserdefault.c:2422
msgid "Select which types of files are shown"
msgstr "Pilih jenis berkas yang ingin ditampilkan"

#: gtk/gtkfilechooserdefault.c:2781
#, c-format
msgid "Add the folder '%s' to the bookmarks"
msgstr "Masukkan folder '%s' ke dalam buku alamat"

#: gtk/gtkfilechooserdefault.c:2825
#, c-format
msgid "Add the current folder to the bookmarks"
msgstr "Masukkan folder ini ke dalam buku alamat"

#: gtk/gtkfilechooserdefault.c:2827
#, c-format
msgid "Add the selected folders to the bookmarks"
msgstr "Masukkan folder terpilih ke dalam buku alamat"

#: gtk/gtkfilechooserdefault.c:2865
#, c-format
msgid "Remove the bookmark '%s'"
msgstr "Hapus buku alamat '%s'"

#: gtk/gtkfilechooserdefault.c:2867
#, c-format
msgid "Bookmark '%s' cannot be removed"
msgstr "Tanda buku '%s' tak bisa dihapus"

#: gtk/gtkfilechooserdefault.c:2874 gtk/gtkfilechooserdefault.c:3898
msgid "Remove the selected bookmark"
msgstr "Hapus buku alamat yang sedang dipilih"

#: gtk/gtkfilechooserdefault.c:3594
msgid "Remove"
msgstr "Hapus"

#: gtk/gtkfilechooserdefault.c:3603
msgid "Rename..."
msgstr "Ganti nama..."

#. Accessible object name for the file chooser's shortcuts pane
#: gtk/gtkfilechooserdefault.c:3766
msgid "Places"
msgstr "Tempat"

#. Column header for the file chooser's shortcuts pane
#: gtk/gtkfilechooserdefault.c:3823
msgid "_Places"
msgstr "Tem_pat"

#: gtk/gtkfilechooserdefault.c:3879
msgid "_Add"
msgstr "T_ambah"

#: gtk/gtkfilechooserdefault.c:3886
msgid "Add the selected folder to the Bookmarks"
msgstr "Masukkan folder terpilih ke dalam Buku Alamat"

#: gtk/gtkfilechooserdefault.c:3891
msgid "_Remove"
msgstr "Hapu_s"

#: gtk/gtkfilechooserdefault.c:4026
msgid "Could not select file"
msgstr "Berkas tidak dapat dipilih"

#: gtk/gtkfilechooserdefault.c:4201
msgid "_Add to Bookmarks"
msgstr "M_asukkan dalam Buku Alamat"

#: gtk/gtkfilechooserdefault.c:4214
msgid "Show _Hidden Files"
msgstr "Tampilkan Berkas _Tersembunyi"

#: gtk/gtkfilechooserdefault.c:4221
msgid "Show _Size Column"
msgstr "Tampilkan Kolom _Ukuran"

#: gtk/gtkfilechooserdefault.c:4441 gtk/gtkfilesel.c:730
msgid "Files"
msgstr "Berkas"

#: gtk/gtkfilechooserdefault.c:4492
msgid "Name"
msgstr "Nama"

#: gtk/gtkfilechooserdefault.c:4515
msgid "Size"
msgstr "Ukuran"

#: gtk/gtkfilechooserdefault.c:4529
msgid "Modified"
msgstr "Tgl Perubahan"

#. Label
#: gtk/gtkfilechooserdefault.c:4784 gtk/gtkprinteroptionwidget.c:802
msgid "_Name:"
msgstr "_Nama:"

#: gtk/gtkfilechooserdefault.c:4827
msgid "_Browse for other folders"
msgstr "_Lihat folder lainnya"

#: gtk/gtkfilechooserdefault.c:5099
msgid "Type a file name"
msgstr "Tuliskan nama berkas"

#. Create Folder
#: gtk/gtkfilechooserdefault.c:5140
msgid "Create Fo_lder"
msgstr "Buat Fo_lder Baru"

#: gtk/gtkfilechooserdefault.c:5150
msgid "_Location:"
msgstr "_Lokasi: "

#: gtk/gtkfilechooserdefault.c:5354
msgid "Save in _folder:"
msgstr "Simpan ke dalam _folder:"

#: gtk/gtkfilechooserdefault.c:5356
msgid "Create in _folder:"
msgstr "Buat di dalam _folder:"

#: gtk/gtkfilechooserdefault.c:6423
#, c-format
msgid "Could not read the contents of %s"
msgstr "Tidak bisa membaca isi dari %s"

#: gtk/gtkfilechooserdefault.c:6427
msgid "Could not read the contents of the folder"
msgstr "Tidak bisa membaca isi dari folder"

#: gtk/gtkfilechooserdefault.c:6520 gtk/gtkfilechooserdefault.c:6588
#: gtk/gtkfilechooserdefault.c:6733
msgid "Unknown"
msgstr "Tidak Diketahui"

#: gtk/gtkfilechooserdefault.c:6535
msgid "%H:%M"
msgstr "%H:%M"

#: gtk/gtkfilechooserdefault.c:6537
msgid "Yesterday at %H:%M"
msgstr "Kemarin pada %H:%M"

#: gtk/gtkfilechooserdefault.c:7203
msgid "Cannot change to folder because it is not local"
msgstr "Tidak dapat mengganti folder karena tidak berada pada komputer lokal"

#: gtk/gtkfilechooserdefault.c:7800 gtk/gtkfilechooserdefault.c:7821
#, c-format
msgid "Shortcut %s already exists"
msgstr "Jalan pintas  %s sudah ada"

#: gtk/gtkfilechooserdefault.c:7911
#, c-format
msgid "Shortcut %s does not exist"
msgstr "Jalan pintas  %s tidak ada"

#: gtk/gtkfilechooserdefault.c:8166 gtk/gtkprintunixdialog.c:480
#, c-format
msgid "A file named \"%s\" already exists.  Do you want to replace it?"
msgstr "Berkas \"%s\" sudah ada. Ingin menimpanya?"

#: gtk/gtkfilechooserdefault.c:8169 gtk/gtkprintunixdialog.c:484
#, c-format
msgid ""
"The file already exists in \"%s\".  Replacing it will overwrite its contents."
msgstr ""
"Berkas sudah ada dalam \"%s\". Berkas lama akan diganti dengan yang baru "
"bila Anda menimpanya."

#: gtk/gtkfilechooserdefault.c:8174 gtk/gtkprintunixdialog.c:491
msgid "_Replace"
msgstr "_Ganti nama"

#: gtk/gtkfilechooserdefault.c:8826
msgid "Could not start the search process"
msgstr "Tidak dapat memulai proses pencarian"

#: gtk/gtkfilechooserdefault.c:8827
msgid ""
"The program was not able to create a connection to the indexer daemon.  "
"Please make sure it is running."
msgstr ""
"Program tidak dapat membuat koneksi ke indexer daemon.  Pastikan program "
"sedang berjalan."

#: gtk/gtkfilechooserdefault.c:8841
msgid "Could not send the search request"
msgstr "Tidak dapat mengirim permintaan pencarian"

#: gtk/gtkfilechooserdefault.c:9030
msgid "Search:"
msgstr "Cari:"

#: gtk/gtkfilechooserdefault.c:9634
#, c-format
msgid "Could not mount %s"
msgstr "%s tidak dapat dipasang"

#. Translators: this is shown in the feedback for Tab-completion in a file
#. * chooser's text entry, when the user enters an invalid path.
#: gtk/gtkfilechooserentry.c:698 gtk/gtkfilechooserentry.c:1163
msgid "Invalid path"
msgstr "Path tak valid"

#. translators: this text is shown when there are no completions
#. * for something the user typed in a file chooser entry
#.
#: gtk/gtkfilechooserentry.c:1095
msgid "No match"
msgstr "Tak ada yang cocok"

#. translators: this text is shown when there is exactly one completion
#. * for something the user typed in a file chooser entry
#.
#: gtk/gtkfilechooserentry.c:1106
msgid "Sole completion"
msgstr "Satu-satunya penyelesaian"

#. translators: this text is shown when the text in a file chooser
#. * entry is a complete filename, but could be continued to find
#. * a longer match
#.
#: gtk/gtkfilechooserentry.c:1122
msgid "Complete, but not unique"
msgstr "Lengkap, tapi tak unik"

#. Translators: this text is shown while the system is searching
#. * for possible completions for filenames in a file chooser entry.
#: gtk/gtkfilechooserentry.c:1154
msgid "Completing..."
msgstr "Sedang menyelesaikan..."

#. hostnames in a local_only file chooser?  user error
#. Translators: this is shown in the feedback for Tab-completion in a
#. * file chooser's text entry when the user enters something like
#. * "sftp://blahblah" in an app that only supports local filenames.
#: gtk/gtkfilechooserentry.c:1176 gtk/gtkfilechooserentry.c:1201
msgid "Only local files may be selected"
msgstr "Hanya boleh memilih berkas lokal"

#. Another option is to complete the hostname based on the remote volumes that are mounted
#. Translators: this is shown in the feedback for Tab-completion in a
#. * file chooser's text entry when the user hasn't entered the first '/'
#. * after a hostname and yet hits Tab (such as "sftp://blahblah[Tab]")
#: gtk/gtkfilechooserentry.c:1185
msgid "Incomplete hostname; end it with '/'"
msgstr "Nama host tak lengkap; akhirilah dengan '/'"

#. Translators: this is shown in the feedback for Tab-completion in a file
#. * chooser's text entry when the user enters a path that does not exist
#. * and then hits Tab
#: gtk/gtkfilechooserentry.c:1196
msgid "Path does not exist"
msgstr "Path tidak ada"

#: gtk/gtkfilechoosersettings.c:487 gtk/gtkfilesel.c:1349
#: gtk/gtkfilesel.c:1360
#, c-format
msgid "Error creating folder '%s': %s"
msgstr "Error saat membuat folder '%s': %s"

#: gtk/gtkfilesel.c:694
msgid "Folders"
msgstr "Folder"

#: gtk/gtkfilesel.c:698
msgid "Fol_ders"
msgstr "Fol_der"

#: gtk/gtkfilesel.c:734
msgid "_Files"
msgstr "_Berkas"

#: gtk/gtkfilesel.c:821 gtk/gtkfilesel.c:2154
#, c-format
msgid "Folder unreadable: %s"
msgstr "Folder tidak dapat dibaca: %s"

#: gtk/gtkfilesel.c:905
#, c-format
msgid ""
"The file \"%s\" resides on another machine (called %s) and may not be "
"available to this program.\n"
"Are you sure that you want to select it?"
msgstr ""
"Berkas %s ada pada mesin lain (bernama %s) dan mungkin tidak bisa dibuka "
"oleh program ini.\n"
"Apakah benar ingin memilih berkas itu?"

#: gtk/gtkfilesel.c:1020
msgid "_New Folder"
msgstr "Buat Folder _Baru"

#: gtk/gtkfilesel.c:1031
msgid "De_lete File"
msgstr "Ha_pus Berkas"

#: gtk/gtkfilesel.c:1042
msgid "_Rename File"
msgstr "_Ganti Nama Berkas"

#: gtk/gtkfilesel.c:1347
#, c-format
msgid ""
"The folder name \"%s\" contains symbols that are not allowed in filenames"
msgstr "Nama folder %s berisi simbol yang tidak boleh ada pada nama file"

#: gtk/gtkfilesel.c:1394
msgid "New Folder"
msgstr "Buat Folder Baru"

#: gtk/gtkfilesel.c:1409
msgid "_Folder name:"
msgstr "Nama _folder:"

#: gtk/gtkfilesel.c:1433
msgid "C_reate"
msgstr "Buat Ba_ru"

#: gtk/gtkfilesel.c:1476 gtk/gtkfilesel.c:1585 gtk/gtkfilesel.c:1598
#, c-format
msgid "The filename \"%s\" contains symbols that are not allowed in filenames"
msgstr "Nama berkas %s berisi simbol yang tidak boleh dipakai pada nama file"

#: gtk/gtkfilesel.c:1479 gtk/gtkfilesel.c:1491
#, c-format
msgid "Error deleting file '%s': %s"
msgstr "Error menghapus berkas '%s': %s"

#: gtk/gtkfilesel.c:1534
#, c-format
msgid "Really delete file \"%s\"?"
msgstr "Benarkah ingin menghapus berkas \"%s\"?"

#: gtk/gtkfilesel.c:1539
msgid "Delete File"
msgstr "Hapus Berkas"

#: gtk/gtkfilesel.c:1587
#, c-format
msgid "Error renaming file to \"%s\": %s"
msgstr "Error mengganti nama berkas menjadi \"%s\": %s"

#: gtk/gtkfilesel.c:1600
#, c-format
msgid "Error renaming file \"%s\": %s"
msgstr "Error mengganti nama berkas \"%s\": %s"

#: gtk/gtkfilesel.c:1611
#, c-format
msgid "Error renaming file \"%s\" to \"%s\": %s"
msgstr "Error saat mengganti nama dari '%s' ke '%s': %s"

#: gtk/gtkfilesel.c:1658
msgid "Rename File"
msgstr "Ganti Nama Berkas"

#: gtk/gtkfilesel.c:1673
#, c-format
msgid "Rename file \"%s\" to:"
msgstr "Ganti nama berkas %s menjadi:"

#: gtk/gtkfilesel.c:1702
msgid "_Rename"
msgstr "_Ganti nama"

#: gtk/gtkfilesel.c:2134
msgid "_Selection: "
msgstr "_Yang Dipilih: "

#: gtk/gtkfilesel.c:3056
#, c-format
msgid ""
"The filename \"%s\" couldn't be converted to UTF-8. (try setting the "
"environment variable G_FILENAME_ENCODING): %s"
msgstr ""
"Nama berkas '%s' tidak bisa diubah ke UTF-8 (coba set variabel environment "
"G_FILENAME_ENCODING): %s"

#: gtk/gtkfilesel.c:3059
msgid "Invalid UTF-8"
msgstr "UTF-8 salah"

#: gtk/gtkfilesel.c:3935
msgid "Name too long"
msgstr "Nama terlalu panjang"

#: gtk/gtkfilesel.c:3937
msgid "Couldn't convert filename"
msgstr "Tidak bisa konversikan nama file"

#. The pointers we return for a GtkFileSystemVolume are opaque tokens; they are
#. * really pointers to GDrive, GVolume or GMount objects.  We need an extra
#. * token for the fake "File System" volume.  So, we'll return a pointer to
#. * this particular string.
#.
#: gtk/gtkfilesystem.c:52
msgid "File System"
msgstr "Sistem Berkas"

#: gtk/gtkfontbutton.c:144 gtk/gtkfontbutton.c:266
msgid "Pick a Font"
msgstr "Pilih Fonta"

#. Initialize fields
#: gtk/gtkfontbutton.c:260
msgid "Sans 12"
msgstr "Sans 12"

#: gtk/gtkfontbutton.c:785
msgid "Font"
msgstr "Fonta"

#. This is the default text shown in the preview entry, though the user
#. can set it. Remember that some fonts only have capital letters.
#: gtk/gtkfontsel.c:75
msgid "abcdefghijk ABCDEFGHIJK"
msgstr "abcdefghijk ABCDEFGHIJK"

#: gtk/gtkfontsel.c:343
msgid "_Family:"
msgstr "_Keluarga:"

#: gtk/gtkfontsel.c:349
msgid "_Style:"
msgstr "_Gaya:"

#: gtk/gtkfontsel.c:355
msgid "Si_ze:"
msgstr "U_kuran:"

#. create the text entry widget
#: gtk/gtkfontsel.c:532
msgid "_Preview:"
msgstr "_Contoh:"

#: gtk/gtkfontsel.c:1649
msgid "Font Selection"
msgstr "Pilih Fonta"

#: gtk/gtkgamma.c:410
msgid "Gamma"
msgstr "Gamma"

#: gtk/gtkgamma.c:420
msgid "_Gamma value"
msgstr "Nilai _gamma"

#. Remove this icon source so we don't keep trying to
#. * load it.
#.
#: gtk/gtkiconfactory.c:1401
#, c-format
msgid "Error loading icon: %s"
msgstr "Error saat membuka ikon: %s"

#: gtk/gtkicontheme.c:1363
#, c-format
msgid ""
"Could not find the icon '%s'. The '%s' theme\n"
"was not found either, perhaps you need to install it.\n"
"You can get a copy from:\n"
"\t%s"
msgstr ""
"Ikon '%s' tidak dapat ditemukan. Tema '%s'\n"
"juga tidak ditemukan, silakan instal dulu.\n"
"Anda bisa mendapatkannya dari:\n"
"\t%s"

#: gtk/gtkicontheme.c:1543
#, c-format
msgid "Icon '%s' not present in theme"
msgstr "Ikon '%s' tidak ada pada tema"

#: gtk/gtkicontheme.c:3074
msgid "Failed to load icon"
msgstr "Gagal memuat ikon"

#: gtk/gtkimmodule.c:527
msgid "Simple"
msgstr "Sederhana"

#: gtk/gtkimmulticontext.c:563
msgctxt "input method menu"
msgid "System"
msgstr "Sistem"

#: gtk/gtkimmulticontext.c:573
msgctxt "input method menu"
msgid "None"
msgstr "Tak Ada"

#: gtk/gtkimmulticontext.c:656
#, c-format
msgctxt "input method menu"
msgid "System (%s)"
msgstr "Sistem (%s)"

#: gtk/gtkinputdialog.c:192
msgid "Input"
msgstr "Input"

#: gtk/gtkinputdialog.c:207
msgid "No extended input devices"
msgstr "Tidak ada perangkat input tambahan"

#: gtk/gtkinputdialog.c:220
msgid "_Device:"
msgstr "_Perangkat:"

#: gtk/gtkinputdialog.c:237
msgid "Disabled"
msgstr "Tidak Aktif"

#: gtk/gtkinputdialog.c:244
msgid "Screen"
msgstr "Layar"

#: gtk/gtkinputdialog.c:251
msgid "Window"
msgstr "Jendela"

#: gtk/gtkinputdialog.c:258
msgid "_Mode:"
msgstr "_mode:"

#. The axis listbox
#: gtk/gtkinputdialog.c:279
msgid "Axes"
msgstr "Sumbu"

#. Keys listbox
#: gtk/gtkinputdialog.c:297
msgid "Keys"
msgstr "Tombol"

#: gtk/gtkinputdialog.c:524
msgid "_X:"
msgstr "_X:"

#: gtk/gtkinputdialog.c:525
msgid "_Y:"
msgstr "_Y:"

#: gtk/gtkinputdialog.c:526
msgid "_Pressure:"
msgstr "_Tekanan"

#: gtk/gtkinputdialog.c:527
msgid "X _tilt:"
msgstr "_Tilt X:"

#: gtk/gtkinputdialog.c:528
msgid "Y t_ilt:"
msgstr "Y T_ilt:"

#: gtk/gtkinputdialog.c:529
msgid "_Wheel:"
msgstr "_Roda:"

#: gtk/gtkinputdialog.c:581
msgid "none"
msgstr "tidak ada"

#: gtk/gtkinputdialog.c:618 gtk/gtkinputdialog.c:654
msgid "(disabled)"
msgstr "(tidak aktif)"

#: gtk/gtkinputdialog.c:647
msgid "(unknown)"
msgstr "(tidak diketahui)"

#. and clear button
#: gtk/gtkinputdialog.c:751
msgid "Cl_ear"
msgstr "B_ersihkan"

#. Open Link
#: gtk/gtklabel.c:5685
msgid "_Open Link"
msgstr "_Buka Taut"

#. Copy Link Address
#: gtk/gtklabel.c:5697
msgid "Copy _Link Address"
msgstr "Sa_lin Alamat Taut"

#: gtk/gtklinkbutton.c:428
msgid "Copy URL"
msgstr "Salin URL"

#: gtk/gtklinkbutton.c:586
msgid "Invalid URI"
msgstr "URI Salah"

#. Description of --gtk-module=MODULES in --help output
#: gtk/gtkmain.c:452
msgid "Load additional GTK+ modules"
msgstr "Panggil modul GTK+ lainnya"

#. Placeholder in --gtk-module=MODULES in --help output
#: gtk/gtkmain.c:453
msgid "MODULES"
msgstr "MODUL"

#. Description of --g-fatal-warnings in --help output
#: gtk/gtkmain.c:455
msgid "Make all warnings fatal"
msgstr "Buat semua peringatan menjadi pesan fatal"

#. Description of --gtk-debug=FLAGS in --help output
#: gtk/gtkmain.c:458
msgid "GTK+ debugging flags to set"
msgstr "Bendera debug GTK+ yang hendak dipasang"

#. Description of --gtk-no-debug=FLAGS in --help output
#: gtk/gtkmain.c:461
msgid "GTK+ debugging flags to unset"
msgstr "Bendera debug GTK+ yang hendak dilepas"

#. Translate to default:RTL if you want your widgets
#. * to be RTL, otherwise translate to default:LTR.
#. * Do *not* translate it to "predefinito:LTR", if it
#. * it isn't default:LTR or default:RTL it will not work
#.
#: gtk/gtkmain.c:713
msgid "default:LTR"
msgstr "default:LTR"

#: gtk/gtkmain.c:778
#, c-format
msgid "Cannot open display: %s"
msgstr "Tak bisa membuka tampilan: %s"

#: gtk/gtkmain.c:815
msgid "GTK+ Options"
msgstr "Pilihan GTK+"

#: gtk/gtkmain.c:815
msgid "Show GTK+ Options"
msgstr "Tampilkan Pilihan GTK+"

#: gtk/gtkmountoperation.c:489
msgid "Co_nnect"
msgstr "S_ambung"

#: gtk/gtkmountoperation.c:556
msgid "Connect _anonymously"
msgstr "Menyambung secara _anonim"

#: gtk/gtkmountoperation.c:565
msgid "Connect as u_ser:"
msgstr "Menyambung _sebagai pengguna:"

#: gtk/gtkmountoperation.c:603
msgid "_Username:"
msgstr "Nama Pengg_una:"

#: gtk/gtkmountoperation.c:608
msgid "_Domain:"
msgstr "_Domain:"

#: gtk/gtkmountoperation.c:614
msgid "_Password:"
msgstr "Kata _Sandi:"

#: gtk/gtkmountoperation.c:632
msgid "Forget password _immediately"
msgstr "Lupakan kata sandi seket_ika"

#: gtk/gtkmountoperation.c:642
msgid "Remember password until you _logout"
msgstr "Ingat kata sandi sampai Anda _log keluar"

#: gtk/gtkmountoperation.c:652
msgid "Remember _forever"
msgstr "Ingat sela_manya"

#: gtk/gtkmountoperation.c:881
#, c-format
msgid "Unknown Application (pid %d)"
msgstr "Aplikasi Tak Dikenal (pid %d)"

#: gtk/gtkmountoperation.c:1064
#, c-format
msgid "Unable to end process"
msgstr "Tak bisa mengakhiri proses"

#: gtk/gtkmountoperation.c:1101
msgid "_End Process"
msgstr "Akhiri Pros_es"

#: gtk/gtkmountoperation-stub.c:64
#, c-format
msgid "Cannot kill process with pid %d. Operation is not implemented."
msgstr "Tak bisa membunuh proses dengan pid %d. Operasi tak diimplementasi."

#. translators: this string is a name for the 'less' command
#: gtk/gtkmountoperation-x11.c:865
msgid "Terminal Pager"
msgstr ""

#: gtk/gtkmountoperation-x11.c:866
msgid "Top Command"
msgstr "Perintah Top"

#: gtk/gtkmountoperation-x11.c:867
msgid "Bourne Again Shell"
msgstr "Bourne Again Shell"

#: gtk/gtkmountoperation-x11.c:868
msgid "Bourne Shell"
msgstr "Bourne Shell"

#: gtk/gtkmountoperation-x11.c:869
msgid "Z Shell"
msgstr "Z Shell"

#: gtk/gtkmountoperation-x11.c:966
#, c-format
msgid "Cannot end process with pid %d: %s"
msgstr "Tak bisa mengakhiri proses dengan pid %d: %s"

#: gtk/gtknotebook.c:4704 gtk/gtknotebook.c:7269
#, c-format
msgid "Page %u"
msgstr "Halaman %u"

#: gtk/gtkpagesetup.c:597 gtk/gtkpapersize.c:826 gtk/gtkpapersize.c:868
msgid "Not a valid page setup file"
msgstr "Bukan berkas tata halaman yang sah"

#: gtk/gtkpagesetupunixdialog.c:167
msgid "Any Printer"
msgstr "Sebarang Pencetak"

#: gtk/gtkpagesetupunixdialog.c:167
msgid "For portable documents"
msgstr "Untuk dokumen portabel"

#: gtk/gtkpagesetupunixdialog.c:797
#, c-format
msgid ""
"Margins:\n"
" Left: %s %s\n"
" Right: %s %s\n"
" Top: %s %s\n"
" Bottom: %s %s"
msgstr ""
"Batas:\n"
" Kiri: %s %s\n"
" Kanan: %s %s\n"
" Atas: %s %s\n"
" Bawah: %s %s"

#: gtk/gtkpagesetupunixdialog.c:846 gtk/gtkprintunixdialog.c:3277
msgid "Manage Custom Sizes..."
msgstr "Kelola Ukuran Sesuaian..."

#: gtk/gtkpagesetupunixdialog.c:894
msgid "_Format for:"
msgstr "_Bentuk untuk:"

#: gtk/gtkpagesetupunixdialog.c:916 gtk/gtkprintunixdialog.c:3449
msgid "_Paper size:"
msgstr "_Ukuran kertas:"

#: gtk/gtkpagesetupunixdialog.c:947
msgid "_Orientation:"
msgstr "_Orientasi:"

#: gtk/gtkpagesetupunixdialog.c:1011 gtk/gtkprintunixdialog.c:3511
msgid "Page Setup"
msgstr "Pengaturan Halaman"

#: gtk/gtkpathbar.c:151
msgid "Up Path"
msgstr "Path Naik"

#: gtk/gtkpathbar.c:153
msgid "Down Path"
msgstr "Path Turun"

#: gtk/gtkpathbar.c:1469
msgid "File System Root"
msgstr "Akar Sistem Berkas"

#: gtk/gtkprintbackend.c:749
msgid "Authentication"
msgstr "Otentikasi"

#: gtk/gtkprinteroptionwidget.c:695
msgid "Not available"
msgstr "Tidak tersedia"

#: gtk/gtkprinteroptionwidget.c:814
msgid "_Save in folder:"
msgstr "_Simpan ke dalam _folder:"

#. translators: this string is the default job title for print
#. * jobs. %s gets replaced by the application name, %d gets replaced
#. * by the job number.
#.
#: gtk/gtkprintoperation.c:190
#, c-format
msgid "%s job #%d"
msgstr "%s tugas #%d"

#: gtk/gtkprintoperation.c:1687
msgctxt "print operation status"
msgid "Initial state"
msgstr "Keadaan awal"

#: gtk/gtkprintoperation.c:1688
msgctxt "print operation status"
msgid "Preparing to print"
msgstr "Menyiapkan mencetak"

#: gtk/gtkprintoperation.c:1689
msgctxt "print operation status"
msgid "Generating data"
msgstr "Menjangkitkan data"

#: gtk/gtkprintoperation.c:1690
msgctxt "print operation status"
msgid "Sending data"
msgstr "Mengirim data"

#: gtk/gtkprintoperation.c:1691
msgctxt "print operation status"
msgid "Waiting"
msgstr "Menunggu"

#: gtk/gtkprintoperation.c:1692
msgctxt "print operation status"
msgid "Blocking on issue"
msgstr "Menghadang karena ada masalah"

#: gtk/gtkprintoperation.c:1693
msgctxt "print operation status"
msgid "Printing"
msgstr "Mencetak"

#: gtk/gtkprintoperation.c:1694
msgctxt "print operation status"
msgid "Finished"
msgstr "Selesai"

#: gtk/gtkprintoperation.c:1695
msgctxt "print operation status"
msgid "Finished with error"
msgstr "Selesai dengan galat"

#: gtk/gtkprintoperation.c:2254
#, c-format
msgid "Preparing %d"
msgstr "Persiapan %d"

#: gtk/gtkprintoperation.c:2256 gtk/gtkprintoperation.c:2875
#, c-format
msgid "Preparing"
msgstr "Persiapan"

#: gtk/gtkprintoperation.c:2259
#, c-format
msgid "Printing %d"
msgstr "Mencetak %d"

#: gtk/gtkprintoperation.c:2905
#, c-format
msgid "Error creating print preview"
msgstr "Galat membuat pratilik cetak"

#: gtk/gtkprintoperation.c:2908
#, c-format
msgid "The most probable reason is that a temporary file could not be created."
msgstr "Alasan paling mungkin adalah berkas temporer tak dapat dibuat."

#: gtk/gtkprintoperation-unix.c:297 gtk/gtkprintoperation-unix.c:314
#, c-format
msgid "Error launching preview"
msgstr "Kesalahan meluncurkan pracetak"

#: gtk/gtkprintoperation-unix.c:358
#, c-format
msgid "Error printing"
msgstr "Kesalahan mencetak"

#: gtk/gtkprintoperation-unix.c:494 gtk/gtkprintoperation-win32.c:1447
msgid "Application"
msgstr "Aplikasi"

#: gtk/gtkprintoperation-win32.c:612
msgid "Printer offline"
msgstr "Pencetak offline"

#: gtk/gtkprintoperation-win32.c:614
msgid "Out of paper"
msgstr "Habis kertas"

#. Translators: this is a printer status.
#: gtk/gtkprintoperation-win32.c:616
#: modules/printbackends/cups/gtkprintbackendcups.c:1999
msgid "Paused"
msgstr "Istirahat"

#: gtk/gtkprintoperation-win32.c:618
msgid "Need user intervention"
msgstr "Perlu campur tangan pengguna"

#: gtk/gtkprintoperation-win32.c:718
msgid "Custom size"
msgstr "Ukuran sesuaian"

#: gtk/gtkprintoperation-win32.c:1539
msgid "No printer found"
msgstr "Tidak menemukan pencetak"

#: gtk/gtkprintoperation-win32.c:1566
msgid "Invalid argument to CreateDC"
msgstr "Argumen tak valid untuk CreateDC"

#: gtk/gtkprintoperation-win32.c:1602 gtk/gtkprintoperation-win32.c:1829
msgid "Error from StartDoc"
msgstr "Kesalahan dari StartDoc"

#: gtk/gtkprintoperation-win32.c:1684 gtk/gtkprintoperation-win32.c:1707
#: gtk/gtkprintoperation-win32.c:1755
msgid "Not enough free memory"
msgstr "Tidak cukup memori bebas"

#: gtk/gtkprintoperation-win32.c:1760
msgid "Invalid argument to PrintDlgEx"
msgstr "Argumen salah untuk PrintDlgEx"

#: gtk/gtkprintoperation-win32.c:1765
msgid "Invalid pointer to PrintDlgEx"
msgstr "Pointer salah untuk PrintDlgEx"

#: gtk/gtkprintoperation-win32.c:1770
msgid "Invalid handle to PrintDlgEx"
msgstr "Penanganan salah untuk PrintDlgEx"

#: gtk/gtkprintoperation-win32.c:1775
msgid "Unspecified error"
msgstr "Kesalahan tidak jelas"

#: gtk/gtkprintunixdialog.c:614
msgid "Getting printer information failed"
msgstr "Gagal memperoleh informasi pencetak"

#: gtk/gtkprintunixdialog.c:1862
msgid "Getting printer information..."
msgstr "Mengambil informasi pencetak..."

#: gtk/gtkprintunixdialog.c:2132
msgid "Printer"
msgstr "Pencetak"

#. Translators: this is the header for the location column in the print dialog
#: gtk/gtkprintunixdialog.c:2142
msgid "Location"
msgstr "Lokasi"

#. Translators: this is the header for the printer status column in the print dialog
#: gtk/gtkprintunixdialog.c:2153
msgid "Status"
msgstr "Status"

#: gtk/gtkprintunixdialog.c:2179
msgid "Range"
msgstr "Jangkauan"

#: gtk/gtkprintunixdialog.c:2183
msgid "_All Pages"
msgstr "Semu_a Halaman"

#: gtk/gtkprintunixdialog.c:2190
msgid "C_urrent Page"
msgstr "Halaman Kini"

#: gtk/gtkprintunixdialog.c:2200
msgid "Se_lection"
msgstr "Yang Dipi_lih: "

#: gtk/gtkprintunixdialog.c:2209
msgid "Pag_es:"
msgstr "Halama_n:"

#: gtk/gtkprintunixdialog.c:2210
msgid ""
"Specify one or more page ranges,\n"
" e.g. 1-3,7,11"
msgstr ""
"Nyatakan satu atau lebih rentang halaman,\n"
"mis: 1-3,7,11"

#: gtk/gtkprintunixdialog.c:2220
msgid "Pages"
msgstr "Halaman"

#: gtk/gtkprintunixdialog.c:2233
msgid "Copies"
msgstr "Rangkap"

#. FIXME chpe: too much space between Copies and spinbutton, put those 2 in a hbox and make it span 2 columns
#: gtk/gtkprintunixdialog.c:2238
msgid "Copie_s:"
msgstr "Rangka_p:"

#: gtk/gtkprintunixdialog.c:2256
msgid "C_ollate"
msgstr ""

#: gtk/gtkprintunixdialog.c:2264
msgid "_Reverse"
msgstr "_Kembali"

#: gtk/gtkprintunixdialog.c:2284
msgid "General"
msgstr "Umum"

#. Translators: These strings name the possible arrangements of
#. * multiple pages on a sheet when printing (same as in gtkprintbackendcups.c)
#.
#. Translators: These strings name the possible arrangements of
#. * multiple pages on a sheet when printing
#.
#: gtk/gtkprintunixdialog.c:3010
#: modules/printbackends/cups/gtkprintbackendcups.c:3509
msgid "Left to right, top to bottom"
msgstr "Kiri ke kanan, puncak ke dasar"

#: gtk/gtkprintunixdialog.c:3010
#: modules/printbackends/cups/gtkprintbackendcups.c:3509
msgid "Left to right, bottom to top"
msgstr "Kiri ke kanan, dasar ke puncak"

#: gtk/gtkprintunixdialog.c:3011
#: modules/printbackends/cups/gtkprintbackendcups.c:3510
msgid "Right to left, top to bottom"
msgstr "Kanan ke kiri, puncak ke dasar"

#: gtk/gtkprintunixdialog.c:3011
#: modules/printbackends/cups/gtkprintbackendcups.c:3510
msgid "Right to left, bottom to top"
msgstr "Kanan ke kiri, dasar ke puncak"

#: gtk/gtkprintunixdialog.c:3012
#: modules/printbackends/cups/gtkprintbackendcups.c:3511
msgid "Top to bottom, left to right"
msgstr "Puncak ke dasar, kiri ke kanan"

#: gtk/gtkprintunixdialog.c:3012
#: modules/printbackends/cups/gtkprintbackendcups.c:3511
msgid "Top to bottom, right to left"
msgstr "Puncak ke dasar, kanan ke kiri"

#: gtk/gtkprintunixdialog.c:3013
#: modules/printbackends/cups/gtkprintbackendcups.c:3512
msgid "Bottom to top, left to right"
msgstr "Dasar ke puncak, kiri ke kanan"

#: gtk/gtkprintunixdialog.c:3013
#: modules/printbackends/cups/gtkprintbackendcups.c:3512
msgid "Bottom to top, right to left"
msgstr "Dasar ke puncak, kanan ke kiri"

#. Translators, this string is used to label the option in the print
#. * dialog that controls in what order multiple pages are arranged
#.
#: gtk/gtkprintunixdialog.c:3017 gtk/gtkprintunixdialog.c:3030
#: modules/printbackends/cups/gtkprintbackendcups.c:3544
msgid "Page Ordering"
msgstr "Urutan Halaman"

#: gtk/gtkprintunixdialog.c:3046
msgid "Left to right"
msgstr "Kiri ke kanan"

#: gtk/gtkprintunixdialog.c:3047
msgid "Right to left"
msgstr "Kanan ke kiri"

#: gtk/gtkprintunixdialog.c:3059
msgid "Top to bottom"
msgstr "Puncak ke dasar"

#: gtk/gtkprintunixdialog.c:3060
msgid "Bottom to top"
msgstr "Dasar ke puncak"

#: gtk/gtkprintunixdialog.c:3300
msgid "Layout"
msgstr "Tata letak"

#: gtk/gtkprintunixdialog.c:3304
msgid "T_wo-sided:"
msgstr "D_ua sisi:"

#: gtk/gtkprintunixdialog.c:3319
msgid "Pages per _side:"
msgstr "Halaman per _lembar:"

#: gtk/gtkprintunixdialog.c:3336
msgid "Page or_dering:"
msgstr "U_rutan halaman:"

#: gtk/gtkprintunixdialog.c:3352
msgid "_Only print:"
msgstr "_Hanya cetak:"

#. In enum order
#: gtk/gtkprintunixdialog.c:3367
msgid "All sheets"
msgstr "Seluruh halaman"

#: gtk/gtkprintunixdialog.c:3368
msgid "Even sheets"
msgstr "Halaman genap"

#: gtk/gtkprintunixdialog.c:3369
msgid "Odd sheets"
msgstr "Halaman Ganjil"

#: gtk/gtkprintunixdialog.c:3372
msgid "Sc_ale:"
msgstr "Sk_ala:"

#: gtk/gtkprintunixdialog.c:3399
msgid "Paper"
msgstr "Kertas"

#: gtk/gtkprintunixdialog.c:3403
msgid "Paper _type:"
msgstr "Jenis _kertas:"

#: gtk/gtkprintunixdialog.c:3418
msgid "Paper _source:"
msgstr "Sumber kerta_s:"

#: gtk/gtkprintunixdialog.c:3433
msgid "Output t_ray:"
msgstr "Laci kelua_ran:"

#: gtk/gtkprintunixdialog.c:3473
msgid "Or_ientation:"
msgstr "Or_ientasi:"

#. In enum order
#: gtk/gtkprintunixdialog.c:3488
msgid "Portrait"
msgstr "Tegak"

#: gtk/gtkprintunixdialog.c:3489
msgid "Landscape"
msgstr "Mendatar"

#: gtk/gtkprintunixdialog.c:3490
msgid "Reverse portrait"
msgstr "Tegak terjungkir"

#: gtk/gtkprintunixdialog.c:3491
msgid "Reverse landscape"
msgstr "Mendatar terjungkir"

#: gtk/gtkprintunixdialog.c:3536
msgid "Job Details"
msgstr "Rincian Tugas"

#: gtk/gtkprintunixdialog.c:3542
msgid "Pri_ority:"
msgstr "Pri_oritas:"

#: gtk/gtkprintunixdialog.c:3557
msgid "_Billing info:"
msgstr "Info _Billing:"

#: gtk/gtkprintunixdialog.c:3575
msgid "Print Document"
msgstr "Cetak Dokumen"

#. Translators: this is one of the choices for the print at option
#. * in the print dialog
#.
#: gtk/gtkprintunixdialog.c:3584
msgid "_Now"
msgstr "Sekara_ng"

#: gtk/gtkprintunixdialog.c:3595
msgid "A_t:"
msgstr "Pa_da:"

#. Translators: Ability to parse the am/pm format depends on actual locale.
#. * You can remove the am/pm values below for your locale if they are not
#. * supported.
#.
#: gtk/gtkprintunixdialog.c:3601
msgid ""
"Specify the time of print,\n"
" e.g. 15:30, 2:35 pm, 14:15:20, 11:46:30 am, 4 pm"
msgstr ""
"Nyatakan waktu pencetakan,\n"
"mis: 15:30, 14:15:20, 4"

#: gtk/gtkprintunixdialog.c:3611
msgid "Time of print"
msgstr "Waktu pencetakan"

#: gtk/gtkprintunixdialog.c:3627
msgid "On _hold"
msgstr "Ditun_da"

#: gtk/gtkprintunixdialog.c:3628
msgid "Hold the job until it is explicitly released"
msgstr "Tahan tugas sampai dilepas secara eksplisit"

#: gtk/gtkprintunixdialog.c:3648
msgid "Add Cover Page"
msgstr "Tambahkan Sampulan Halaman"

#. Translators, this is the label used for the option in the print
#. * dialog that controls the front cover page.
#.
#: gtk/gtkprintunixdialog.c:3657
msgid "Be_fore:"
msgstr "Sebe_lum:"

#. Translators, this is the label used for the option in the print
#. * dialog that controls the back cover page.
#.
#: gtk/gtkprintunixdialog.c:3675
msgid "_After:"
msgstr "Setel_ah:"

#. Translators: this is the tab label for the notebook tab containing
#. * job-specific options in the print dialog
#.
#: gtk/gtkprintunixdialog.c:3693
msgid "Job"
msgstr "Tugas"

#: gtk/gtkprintunixdialog.c:3759
msgid "Advanced"
msgstr "Diperluas"

#. Translators: this will appear as tab label in print dialog.
#: gtk/gtkprintunixdialog.c:3794
msgid "Image Quality"
msgstr "Kualitas Gambar"

#. Translators: this will appear as tab label in print dialog.
#: gtk/gtkprintunixdialog.c:3798
msgid "Color"
msgstr "Warna"

#. Translators: this will appear as tab label in print dialog.
#. It's a typographical term, as in "Binding and finishing"
#: gtk/gtkprintunixdialog.c:3803
msgid "Finishing"
msgstr "Menyelesaikan"

#: gtk/gtkprintunixdialog.c:3813
msgid "Some of the settings in the dialog conflict"
msgstr "Beberapa ketentuan pada dialog konflik"

#: gtk/gtkprintunixdialog.c:3836
msgid "Print"
msgstr "Cetak"

#: gtk/gtkrc.c:2878
#, c-format
msgid "Unable to find include file: \"%s\""
msgstr "Tidak dapat menemukan berkas yang hendak disisipkan: \"%s\""

#: gtk/gtkrc.c:3508 gtk/gtkrc.c:3511
#, c-format
msgid "Unable to locate image file in pixmap_path: \"%s\""
msgstr "TIdak dapat menemukan berkas gambar pada pixmap_path: \"%s\""

#: gtk/gtkrecentaction.c:154 gtk/gtkrecentaction.c:162
#: gtk/gtkrecentchoosermenu.c:588 gtk/gtkrecentchoosermenu.c:596
#, c-format
msgid "This function is not implemented for widgets of class '%s'"
msgstr "Fungsi ini tidak diterapkan untuk widget kelas '%s'"

#: gtk/gtkrecentchooserdefault.c:481
msgid "Select which type of documents are shown"
msgstr "Pilih jenis berkas mana yang ingin ditampilkan"

#: gtk/gtkrecentchooserdefault.c:1134 gtk/gtkrecentchooserdefault.c:1171
#, c-format
msgid "No item for URI '%s' found"
msgstr "Tidak menemukan objek untuk URI '%s'"

#: gtk/gtkrecentchooserdefault.c:1298
msgid "Untitled filter"
msgstr "Filter tanpa judul"

#: gtk/gtkrecentchooserdefault.c:1651
msgid "Could not remove item"
msgstr "Objek tidak dapat dibuang"

#: gtk/gtkrecentchooserdefault.c:1695
msgid "Could not clear list"
msgstr "Tidak dapat membersihkan daftar"

#: gtk/gtkrecentchooserdefault.c:1779
msgid "Copy _Location"
msgstr "Salin _Lokasi"

#: gtk/gtkrecentchooserdefault.c:1792
msgid "_Remove From List"
msgstr "Buang Dari Dafta_r"

#: gtk/gtkrecentchooserdefault.c:1801
msgid "_Clear List"
msgstr "_Kosongkan Daftar"

#: gtk/gtkrecentchooserdefault.c:1815
msgid "Show _Private Resources"
msgstr "Tampilkan Sumber _Pribadi"

#. we create a placeholder menuitem, to be used in case
#. * the menu is empty. this placeholder will stay around
#. * for the entire lifetime of the menu, and we just hide it
#. * when it's not used. we have to do this, and do it here,
#. * because we need a marker for the beginning of the recent
#. * items list, so that we can insert the new items at the
#. * right place when idly populating the menu in case the
#. * user appended or prepended custom menu items to the
#. * recent chooser menu widget.
#.
#: gtk/gtkrecentchoosermenu.c:342
msgid "No items found"
msgstr "Tidak menemukan objek"

#: gtk/gtkrecentchoosermenu.c:508 gtk/gtkrecentchoosermenu.c:564
#, c-format
msgid "No recently used resource found with URI `%s'"
msgstr "Tidak ada sumber yang sering digunakan dengan URI '%s'"

#: gtk/gtkrecentchoosermenu.c:775
#, c-format
msgid "Open '%s'"
msgstr "Buka '%s'"

#: gtk/gtkrecentchoosermenu.c:805
msgid "Unknown item"
msgstr "Objek tak dikenal"

#. This is the label format that is used for the first 10 items
#. * in a recent files menu. The %d is the number of the item,
#. * the %s is the name of the item. Please keep the _ in front
#. * of the number to give these menu items a mnemonic.
#.
#: gtk/gtkrecentchoosermenu.c:816
#, c-format
msgctxt "recent menu label"
msgid "_%d. %s"
msgstr "_%d. %s"

#. This is the format that is used for items in a recent files menu.
#. * The %d is the number of the item, the %s is the name of the item.
#.
#: gtk/gtkrecentchoosermenu.c:821
#, c-format
msgctxt "recent menu label"
msgid "%d. %s"
msgstr "%d. %s"

#: gtk/gtkrecentmanager.c:1020 gtk/gtkrecentmanager.c:1033
#: gtk/gtkrecentmanager.c:1171 gtk/gtkrecentmanager.c:1181
#: gtk/gtkrecentmanager.c:1234 gtk/gtkrecentmanager.c:1243
#: gtk/gtkrecentmanager.c:1258
#, c-format
msgid "Unable to find an item with URI '%s'"
msgstr "Tidak dapat menemukan objek dengan URI '%s'"

#: gtk/gtkspinner.c:458
msgctxt "throbbing progress animation widget"
msgid "Spinner"
msgstr "Gambar Putar"

#: gtk/gtkspinner.c:459
msgid "Provides visual indication of progress"
msgstr "Menyediakan indikasi visual dari kemajuan"

#. KEEP IN SYNC with gtkiconfactory.c stock icons, when appropriate
#: gtk/gtkstock.c:314
msgctxt "Stock label"
msgid "Information"
msgstr "Informasi"

#: gtk/gtkstock.c:315
msgctxt "Stock label"
msgid "Warning"
msgstr "Peringatan"

#: gtk/gtkstock.c:316
msgctxt "Stock label"
msgid "Error"
msgstr "Galat"

#: gtk/gtkstock.c:317
msgctxt "Stock label"
msgid "Question"
msgstr "Pertanyaan"

#. FIXME these need accelerators when appropriate, and
#. * need the mnemonics to be rationalized
#.
#: gtk/gtkstock.c:322
msgctxt "Stock label"
msgid "_About"
msgstr "Ihw_al"

#: gtk/gtkstock.c:323
msgctxt "Stock label"
msgid "_Add"
msgstr "T_ambah"

#: gtk/gtkstock.c:324
msgctxt "Stock label"
msgid "_Apply"
msgstr "Ter_apkan"

#: gtk/gtkstock.c:325
msgctxt "Stock label"
msgid "_Bold"
msgstr "_Tebal"

#: gtk/gtkstock.c:326
msgctxt "Stock label"
msgid "_Cancel"
msgstr "Ba_tal"

#: gtk/gtkstock.c:327
msgctxt "Stock label"
msgid "_CD-Rom"
msgstr "_CD-ROM"

#: gtk/gtkstock.c:328
msgctxt "Stock label"
msgid "_Clear"
msgstr "_Bersihkan"

#: gtk/gtkstock.c:329
msgctxt "Stock label"
msgid "_Close"
msgstr "_Tutup"

#: gtk/gtkstock.c:330
msgctxt "Stock label"
msgid "C_onnect"
msgstr "S_ambung"

#: gtk/gtkstock.c:331
msgctxt "Stock label"
msgid "_Convert"
msgstr "_Konversi"

#: gtk/gtkstock.c:332
msgctxt "Stock label"
msgid "_Copy"
msgstr "_Salin"

#: gtk/gtkstock.c:333
msgctxt "Stock label"
msgid "Cu_t"
msgstr "Po_tong"

#: gtk/gtkstock.c:334
msgctxt "Stock label"
msgid "_Delete"
msgstr "_Hapus"

#: gtk/gtkstock.c:335
msgctxt "Stock label"
msgid "_Discard"
msgstr "_Buang"

#: gtk/gtkstock.c:336
msgctxt "Stock label"
msgid "_Disconnect"
msgstr "_Putus"

#: gtk/gtkstock.c:337
msgctxt "Stock label"
msgid "_Execute"
msgstr "_Jalankan"

#: gtk/gtkstock.c:338
msgctxt "Stock label"
msgid "_Edit"
msgstr "_Edit"

#: gtk/gtkstock.c:339
msgctxt "Stock label"
msgid "_Find"
msgstr "_Cari"

#: gtk/gtkstock.c:340
msgctxt "Stock label"
msgid "Find and _Replace"
msgstr "Ca_ri dan Ganti"

#: gtk/gtkstock.c:341
msgctxt "Stock label"
msgid "_Floppy"
msgstr "_Disket"

#: gtk/gtkstock.c:342
msgctxt "Stock label"
msgid "_Fullscreen"
msgstr "Layar _Penuh"

#: gtk/gtkstock.c:343
msgctxt "Stock label"
msgid "_Leave Fullscreen"
msgstr "Ke_luar dari Layar Penuh"

#. This is a navigation label as in "go to the bottom of the page"
#: gtk/gtkstock.c:345
msgctxt "Stock label, navigation"
msgid "_Bottom"
msgstr "_Dasar"

#. This is a navigation label as in "go to the first page"
#: gtk/gtkstock.c:347
msgctxt "Stock label, navigation"
msgid "_First"
msgstr "_Pertama"

#. This is a navigation label as in "go to the last page"
#: gtk/gtkstock.c:349
msgctxt "Stock label, navigation"
msgid "_Last"
msgstr "_Terakhir"

#. This is a navigation label as in "go to the top of the page"
#: gtk/gtkstock.c:351
msgctxt "Stock label, navigation"
msgid "_Top"
msgstr "_Puncak"

#. This is a navigation label as in "go back"
#: gtk/gtkstock.c:353
msgctxt "Stock label, navigation"
msgid "_Back"
msgstr "Kem_bali"

#. This is a navigation label as in "go down"
#: gtk/gtkstock.c:355
msgctxt "Stock label, navigation"
msgid "_Down"
msgstr "_Turun"

#. This is a navigation label as in "go forward"
#: gtk/gtkstock.c:357
msgctxt "Stock label, navigation"
msgid "_Forward"
msgstr "_Maju"

#. This is a navigation label as in "go up"
#: gtk/gtkstock.c:359
msgctxt "Stock label, navigation"
msgid "_Up"
msgstr "_Atas"

#: gtk/gtkstock.c:360
msgctxt "Stock label"
msgid "_Harddisk"
msgstr "_Hard Disk"

#: gtk/gtkstock.c:361
msgctxt "Stock label"
msgid "_Help"
msgstr "Ba_ntuan"

#: gtk/gtkstock.c:362
msgctxt "Stock label"
msgid "_Home"
msgstr "_Rumah"

#: gtk/gtkstock.c:363
msgctxt "Stock label"
msgid "Increase Indent"
msgstr "Majukan Inden"

#: gtk/gtkstock.c:364
msgctxt "Stock label"
msgid "Decrease Indent"
msgstr "Mundurkan Inden"

#: gtk/gtkstock.c:365
msgctxt "Stock label"
msgid "_Index"
msgstr "_Indeks"

#: gtk/gtkstock.c:366
msgctxt "Stock label"
msgid "_Information"
msgstr "_Informasi"

#: gtk/gtkstock.c:367
msgctxt "Stock label"
msgid "_Italic"
msgstr "M_iring"

#: gtk/gtkstock.c:368
msgctxt "Stock label"
msgid "_Jump to"
msgstr "_Lompat ke"

#. This is about text justification, "centered text"
#: gtk/gtkstock.c:370
msgctxt "Stock label"
msgid "_Center"
msgstr "_Tengah"

#. This is about text justification
#: gtk/gtkstock.c:372
msgctxt "Stock label"
msgid "_Fill"
msgstr "_Isi"

#. This is about text justification, "left-justified text"
#: gtk/gtkstock.c:374
msgctxt "Stock label"
msgid "_Left"
msgstr "_Kiri"

#. This is about text justification, "right-justified text"
#: gtk/gtkstock.c:376
msgctxt "Stock label"
msgid "_Right"
msgstr "Ka_nan"

#. Media label, as in "fast forward"
#: gtk/gtkstock.c:379
msgctxt "Stock label, media"
msgid "_Forward"
msgstr "_Maju"

#. Media label, as in "next song"
#: gtk/gtkstock.c:381
msgctxt "Stock label, media"
msgid "_Next"
msgstr "_Berikutnya"

#. Media label, as in "pause music"
#: gtk/gtkstock.c:383
msgctxt "Stock label, media"
msgid "P_ause"
msgstr "_Istirahat"

#. Media label, as in "play music"
#: gtk/gtkstock.c:385
msgctxt "Stock label, media"
msgid "_Play"
msgstr "_Putar"

#. Media label, as in  "previous song"
#: gtk/gtkstock.c:387
msgctxt "Stock label, media"
msgid "Pre_vious"
msgstr "Se_belumnya"

#. Media label
#: gtk/gtkstock.c:389
msgctxt "Stock label, media"
msgid "_Record"
msgstr "_Rekam"

#. Media label
#: gtk/gtkstock.c:391
msgctxt "Stock label, media"
msgid "R_ewind"
msgstr "Pu_tar Balik"

#. Media label
#: gtk/gtkstock.c:393
msgctxt "Stock label, media"
msgid "_Stop"
msgstr "_Berhenti"

#: gtk/gtkstock.c:394
msgctxt "Stock label"
msgid "_Network"
msgstr "Jaringa_n"

#: gtk/gtkstock.c:395
msgctxt "Stock label"
msgid "_New"
msgstr "Bar_u"

#: gtk/gtkstock.c:396
msgctxt "Stock label"
msgid "_No"
msgstr "_Tidak"

#: gtk/gtkstock.c:397
msgctxt "Stock label"
msgid "_OK"
msgstr "_OK"

#: gtk/gtkstock.c:398
msgctxt "Stock label"
msgid "_Open"
msgstr "_Buka"

#. Page orientation
#: gtk/gtkstock.c:400
msgctxt "Stock label"
msgid "Landscape"
msgstr "Mendatar"

#. Page orientation
#: gtk/gtkstock.c:402
msgctxt "Stock label"
msgid "Portrait"
msgstr "Tegak"

#. Page orientation
#: gtk/gtkstock.c:404
msgctxt "Stock label"
msgid "Reverse landscape"
msgstr "Mendatar terjungkir"

#. Page orientation
#: gtk/gtkstock.c:406
msgctxt "Stock label"
msgid "Reverse portrait"
msgstr "Tegak terjungkir"

#: gtk/gtkstock.c:407
msgctxt "Stock label"
msgid "Page Set_up"
msgstr "Pengat_uran Halaman"

#: gtk/gtkstock.c:408
msgctxt "Stock label"
msgid "_Paste"
msgstr "_Tempel"

#: gtk/gtkstock.c:409
msgctxt "Stock label"
msgid "_Preferences"
msgstr "_Preferensi"

#: gtk/gtkstock.c:410
msgctxt "Stock label"
msgid "_Print"
msgstr "_Cetak"

#: gtk/gtkstock.c:411
msgctxt "Stock label"
msgid "Print Pre_view"
msgstr "Pratilik Cetak"

#: gtk/gtkstock.c:412
msgctxt "Stock label"
msgid "_Properties"
msgstr "_Properti"

#: gtk/gtkstock.c:413
msgctxt "Stock label"
msgid "_Quit"
msgstr "_Keluar"

#: gtk/gtkstock.c:414
msgctxt "Stock label"
msgid "_Redo"
msgstr "_Lakukan Lagi"

#: gtk/gtkstock.c:415
msgctxt "Stock label"
msgid "_Refresh"
msgstr "Sega_rkan"

#: gtk/gtkstock.c:416
msgctxt "Stock label"
msgid "_Remove"
msgstr "_Hapus"

#: gtk/gtkstock.c:417
msgctxt "Stock label"
msgid "_Revert"
msgstr "_Kembali ke asal"

#: gtk/gtkstock.c:418
msgctxt "Stock label"
msgid "_Save"
msgstr "_Simpan"

#: gtk/gtkstock.c:419
msgctxt "Stock label"
msgid "Save _As"
msgstr "Simp_an Sebagai"

#: gtk/gtkstock.c:420
msgctxt "Stock label"
msgid "Select _All"
msgstr "Pilih Semu_a"

#: gtk/gtkstock.c:421
msgctxt "Stock label"
msgid "_Color"
msgstr "_Warna"

#: gtk/gtkstock.c:422
msgctxt "Stock label"
msgid "_Font"
msgstr "_Fonta"

#. Sorting direction
#: gtk/gtkstock.c:424
msgctxt "Stock label"
msgid "_Ascending"
msgstr "Men_aik"

#. Sorting direction
#: gtk/gtkstock.c:426
msgctxt "Stock label"
msgid "_Descending"
msgstr "Menuru_n"

#: gtk/gtkstock.c:427
msgctxt "Stock label"
msgid "_Spell Check"
msgstr "Perik_sa Ejaan"

#: gtk/gtkstock.c:428
msgctxt "Stock label"
msgid "_Stop"
msgstr "_Berhenti"

#. Font variant
#: gtk/gtkstock.c:430
msgctxt "Stock label"
msgid "_Strikethrough"
msgstr "_Coret"

#: gtk/gtkstock.c:431
msgctxt "Stock label"
msgid "_Undelete"
msgstr "Batal Hap_us"

#. Font variant
#: gtk/gtkstock.c:433
msgctxt "Stock label"
msgid "_Underline"
msgstr "_Garis bawah"

#: gtk/gtkstock.c:434
msgctxt "Stock label"
msgid "_Undo"
msgstr "_Batalkan"

#: gtk/gtkstock.c:435
msgctxt "Stock label"
msgid "_Yes"
msgstr "Ya"

#. Zoom
#: gtk/gtkstock.c:437
msgctxt "Stock label"
msgid "_Normal Size"
msgstr "Ukura_n Normal"

#. Zoom
#: gtk/gtkstock.c:439
msgctxt "Stock label"
msgid "Best _Fit"
msgstr "Ukuran Pa_s"

#: gtk/gtkstock.c:440
msgctxt "Stock label"
msgid "Zoom _In"
msgstr "_Perbesar"

#: gtk/gtkstock.c:441
msgctxt "Stock label"
msgid "Zoom _Out"
msgstr "P_erkecil"

#: gtk/gtktextbufferrichtext.c:651
#, c-format
msgid "Unknown error when trying to deserialize %s"
msgstr "Kesalahan tidak dikenal ketika mencoba deserialisasi %s"

#: gtk/gtktextbufferrichtext.c:710
#, c-format
msgid "No deserialize function found for format %s"
msgstr "Tidak menemukan fungsi deserialiasi untuk bentuk %s"

#: gtk/gtktextbufferserialize.c:796 gtk/gtktextbufferserialize.c:822
#, c-format
msgid "Both \"id\" and \"name\" were found on the <%s> element"
msgstr "Bagian \"id\" dan \"nama\" ditemukan pada bagian <%s>"

#: gtk/gtktextbufferserialize.c:806 gtk/gtktextbufferserialize.c:832
#, c-format
msgid "The attribute \"%s\" was found twice on the <%s> element"
msgstr "Atribu \"%s\" ditemukan dua kali di bagian <%s>"

#: gtk/gtktextbufferserialize.c:846
#, c-format
msgid "<%s> element has invalid id \"%s\""
msgstr "bagian <%s> memiliki id \"%s\" yang salah"

#: gtk/gtktextbufferserialize.c:856
#, c-format
msgid "<%s> element has neither a \"name\" nor an \"id\" attribute"
msgstr "bagian <%s> telah memiliki atribut \"nama\" ataupun \"id\""

#: gtk/gtktextbufferserialize.c:943
#, c-format
msgid "Attribute \"%s\" repeated twice on the same <%s> element"
msgstr "Atribut \"%s\" mengulang dua kali pada bagian <%s> yang sama"

#: gtk/gtktextbufferserialize.c:961 gtk/gtktextbufferserialize.c:986
#, c-format
msgid "Attribute \"%s\" is invalid on <%s> element in this context"
msgstr "Atribut \"%s\" salah pada bagian <%s> dalam konteks ini"

#: gtk/gtktextbufferserialize.c:1022
#, c-format
msgid "Tag \"%s\" has not been defined."
msgstr "Tag \"%s\" tidak dijelaskan."

#: gtk/gtktextbufferserialize.c:1034
msgid "Anonymous tag found and tags can not be created."
msgstr "Tag tak dikenal ditemukan dan tags tidak bisa dibuat."

#: gtk/gtktextbufferserialize.c:1045
#, c-format
msgid "Tag \"%s\" does not exist in buffer and tags can not be created."
msgstr "Tag \"%s\" tidak ada dalam buffer dan tags tidak bisa dibuat."

#: gtk/gtktextbufferserialize.c:1144 gtk/gtktextbufferserialize.c:1219
#: gtk/gtktextbufferserialize.c:1320 gtk/gtktextbufferserialize.c:1394
#, c-format
msgid "Element <%s> is not allowed below <%s>"
msgstr "Bagian <%s> tidak diperbolehkan di bawah <%s>"

#: gtk/gtktextbufferserialize.c:1175
#, c-format
msgid "\"%s\" is not a valid attribute type"
msgstr "\"%s\" bukan jenis atribut yang benar"

#: gtk/gtktextbufferserialize.c:1183
#, c-format
msgid "\"%s\" is not a valid attribute name"
msgstr "\"%s\" bukan nama atribut yang benar"

#: gtk/gtktextbufferserialize.c:1193
#, c-format
msgid ""
"\"%s\" could not be converted to a value of type \"%s\" for attribute \"%s\""
msgstr "\"%s\" tidak bisa dirubah ke nilai jenis \"%s\" untuk atribut \"%s\""

#: gtk/gtktextbufferserialize.c:1202
#, c-format
msgid "\"%s\" is not a valid value for attribute \"%s\""
msgstr "\"%s\" tidak benar untuk atribut \"%s\""

#: gtk/gtktextbufferserialize.c:1285
#, c-format
msgid "Tag \"%s\" already defined"
msgstr "Tag \"%s\" sudah ditentukan"

#: gtk/gtktextbufferserialize.c:1296
#, c-format
msgid "Tag \"%s\" has invalid priority \"%s\""
msgstr "Tag \"%s\" memiliki prioritas yang salah \"%s\""

#: gtk/gtktextbufferserialize.c:1349
#, c-format
msgid "Outermost element in text must be <text_view_markup> not <%s>"
msgstr "Bagian terluar dari teks harus <text_view_markup> bukan <%s>"

#: gtk/gtktextbufferserialize.c:1358 gtk/gtktextbufferserialize.c:1374
#, c-format
msgid "A <%s> element has already been specified"
msgstr "Suatu bagian <%s> sudah ditentukan"

#: gtk/gtktextbufferserialize.c:1380
msgid "A <text> element can't occur before a <tags> element"
msgstr "Suatu bagian <tek"

#: gtk/gtktextbufferserialize.c:1779
msgid "Serialized data is malformed"
msgstr "Data yang diserialkan rusak"

#: gtk/gtktextbufferserialize.c:1857
msgid ""
"Serialized data is malformed. First section isn't GTKTEXTBUFFERCONTENTS-0001"
msgstr ""
"Data yang diserialkan rusak. Bagian pertama bukan GTKTEXTBUFFERCONTENTS-0001"

#: gtk/gtktextutil.c:61
msgid "LRM _Left-to-right mark"
msgstr "LRM tanda _Left-to-right"

#: gtk/gtktextutil.c:62
msgid "RLM _Right-to-left mark"
msgstr "RLM tanda _Right-to-left"

#: gtk/gtktextutil.c:63
msgid "LRE Left-to-right _embedding"
msgstr "LRE Left-to-right _embedding"

#: gtk/gtktextutil.c:64
msgid "RLE Right-to-left e_mbedding"
msgstr "RLE Right-to-left e_mbedding"

#: gtk/gtktextutil.c:65
msgid "LRO Left-to-right _override"
msgstr "LRO Left-to-right _override"

#: gtk/gtktextutil.c:66
msgid "RLO Right-to-left o_verride"
msgstr "RLO Right-to-left o_verride"

#: gtk/gtktextutil.c:67
msgid "PDF _Pop directional formatting"
msgstr "PDF _Pop directional formatting"

#: gtk/gtktextutil.c:68
msgid "ZWS _Zero width space"
msgstr "ZWS _Zero width space"

#: gtk/gtktextutil.c:69
msgid "ZWJ Zero width _joiner"
msgstr "ZWJ Zero width _joiner"

#: gtk/gtktextutil.c:70
msgid "ZWNJ Zero width _non-joiner"
msgstr "ZWNJ Zero width _non-joiner"

#: gtk/gtkthemes.c:71
#, c-format
msgid "Unable to locate theme engine in module_path: \"%s\","
msgstr "Tidak bisa menemukan mesin tematik pada module_path '%s',"

#: gtk/gtktipsquery.c:188
msgid "--- No Tip ---"
msgstr "--- Tidak ada tip ---"

#: gtk/gtkuimanager.c:1505
#, c-format
msgid "Unexpected start tag '%s' on line %d char %d"
msgstr "Tag awal '%s' pada baris %d kolom %d seharusnya tidak ada"

#: gtk/gtkuimanager.c:1595
#, c-format
msgid "Unexpected character data on line %d char %d"
msgstr "Data karakter pada baris %d kolom %d seharusnya tidak ada"

#: gtk/gtkuimanager.c:2427
msgid "Empty"
msgstr "Kosong"

#: gtk/gtkvolumebutton.c:83
msgid "Volume"
msgstr "Volume"

#: gtk/gtkvolumebutton.c:85
msgid "Turns volume down or up"
msgstr "Naikkan atau turunkan keras suara"

#: gtk/gtkvolumebutton.c:88
msgid "Adjusts the volume"
msgstr "Atur keras suara"

#: gtk/gtkvolumebutton.c:91 gtk/gtkvolumebutton.c:94
msgid "Volume Down"
msgstr "Volume Turun"

#: gtk/gtkvolumebutton.c:93
msgid "Decreases the volume"
msgstr "Pelankan suara"

#: gtk/gtkvolumebutton.c:97 gtk/gtkvolumebutton.c:100
msgid "Volume Up"
msgstr "Volume Naik"

#: gtk/gtkvolumebutton.c:99
msgid "Increases the volume"
msgstr "Perkeras suara"

#: gtk/gtkvolumebutton.c:157
msgid "Muted"
msgstr "Diam"

#: gtk/gtkvolumebutton.c:161
msgid "Full Volume"
msgstr "Volume penuh"

#. Translators: this is the percentage of the current volume,
#. * as used in the tooltip, eg. "49 %".
#. * Translate the "%d" to "%Id" if you want to use localised digits,
#. * or otherwise translate the "%d" to "%d".
#.
#: gtk/gtkvolumebutton.c:174
#, c-format
msgctxt "volume percentage"
msgid "%d %%"
msgstr "%d %%"

#: gtk/paper_names_offsets.c:4
msgctxt "paper size"
msgid "asme_f"
msgstr "asme_f"

#: gtk/paper_names_offsets.c:5
msgctxt "paper size"
msgid "A0x2"
msgstr "A0x2"

#: gtk/paper_names_offsets.c:6
msgctxt "paper size"
msgid "A0"
msgstr "A0"

#: gtk/paper_names_offsets.c:7
msgctxt "paper size"
msgid "A0x3"
msgstr "A0x3"

#: gtk/paper_names_offsets.c:8
msgctxt "paper size"
msgid "A1"
msgstr "A1"

#: gtk/paper_names_offsets.c:9
msgctxt "paper size"
msgid "A10"
msgstr "A10"

#: gtk/paper_names_offsets.c:10
msgctxt "paper size"
msgid "A1x3"
msgstr "A1x3"

#: gtk/paper_names_offsets.c:11
msgctxt "paper size"
msgid "A1x4"
msgstr "A1x4"

#: gtk/paper_names_offsets.c:12
msgctxt "paper size"
msgid "A2"
msgstr "A2"

#: gtk/paper_names_offsets.c:13
msgctxt "paper size"
msgid "A2x3"
msgstr "A2x3"

#: gtk/paper_names_offsets.c:14
msgctxt "paper size"
msgid "A2x4"
msgstr "A2x4"

#: gtk/paper_names_offsets.c:15
msgctxt "paper size"
msgid "A2x5"
msgstr "A2x5"

#: gtk/paper_names_offsets.c:16
msgctxt "paper size"
msgid "A3"
msgstr "A3"

#: gtk/paper_names_offsets.c:17
msgctxt "paper size"
msgid "A3 Extra"
msgstr "A3 Ekstra"

#: gtk/paper_names_offsets.c:18
msgctxt "paper size"
msgid "A3x3"
msgstr "A3x3"

#: gtk/paper_names_offsets.c:19
msgctxt "paper size"
msgid "A3x4"
msgstr "A3x4"

#: gtk/paper_names_offsets.c:20
msgctxt "paper size"
msgid "A3x5"
msgstr "A3x5"

#: gtk/paper_names_offsets.c:21
msgctxt "paper size"
msgid "A3x6"
msgstr "A3x6"

#: gtk/paper_names_offsets.c:22
msgctxt "paper size"
msgid "A3x7"
msgstr "A3x7"

#: gtk/paper_names_offsets.c:23
msgctxt "paper size"
msgid "A4"
msgstr "A4"

#: gtk/paper_names_offsets.c:24
msgctxt "paper size"
msgid "A4 Extra"
msgstr "A4 Ekstra"

#: gtk/paper_names_offsets.c:25
msgctxt "paper size"
msgid "A4 Tab"
msgstr "A4 Tab"

#: gtk/paper_names_offsets.c:26
msgctxt "paper size"
msgid "A4x3"
msgstr "A4x3"

#: gtk/paper_names_offsets.c:27
msgctxt "paper size"
msgid "A4x4"
msgstr "A4x4"

#: gtk/paper_names_offsets.c:28
msgctxt "paper size"
msgid "A4x5"
msgstr "A4x5"

#: gtk/paper_names_offsets.c:29
msgctxt "paper size"
msgid "A4x6"
msgstr "A4x6"

#: gtk/paper_names_offsets.c:30
msgctxt "paper size"
msgid "A4x7"
msgstr "A4x7"

#: gtk/paper_names_offsets.c:31
msgctxt "paper size"
msgid "A4x8"
msgstr "A4x8"

#: gtk/paper_names_offsets.c:32
msgctxt "paper size"
msgid "A4x9"
msgstr "A4x9"

#: gtk/paper_names_offsets.c:33
msgctxt "paper size"
msgid "A5"
msgstr "A5"

#: gtk/paper_names_offsets.c:34
msgctxt "paper size"
msgid "A5 Extra"
msgstr "A5 Ekstra"

#: gtk/paper_names_offsets.c:35
msgctxt "paper size"
msgid "A6"
msgstr "A6"

#: gtk/paper_names_offsets.c:36
msgctxt "paper size"
msgid "A7"
msgstr "A7"

#: gtk/paper_names_offsets.c:37
msgctxt "paper size"
msgid "A8"
msgstr "A8"

#: gtk/paper_names_offsets.c:38
msgctxt "paper size"
msgid "A9"
msgstr "A9"

#: gtk/paper_names_offsets.c:39
msgctxt "paper size"
msgid "B0"
msgstr "B0"

#: gtk/paper_names_offsets.c:40
msgctxt "paper size"
msgid "B1"
msgstr "B1"

#: gtk/paper_names_offsets.c:41
msgctxt "paper size"
msgid "B10"
msgstr "B10"

#: gtk/paper_names_offsets.c:42
msgctxt "paper size"
msgid "B2"
msgstr "B2"

#: gtk/paper_names_offsets.c:43
msgctxt "paper size"
msgid "B3"
msgstr "B3"

#: gtk/paper_names_offsets.c:44
msgctxt "paper size"
msgid "B4"
msgstr "B4"

#: gtk/paper_names_offsets.c:45
msgctxt "paper size"
msgid "B5"
msgstr "B5"

#: gtk/paper_names_offsets.c:46
msgctxt "paper size"
msgid "B5 Extra"
msgstr "B5 Ekstra"

#: gtk/paper_names_offsets.c:47
msgctxt "paper size"
msgid "B6"
msgstr "B6"

#: gtk/paper_names_offsets.c:48
msgctxt "paper size"
msgid "B6/C4"
msgstr "B6/C4"

#: gtk/paper_names_offsets.c:49
msgctxt "paper size"
msgid "B7"
msgstr "B7"

#: gtk/paper_names_offsets.c:50
msgctxt "paper size"
msgid "B8"
msgstr "B8"

#: gtk/paper_names_offsets.c:51
msgctxt "paper size"
msgid "B9"
msgstr "B9"

#: gtk/paper_names_offsets.c:52
msgctxt "paper size"
msgid "C0"
msgstr "C0"

#: gtk/paper_names_offsets.c:53
msgctxt "paper size"
msgid "C1"
msgstr "C1"

#: gtk/paper_names_offsets.c:54
msgctxt "paper size"
msgid "C10"
msgstr "C10"

#: gtk/paper_names_offsets.c:55
msgctxt "paper size"
msgid "C2"
msgstr "C2"

#: gtk/paper_names_offsets.c:56
msgctxt "paper size"
msgid "C3"
msgstr "C3"

#: gtk/paper_names_offsets.c:57
msgctxt "paper size"
msgid "C4"
msgstr "C4"

#: gtk/paper_names_offsets.c:58
msgctxt "paper size"
msgid "C5"
msgstr "C5"

#: gtk/paper_names_offsets.c:59
msgctxt "paper size"
msgid "C6"
msgstr "C6"

#: gtk/paper_names_offsets.c:60
msgctxt "paper size"
msgid "C6/C5"
msgstr "C6/C5"

#: gtk/paper_names_offsets.c:61
msgctxt "paper size"
msgid "C7"
msgstr "C7"

#: gtk/paper_names_offsets.c:62
msgctxt "paper size"
msgid "C7/C6"
msgstr "C7/C6"

#: gtk/paper_names_offsets.c:63
msgctxt "paper size"
msgid "C8"
msgstr "C8"

#: gtk/paper_names_offsets.c:64
msgctxt "paper size"
msgid "C9"
msgstr "C9"

#: gtk/paper_names_offsets.c:65
msgctxt "paper size"
msgid "DL Envelope"
msgstr "Amplop DL"

#: gtk/paper_names_offsets.c:66
msgctxt "paper size"
msgid "RA0"
msgstr "RA0"

#: gtk/paper_names_offsets.c:67
msgctxt "paper size"
msgid "RA1"
msgstr "RA1"

#: gtk/paper_names_offsets.c:68
msgctxt "paper size"
msgid "RA2"
msgstr "RA2"

#: gtk/paper_names_offsets.c:69
msgctxt "paper size"
msgid "SRA0"
msgstr "SRA0"

#: gtk/paper_names_offsets.c:70
msgctxt "paper size"
msgid "SRA1"
msgstr "SRA1"

#: gtk/paper_names_offsets.c:71
msgctxt "paper size"
msgid "SRA2"
msgstr "SRA2"

#: gtk/paper_names_offsets.c:72
msgctxt "paper size"
msgid "JB0"
msgstr "JB0"

#: gtk/paper_names_offsets.c:73
msgctxt "paper size"
msgid "JB1"
msgstr "JB1"

#: gtk/paper_names_offsets.c:74
msgctxt "paper size"
msgid "JB10"
msgstr "JB10"

#: gtk/paper_names_offsets.c:75
msgctxt "paper size"
msgid "JB2"
msgstr "JB2"

#: gtk/paper_names_offsets.c:76
msgctxt "paper size"
msgid "JB3"
msgstr "JB3"

#: gtk/paper_names_offsets.c:77
msgctxt "paper size"
msgid "JB4"
msgstr "JB4"

#: gtk/paper_names_offsets.c:78
msgctxt "paper size"
msgid "JB5"
msgstr "JB5"

#: gtk/paper_names_offsets.c:79
msgctxt "paper size"
msgid "JB6"
msgstr "JB6"

#: gtk/paper_names_offsets.c:80
msgctxt "paper size"
msgid "JB7"
msgstr "JB7"

#: gtk/paper_names_offsets.c:81
msgctxt "paper size"
msgid "JB8"
msgstr "JB8"

#: gtk/paper_names_offsets.c:82
msgctxt "paper size"
msgid "JB9"
msgstr "JB9"

#: gtk/paper_names_offsets.c:83
msgctxt "paper size"
msgid "jis exec"
msgstr "jis exec"

#: gtk/paper_names_offsets.c:84
msgctxt "paper size"
msgid "Choukei 2 Envelope"
msgstr "Amplop Choukei 2"

#: gtk/paper_names_offsets.c:85
msgctxt "paper size"
msgid "Choukei 3 Envelope"
msgstr "Amplop Choukei 3"

#: gtk/paper_names_offsets.c:86
msgctxt "paper size"
msgid "Choukei 4 Envelope"
msgstr "Amplop Choukei 4"

#: gtk/paper_names_offsets.c:87
msgctxt "paper size"
msgid "hagaki (postcard)"
msgstr "hagaki (kartu pos)"

#: gtk/paper_names_offsets.c:88
msgctxt "paper size"
msgid "kahu Envelope"
msgstr "Amplop kahu"

#: gtk/paper_names_offsets.c:89
msgctxt "paper size"
msgid "kaku2 Envelope"
msgstr "Amplop kaku2"

#: gtk/paper_names_offsets.c:90
msgctxt "paper size"
msgid "oufuku (reply postcard)"
msgstr "oufuku (balas kartu pos)"

#: gtk/paper_names_offsets.c:91
msgctxt "paper size"
msgid "you4 Envelope"
msgstr "Amplop you4"

#: gtk/paper_names_offsets.c:92
msgctxt "paper size"
msgid "10x11"
msgstr "10x11"

#: gtk/paper_names_offsets.c:93
msgctxt "paper size"
msgid "10x13"
msgstr "10x13"

#: gtk/paper_names_offsets.c:94
msgctxt "paper size"
msgid "10x14"
msgstr "10x14"

#: gtk/paper_names_offsets.c:95 gtk/paper_names_offsets.c:96
msgctxt "paper size"
msgid "10x15"
msgstr "10x15"

#: gtk/paper_names_offsets.c:97
msgctxt "paper size"
msgid "11x12"
msgstr "11x12"

#: gtk/paper_names_offsets.c:98
msgctxt "paper size"
msgid "11x15"
msgstr "11x15"

#: gtk/paper_names_offsets.c:99
msgctxt "paper size"
msgid "12x19"
msgstr "12x19"

#: gtk/paper_names_offsets.c:100
msgctxt "paper size"
msgid "5x7"
msgstr "5x7"

#: gtk/paper_names_offsets.c:101
msgctxt "paper size"
msgid "6x9 Envelope"
msgstr "Amplop 6x9"

#: gtk/paper_names_offsets.c:102
msgctxt "paper size"
msgid "7x9 Envelope"
msgstr "Amplop 7x9"

#: gtk/paper_names_offsets.c:103
msgctxt "paper size"
msgid "9x11 Envelope"
msgstr "Amplop 9x11"

#: gtk/paper_names_offsets.c:104
msgctxt "paper size"
msgid "a2 Envelope"
msgstr "Amplop a2"

#: gtk/paper_names_offsets.c:105
msgctxt "paper size"
msgid "Arch A"
msgstr "Arch A"

#: gtk/paper_names_offsets.c:106
msgctxt "paper size"
msgid "Arch B"
msgstr "Arch B"

#: gtk/paper_names_offsets.c:107
msgctxt "paper size"
msgid "Arch C"
msgstr "Arch C"

#: gtk/paper_names_offsets.c:108
msgctxt "paper size"
msgid "Arch D"
msgstr "Arch D"

#: gtk/paper_names_offsets.c:109
msgctxt "paper size"
msgid "Arch E"
msgstr "Arch E"

#: gtk/paper_names_offsets.c:110
msgctxt "paper size"
msgid "b-plus"
msgstr "b-plus"

#: gtk/paper_names_offsets.c:111
msgctxt "paper size"
msgid "c"
msgstr "c"

#: gtk/paper_names_offsets.c:112
msgctxt "paper size"
msgid "c5 Envelope"
msgstr "Amplop c5"

#: gtk/paper_names_offsets.c:113
msgctxt "paper size"
msgid "d"
msgstr "d"

#: gtk/paper_names_offsets.c:114
msgctxt "paper size"
msgid "e"
msgstr "e"

#: gtk/paper_names_offsets.c:115
msgctxt "paper size"
msgid "edp"
msgstr "edp"

#: gtk/paper_names_offsets.c:116
msgctxt "paper size"
msgid "European edp"
msgstr "edp Eropa"

#: gtk/paper_names_offsets.c:117
msgctxt "paper size"
msgid "Executive"
msgstr "Executive"

#: gtk/paper_names_offsets.c:118
msgctxt "paper size"
msgid "f"
msgstr "f"

#: gtk/paper_names_offsets.c:119
msgctxt "paper size"
msgid "FanFold European"
msgstr "FanFold Eropa"

#: gtk/paper_names_offsets.c:120
msgctxt "paper size"
msgid "FanFold US"
msgstr "FanFold US"

#: gtk/paper_names_offsets.c:121
msgctxt "paper size"
msgid "FanFold German Legal"
msgstr "FanFlod Jerman Legal"

#: gtk/paper_names_offsets.c:122
msgctxt "paper size"
msgid "Government Legal"
msgstr "Pemerintah Legal"

#: gtk/paper_names_offsets.c:123
msgctxt "paper size"
msgid "Government Letter"
msgstr "Surat Pemerintah"

#: gtk/paper_names_offsets.c:124
msgctxt "paper size"
msgid "Index 3x5"
msgstr "Indeks 3x5"

#: gtk/paper_names_offsets.c:125
msgctxt "paper size"
msgid "Index 4x6 (postcard)"
msgstr "Indeks 4x6 (kartu pos)"

#: gtk/paper_names_offsets.c:126
msgctxt "paper size"
msgid "Index 4x6 ext"
msgstr "Indeks 4x6 ext"

#: gtk/paper_names_offsets.c:127
msgctxt "paper size"
msgid "Index 5x8"
msgstr "Indeks 5x8"

#: gtk/paper_names_offsets.c:128
msgctxt "paper size"
msgid "Invoice"
msgstr "Tagihan"

#: gtk/paper_names_offsets.c:129
msgctxt "paper size"
msgid "Tabloid"
msgstr "Tabloid"

#: gtk/paper_names_offsets.c:130
msgctxt "paper size"
msgid "US Legal"
msgstr "US Legal"

#: gtk/paper_names_offsets.c:131
msgctxt "paper size"
msgid "US Legal Extra"
msgstr "US Legal Ekstra"

#: gtk/paper_names_offsets.c:132
msgctxt "paper size"
msgid "US Letter"
msgstr "Surat US"

#: gtk/paper_names_offsets.c:133
msgctxt "paper size"
msgid "US Letter Extra"
msgstr "Surat US Ekstra"

#: gtk/paper_names_offsets.c:134
msgctxt "paper size"
msgid "US Letter Plus"
msgstr "Surat US Plus"

#: gtk/paper_names_offsets.c:135
msgctxt "paper size"
msgid "Monarch Envelope"
msgstr "Amplop Monarki"

#: gtk/paper_names_offsets.c:136
msgctxt "paper size"
msgid "#10 Envelope"
msgstr "Amplop #10"

#: gtk/paper_names_offsets.c:137
msgctxt "paper size"
msgid "#11 Envelope"
msgstr "Amplop #11"

#: gtk/paper_names_offsets.c:138
msgctxt "paper size"
msgid "#12 Envelope"
msgstr "Amplop #12"

#: gtk/paper_names_offsets.c:139
msgctxt "paper size"
msgid "#14 Envelope"
msgstr "Amplop #14"

#: gtk/paper_names_offsets.c:140
msgctxt "paper size"
msgid "#9 Envelope"
msgstr "Amplop #9"

#: gtk/paper_names_offsets.c:141
msgctxt "paper size"
msgid "Personal Envelope"
msgstr "Amplop Pribadi"

#: gtk/paper_names_offsets.c:142
msgctxt "paper size"
msgid "Quarto"
msgstr "Kuarto"

#: gtk/paper_names_offsets.c:143
msgctxt "paper size"
msgid "Super A"
msgstr "Super A"

#: gtk/paper_names_offsets.c:144
msgctxt "paper size"
msgid "Super B"
msgstr "Super B"

#: gtk/paper_names_offsets.c:145
msgctxt "paper size"
msgid "Wide Format"
msgstr "Bentuk Lebar"

#: gtk/paper_names_offsets.c:146
msgctxt "paper size"
msgid "Dai-pa-kai"
msgstr "Dai-pa-kai"

#: gtk/paper_names_offsets.c:147
msgctxt "paper size"
msgid "Folio"
msgstr "Folio"

#: gtk/paper_names_offsets.c:148
msgctxt "paper size"
msgid "Folio sp"
msgstr "Folio sp"

#: gtk/paper_names_offsets.c:149
msgctxt "paper size"
msgid "Invite Envelope"
msgstr "Amplop Undangan"

#: gtk/paper_names_offsets.c:150
msgctxt "paper size"
msgid "Italian Envelope"
msgstr "Amplop Italia"

#: gtk/paper_names_offsets.c:151
msgctxt "paper size"
msgid "juuro-ku-kai"
msgstr "juuro-ku-kai"

#: gtk/paper_names_offsets.c:152
msgctxt "paper size"
msgid "pa-kai"
msgstr "pa-kai"

#: gtk/paper_names_offsets.c:153
msgctxt "paper size"
msgid "Postfix Envelope"
msgstr "Amplop Postfix"

#: gtk/paper_names_offsets.c:154
msgctxt "paper size"
msgid "Small Photo"
msgstr "Foto Kecil"

#: gtk/paper_names_offsets.c:155
msgctxt "paper size"
msgid "prc1 Envelope"
msgstr "Amplop prc1"

#: gtk/paper_names_offsets.c:156
msgctxt "paper size"
msgid "prc10 Envelope"
msgstr "Amplop prc10"

#: gtk/paper_names_offsets.c:157
msgctxt "paper size"
msgid "prc 16k"
msgstr "prc 16k"

#: gtk/paper_names_offsets.c:158
msgctxt "paper size"
msgid "prc2 Envelope"
msgstr "Amplop prc2"

#: gtk/paper_names_offsets.c:159
msgctxt "paper size"
msgid "prc3 Envelope"
msgstr "Amplop prc3"

#: gtk/paper_names_offsets.c:160
msgctxt "paper size"
msgid "prc 32k"
msgstr "prc 32k"

#: gtk/paper_names_offsets.c:161
msgctxt "paper size"
msgid "prc4 Envelope"
msgstr "Amplop prc4"

#: gtk/paper_names_offsets.c:162
msgctxt "paper size"
msgid "prc5 Envelope"
msgstr "Amplop prc5"

#: gtk/paper_names_offsets.c:163
msgctxt "paper size"
msgid "prc6 Envelope"
msgstr "Amplop prc6"

#: gtk/paper_names_offsets.c:164
msgctxt "paper size"
msgid "prc7 Envelope"
msgstr "Amplop prc7"

#: gtk/paper_names_offsets.c:165
msgctxt "paper size"
msgid "prc8 Envelope"
msgstr "Amplop prc8"

#: gtk/paper_names_offsets.c:166
msgctxt "paper size"
msgid "prc9 Envelope"
msgstr "Amplop prc9"

#: gtk/paper_names_offsets.c:167
msgctxt "paper size"
msgid "ROC 16k"
msgstr "ROC 16k"

#: gtk/paper_names_offsets.c:168
msgctxt "paper size"
msgid "ROC 8k"
msgstr "ROC 8k"

#: gtk/updateiconcache.c:492 gtk/updateiconcache.c:552
#, c-format
msgid "different idatas found for symlinked '%s' and '%s'\n"
msgstr "idata yang berbeda ditemukan untuk symlink '%s' dan '%s'\n"

#: gtk/updateiconcache.c:1374
#, c-format
msgid "Failed to write header\n"
msgstr "Gagal menulis judul\n"

#: gtk/updateiconcache.c:1380
#, c-format
msgid "Failed to write hash table\n"
msgstr "Gagal menulis tabel hash\n"

#: gtk/updateiconcache.c:1386
#, c-format
msgid "Failed to write folder index\n"
msgstr "Gagal menulis indeks direktori\n"

#: gtk/updateiconcache.c:1394
#, c-format
msgid "Failed to rewrite header\n"
msgstr "Gagal menulis ulang judul\n"

#: gtk/updateiconcache.c:1463
#, c-format
msgid "Failed to open file %s : %s\n"
msgstr "Gagal membuka berkas %s : %s\n"

#: gtk/updateiconcache.c:1471
#, c-format
msgid "Failed to write cache file: %s\n"
msgstr "Gagal menulis berkas cache: %s\n"

#: gtk/updateiconcache.c:1507
#, c-format
msgid "The generated cache was invalid.\n"
msgstr "Cache yang diolah tidak sah.\n"

#: gtk/updateiconcache.c:1521
#, c-format
msgid "Could not rename %s to %s: %s, removing %s then.\n"
msgstr "Tidak bisa mengganti nama %s jadi %s: %s, membuang %s kemudian.\n"

#: gtk/updateiconcache.c:1535
#, c-format
msgid "Could not rename %s to %s: %s\n"
msgstr "Tidak bisa mengganti nama dari %s ke %s: %s\n"

#: gtk/updateiconcache.c:1545
#, c-format
msgid "Could not rename %s back to %s: %s.\n"
msgstr "Tidak bisa mengganti nama %s kembali ke %s: %s.\n"

#: gtk/updateiconcache.c:1572
#, c-format
msgid "Cache file created successfully.\n"
msgstr "Berkas cache dibuat dengan sukses.\n"

#: gtk/updateiconcache.c:1611
msgid "Overwrite an existing cache, even if up to date"
msgstr "Menimpa cache yang ada, bahkan jika terbaru"

#: gtk/updateiconcache.c:1612
msgid "Don't check for the existence of index.theme"
msgstr "Jangan periksa keberadaan tema indeks"

#: gtk/updateiconcache.c:1613
msgid "Don't include image data in the cache"
msgstr "Jangan data gambar dalam cache"

#: gtk/updateiconcache.c:1614
msgid "Output a C header file"
msgstr "Keluarkan judul berkas C"

#: gtk/updateiconcache.c:1615
msgid "Turn off verbose output"
msgstr "Matikan keluaran panjang"

#: gtk/updateiconcache.c:1616
msgid "Validate existing icon cache"
msgstr "Validasi cache ikon yang telah ada"

#: gtk/updateiconcache.c:1683
#, c-format
msgid "File not found: %s\n"
msgstr "Berkas tidak ditemukan: %s\n"

#: gtk/updateiconcache.c:1689
#, c-format
msgid "Not a valid icon cache: %s\n"
msgstr "Bukan ikon cache yang sah: %s\n"

#: gtk/updateiconcache.c:1702
#, c-format
msgid "No theme index file.\n"
msgstr "Tak ada berkas indeks tema.\n"

#: gtk/updateiconcache.c:1706
#, c-format
msgid ""
"No theme index file in '%s'.\n"
"If you really want to create an icon cache here, use --ignore-theme-index.\n"
msgstr ""
"Tanpa berkas index dalam '%s'.\n"
"JIka anda benar benar ingin membuat cache ikon di sini, gunakan --ignore-"
"theme-index.\n"

#. ID
#: modules/input/imam-et.c:454
msgid "Amharic (EZ+)"
msgstr "Amharik (EZ+)"

#. ID
#: modules/input/imcedilla.c:92
msgid "Cedilla"
msgstr "Cedilla"

#. ID
#: modules/input/imcyrillic-translit.c:217
msgid "Cyrillic (Transliterated)"
msgstr "Cyrillic (Transliterasi)"

#. ID
#: modules/input/iminuktitut.c:127
msgid "Inuktitut (Transliterated)"
msgstr "Inuktitut (Transliterasi)"

#. ID
#: modules/input/imipa.c:145
msgid "IPA"
msgstr "IPA"

#. ID
#: modules/input/immultipress.c:31
msgid "Multipress"
msgstr ""

#. ID
#: modules/input/imthai.c:35
msgid "Thai-Lao"
msgstr "Thai-Lao"

#. ID
#: modules/input/imti-er.c:453
msgid "Tigrigna-Eritrean (EZ+)"
msgstr "Tigrigna-Eritrea (EZ+)"

#. ID
#: modules/input/imti-et.c:453
msgid "Tigrigna-Ethiopian (EZ+)"
msgstr "Tigrigna-Ethiopia (EZ+)"

#. ID
#: modules/input/imviqr.c:244
msgid "Vietnamese (VIQR)"
msgstr "Vietnam (VIQR)"

#. ID
#: modules/input/imxim.c:28
msgid "X Input Method"
msgstr "X Input Method"

#: modules/printbackends/cups/gtkprintbackendcups.c:811
#: modules/printbackends/cups/gtkprintbackendcups.c:1020
msgid "Username:"
msgstr "Nama Pengguna:"

#: modules/printbackends/cups/gtkprintbackendcups.c:812
#: modules/printbackends/cups/gtkprintbackendcups.c:1029
msgid "Password:"
msgstr "Kata Sandi:"

#: modules/printbackends/cups/gtkprintbackendcups.c:850
#, c-format
msgid "Authentication is required to get a file from %s"
msgstr "Perlu otentikasi untuk memperoleh suatu berkas dari %s"

#: modules/printbackends/cups/gtkprintbackendcups.c:854
#: modules/printbackends/cups/gtkprintbackendcups.c:1042
#, c-format
msgid "Authentication is required to print document '%s' on printer %s"
msgstr "Perlu otentikasi untuk mencetak dokumen '%s' pada pencetak %s"

#: modules/printbackends/cups/gtkprintbackendcups.c:856
#, c-format
msgid "Authentication is required to print a document on %s"
msgstr "Perlu otentikasi untuk mencetak suatu dokumen pada %s"

#: modules/printbackends/cups/gtkprintbackendcups.c:860
#, c-format
msgid "Authentication is required to get attributes of job '%s'"
msgstr "Perlu otentikasi untuk memperoleh atribut dari tugas '%s'"

#: modules/printbackends/cups/gtkprintbackendcups.c:862
msgid "Authentication is required to get attributes of a job"
msgstr "Perlu otentikasi untuk memperoleh atribut dari suatu tugas"

#: modules/printbackends/cups/gtkprintbackendcups.c:866
#, c-format
msgid "Authentication is required to get attributes of printer %s"
msgstr "Perlu otentikasi untuk memperoleh atribut dari pencetak %s"

#: modules/printbackends/cups/gtkprintbackendcups.c:868
msgid "Authentication is required to get attributes of a printer"
msgstr "Perlu otentikasi untuk memperoleh atribut dari suatu pencetak"

#: modules/printbackends/cups/gtkprintbackendcups.c:871
#, c-format
msgid "Authentication is required to get default printer of %s"
msgstr "Perlu otentikasi untuk memperoleh pencetak bawaan dari %s"

#: modules/printbackends/cups/gtkprintbackendcups.c:874
#, c-format
msgid "Authentication is required to get printers from %s"
msgstr "Perlu otentikasi untuk memperoleh pencetak dari %s"

#: modules/printbackends/cups/gtkprintbackendcups.c:877
#, c-format
msgid "Authentication is required on %s"
msgstr "Perlu otentikasi pada %s"

#: modules/printbackends/cups/gtkprintbackendcups.c:1014
msgid "Domain:"
msgstr "Domain:"

#: modules/printbackends/cups/gtkprintbackendcups.c:1044
#, c-format
msgid "Authentication is required to print document '%s'"
msgstr "Perlu otentikasi untuk mencetak dokumen '%s'"

#: modules/printbackends/cups/gtkprintbackendcups.c:1049
#, c-format
msgid "Authentication is required to print this document on printer %s"
msgstr "Perlu otentikasi untuk mencetak dokumen ini pada pencetak %s"

#: modules/printbackends/cups/gtkprintbackendcups.c:1051
msgid "Authentication is required to print this document"
msgstr "Perlu otentikasi untuk mencetak dokumen ini"

#: modules/printbackends/cups/gtkprintbackendcups.c:1672
#, c-format
msgid "Printer '%s' is low on toner."
msgstr "Tinta pada pencetak '%s' tersisa sedikit."

#: modules/printbackends/cups/gtkprintbackendcups.c:1673
#, c-format
msgid "Printer '%s' has no toner left."
msgstr "Tinta pada pencetak '%s' habis."

#. Translators: "Developer" like on photo development context
#: modules/printbackends/cups/gtkprintbackendcups.c:1675
#, c-format
msgid "Printer '%s' is low on developer."
msgstr "Developer pada pencetak '%s' tersisa sedikit."

#. Translators: "Developer" like on photo development context
#: modules/printbackends/cups/gtkprintbackendcups.c:1677
#, c-format
msgid "Printer '%s' is out of developer."
msgstr "Developer pada pencetak '%s' habis."

#. Translators: "marker" is one color bin of the printer
#: modules/printbackends/cups/gtkprintbackendcups.c:1679
#, c-format
msgid "Printer '%s' is low on at least one marker supply."
msgstr "Paling tidak satu catu penanda pencetak '%s' tersisa sedikit."

#. Translators: "marker" is one color bin of the printer
#: modules/printbackends/cups/gtkprintbackendcups.c:1681
#, c-format
msgid "Printer '%s' is out of at least one marker supply."
msgstr "Paling tidak satu catu penanda pencetak '%s' habis."

#: modules/printbackends/cups/gtkprintbackendcups.c:1682
#, c-format
msgid "The cover is open on printer '%s'."
msgstr "Penutup pencetak '%s' terbuka."

#: modules/printbackends/cups/gtkprintbackendcups.c:1683
#, c-format
msgid "The door is open on printer '%s'."
msgstr "Pintu pencetak '%s' terbuka."

#: modules/printbackends/cups/gtkprintbackendcups.c:1684
#, c-format
msgid "Printer '%s' is low on paper."
msgstr "Kertas di pencetak '%s' tersisa sedikit."

#: modules/printbackends/cups/gtkprintbackendcups.c:1685
#, c-format
msgid "Printer '%s' is out of paper."
msgstr "Pencetak '%s' kehabisan kertas."

#: modules/printbackends/cups/gtkprintbackendcups.c:1686
#, c-format
msgid "Printer '%s' is currently off-line."
msgstr "Pencetak '%s' kini luring."

#: modules/printbackends/cups/gtkprintbackendcups.c:1687
#, c-format
msgid "Printer '%s' may not be connected."
msgstr "Pencetak '%s' mungkin tak terhubung."

#: modules/printbackends/cups/gtkprintbackendcups.c:1688
#, c-format
msgid "There is a problem on printer '%s'."
msgstr "Ada masalah pada pencetak '%s'."

#. Translators: this is a printer status.
#: modules/printbackends/cups/gtkprintbackendcups.c:1996
msgid "Paused ; Rejecting Jobs"
msgstr "Jeda ; Menolak Tugas"

#. Translators: this is a printer status.
#: modules/printbackends/cups/gtkprintbackendcups.c:2002
msgid "Rejecting Jobs"
msgstr "Menolak Tugas"

#: modules/printbackends/cups/gtkprintbackendcups.c:2778
msgid "Two Sided"
msgstr "Dua Sisi"

#: modules/printbackends/cups/gtkprintbackendcups.c:2779
msgid "Paper Type"
msgstr "Jenis Kertas"

#: modules/printbackends/cups/gtkprintbackendcups.c:2780
msgid "Paper Source"
msgstr "Sumber Kertas"

#: modules/printbackends/cups/gtkprintbackendcups.c:2781
msgid "Output Tray"
msgstr "Laci Keluaran"

#: modules/printbackends/cups/gtkprintbackendcups.c:2782
msgid "Resolution"
msgstr "Resolusi"

#: modules/printbackends/cups/gtkprintbackendcups.c:2783
msgid "GhostScript pre-filtering"
msgstr "Pra penapisan GhostScript"

#: modules/printbackends/cups/gtkprintbackendcups.c:2792
msgid "One Sided"
msgstr "Satu Sisi"

#. Translators: this is an option of "Two Sided"
#: modules/printbackends/cups/gtkprintbackendcups.c:2794
msgid "Long Edge (Standard)"
msgstr "Sisi Panjang (Standar)"

#. Translators: this is an option of "Two Sided"
#: modules/printbackends/cups/gtkprintbackendcups.c:2796
msgid "Short Edge (Flip)"
msgstr "Sisi Pendek (Putar)"

#. Translators: this is an option of "Paper Source"
#: modules/printbackends/cups/gtkprintbackendcups.c:2798
#: modules/printbackends/cups/gtkprintbackendcups.c:2800
#: modules/printbackends/cups/gtkprintbackendcups.c:2808
msgid "Auto Select"
msgstr "Pilih Otomatis"

#. Translators: this is an option of "Paper Source"
#. Translators: this is an option of "Resolution"
#: modules/printbackends/cups/gtkprintbackendcups.c:2802
#: modules/printbackends/cups/gtkprintbackendcups.c:2804
#: modules/printbackends/cups/gtkprintbackendcups.c:2806
#: modules/printbackends/cups/gtkprintbackendcups.c:2810
#: modules/printbackends/cups/gtkprintbackendcups.c:3296
msgid "Printer Default"
msgstr "Pencetak Awal"

#. Translators: this is an option of "GhostScript"
#: modules/printbackends/cups/gtkprintbackendcups.c:2812
msgid "Embed GhostScript fonts only"
msgstr "Tempelkan fonta GhostScript saja"

#. Translators: this is an option of "GhostScript"
#: modules/printbackends/cups/gtkprintbackendcups.c:2814
msgid "Convert to PS level 1"
msgstr "Konversi ke PS tingkat 1"

#. Translators: this is an option of "GhostScript"
#: modules/printbackends/cups/gtkprintbackendcups.c:2816
msgid "Convert to PS level 2"
msgstr "Konversi ke PS tingkat 2"

#. Translators: this is an option of "GhostScript"
#: modules/printbackends/cups/gtkprintbackendcups.c:2818
msgid "No pre-filtering"
msgstr "Tanpa pra penapisan"

#. Translators: "Miscellaneous" is the label for a button, that opens
#. up an extra panel of settings in a print dialog.
#: modules/printbackends/cups/gtkprintbackendcups.c:2827
msgid "Miscellaneous"
msgstr "Serba neka"

#. Translators: These strings name the possible values of the
#. * job priority option in the print dialog
#.
#: modules/printbackends/cups/gtkprintbackendcups.c:3504
msgid "Urgent"
msgstr "Penting"

#: modules/printbackends/cups/gtkprintbackendcups.c:3504
msgid "High"
msgstr "Tinggi"

#: modules/printbackends/cups/gtkprintbackendcups.c:3504
msgid "Medium"
msgstr "Sedang"

#: modules/printbackends/cups/gtkprintbackendcups.c:3504
msgid "Low"
msgstr "Rendah"

#. Cups specific, non-ppd related settings
#. Translators, this string is used to label the pages-per-sheet option
#. * in the print dialog
#.
#: modules/printbackends/cups/gtkprintbackendcups.c:3528
msgid "Pages per Sheet"
msgstr "Halaman per Lembar"

#. Translators, this string is used to label the job priority option
#. * in the print dialog
#.
#: modules/printbackends/cups/gtkprintbackendcups.c:3565
msgid "Job Priority"
msgstr "Prioritas Tugas"

#. Translators, this string is used to label the billing info entry
#. * in the print dialog
#.
#: modules/printbackends/cups/gtkprintbackendcups.c:3576
msgid "Billing Info"
msgstr "Info Tagihan"

#. Translators, these strings are names for various 'standard' cover
#. * pages that the printing system may support.
#.
#: modules/printbackends/cups/gtkprintbackendcups.c:3591
msgid "None"
msgstr "Tidak ada"

#: modules/printbackends/cups/gtkprintbackendcups.c:3591
msgid "Classified"
msgstr "Terklasifikasi"

#: modules/printbackends/cups/gtkprintbackendcups.c:3591
msgid "Confidential"
msgstr "Pribadi"

#: modules/printbackends/cups/gtkprintbackendcups.c:3591
msgid "Secret"
msgstr "Rahasia"

#: modules/printbackends/cups/gtkprintbackendcups.c:3591
msgid "Standard"
msgstr "Standard"

#: modules/printbackends/cups/gtkprintbackendcups.c:3591
msgid "Top Secret"
msgstr "Sangat Rahasia"

#: modules/printbackends/cups/gtkprintbackendcups.c:3591
msgid "Unclassified"
msgstr "Belum terklasifikasi"

#. Translators, this is the label used for the option in the print
#. * dialog that controls the front cover page.
#.
#: modules/printbackends/cups/gtkprintbackendcups.c:3626
msgid "Before"
msgstr "Sebelum"

#. Translators, this is the label used for the option in the print
#. * dialog that controls the back cover page.
#.
#: modules/printbackends/cups/gtkprintbackendcups.c:3641
msgid "After"
msgstr "Setelah"

#. Translators: this is the name of the option that controls when
#. * a print job is printed. Possible values are 'now', a specified time,
#. * or 'on hold'
#.
#: modules/printbackends/cups/gtkprintbackendcups.c:3661
msgid "Print at"
msgstr "Cetak pada"

#. Translators: this is the name of the option that allows the user
#. * to specify a time when a print job will be printed.
#.
#: modules/printbackends/cups/gtkprintbackendcups.c:3672
msgid "Print at time"
msgstr "Cetak pada waktu"

#. Translators: this format is used to display a custom paper
#. * size. The two placeholders are replaced with the width and height
#. * in points. E.g: "Custom 230.4x142.9"
#.
#: modules/printbackends/cups/gtkprintbackendcups.c:3707
#, c-format
msgid "Custom %sx%s"
msgstr "Gubahan %sx%s"

#. default filename used for print-to-file
#: modules/printbackends/file/gtkprintbackendfile.c:250
#, c-format
msgid "output.%s"
msgstr "keluaran.%s"

#: modules/printbackends/file/gtkprintbackendfile.c:493
msgid "Print to File"
msgstr "Cetak ke Berkas"

#: modules/printbackends/file/gtkprintbackendfile.c:570
msgid "PDF"
msgstr "PDF"

#: modules/printbackends/file/gtkprintbackendfile.c:570
msgid "Postscript"
msgstr "Postscript"

#: modules/printbackends/file/gtkprintbackendfile.c:570
msgid "SVG"
msgstr "SVG"

#: modules/printbackends/file/gtkprintbackendfile.c:582
#: modules/printbackends/test/gtkprintbackendtest.c:503
msgid "Pages per _sheet:"
msgstr "Halaman per _lembar:"

#: modules/printbackends/file/gtkprintbackendfile.c:641
msgid "File"
msgstr "Berkas"

#: modules/printbackends/file/gtkprintbackendfile.c:651
msgid "_Output format"
msgstr "_Bentuk keluaran"

#: modules/printbackends/lpr/gtkprintbackendlpr.c:395
msgid "Print to LPR"
msgstr "Cetak ke LPR"

#: modules/printbackends/lpr/gtkprintbackendlpr.c:421
msgid "Pages Per Sheet"
msgstr "Lembar Per Halaman"

#: modules/printbackends/lpr/gtkprintbackendlpr.c:428
msgid "Command Line"
msgstr "Baris Perintah"

#. SUN_BRANDING
#: modules/printbackends/papi/gtkprintbackendpapi.c:811
msgid "printer offline"
msgstr "pencetak luring"

#. SUN_BRANDING
#: modules/printbackends/papi/gtkprintbackendpapi.c:829
msgid "ready to print"
msgstr "siap mencetak"

#. SUN_BRANDING
#: modules/printbackends/papi/gtkprintbackendpapi.c:832
msgid "processing job"
msgstr "memproses tugas"

#. SUN_BRANDING
#: modules/printbackends/papi/gtkprintbackendpapi.c:836
msgid "paused"
msgstr "jeda"

#. SUN_BRANDING
#: modules/printbackends/papi/gtkprintbackendpapi.c:839
msgid "unknown"
msgstr "tak dikenal"

#. default filename used for print-to-test
#: modules/printbackends/test/gtkprintbackendtest.c:234
#, c-format
msgid "test-output.%s"
msgstr "keluaran.%s"

#: modules/printbackends/test/gtkprintbackendtest.c:467
msgid "Print to Test Printer"
msgstr "Cetak ke Pencetak Uji"

#: tests/testfilechooser.c:207
#, c-format
msgid "Could not get information for file '%s': %s"
msgstr "Gagal mengambil informasi mengenai berkas '%s': %s"