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
|
# Indonesian translation of clutter
# Copyright (C) 2010 Intel Corporation
# This file is distributed under the same license as the clutter package.
# Andika Triwidada <andika@gmail.com>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: clutter 1.3.14\n"
"Report-Msgid-Bugs-To: http://bugzilla.clutter-project.org/enter_bug.cgi?"
"product=clutter\n"
"POT-Creation-Date: 2011-08-16 00:01+0100\n"
"PO-Revision-Date: 2010-10-05 20:42+0700\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: GNOME Indonesian Translation Team <gnome@i15n.org>\n"
"Language: \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"
#: clutter/clutter-actor.c:3857
msgid "X coordinate"
msgstr "Koordinat X"
#: clutter/clutter-actor.c:3858
msgid "X coordinate of the actor"
msgstr "Koordinat X dari aktor"
#: clutter/clutter-actor.c:3873
msgid "Y coordinate"
msgstr "Koordinat Y"
#: clutter/clutter-actor.c:3874
msgid "Y coordinate of the actor"
msgstr "Koordinat Y dari aktor"
#: clutter/clutter-actor.c:3889 clutter/clutter-behaviour-ellipse.c:477
msgid "Width"
msgstr "Lebar"
#: clutter/clutter-actor.c:3890
msgid "Width of the actor"
msgstr "Lebar aktor"
#: clutter/clutter-actor.c:3904 clutter/clutter-behaviour-ellipse.c:493
msgid "Height"
msgstr "Tinggi"
#: clutter/clutter-actor.c:3905
msgid "Height of the actor"
msgstr "Tinggi aktor"
#: clutter/clutter-actor.c:3923
msgid "Fixed X"
msgstr "X Tetap"
#: clutter/clutter-actor.c:3924
msgid "Forced X position of the actor"
msgstr "Posisi X aktor yang dipaksakan"
#: clutter/clutter-actor.c:3942
msgid "Fixed Y"
msgstr "Y Tetap"
#: clutter/clutter-actor.c:3943
msgid "Forced Y position of the actor"
msgstr "Posisi Y aktor yang dipaksakan"
#: clutter/clutter-actor.c:3959
msgid "Fixed position set"
msgstr "Posisi yang ditetapkan ditata"
#: clutter/clutter-actor.c:3960
msgid "Whether to use fixed positioning for the actor"
msgstr "Apakah memakai penempatan yang ditetapkan bagi aktor"
#: clutter/clutter-actor.c:3982
msgid "Min Width"
msgstr "Lebar Min"
#: clutter/clutter-actor.c:3983
msgid "Forced minimum width request for the actor"
msgstr "Permintaan lebar minimal yang dipaksakan bagi aktor"
#: clutter/clutter-actor.c:4002
msgid "Min Height"
msgstr "Tinggi Min"
#: clutter/clutter-actor.c:4003
msgid "Forced minimum height request for the actor"
msgstr "Permintaan tinggi minimal yang dipaksakan bagi aktor"
#: clutter/clutter-actor.c:4022
msgid "Natural Width"
msgstr "Lebar Alami"
#: clutter/clutter-actor.c:4023
msgid "Forced natural width request for the actor"
msgstr "Permintaan lebar alami yang dipaksakan bagi aktor"
#: clutter/clutter-actor.c:4042
msgid "Natural Height"
msgstr "Tinggi Alami"
#: clutter/clutter-actor.c:4043
msgid "Forced natural height request for the actor"
msgstr "Permintaan tinggi alami yang dipaksakan bagi aktor"
#: clutter/clutter-actor.c:4059
msgid "Minimum width set"
msgstr "Lebar minimal ditata"
#: clutter/clutter-actor.c:4060
msgid "Whether to use the min-width property"
msgstr "Apakah memakai properti min-width"
#: clutter/clutter-actor.c:4075
msgid "Minimum height set"
msgstr "Tinggi minimal ditata"
#: clutter/clutter-actor.c:4076
msgid "Whether to use the min-height property"
msgstr "Apakah memakai properti min-height"
#: clutter/clutter-actor.c:4091
msgid "Natural width set"
msgstr "Lebar alami ditata"
#: clutter/clutter-actor.c:4092
msgid "Whether to use the natural-width property"
msgstr "Apakah memakai properti natural-width"
#: clutter/clutter-actor.c:4109
msgid "Natural height set"
msgstr "Tinggi alami ditata"
#: clutter/clutter-actor.c:4110
msgid "Whether to use the natural-height property"
msgstr "Apakah memakai properti natural-height"
#: clutter/clutter-actor.c:4129
msgid "Allocation"
msgstr "Alokasi"
#: clutter/clutter-actor.c:4130
msgid "The actor's allocation"
msgstr "Alokasi aktor"
#: clutter/clutter-actor.c:4186
msgid "Request Mode"
msgstr "Moda Permintaan"
#: clutter/clutter-actor.c:4187
msgid "The actor's request mode"
msgstr "Moda permintaan aktor"
#: clutter/clutter-actor.c:4202
msgid "Depth"
msgstr "Kedalaman"
#: clutter/clutter-actor.c:4203
msgid "Position on the Z axis"
msgstr "Posisi pada sumbu Z"
#: clutter/clutter-actor.c:4217
#, fuzzy
msgid "Opacity"
msgstr "Ketransparanan"
#: clutter/clutter-actor.c:4218
msgid "Opacity of an actor"
msgstr "Tingkat transparansi aktor"
#: clutter/clutter-actor.c:4234
msgid "Offscreen redirect"
msgstr ""
#: clutter/clutter-actor.c:4235
#, fuzzy
msgid "Whether to flatten the actor into a single image"
msgstr "Apakah aktor memuat penunjuk dari suatu perangkat masukan"
#: clutter/clutter-actor.c:4253
msgid "Visible"
msgstr "Tampak"
#: clutter/clutter-actor.c:4254
msgid "Whether the actor is visible or not"
msgstr "Apakah aktor nampak atau tidak"
#: clutter/clutter-actor.c:4269
msgid "Mapped"
msgstr "Dipetakan"
#: clutter/clutter-actor.c:4270
msgid "Whether the actor will be painted"
msgstr "Apakah aktor akan digambar"
#: clutter/clutter-actor.c:4284
msgid "Realized"
msgstr "Direalisasikan"
#: clutter/clutter-actor.c:4285
msgid "Whether the actor has been realized"
msgstr "Apakah aktor telah direalisasikan"
#: clutter/clutter-actor.c:4301
msgid "Reactive"
msgstr "Reaktif"
#: clutter/clutter-actor.c:4302
msgid "Whether the actor is reactive to events"
msgstr "Apakah aktor reaktif terhadap kejadian"
#: clutter/clutter-actor.c:4314
msgid "Has Clip"
msgstr "Punya Klip"
#: clutter/clutter-actor.c:4315
msgid "Whether the actor has a clip set"
msgstr "Apakah aktor telah ditata punya klip"
#: clutter/clutter-actor.c:4330
msgid "Clip"
msgstr "Klip"
#: clutter/clutter-actor.c:4331
msgid "The clip region for the actor"
msgstr "Wilayah klip bagi aktor"
#: clutter/clutter-actor.c:4345 clutter/clutter-actor-meta.c:207
#: clutter/clutter-binding-pool.c:319 clutter/clutter-input-device.c:236
msgid "Name"
msgstr "Nama"
#: clutter/clutter-actor.c:4346
msgid "Name of the actor"
msgstr "Nama aktor"
#: clutter/clutter-actor.c:4360
msgid "Scale X"
msgstr "Skala X"
#: clutter/clutter-actor.c:4361
msgid "Scale factor on the X axis"
msgstr "Faktor skala pada sumbu X"
#: clutter/clutter-actor.c:4376
msgid "Scale Y"
msgstr "Skala Y"
#: clutter/clutter-actor.c:4377
msgid "Scale factor on the Y axis"
msgstr "Faktor skala pada sumbu Y"
#: clutter/clutter-actor.c:4392
msgid "Scale Center X"
msgstr "Pusat Skala X"
#: clutter/clutter-actor.c:4393
msgid "Horizontal scale center"
msgstr "Pusat skala horisontal"
#: clutter/clutter-actor.c:4408
msgid "Scale Center Y"
msgstr "Pusat Skala Y"
#: clutter/clutter-actor.c:4409
msgid "Vertical scale center"
msgstr "Pusat skala vertikal"
#: clutter/clutter-actor.c:4424
msgid "Scale Gravity"
msgstr "Gravitasi Skala"
#: clutter/clutter-actor.c:4425
msgid "The center of scaling"
msgstr "Pusat penskalaan"
#: clutter/clutter-actor.c:4442
msgid "Rotation Angle X"
msgstr "Sudut Rotasi X"
#: clutter/clutter-actor.c:4443
msgid "The rotation angle on the X axis"
msgstr "Sudut rotasi dari sumbu X"
#: clutter/clutter-actor.c:4458
msgid "Rotation Angle Y"
msgstr "Sudut Rotasi Y"
#: clutter/clutter-actor.c:4459
msgid "The rotation angle on the Y axis"
msgstr "Sudut rotasi dari sumbu Y"
#: clutter/clutter-actor.c:4474
msgid "Rotation Angle Z"
msgstr "Sudut Rotasi Z"
#: clutter/clutter-actor.c:4475
msgid "The rotation angle on the Z axis"
msgstr "Sudut rotasi dari sumbu Z"
#: clutter/clutter-actor.c:4490
msgid "Rotation Center X"
msgstr "Pusat Rotasi X"
#: clutter/clutter-actor.c:4491
msgid "The rotation center on the X axis"
msgstr "Pusat rotasi pada sumbu X"
#: clutter/clutter-actor.c:4507
msgid "Rotation Center Y"
msgstr "Pusat Rotasi Y"
#: clutter/clutter-actor.c:4508
msgid "The rotation center on the Y axis"
msgstr "Pusat rotasi pada sumbu Y"
#: clutter/clutter-actor.c:4524
msgid "Rotation Center Z"
msgstr "Pusat Rotasi Z"
#: clutter/clutter-actor.c:4525
msgid "The rotation center on the Z axis"
msgstr "Pusat rotasi pada sumbu Z"
#: clutter/clutter-actor.c:4541
msgid "Rotation Center Z Gravity"
msgstr "Gravitasi Z Pusat Rotasi"
#: clutter/clutter-actor.c:4542
msgid "Center point for rotation around the Z axis"
msgstr "Titik pusat rotasi seputar sumbu Z"
#: clutter/clutter-actor.c:4560
msgid "Anchor X"
msgstr "Jangkar X"
#: clutter/clutter-actor.c:4561
msgid "X coordinate of the anchor point"
msgstr "Koordinat X titik jangkar"
#: clutter/clutter-actor.c:4577
msgid "Anchor Y"
msgstr "Jangkar Y"
#: clutter/clutter-actor.c:4578
msgid "Y coordinate of the anchor point"
msgstr "Koordinat Y titik jangkar"
#: clutter/clutter-actor.c:4593
msgid "Anchor Gravity"
msgstr "Gravitasi Jangkar"
#: clutter/clutter-actor.c:4594
msgid "The anchor point as a ClutterGravity"
msgstr ""
#: clutter/clutter-actor.c:4613
msgid "Show on set parent"
msgstr ""
#: clutter/clutter-actor.c:4614
msgid "Whether the actor is shown when parented"
msgstr ""
#: clutter/clutter-actor.c:4634
msgid "Clip to Allocation"
msgstr ""
#: clutter/clutter-actor.c:4635
msgid "Sets the clip region to track the actor's allocation"
msgstr ""
#: clutter/clutter-actor.c:4645
msgid "Text Direction"
msgstr "Arah Teks"
#: clutter/clutter-actor.c:4646
msgid "Direction of the text"
msgstr "Arah teks"
#: clutter/clutter-actor.c:4664
msgid "Has Pointer"
msgstr "Punya Penunjuk"
#: clutter/clutter-actor.c:4665
msgid "Whether the actor contains the pointer of an input device"
msgstr "Apakah aktor memuat penunjuk dari suatu perangkat masukan"
#: clutter/clutter-actor.c:4682
msgid "Actions"
msgstr "Aksi"
#: clutter/clutter-actor.c:4683
msgid "Adds an action to the actor"
msgstr "Tambahkan aksi ke aktor"
#: clutter/clutter-actor.c:4697
msgid "Constraints"
msgstr "Kendala"
#: clutter/clutter-actor.c:4698
msgid "Adds a constraint to the actor"
msgstr "Tambahkan kendala ke aktor"
#: clutter/clutter-actor-meta.c:193 clutter/clutter-child-meta.c:142
msgid "Actor"
msgstr "Aktor"
#: clutter/clutter-actor-meta.c:194
msgid "The actor attached to the meta"
msgstr ""
#: clutter/clutter-actor-meta.c:208
#, fuzzy
msgid "The name of the meta"
msgstr "Perubah Meta"
#: clutter/clutter-actor-meta.c:221 clutter/clutter-input-device.c:315
#: clutter/clutter-shader.c:307
#, fuzzy
msgid "Enabled"
msgstr "Diaktifkan"
#: clutter/clutter-actor-meta.c:222
#, fuzzy
msgid "Whether the meta is enabled"
msgstr "Menentukan apkaah aksi diaktifkan"
#: clutter/clutter-align-constraint.c:252
#: clutter/clutter-bind-constraint.c:316 clutter/clutter-clone.c:340
#: clutter/clutter-snap-constraint.c:321
msgid "Source"
msgstr "Sumber"
#: clutter/clutter-align-constraint.c:253
msgid "The source of the alignment"
msgstr "Sumber perataan"
#: clutter/clutter-align-constraint.c:266
#, fuzzy
msgid "Align Axis"
msgstr "Rata kanan"
#: clutter/clutter-align-constraint.c:267
msgid "The axis to align the position to"
msgstr ""
#: clutter/clutter-align-constraint.c:286
#: clutter/clutter-desaturate-effect.c:304
msgid "Factor"
msgstr "Faktor"
#: clutter/clutter-align-constraint.c:287
msgid "The alignment factor, between 0.0 and 1.0"
msgstr ""
#: clutter/clutter-alpha.c:345 clutter/clutter-animation.c:528
#: clutter/clutter-animator.c:1802
msgid "Timeline"
msgstr ""
#: clutter/clutter-alpha.c:346
msgid "Timeline used by the alpha"
msgstr ""
#: clutter/clutter-alpha.c:361
msgid "Alpha value"
msgstr "Nilai alfa"
#: clutter/clutter-alpha.c:362
msgid "Alpha value as computed by the alpha"
msgstr ""
#: clutter/clutter-alpha.c:382 clutter/clutter-animation.c:484
#, fuzzy
msgid "Mode"
msgstr "Mode"
#: clutter/clutter-alpha.c:383
#, fuzzy
msgid "Progress mode"
msgstr "Moda Kolom..."
#: clutter/clutter-animation.c:468
msgid "Object"
msgstr "Objek"
#: clutter/clutter-animation.c:469
msgid "Object to which the animation applies"
msgstr ""
#: clutter/clutter-animation.c:485
#, fuzzy
msgid "The mode of the animation"
msgstr "Mode animasi gambar"
#: clutter/clutter-animation.c:499 clutter/clutter-animator.c:1786
#: clutter/clutter-media.c:194 clutter/clutter-state.c:1486
#: clutter/clutter-timeline.c:294
msgid "Duration"
msgstr "Durasi"
#: clutter/clutter-animation.c:500
msgid "Duration of the animation, in milliseconds"
msgstr ""
#: clutter/clutter-animation.c:514 clutter/clutter-timeline.c:263
msgid "Loop"
msgstr "Pengulangan"
#: clutter/clutter-animation.c:515
msgid "Whether the animation should loop"
msgstr ""
#: clutter/clutter-animation.c:529
msgid "The timeline used by the animation"
msgstr ""
#: clutter/clutter-animation.c:542 clutter/clutter-behaviour.c:304
msgid "Alpha"
msgstr "Alfa"
#: clutter/clutter-animation.c:543
msgid "The alpha used by the animation"
msgstr ""
#: clutter/clutter-animator.c:1787
#, fuzzy
msgid "The duration of the animation"
msgstr "Durasi animasi"
#: clutter/clutter-animator.c:1803
#, fuzzy
msgid "The timeline of the animation"
msgstr "Pilih sebuah animasi"
#: clutter/clutter-behaviour.c:305
msgid "Alpha Object to drive the behaviour"
msgstr ""
#: clutter/clutter-behaviour-depth.c:178
#, fuzzy
msgid "Start Depth"
msgstr "_Kedalaman Warna:"
#: clutter/clutter-behaviour-depth.c:179
msgid "Initial depth to apply"
msgstr ""
#: clutter/clutter-behaviour-depth.c:194
#, fuzzy
msgid "End Depth"
msgstr "_Kedalaman Warna:"
#: clutter/clutter-behaviour-depth.c:195
msgid "Final depth to apply"
msgstr ""
#: clutter/clutter-behaviour-ellipse.c:397
#, fuzzy
msgid "Start Angle"
msgstr "Menu S_udut"
#: clutter/clutter-behaviour-ellipse.c:398
#: clutter/clutter-behaviour-rotate.c:280
#, fuzzy
msgid "Initial angle"
msgstr "Menu S_udut"
#: clutter/clutter-behaviour-ellipse.c:413
#, fuzzy
msgid "End Angle"
msgstr "Menu S_udut"
#: clutter/clutter-behaviour-ellipse.c:414
#: clutter/clutter-behaviour-rotate.c:298
#, fuzzy
msgid "Final angle"
msgstr "Menu S_udut"
#: clutter/clutter-behaviour-ellipse.c:429
#, fuzzy
msgid "Angle x tilt"
msgstr "Menu S_udut"
#: clutter/clutter-behaviour-ellipse.c:430
msgid "Tilt of the ellipse around x axis"
msgstr ""
#: clutter/clutter-behaviour-ellipse.c:445
#, fuzzy
msgid "Angle y tilt"
msgstr "Menu S_udut"
#: clutter/clutter-behaviour-ellipse.c:446
msgid "Tilt of the ellipse around y axis"
msgstr ""
#: clutter/clutter-behaviour-ellipse.c:461
#, fuzzy
msgid "Angle z tilt"
msgstr "Menu S_udut"
#: clutter/clutter-behaviour-ellipse.c:462
msgid "Tilt of the ellipse around z axis"
msgstr ""
#: clutter/clutter-behaviour-ellipse.c:478
#, fuzzy
msgid "Width of the ellipse"
msgstr "_Lebar tetap:"
#: clutter/clutter-behaviour-ellipse.c:494
#, fuzzy
msgid "Height of ellipse"
msgstr "<b>Tinggi:</b> %d piksel\n"
#: clutter/clutter-behaviour-ellipse.c:509
#, fuzzy
msgid "Center"
msgstr "Tengah"
#: clutter/clutter-behaviour-ellipse.c:510
#, fuzzy
msgid "Center of ellipse"
msgstr "Pusat Pengaturan"
#: clutter/clutter-behaviour-ellipse.c:524
#: clutter/clutter-behaviour-rotate.c:333 clutter/clutter-timeline.c:310
msgid "Direction"
msgstr "Arah"
#: clutter/clutter-behaviour-ellipse.c:525
#: clutter/clutter-behaviour-rotate.c:334
#, fuzzy
msgid "Direction of rotation"
msgstr "Putaran Jarum Jam"
#: clutter/clutter-behaviour-opacity.c:181
#, fuzzy
msgid "Opacity Start"
msgstr "Jalankan program"
#: clutter/clutter-behaviour-opacity.c:182
msgid "Initial opacity level"
msgstr ""
#: clutter/clutter-behaviour-opacity.c:199
#, fuzzy
msgid "Opacity End"
msgstr "KP_End"
#: clutter/clutter-behaviour-opacity.c:200
msgid "Final opacity level"
msgstr ""
#: clutter/clutter-behaviour-path.c:222 clutter/clutter-path-constraint.c:212
msgid "Path"
msgstr "Path"
#: clutter/clutter-behaviour-path.c:223
msgid "The ClutterPath object representing the path to animate along"
msgstr ""
#: clutter/clutter-behaviour-rotate.c:279
#, fuzzy
msgid "Angle Begin"
msgstr "KP_Begin"
#: clutter/clutter-behaviour-rotate.c:297
#, fuzzy
msgid "Angle End"
msgstr "KP_End"
#: clutter/clutter-behaviour-rotate.c:315
#, fuzzy
msgid "Axis"
msgstr "Sumbu"
#: clutter/clutter-behaviour-rotate.c:316
#, fuzzy
msgid "Axis of rotation"
msgstr "Putaran Jarum Jam"
#: clutter/clutter-behaviour-rotate.c:351
msgid "Center X"
msgstr "Pusat X"
#: clutter/clutter-behaviour-rotate.c:352
msgid "X coordinate of the center of rotation"
msgstr ""
#: clutter/clutter-behaviour-rotate.c:369
msgid "Center Y"
msgstr "Pusat Y"
#: clutter/clutter-behaviour-rotate.c:370
msgid "Y coordinate of the center of rotation"
msgstr ""
#: clutter/clutter-behaviour-rotate.c:387
msgid "Center Z"
msgstr "Pusat Z"
#: clutter/clutter-behaviour-rotate.c:388
msgid "Z coordinate of the center of rotation"
msgstr ""
#: clutter/clutter-behaviour-scale.c:222
#, fuzzy
msgid "X Start Scale"
msgstr "Skala Beaufort"
#: clutter/clutter-behaviour-scale.c:223
msgid "Initial scale on the X axis"
msgstr ""
#: clutter/clutter-behaviour-scale.c:241
#, fuzzy
msgid "X End Scale"
msgstr "Skala Beaufort"
#: clutter/clutter-behaviour-scale.c:242
msgid "Final scale on the X axis"
msgstr ""
#: clutter/clutter-behaviour-scale.c:260
#, fuzzy
msgid "Y Start Scale"
msgstr "Skala Beaufort"
#: clutter/clutter-behaviour-scale.c:261
msgid "Initial scale on the Y axis"
msgstr ""
#: clutter/clutter-behaviour-scale.c:279
#, fuzzy
msgid "Y End Scale"
msgstr "Skala Beaufort"
#: clutter/clutter-behaviour-scale.c:280
msgid "Final scale on the Y axis"
msgstr ""
#: clutter/clutter-bind-constraint.c:317
#, fuzzy
msgid "The source of the binding"
msgstr "Asal IP"
#: clutter/clutter-bind-constraint.c:330
#, fuzzy
msgid "Coordinate"
msgstr "Koordinat X"
#: clutter/clutter-bind-constraint.c:331
#, fuzzy
msgid "The coordinate to bind"
msgstr "Koordinat X dari kotak untuk merekam"
#: clutter/clutter-bind-constraint.c:345 clutter/clutter-path-constraint.c:226
#: clutter/clutter-snap-constraint.c:366
msgid "Offset"
msgstr "Ofset"
#: clutter/clutter-bind-constraint.c:346
msgid "The offset in pixels to apply to the binding"
msgstr ""
#: clutter/clutter-binding-pool.c:320
msgid "The unique name of the binding pool"
msgstr ""
#: clutter/clutter-bin-layout.c:261 clutter/clutter-bin-layout.c:584
#: clutter/clutter-box-layout.c:395 clutter/clutter-table-layout.c:652
#, fuzzy
msgid "Horizontal Alignment"
msgstr "Perataan Horisontal"
#: clutter/clutter-bin-layout.c:262
msgid "Horizontal alignment for the actor inside the layout manager"
msgstr ""
#: clutter/clutter-bin-layout.c:270 clutter/clutter-bin-layout.c:601
#: clutter/clutter-box-layout.c:404 clutter/clutter-table-layout.c:667
#, fuzzy
msgid "Vertical Alignment"
msgstr "Perataan Vertikal"
#: clutter/clutter-bin-layout.c:271
msgid "Vertical alignment for the actor inside the layout manager"
msgstr ""
#: clutter/clutter-bin-layout.c:585
msgid "Default horizontal alignment for the actors inside the layout manager"
msgstr ""
#: clutter/clutter-bin-layout.c:602
msgid "Default vertical alignment for the actors inside the layout manager"
msgstr ""
#: clutter/clutter-box.c:537
msgid "Layout Manager"
msgstr "Manajer Tata Letak"
#: clutter/clutter-box.c:538
msgid "The layout manager used by the box"
msgstr ""
#: clutter/clutter-box.c:557 clutter/clutter-rectangle.c:267
#: clutter/clutter-stage.c:1763
msgid "Color"
msgstr "Warna"
#: clutter/clutter-box.c:558
#, fuzzy
msgid "The background color of the box"
msgstr "Warna Kotak Pilihan"
#: clutter/clutter-box.c:572
#, fuzzy
msgid "Color Set"
msgstr "Warna latar belakang sudah diset"
#: clutter/clutter-box.c:573
#, fuzzy
msgid "Whether the background color is set"
msgstr "Apakah warna latar belakang ditata"
#: clutter/clutter-box-layout.c:370
#, fuzzy
msgid "Expand"
msgstr "Ekspansi"
#: clutter/clutter-box-layout.c:371
msgid "Allocate extra space for the child"
msgstr ""
#: clutter/clutter-box-layout.c:377 clutter/clutter-table-layout.c:631
#, fuzzy
msgid "Horizontal Fill"
msgstr "Isi warna"
#: clutter/clutter-box-layout.c:378 clutter/clutter-table-layout.c:632
msgid ""
"Whether the child should receive priority when the container is allocating "
"spare space on the horizontal axis"
msgstr ""
#: clutter/clutter-box-layout.c:386 clutter/clutter-table-layout.c:638
#, fuzzy
msgid "Vertical Fill"
msgstr "Isi warna"
#: clutter/clutter-box-layout.c:387 clutter/clutter-table-layout.c:639
msgid ""
"Whether the child should receive priority when the container is allocating "
"spare space on the vertical axis"
msgstr ""
#: clutter/clutter-box-layout.c:396 clutter/clutter-table-layout.c:653
msgid "Horizontal alignment of the actor within the cell"
msgstr ""
#: clutter/clutter-box-layout.c:405 clutter/clutter-table-layout.c:668
msgid "Vertical alignment of the actor within the cell"
msgstr ""
#: clutter/clutter-box-layout.c:1305
msgid "Vertical"
msgstr "Vertikal"
#: clutter/clutter-box-layout.c:1306
msgid "Whether the layout should be vertical, rather than horizontal"
msgstr ""
#: clutter/clutter-box-layout.c:1321 clutter/clutter-flow-layout.c:898
#, fuzzy
msgid "Homogeneous"
msgstr "Homogen"
#: clutter/clutter-box-layout.c:1322
msgid ""
"Whether the layout should be homogeneous, i.e. all childs get the same size"
msgstr ""
#: clutter/clutter-box-layout.c:1337
#, fuzzy
msgid "Pack Start"
msgstr "Jalankan program"
#: clutter/clutter-box-layout.c:1338
msgid "Whether to pack items at the start of the box"
msgstr ""
#: clutter/clutter-box-layout.c:1351
#, fuzzy
msgid "Spacing"
msgstr "Rongga"
#: clutter/clutter-box-layout.c:1352
#, fuzzy
msgid "Spacing between children"
msgstr "Ruang antar cells"
#: clutter/clutter-box-layout.c:1366 clutter/clutter-table-layout.c:1740
#, fuzzy
msgid "Use Animations"
msgstr "Aktifkan animasi"
#: clutter/clutter-box-layout.c:1367 clutter/clutter-table-layout.c:1741
msgid "Whether layout changes should be animated"
msgstr ""
#: clutter/clutter-box-layout.c:1388 clutter/clutter-table-layout.c:1762
#, fuzzy
msgid "Easing Mode"
msgstr "Moda Kolom..."
#: clutter/clutter-box-layout.c:1389 clutter/clutter-table-layout.c:1763
msgid "The easing mode of the animations"
msgstr ""
#: clutter/clutter-box-layout.c:1406 clutter/clutter-table-layout.c:1780
#, fuzzy
msgid "Easing Duration"
msgstr "Durasi animasi"
#: clutter/clutter-box-layout.c:1407 clutter/clutter-table-layout.c:1781
#, fuzzy
msgid "The duration of the animations"
msgstr "Aktifkan animasi"
#: clutter/clutter-cairo-texture.c:582
#, fuzzy
msgid "Surface Width"
msgstr "_Lebar tetap:"
#: clutter/clutter-cairo-texture.c:583
msgid "The width of the Cairo surface"
msgstr ""
#: clutter/clutter-cairo-texture.c:597
#, fuzzy
msgid "Surface Height"
msgstr "<b>Tinggi:</b> %d piksel\n"
#: clutter/clutter-cairo-texture.c:598
msgid "The height of the Cairo surface"
msgstr ""
#: clutter/clutter-cairo-texture.c:615
msgid "Auto Resize"
msgstr ""
#: clutter/clutter-cairo-texture.c:616
msgid "Whether the surface should match the allocation"
msgstr ""
#: clutter/clutter-child-meta.c:127
#, fuzzy
msgid "Container"
msgstr "Kontainer"
#: clutter/clutter-child-meta.c:128
msgid "The container that created this data"
msgstr ""
#: clutter/clutter-child-meta.c:143
msgid "The actor wrapped by this data"
msgstr ""
#: clutter/clutter-click-action.c:542
#, fuzzy
msgid "Pressed"
msgstr "ditekan"
#: clutter/clutter-click-action.c:543
msgid "Whether the clickable should be in pressed state"
msgstr ""
#: clutter/clutter-click-action.c:556
msgid "Held"
msgstr ""
#: clutter/clutter-click-action.c:557
msgid "Whether the clickable has a grab"
msgstr ""
#: clutter/clutter-click-action.c:574 clutter/clutter-settings.c:521
#, fuzzy
msgid "Long Press Duration"
msgstr "Durasi animasi"
#: clutter/clutter-click-action.c:575
msgid "The minimum duration of a long press to recognize the gesture"
msgstr ""
#: clutter/clutter-click-action.c:593
msgid "Long Press Threshold"
msgstr ""
#: clutter/clutter-click-action.c:594
msgid "The maximum threshold before a long press is cancelled"
msgstr ""
#: clutter/clutter-clone.c:341
msgid "Specifies the actor to be cloned"
msgstr ""
#: clutter/clutter-colorize-effect.c:307
msgid "Tint"
msgstr ""
#: clutter/clutter-colorize-effect.c:308
#, fuzzy
msgid "The tint to apply"
msgstr "Stash yang akan Diterapkan"
#: clutter/clutter-deform-effect.c:527
#, fuzzy
msgid "Horizontal Tiles"
msgstr "kartu Mahjong"
#: clutter/clutter-deform-effect.c:528
msgid "The number of horizontal tiles"
msgstr ""
#: clutter/clutter-deform-effect.c:543
#, fuzzy
msgid "Vertical Tiles"
msgstr "kartu Mahjong"
#: clutter/clutter-deform-effect.c:544
msgid "The number of vertical tiles"
msgstr ""
#: clutter/clutter-deform-effect.c:561
#, fuzzy
msgid "Back Material"
msgstr "Riwayat sebelumnya"
#: clutter/clutter-deform-effect.c:562
msgid "The material to be used when painting the back of the actor"
msgstr ""
#: clutter/clutter-desaturate-effect.c:305
#, fuzzy
msgid "The desaturation factor"
msgstr "Faktor koreksi"
#: clutter/clutter-device-manager.c:131 clutter/clutter-input-device.c:344
#: clutter/x11/clutter-keymap-x11.c:316
#, fuzzy
msgid "Backend"
msgstr "Backend"
#: clutter/clutter-device-manager.c:132
#, fuzzy
msgid "The ClutterBackend of the device manager"
msgstr "Peran perangkat di dalam manajer"
#: clutter/clutter-drag-action.c:564
msgid "Horizontal Drag Threshold"
msgstr ""
#: clutter/clutter-drag-action.c:565
msgid "The horizontal amount of pixels required to start dragging"
msgstr ""
#: clutter/clutter-drag-action.c:592
msgid "Vertical Drag Threshold"
msgstr ""
#: clutter/clutter-drag-action.c:593
msgid "The vertical amount of pixels required to start dragging"
msgstr ""
#: clutter/clutter-drag-action.c:614
#, fuzzy
msgid "Drag Handle"
msgstr "Tampilkan handle"
#: clutter/clutter-drag-action.c:615
msgid "The actor that is being dragged"
msgstr ""
#: clutter/clutter-drag-action.c:628
#, fuzzy
msgid "Drag Axis"
msgstr " _Drag"
#: clutter/clutter-drag-action.c:629
msgid "Constraints the dragging to an axis"
msgstr ""
#: clutter/clutter-flow-layout.c:882
#, fuzzy
msgid "Orientation"
msgstr "Orientasi"
#: clutter/clutter-flow-layout.c:883
#, fuzzy
msgid "The orientation of the layout"
msgstr "Choose a Layout"
#: clutter/clutter-flow-layout.c:899
msgid "Whether each item should receive the same allocation"
msgstr ""
#: clutter/clutter-flow-layout.c:914 clutter/clutter-table-layout.c:1711
#, fuzzy
msgid "Column Spacing"
msgstr "Jarak Antar Kolom"
#: clutter/clutter-flow-layout.c:915
#, fuzzy
msgid "The spacing between columns"
msgstr "Ruang antar cells"
#: clutter/clutter-flow-layout.c:931 clutter/clutter-table-layout.c:1725
#, fuzzy
msgid "Row Spacing"
msgstr "Jarak Antar Baris"
#: clutter/clutter-flow-layout.c:932
#, fuzzy
msgid "The spacing between rows"
msgstr "Ruang antar cells"
#: clutter/clutter-flow-layout.c:946
#, fuzzy
msgid "Minimum Column Width"
msgstr "Lebar minimal kolom yang diizinkan"
#: clutter/clutter-flow-layout.c:947
msgid "Minimum width for each column"
msgstr ""
#: clutter/clutter-flow-layout.c:962
#, fuzzy
msgid "Maximum Column Width"
msgstr "Lebar maksimal kolom yang diizinkan"
#: clutter/clutter-flow-layout.c:963
msgid "Maximum width for each column"
msgstr ""
#: clutter/clutter-flow-layout.c:977
#, fuzzy
msgid "Minimum Row Height"
msgstr "Tinggi baris seragam"
#: clutter/clutter-flow-layout.c:978
msgid "Minimum height for each row"
msgstr ""
#: clutter/clutter-flow-layout.c:993
#, fuzzy
msgid "Maximum Row Height"
msgstr "Tinggi baris seragam"
#: clutter/clutter-flow-layout.c:994
msgid "Maximum height for each row"
msgstr ""
#: clutter/clutter-input-device.c:220
msgid "Id"
msgstr "Id"
#: clutter/clutter-input-device.c:221
msgid "Unique identifier of the device"
msgstr ""
#: clutter/clutter-input-device.c:237
#, fuzzy
msgid "The name of the device"
msgstr "Nama perangkat"
#: clutter/clutter-input-device.c:251
#, fuzzy
msgid "Device Type"
msgstr "_Tipe perangkat:"
#: clutter/clutter-input-device.c:252
#, fuzzy
msgid "The type of the device"
msgstr "_Tipe perangkat:"
#: clutter/clutter-input-device.c:267
#, fuzzy
msgid "Device Manager"
msgstr "Manajer"
#: clutter/clutter-input-device.c:268
msgid "The device manager instance"
msgstr ""
#: clutter/clutter-input-device.c:281
#, fuzzy
msgid "Device Mode"
msgstr "_Tipe perangkat:"
#: clutter/clutter-input-device.c:282
#, fuzzy
msgid "The mode of the device"
msgstr "Nama perangkat"
#: clutter/clutter-input-device.c:296
#, fuzzy
msgid "Has Cursor"
msgstr "Bingkai Jendela"
#: clutter/clutter-input-device.c:297
#, fuzzy
msgid "Whether the device has a cursor"
msgstr "Apakah aktor telah ditata punya klip"
#: clutter/clutter-input-device.c:316
#, fuzzy
msgid "Whether the device is enabled"
msgstr "Menentukan apkaah aksi diaktifkan"
#: clutter/clutter-input-device.c:329
msgid "Number of Axes"
msgstr ""
#: clutter/clutter-input-device.c:330
#, fuzzy
msgid "The number of axes on the device"
msgstr "Nama perangkat"
#: clutter/clutter-input-device.c:345
msgid "The backend instance"
msgstr ""
#: clutter/clutter-interval.c:397
#, fuzzy
msgid "Value Type"
msgstr "Tipe Latar"
#: clutter/clutter-interval.c:398
msgid "The type of the values in the interval"
msgstr ""
#: clutter/clutter-layout-meta.c:117
msgid "Manager"
msgstr "Manajer"
#: clutter/clutter-layout-meta.c:118
msgid "The manager that created this data"
msgstr ""
#: clutter/clutter-main.c:489
#, fuzzy
msgid "default:LTR"
msgstr "default:LTR"
#: clutter/clutter-main.c:1288
msgid "Show frames per second"
msgstr ""
#: clutter/clutter-main.c:1290
msgid "Default frame rate"
msgstr ""
#: clutter/clutter-main.c:1292
#, fuzzy
msgid "Make all warnings fatal"
msgstr "Buat semua peringatan menjadi pesan fatal"
#: clutter/clutter-main.c:1295
#, fuzzy
msgid "Direction for the text"
msgstr "Fonta untuk teks"
#: clutter/clutter-main.c:1298
msgid "Disable mipmapping on text"
msgstr ""
#: clutter/clutter-main.c:1301
msgid "Use 'fuzzy' picking"
msgstr ""
#: clutter/clutter-main.c:1304
#, fuzzy
msgid "Clutter debugging flags to set"
msgstr "Bendera debug Gdk yang hendak dipasang"
#: clutter/clutter-main.c:1306
#, fuzzy
msgid "Clutter debugging flags to unset"
msgstr "Bendera debug Gdk yang hendak dilepas"
#: clutter/clutter-main.c:1310
msgid "Clutter profiling flags to set"
msgstr ""
#: clutter/clutter-main.c:1312
msgid "Clutter profiling flags to unset"
msgstr ""
#: clutter/clutter-main.c:1315
#, fuzzy
msgid "Enable accessibility"
msgstr "Aktifkan Aksesibilitas"
#: clutter/clutter-main.c:1497
#, fuzzy
msgid "Clutter Options"
msgstr "Pilihan GTK+"
#: clutter/clutter-main.c:1498
#, fuzzy
msgid "Show Clutter Options"
msgstr "Tampilkan opsi pengawa-kutuan"
#: clutter/clutter-media.c:77
msgid "URI"
msgstr "URI"
#: clutter/clutter-media.c:78
#, fuzzy
msgid "URI of a media file"
msgstr "URI berkas audio"
#: clutter/clutter-media.c:91
#, fuzzy
msgid "Playing"
msgstr "Sedang memutar"
#: clutter/clutter-media.c:92
#, fuzzy
msgid "Whether the actor is playing"
msgstr "Apakah aktor akan digambar"
#: clutter/clutter-media.c:106
#, fuzzy
msgid "Progress"
msgstr "Kemajuan"
#: clutter/clutter-media.c:107
#, fuzzy
msgid "Current progress of the playback"
msgstr "Menyatakan tingkat kemajuan pengunduhan"
#: clutter/clutter-media.c:120
#, fuzzy
msgid "Subtitle URI"
msgstr "URI asal"
#: clutter/clutter-media.c:121
#, fuzzy
msgid "URI of a subtitle file"
msgstr "URI berkas audio"
#: clutter/clutter-media.c:136
#, fuzzy
msgid "Subtitle Font Name"
msgstr "Nama fonta yang dipilih"
#: clutter/clutter-media.c:137
#, fuzzy
msgid "The font used to display subtitles"
msgstr "Ukuran huruf yang digunakan untuk menampilkan log"
#: clutter/clutter-media.c:151
#, fuzzy
msgid "Audio Volume"
msgstr "Volume audio"
#: clutter/clutter-media.c:152
#, fuzzy
msgid "The volume of the audio"
msgstr "Volume audio"
#: clutter/clutter-media.c:165
#, fuzzy
msgid "Can Seek"
msgstr "Cari Ke Depan"
#: clutter/clutter-media.c:166
msgid "Whether the current stream is seekable"
msgstr ""
#: clutter/clutter-media.c:180
#, fuzzy
msgid "Buffer Fill"
msgstr "Isi warna"
#: clutter/clutter-media.c:181
#, fuzzy
msgid "The fill level of the buffer"
msgstr "Tampilkan Tingkat Pengisian"
#: clutter/clutter-media.c:195
#, fuzzy
msgid "The duration of the stream, in seconds"
msgstr "Durasi lagu dalam detik."
#: clutter/clutter-path-constraint.c:213
msgid "The path used to constrain an actor"
msgstr ""
#: clutter/clutter-path-constraint.c:227
msgid "The offset along the path, between -1.0 and 2.0"
msgstr ""
#: clutter/clutter-rectangle.c:268
#, fuzzy
msgid "The color of the rectangle"
msgstr "Kotak pilihan"
#: clutter/clutter-rectangle.c:281
#, fuzzy
msgid "Border Color"
msgstr "Warna garis"
#: clutter/clutter-rectangle.c:282
#, fuzzy
msgid "The color of the border of the rectangle"
msgstr "Warna pinggir sorotan"
#: clutter/clutter-rectangle.c:297
#, fuzzy
msgid "Border Width"
msgstr "Lebar batas"
#: clutter/clutter-rectangle.c:298
#, fuzzy
msgid "The width of the border of the rectangle"
msgstr "Lebar kotak rekaman"
#: clutter/clutter-rectangle.c:312
#, fuzzy
msgid "Has Border"
msgstr "Bingkai Jendela"
#: clutter/clutter-rectangle.c:313
msgid "Whether the rectangle should have a border"
msgstr ""
#: clutter/clutter-script.c:434
#, fuzzy
msgid "Filename Set"
msgstr "Tetapkan nama file"
#: clutter/clutter-script.c:435
msgid "Whether the :filename property is set"
msgstr ""
#: clutter/clutter-script.c:449 clutter/clutter-texture.c:1081
msgid "Filename"
msgstr "Nama Berkas"
#: clutter/clutter-script.c:450
msgid "The path of the currently parsed file"
msgstr ""
#: clutter/clutter-settings.c:362
msgid "Double Click Time"
msgstr ""
#: clutter/clutter-settings.c:363
msgid "The time between clicks necessary to detect a multiple click"
msgstr ""
#: clutter/clutter-settings.c:378
msgid "Double Click Distance"
msgstr ""
#: clutter/clutter-settings.c:379
msgid "The distance between clicks necessary to detect a multiple click"
msgstr ""
#: clutter/clutter-settings.c:394
msgid "Drag Threshold"
msgstr ""
#: clutter/clutter-settings.c:395
msgid "The distance the cursor should travel before starting to drag"
msgstr ""
#: clutter/clutter-settings.c:410 clutter/clutter-text.c:2799
msgid "Font Name"
msgstr "Nama Fonta"
#: clutter/clutter-settings.c:411
msgid ""
"The description of the default font, as one that could be parsed by Pango"
msgstr ""
#: clutter/clutter-settings.c:426
msgid "Font Antialias"
msgstr ""
#: clutter/clutter-settings.c:427
msgid ""
"Whether to use antialiasing (1 to enable, 0 to disable, and -1 to use the "
"default)"
msgstr ""
#: clutter/clutter-settings.c:443
msgid "Font DPI"
msgstr ""
#: clutter/clutter-settings.c:444
msgid ""
"The resolution of the font, in 1024 * dots/inch, or -1 to use the default"
msgstr ""
#: clutter/clutter-settings.c:460
#, fuzzy
msgid "Font Hinting"
msgstr "Deskripsi fonta"
#: clutter/clutter-settings.c:461
msgid ""
"Whether to use hinting (1 to enable, 0 to disable and -1 to use the default)"
msgstr ""
#: clutter/clutter-settings.c:482
msgid "Font Hint Style"
msgstr ""
#: clutter/clutter-settings.c:483
msgid "The style of hinting (hintnone, hintslight, hintmedium, hintfull)"
msgstr ""
#: clutter/clutter-settings.c:504
msgid "Font Subpixel Order"
msgstr ""
#: clutter/clutter-settings.c:505
msgid "The type of subpixel antialiasing (none, rgb, bgr, vrgb, vbgr)"
msgstr ""
#: clutter/clutter-settings.c:522
msgid "The minimum duration for a long press gesture to be recognized"
msgstr ""
#: clutter/clutter-shader.c:255
#, fuzzy
msgid "Vertex Source"
msgstr "Asal IP"
#: clutter/clutter-shader.c:256
msgid "Source of vertex shader"
msgstr ""
#: clutter/clutter-shader.c:272
#, fuzzy
msgid "Fragment Source"
msgstr "Asal IP"
#: clutter/clutter-shader.c:273
msgid "Source of fragment shader"
msgstr ""
#: clutter/clutter-shader.c:290
msgid "Compiled"
msgstr ""
#: clutter/clutter-shader.c:291
msgid "Whether the shader is compiled and linked"
msgstr ""
#: clutter/clutter-shader.c:308
#, fuzzy
msgid "Whether the shader is enabled"
msgstr "Menentukan apkaah aksi diaktifkan"
#: clutter/clutter-shader.c:519
#, fuzzy, c-format
msgid "%s compilation failed: %s"
msgstr "Pemasangan Gagal"
#: clutter/clutter-shader.c:520
#, fuzzy
msgid "Vertex shader"
msgstr "Bahasa CG Shader"
#: clutter/clutter-shader.c:521
#, fuzzy
msgid "Fragment shader"
msgstr "Bahasa CG Shader"
#: clutter/clutter-shader-effect.c:415
#, fuzzy
msgid "Shader Type"
msgstr "Tipe Latar"
#: clutter/clutter-shader-effect.c:416
#, fuzzy
msgid "The type of shader used"
msgstr "Jenis arsip terakhir yang digunakan"
#: clutter/clutter-snap-constraint.c:322
#, fuzzy
msgid "The source of the constraint"
msgstr "Sumber perataan"
#: clutter/clutter-snap-constraint.c:335
msgid "From Edge"
msgstr ""
#: clutter/clutter-snap-constraint.c:336
#, fuzzy
msgid "The edge of the actor that should be snapped"
msgstr "Apakah aktor telah direalisasikan"
#: clutter/clutter-snap-constraint.c:350
msgid "To Edge"
msgstr ""
#: clutter/clutter-snap-constraint.c:351
msgid "The edge of the source that should be snapped"
msgstr ""
#: clutter/clutter-snap-constraint.c:367
msgid "The offset in pixels to apply to the constraint"
msgstr ""
#: clutter/clutter-stage.c:1705
#, fuzzy
msgid "Fullscreen Set"
msgstr "<small>Tata...</small>"
#: clutter/clutter-stage.c:1706
msgid "Whether the main stage is fullscreen"
msgstr ""
#: clutter/clutter-stage.c:1722
msgid "Offscreen"
msgstr ""
#: clutter/clutter-stage.c:1723
msgid "Whether the main stage should be rendered offscreen"
msgstr ""
#: clutter/clutter-stage.c:1735 clutter/clutter-text.c:2912
#, fuzzy
msgid "Cursor Visible"
msgstr "Kursor Nampak"
#: clutter/clutter-stage.c:1736
msgid "Whether the mouse pointer is visible on the main stage"
msgstr ""
#: clutter/clutter-stage.c:1750
#, fuzzy
msgid "User Resizable"
msgstr "_Ganti Pengguna"
#: clutter/clutter-stage.c:1751
msgid "Whether the stage is able to be resized via user interaction"
msgstr ""
#: clutter/clutter-stage.c:1764
#, fuzzy
msgid "The color of the stage"
msgstr "Pilih warna"
#: clutter/clutter-stage.c:1778
msgid "Perspective"
msgstr ""
#: clutter/clutter-stage.c:1779
msgid "Perspective projection parameters"
msgstr ""
#: clutter/clutter-stage.c:1794
msgid "Title"
msgstr "Judul"
#: clutter/clutter-stage.c:1795
#, fuzzy
msgid "Stage Title"
msgstr "Jabatan"
#: clutter/clutter-stage.c:1810
msgid "Use Fog"
msgstr "Gunakan Kabut"
#: clutter/clutter-stage.c:1811
msgid "Whether to enable depth cueing"
msgstr ""
#: clutter/clutter-stage.c:1825
msgid "Fog"
msgstr "Kabut"
#: clutter/clutter-stage.c:1826
msgid "Settings for the depth cueing"
msgstr ""
#: clutter/clutter-stage.c:1842
msgid "Use Alpha"
msgstr "Gunakan Alfa"
#: clutter/clutter-stage.c:1843
msgid "Whether to honour the alpha component of the stage color"
msgstr ""
#: clutter/clutter-stage.c:1859
#, fuzzy
msgid "Key Focus"
msgstr "Ambil Fokus"
#: clutter/clutter-stage.c:1860
msgid "The currently key focused actor"
msgstr ""
#: clutter/clutter-stage.c:1876
msgid "No Clear Hint"
msgstr ""
#: clutter/clutter-stage.c:1877
msgid "Whether the stage should clear its contents"
msgstr ""
#: clutter/clutter-stage.c:1890
#, fuzzy
msgid "Accept Focus"
msgstr "Ambil Fokus"
#: clutter/clutter-stage.c:1891
msgid "Whether the stage should accept focus on show"
msgstr ""
#: clutter/clutter-state.c:1472
#, fuzzy
msgid "State"
msgstr "Kondisi"
#: clutter/clutter-state.c:1473
msgid "Currently set state, (transition to this state might not be complete)"
msgstr ""
#: clutter/clutter-state.c:1487
msgid "Default transition duration"
msgstr ""
#: clutter/clutter-table-layout.c:585
msgid "Column Number"
msgstr ""
#: clutter/clutter-table-layout.c:586
msgid "The column the widget resides in"
msgstr ""
#: clutter/clutter-table-layout.c:593
msgid "Row Number"
msgstr ""
#: clutter/clutter-table-layout.c:594
msgid "The row the widget resides in"
msgstr ""
#: clutter/clutter-table-layout.c:601
#, fuzzy
msgid "Column Span"
msgstr "Jarak Antar Kolom"
#: clutter/clutter-table-layout.c:602
#, fuzzy
msgid "The number of columns the widget should span"
msgstr "Nama perangkat"
#: clutter/clutter-table-layout.c:609
#, fuzzy
msgid "Row Span"
msgstr "Jarak Antar Baris"
#: clutter/clutter-table-layout.c:610
#, fuzzy
msgid "The number of rows the widget should span"
msgstr "Nama perangkat"
#: clutter/clutter-table-layout.c:617
#, fuzzy
msgid "Horizontal Expand"
msgstr "Tombol Pengulangan"
#: clutter/clutter-table-layout.c:618
msgid "Allocate extra space for the child in horizontal axis"
msgstr ""
#: clutter/clutter-table-layout.c:624
#, fuzzy
msgid "Vertical Expand"
msgstr "Tombol Pengulangan"
#: clutter/clutter-table-layout.c:625
msgid "Allocate extra space for the child in vertical axis"
msgstr ""
#: clutter/clutter-table-layout.c:1712
#, fuzzy
msgid "Spacing between columns"
msgstr "Ruang antar cells"
#: clutter/clutter-table-layout.c:1726
#, fuzzy
msgid "Spacing between rows"
msgstr "Ruang antar cells"
#: clutter/clutter-text.c:2800
msgid "The font to be used by the text"
msgstr ""
#: clutter/clutter-text.c:2817
#, fuzzy
msgid "Font Description"
msgstr "Deskripsi fonta"
#: clutter/clutter-text.c:2818
#, fuzzy
msgid "The font description to be used"
msgstr "Jenis huruf yang digunakan ketika mencetak"
#: clutter/clutter-text.c:2834
msgid "Text"
msgstr "Teks"
#: clutter/clutter-text.c:2835
#, fuzzy
msgid "The text to render"
msgstr "Teks yang hendak ditulis"
#: clutter/clutter-text.c:2849
msgid "Font Color"
msgstr "Warna Fonta"
#: clutter/clutter-text.c:2850
msgid "Color of the font used by the text"
msgstr ""
#: clutter/clutter-text.c:2864
#, fuzzy
msgid "Editable"
msgstr "Dapat diedit"
#: clutter/clutter-text.c:2865
#, fuzzy
msgid "Whether the text is editable"
msgstr "Apakah entri ini dapat diterjemahkan"
#: clutter/clutter-text.c:2880
#, fuzzy
msgid "Selectable"
msgstr "Dapat dipilih"
#: clutter/clutter-text.c:2881
#, fuzzy
msgid "Whether the text is selectable"
msgstr "Menentukan apakah teks ini disembunyikan"
#: clutter/clutter-text.c:2895
#, fuzzy
msgid "Activatable"
msgstr "Dapat diaktifkan"
#: clutter/clutter-text.c:2896
msgid "Whether pressing return causes the activate signal to be emitted"
msgstr ""
#: clutter/clutter-text.c:2913
msgid "Whether the input cursor is visible"
msgstr ""
#: clutter/clutter-text.c:2927 clutter/clutter-text.c:2928
msgid "Cursor Color"
msgstr "Warna Kursor"
#: clutter/clutter-text.c:2942
#, fuzzy
msgid "Cursor Color Set"
msgstr "Warna latar belakang sudah diset"
#: clutter/clutter-text.c:2943
msgid "Whether the cursor color has been set"
msgstr ""
#: clutter/clutter-text.c:2958
msgid "Cursor Size"
msgstr "Ukuran Kursor"
#: clutter/clutter-text.c:2959
#, fuzzy
msgid "The width of the cursor, in pixels"
msgstr "Lebar cuplikan layar (dalam piksel):"
#: clutter/clutter-text.c:2973
#, fuzzy
msgid "Cursor Position"
msgstr "Posisi Kursor"
#: clutter/clutter-text.c:2974
#, fuzzy
msgid "The cursor position"
msgstr "Posisi Kursor"
#: clutter/clutter-text.c:2989
#, fuzzy
msgid "Selection-bound"
msgstr "Batas Seleksi"
#: clutter/clutter-text.c:2990
msgid "The cursor position of the other end of the selection"
msgstr ""
#: clutter/clutter-text.c:3005 clutter/clutter-text.c:3006
msgid "Selection Color"
msgstr "Warna Pilihan"
#: clutter/clutter-text.c:3020
msgid "Selection Color Set"
msgstr "Warna Pilihan Ditata"
#: clutter/clutter-text.c:3021
msgid "Whether the selection color has been set"
msgstr "Apakah warna pilihan telah ditata"
#: clutter/clutter-text.c:3036
msgid "Attributes"
msgstr "Atribut"
#: clutter/clutter-text.c:3037
msgid "A list of style attributes to apply to the contents of the actor"
msgstr ""
#: clutter/clutter-text.c:3059
#, fuzzy
msgid "Use markup"
msgstr "Gunakan markup"
#: clutter/clutter-text.c:3060
msgid "Whether or not the text includes Pango markup"
msgstr ""
#: clutter/clutter-text.c:3076
#, fuzzy
msgid "Line wrap"
msgstr "Potong baris"
#: clutter/clutter-text.c:3077
#, fuzzy
msgid "If set, wrap the lines if the text becomes too wide"
msgstr "Jika ini diset, baris akan dipotong bila terlalu lebar."
#: clutter/clutter-text.c:3092
#, fuzzy
msgid "Line wrap mode"
msgstr "Mode pelipatan baris"
#: clutter/clutter-text.c:3093
msgid "Control how line-wrapping is done"
msgstr ""
#: clutter/clutter-text.c:3108
#, fuzzy
msgid "Ellipsize"
msgstr "Elipsis"
#: clutter/clutter-text.c:3109
msgid "The preferred place to ellipsize the string"
msgstr ""
#: clutter/clutter-text.c:3125
msgid "Line Alignment"
msgstr "Perataan Baris"
#: clutter/clutter-text.c:3126
msgid "The preferred alignment for the string, for multi-line text"
msgstr ""
#: clutter/clutter-text.c:3142
msgid "Justify"
msgstr "Diratakan"
#: clutter/clutter-text.c:3143
msgid "Whether the text should be justified"
msgstr ""
#: clutter/clutter-text.c:3158
msgid "Password Character"
msgstr "Karakter Sandi"
#: clutter/clutter-text.c:3159
msgid "If non-zero, use this character to display the actor's contents"
msgstr ""
#: clutter/clutter-text.c:3173
msgid "Max Length"
msgstr "Panjang Maks"
#: clutter/clutter-text.c:3174
msgid "Maximum length of the text inside the actor"
msgstr ""
#: clutter/clutter-text.c:3197
#, fuzzy
msgid "Single Line Mode"
msgstr "Moda Satu Baris"
#: clutter/clutter-text.c:3198
msgid "Whether the text should be a single line"
msgstr ""
#: clutter/clutter-text.c:3212 clutter/clutter-text.c:3213
#, fuzzy
msgid "Selected Text Color"
msgstr "Warna Pilihan"
#: clutter/clutter-text.c:3227
#, fuzzy
msgid "Selected Text Color Set"
msgstr "Warna Pilihan Ditata"
#: clutter/clutter-text.c:3228
#, fuzzy
msgid "Whether the selected text color has been set"
msgstr "Apakah warna pilihan telah ditata"
#: clutter/clutter-texture.c:995
msgid "Sync size of actor"
msgstr ""
#: clutter/clutter-texture.c:996
msgid "Auto sync size of actor to underlying pixbuf dimensions"
msgstr ""
#: clutter/clutter-texture.c:1003
#, fuzzy
msgid "Disable Slicing"
msgstr "Metode mengiris"
#: clutter/clutter-texture.c:1004
msgid ""
"Forces the underlying texture to be singular and not made of smaller space "
"saving individual textures"
msgstr ""
#: clutter/clutter-texture.c:1013
#, fuzzy
msgid "Tile Waste"
msgstr "%s pada waste"
#: clutter/clutter-texture.c:1014
msgid "Maximum waste area of a sliced texture"
msgstr ""
#: clutter/clutter-texture.c:1022
#, fuzzy
msgid "Horizontal repeat"
msgstr "Tombol Pengulangan"
#: clutter/clutter-texture.c:1023
msgid "Repeat the contents rather than scaling them horizontally"
msgstr ""
#: clutter/clutter-texture.c:1030
#, fuzzy
msgid "Vertical repeat"
msgstr "Tombol Pengulangan"
#: clutter/clutter-texture.c:1031
msgid "Repeat the contents rather than scaling them vertically"
msgstr ""
#: clutter/clutter-texture.c:1038
#, fuzzy
msgid "Filter Quality"
msgstr "Kualitas Gambar"
#: clutter/clutter-texture.c:1039
msgid "Rendering quality used when drawing the texture"
msgstr ""
#: clutter/clutter-texture.c:1047
#, fuzzy
msgid "Pixel Format"
msgstr "Bentuk bebas"
#: clutter/clutter-texture.c:1048
msgid "The Cogl pixel format to use"
msgstr ""
#: clutter/clutter-texture.c:1056
#, fuzzy
msgid "Cogl Texture"
msgstr "Latar belakang tekstur ubin"
#: clutter/clutter-texture.c:1057
msgid "The underlying Cogl texture handle used to draw this actor"
msgstr ""
#: clutter/clutter-texture.c:1064
#, fuzzy
msgid "Cogl Material"
msgstr "Riwayat sebelumnya"
#: clutter/clutter-texture.c:1065
msgid "The underlying Cogl material handle used to draw this actor"
msgstr ""
#: clutter/clutter-texture.c:1082
msgid "The path of the file containing the image data"
msgstr ""
#: clutter/clutter-texture.c:1089
#, fuzzy
msgid "Keep Aspect Ratio"
msgstr "_Pakai aspek rasio"
#: clutter/clutter-texture.c:1090
msgid ""
"Keep the aspect ratio of the texture when requesting the preferred width or "
"height"
msgstr ""
#: clutter/clutter-texture.c:1116
#, fuzzy
msgid "Load asynchronously"
msgstr "Beban Rata-rata"
#: clutter/clutter-texture.c:1117
msgid ""
"Load files inside a thread to avoid blocking when loading images from disk"
msgstr ""
#: clutter/clutter-texture.c:1133
msgid "Load data asynchronously"
msgstr ""
#: clutter/clutter-texture.c:1134
msgid ""
"Decode image data files inside a thread to reduce blocking when loading "
"images from disk"
msgstr ""
#: clutter/clutter-texture.c:1158
msgid "Pick With Alpha"
msgstr ""
#: clutter/clutter-texture.c:1159
msgid "Shape actor with alpha channel when picking"
msgstr ""
#: clutter/clutter-texture.c:1557 clutter/clutter-texture.c:1967
#: clutter/clutter-texture.c:2062 clutter/clutter-texture.c:2343
msgid "Failed to load the image data"
msgstr ""
#: clutter/clutter-texture.c:1703
msgid "YUV textures are not supported"
msgstr ""
#: clutter/clutter-texture.c:1712
msgid "YUV2 textues are not supported"
msgstr ""
#: clutter/clutter-timeline.c:264
msgid "Should the timeline automatically restart"
msgstr ""
#: clutter/clutter-timeline.c:278
msgid "Delay"
msgstr ""
#: clutter/clutter-timeline.c:279
msgid "Delay before start"
msgstr ""
#: clutter/clutter-timeline.c:295
#, fuzzy
msgid "Duration of the timeline in milliseconds"
msgstr "Durasi lagu dalam detik."
#: clutter/clutter-timeline.c:311
#, fuzzy
msgid "Direction of the timeline"
msgstr "Arah teks"
#: clutter/clutter-timeline.c:326
msgid "Auto Reverse"
msgstr ""
#: clutter/clutter-timeline.c:327
msgid "Whether the direction should be reversed when reaching the end"
msgstr ""
#: clutter/evdev/clutter-input-device-evdev.c:147
msgid "sysfs Path"
msgstr ""
#: clutter/evdev/clutter-input-device-evdev.c:148
#, fuzzy
msgid "Path of the device in sysfs"
msgstr "Nama perangkat"
#: clutter/evdev/clutter-input-device-evdev.c:163
#, fuzzy
msgid "Device Path"
msgstr "Manajer"
#: clutter/evdev/clutter-input-device-evdev.c:164
#, fuzzy
msgid "Path of the device node"
msgstr "Nama perangkat"
#: clutter/x11/clutter-backend-x11.c:483
#, fuzzy
msgid "X display to use"
msgstr "Tampilan X yang digunakan"
#: clutter/x11/clutter-backend-x11.c:489
#, fuzzy
msgid "X screen to use"
msgstr "Layar X yang digunakan"
#: clutter/x11/clutter-backend-x11.c:494
#, fuzzy
msgid "Make X calls synchronous"
msgstr "Buat panggilan X sinkronus"
#: clutter/x11/clutter-backend-x11.c:501
#, fuzzy
msgid "Enable XInput support"
msgstr "Aktifkan dukungan IPv4"
#: clutter/x11/clutter-keymap-x11.c:317
msgid "The Clutter backend"
msgstr ""
#: clutter/x11/clutter-x11-texture-pixmap.c:545
msgid "Pixmap"
msgstr "Pixmap"
#: clutter/x11/clutter-x11-texture-pixmap.c:546
msgid "The X11 Pixmap to be bound"
msgstr ""
#: clutter/x11/clutter-x11-texture-pixmap.c:554
msgid "Pixmap width"
msgstr "Lebar pixmap"
#: clutter/x11/clutter-x11-texture-pixmap.c:555
msgid "The width of the pixmap bound to this texture"
msgstr ""
#: clutter/x11/clutter-x11-texture-pixmap.c:563
msgid "Pixmap height"
msgstr "Tinggi pixmap"
#: clutter/x11/clutter-x11-texture-pixmap.c:564
msgid "The height of the pixmap bound to this texture"
msgstr ""
#: clutter/x11/clutter-x11-texture-pixmap.c:572
msgid "Pixmap Depth"
msgstr "Kedalaman Pixmap"
#: clutter/x11/clutter-x11-texture-pixmap.c:573
msgid "The depth (in number of bits) of the pixmap bound to this texture"
msgstr ""
#: clutter/x11/clutter-x11-texture-pixmap.c:581
msgid "Automatic Updates"
msgstr "Pemutakhiran Otomatis"
#: clutter/x11/clutter-x11-texture-pixmap.c:582
msgid "If the texture should be kept in sync with any pixmap changes."
msgstr ""
#: clutter/x11/clutter-x11-texture-pixmap.c:590
msgid "Window"
msgstr "Jendela"
#: clutter/x11/clutter-x11-texture-pixmap.c:591
msgid "The X11 Window to be bound"
msgstr ""
#: clutter/x11/clutter-x11-texture-pixmap.c:599
#, fuzzy
msgid "Window Redirect Automatic"
msgstr "Perlihatkan Window K&omentar Otomatis"
#: clutter/x11/clutter-x11-texture-pixmap.c:600
msgid "If composite window redirects are set to Automatic (or Manual if false)"
msgstr ""
#: clutter/x11/clutter-x11-texture-pixmap.c:610
#, fuzzy
msgid "Window Mapped"
msgstr "Daftar Jendela Program"
#: clutter/x11/clutter-x11-texture-pixmap.c:611
msgid "If window is mapped"
msgstr ""
#: clutter/x11/clutter-x11-texture-pixmap.c:620
msgid "Destroyed"
msgstr ""
#: clutter/x11/clutter-x11-texture-pixmap.c:621
msgid "If window has been destroyed"
msgstr ""
#: clutter/x11/clutter-x11-texture-pixmap.c:629
msgid "Window X"
msgstr "X Jendela"
#: clutter/x11/clutter-x11-texture-pixmap.c:630
msgid "X position of window on screen according to X11"
msgstr ""
#: clutter/x11/clutter-x11-texture-pixmap.c:638
msgid "Window Y"
msgstr "Y Jendela"
#: clutter/x11/clutter-x11-texture-pixmap.c:639
msgid "Y position of window on screen according to X11"
msgstr ""
#: clutter/x11/clutter-x11-texture-pixmap.c:646
msgid "Window Override Redirect"
msgstr ""
#: clutter/x11/clutter-x11-texture-pixmap.c:647
msgid "If this is an override-redirect window"
msgstr ""
#, fuzzy
#~ msgid "Cogl debugging flags to set"
#~ msgstr "Bendera debug Gdk yang hendak dipasang"
#, fuzzy
#~ msgid "Cogl debugging flags to unset"
#~ msgstr "Bendera debug Gdk yang hendak dilepas"
#, fuzzy
#~ msgid "Cogl Options"
#~ msgstr "Pilihan GTK+"
#, fuzzy
#~ msgid "Show Cogl options"
#~ msgstr "Tampilkan opsi pengawa-kutuan"
#~ msgid "Position"
#~ msgstr "Posisi"
|