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
|
# Translation of totem master to Indonesian
# Copyright (C) 2004 THE totem's COPYRIGHT HOLDER
# This file is distributed under the same license as the totem package.
#
# Dicky Wahyu Purnomo <dicky.wahyu@massaint.or.id>, 2004.
# Ahmad Riza H Nst <ari@160c.afraid.org>, 2005.
# Andy Apdhani <imtheface@gmail.com>, 2007.
# Dirgita <dirgitadevina@yahoo.co.id>, 2010, 2011.
# Andika Triwidada <andika@gmail.com>, 2011, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: totem master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=totem&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2012-06-25 16:01+0000\n"
"PO-Revision-Date: 2012-06-28 07:55+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"
"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Lokalize 1.1\n"
"X-Poedit-Language: Indonesian\n"
"X-Poedit-Country: INDONESIA\n"
#: ../browser-plugin/totem-plugin-viewer.c:352
#: ../src/totem-object.c:1130
#: ../src/totem-object.c:1590
#: ../src/totem-statusbar.c:115
msgid "Stopped"
msgstr "Berhenti"
#: ../browser-plugin/totem-plugin-viewer.c:364
#: ../src/totem-object.c:1123
msgid "Paused"
msgstr "Ditahan"
#: ../browser-plugin/totem-plugin-viewer.c:368
#: ../src/totem-object.c:1116
msgid "Playing"
msgstr "Memutar"
#: ../browser-plugin/totem-plugin-viewer.c:386
#: ../src/plugins/screensaver/totem-screensaver.c:84
msgid "Playing a movie"
msgstr "Memutar film"
#: ../browser-plugin/totem-plugin-viewer.c:443
msgid "No URI to play"
msgstr "Tidak ada URI untuk dimainkan"
#: ../browser-plugin/totem-plugin-viewer.c:676
#: ../browser-plugin/totem-plugin-viewer.c:1716
msgid "Totem Movie Player"
msgstr "Totem Pemutar Film"
#. translators: this is:
#. * Open With ApplicationName
#. * as in nautilus' right-click menu
#: ../browser-plugin/totem-plugin-viewer.c:1120
#, c-format
msgid "_Open with \"%s\""
msgstr "_Buka dengan \"%s\""
#: ../browser-plugin/totem-plugin-viewer.c:1341
#: ../src/totem-object.c:2417
#: ../src/totem-object.c:2419
msgid "An error occurred"
msgstr "Terjadi galat"
#: ../browser-plugin/totem-plugin-viewer.c:2049
msgid "No playlist or playlist empty"
msgstr "Tidak ada daftar main atau daftar main kosong"
#: ../browser-plugin/totem-plugin-viewer.c:2144
msgid "Movie browser plugin"
msgstr "Pengaya peramban film"
#: ../browser-plugin/totem-plugin-viewer.c:2160
#: ../src/totem.c:238
msgid "Could not initialize the thread-safe libraries."
msgstr "Tidak dapat menjalankan pustaka thread-safe."
#: ../browser-plugin/totem-plugin-viewer.c:2160
msgid "Verify your system installation. The Totem plugin will now exit."
msgstr "Periksa instalasi sistem Anda. Pengaya Totem akan keluar sekarang."
#: ../data/fullscreen.ui.h:1
msgid "Leave Fullscreen"
msgstr "Keluar dari Layar Penuh"
#: ../data/fullscreen.ui.h:2
#: ../data/totem.ui.h:81
msgid "Time:"
msgstr "Waktu:"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:1
msgid "Allow the screensaver to activate when playing audio"
msgstr "Perbolehkan pengaman layar untuk aktif saat memutar audio"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:2
msgid "Allow the screensaver to activate when playing audio. Disable if you have monitor-powered speakers."
msgstr "Memperbolehkan pengaman layar untuk aktif saat memutar audio. Nonaktifkan apabila Anda memiliki pengeras suara dengan sumber daya yang disediakan oleh monitor."
#: ../data/org.gnome.totem.gschema.xml.in.in.h:3
msgid "Show visual effects when no video is displayed"
msgstr "Menampilkan efek visual saat tidak ada video yang diputar"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:4
msgid "Show visual effects when playing an audio only file."
msgstr "Menampilkan efek visual saat memutar audio."
#: ../data/org.gnome.totem.gschema.xml.in.in.h:5
msgid "Name of the visual effects plugin"
msgstr "Nama dari pengaya efek visual"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:6
msgid "The brightness of the video"
msgstr "Kecerahan video"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:7
msgid "The contrast of the video"
msgstr "Kekontrasan video"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:8
msgid "The hue of the video"
msgstr "Kualitas warna video"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:9
msgid "The saturation of the video"
msgstr "Saturasi video"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:10
msgid "Resize the canvas automatically on file load"
msgstr "Otomatis mengubah ukuran kanvas saat membuka berkas"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:11
msgid "Repeat mode"
msgstr "Modus berulang"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:12
msgid "Shuffle mode"
msgstr "Modus acak"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:13
msgid "Whether to disable deinterlacing for interlaced movies"
msgstr "Apakah menonaktifkan deinterlasi terhadap film yang memiliki interlasi"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:14
msgid "Whether to enable debug for the playback engine"
msgstr "Apakah debuh diaktifkan untuk aplikasi pemutar"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:15
msgid "Type of audio output to use"
msgstr "Jenis keluaran audio yang ingin digunakan"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:16
msgid "Visualization quality setting"
msgstr "Setelan kualitas visualisasi"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:17
msgid "Quality setting for the audio visualization."
msgstr "Pengaturan kualitas bagi visualisasi suara."
#: ../data/org.gnome.totem.gschema.xml.in.in.h:18
msgid "Network buffering threshold"
msgstr "Ambang sangga jaringan"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:19
msgid "Amount of data to buffer for network streams before starting to display the stream (in seconds)."
msgstr "Banyaknya data yang disangga untuk stream jaringan sebelum menampilkan stream (dalam detik)."
#: ../data/org.gnome.totem.gschema.xml.in.in.h:20
msgid "Subtitle font"
msgstr "Fonta subtitel"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:21
msgid "Pango font description for subtitle rendering."
msgstr "Deskripsi fonta Pango untuk merender teks subtitel."
#: ../data/org.gnome.totem.gschema.xml.in.in.h:22
msgid "Subtitle encoding"
msgstr "Enkode subtitel"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:23
msgid "Encoding character set for subtitle."
msgstr "Pengkodean set karakter untuk subtitel."
#: ../data/org.gnome.totem.gschema.xml.in.in.h:24
msgid "Default location for the \"Open...\" dialogs"
msgstr "Lokasi utama untuk dialog \"Buka...\""
#: ../data/org.gnome.totem.gschema.xml.in.in.h:25
msgid "Default location for the \"Open...\" dialogs. Default is the current directory."
msgstr "Lokasi bawaan untuk dialog \"Buka...\". Lokasi bawaan adalah direktori kini."
#: ../data/org.gnome.totem.gschema.xml.in.in.h:26
msgid "Default location for the \"Take Screenshot\" dialogs"
msgstr "Lokasi utama untuk dialog \"Ambil Cuplikan\""
#: ../data/org.gnome.totem.gschema.xml.in.in.h:27
msgid "Default location for the \"Take Screenshot\" dialogs. Default is the Pictures directory."
msgstr "Lokasi bawaan untuk dialog \"Ambil Cuplikan\". Lokasi bawaan adalah direktori Gambar."
#: ../data/org.gnome.totem.gschema.xml.in.in.h:28
msgid "Whether to disable the plugins in the user's home directory"
msgstr "Apakah pengaya dinonaktifkan untuk direktori rumah pengguna"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:29
msgid "Whether to disable the keyboard shortcuts"
msgstr "Apakah tombol pintas papan ketik dinonaktifkan"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:30
msgid "Whether to autoload text subtitle files when a movie is loaded"
msgstr "Apakah teks subtitel dimuat otomatis saat film dibuka"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:31
msgid "Whether to autoload external chapter files when a movie is loaded"
msgstr "Apakah bab eksternal dimuat otomatis saat film dibuka"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:32
msgid "Whether to remember the position of played audio/video files when pausing or closing them"
msgstr "Apakah posisi audio/video yang diputar tetap diingat saat audio/video tersebut ditahan atau ditutup"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:33
msgid "Active plugins list"
msgstr "Daftar pengaya aktif"
#: ../data/org.gnome.totem.gschema.xml.in.in.h:34
msgid "A list of the names of the plugins which are currently active (loaded and running)."
msgstr "Daftar nama pengaya yang kini aktif (dimuat dan sedang berjalan)."
#: ../data/playlist.ui.h:1
msgid "_Remove"
msgstr "_Hapus"
#: ../data/playlist.ui.h:2
msgid "Remove file from playlist"
msgstr "Hapus berkas dari daftar main"
#: ../data/playlist.ui.h:3
#: ../data/video-list.ui.h:3
msgid "_Copy Location"
msgstr "_Salin Lokasi"
#: ../data/playlist.ui.h:4
#: ../data/video-list.ui.h:4
msgid "Copy the location to the clipboard"
msgstr "Salin lokasi ke papan klip"
#: ../data/playlist.ui.h:5
#: ../data/totem.ui.h:71
msgid "_Select Text Subtitles..."
msgstr "Pilih Tek_s Subtitel..."
#: ../data/playlist.ui.h:6
#: ../data/totem.ui.h:72
msgid "Select a file to use for text subtitles"
msgstr "Memilih berkas untuk teks subtitel"
#: ../data/playlist.ui.h:7
msgid "Add..."
msgstr "Tambah..."
#: ../data/playlist.ui.h:8
msgid "Remove"
msgstr "Hapus"
#: ../data/playlist.ui.h:9
msgid "Save Playlist..."
msgstr "Simpan Daftar Main..."
#: ../data/playlist.ui.h:10
msgid "Move Up"
msgstr "Naik"
#: ../data/playlist.ui.h:11
msgid "Move Down"
msgstr "Turun"
#. Audio visualization dimensions
#: ../data/preferences.ui.h:2
msgid "Normal"
msgstr "Normal"
#. Audio visualization dimensions
#: ../data/preferences.ui.h:4
msgid "Large"
msgstr "Besar"
#. Audio visualization dimensions
#: ../data/preferences.ui.h:6
msgid "Extra Large"
msgstr "Sangat Besar"
#: ../data/preferences.ui.h:7
#: ../src/backend/bacon-video-widget-gst-0.10.c:5403
#: ../src/totem-properties-view.c:228
msgid "Stereo"
msgstr "Stereo"
#: ../data/preferences.ui.h:8
msgid "4-channel"
msgstr "4 kanal"
#: ../data/preferences.ui.h:9
msgid "4.1-channel"
msgstr "4.1 kanal"
#: ../data/preferences.ui.h:10
msgid "5.0-channel"
msgstr "5.0 kanal"
#: ../data/preferences.ui.h:11
msgid "5.1-channel"
msgstr "5.1 kanal"
#: ../data/preferences.ui.h:12
msgid "AC3 Passthrough"
msgstr "Lewatan AC3"
#: ../data/preferences.ui.h:13
msgid "Totem Preferences"
msgstr "Preferensi Totem"
#: ../data/preferences.ui.h:14
msgid "Playback"
msgstr "Putar"
#: ../data/preferences.ui.h:15
msgid "Start playing files from last position"
msgstr "Mulai memutar berkas dari posisi terakhir"
#: ../data/preferences.ui.h:16
msgid "Text Subtitles"
msgstr "Teks Subtitel"
#: ../data/preferences.ui.h:17
msgid "_Load subtitle files when movie is loaded"
msgstr "Memuat berkas subtite_l saat film dibuka"
#: ../data/preferences.ui.h:18
msgid "_Font:"
msgstr "_Fonta:"
#: ../data/preferences.ui.h:19
msgid "_Encoding:"
msgstr "_Enkoding:"
#: ../data/preferences.ui.h:20
msgid "External Chapters"
msgstr "Bab Eksternal"
#: ../data/preferences.ui.h:21
msgid "Load _chapter files when movie is loaded"
msgstr "Memuat berkas _bab saat film dibuka"
#: ../data/preferences.ui.h:22
#: ../data/properties.ui.h:1
msgid "General"
msgstr "Umum"
#. Tab label in the Preferences dialogue
#: ../data/preferences.ui.h:24
msgid "Display"
msgstr "Tampilan"
#: ../data/preferences.ui.h:25
msgid "_Resize the window when a new video is loaded"
msgstr "Mengubah uku_ran jendela saat video baru dibuka"
#: ../data/preferences.ui.h:26
msgid "Disable _deinterlacing of interlaced videos"
msgstr "Nonaktifkan _deinterlasi video yang berinterlasi"
#: ../data/preferences.ui.h:27
msgid "Disable screensaver when playing "
msgstr "Nonaktifkan pengaman layar saat memainkan media"
#: ../data/preferences.ui.h:28
#: ../data/properties.ui.h:9
#: ../src/totem-properties-view.c:270
msgid "Video"
msgstr "Video"
#: ../data/preferences.ui.h:29
msgid "Video or Audio"
msgstr "Video atau Audio"
#: ../data/preferences.ui.h:30
msgid "Visual Effects"
msgstr "Efek Visual"
#: ../data/preferences.ui.h:31
msgid "Show _visual effects when an audio file is played"
msgstr "Tampilkan efek _visual saat memutar audio"
#: ../data/preferences.ui.h:32
msgid "_Type of visualization:"
msgstr "_Jenis visualisasi:"
#: ../data/preferences.ui.h:33
msgid "Visualization _size:"
msgstr "Ukuran vi_sualisasi:"
#: ../data/preferences.ui.h:34
msgid "Color Balance"
msgstr "Keseimbangan Warna"
#: ../data/preferences.ui.h:35
msgid "_Brightness:"
msgstr "_Kecerahan:"
#: ../data/preferences.ui.h:36
msgid "Co_ntrast:"
msgstr "Ko_ntras:"
#: ../data/preferences.ui.h:37
msgid "Sat_uration:"
msgstr "Sat_urasi:"
#: ../data/preferences.ui.h:38
msgid "_Hue:"
msgstr "_Corak:"
#: ../data/preferences.ui.h:39
msgid "Reset to _Defaults"
msgstr "Kembali ke _Pengaturan Awal"
#: ../data/preferences.ui.h:40
msgid "Audio Output"
msgstr "Keluaran Audio"
#: ../data/preferences.ui.h:41
msgid "_Audio output type:"
msgstr "Jenis keluaran _audio:"
#: ../data/preferences.ui.h:42
#: ../data/properties.ui.h:14
#: ../src/totem-properties-view.c:268
msgid "Audio"
msgstr "Audio"
#: ../data/properties.ui.h:2
msgid "Title:"
msgstr "Judul:"
#: ../data/properties.ui.h:3
msgid "Artist:"
msgstr "Artis:"
#: ../data/properties.ui.h:4
msgid "Duration:"
msgstr "Durasi:"
#: ../data/properties.ui.h:5
msgid "Year:"
msgstr "Tahun:"
#: ../data/properties.ui.h:6
msgid "Album:"
msgstr "Album:"
#: ../data/properties.ui.h:7
msgid "Comment:"
msgstr "Komentar:"
#: ../data/properties.ui.h:8
msgid "Container:"
msgstr "Wadah:"
#: ../data/properties.ui.h:10
msgid "Dimensions:"
msgstr "Dimensi:"
#: ../data/properties.ui.h:11
msgid "Codec:"
msgstr "Kodek:"
#: ../data/properties.ui.h:12
msgid "Framerate:"
msgstr "Laju Gambar:"
#: ../data/properties.ui.h:13
msgid "Bitrate:"
msgstr "Laju bit:"
#: ../data/properties.ui.h:15
msgid "Sample rate:"
msgstr "Laju sampel:"
#: ../data/properties.ui.h:16
msgid "Channels:"
msgstr "Kanal:"
#. Title
#: ../data/totem.desktop.in.in.in.h:1
#: ../data/totem.ui.h:80
#: ../src/totem.c:237
#: ../src/totem.c:245
#: ../src/totem-menu.c:877
#: ../src/totem-object.c:1598
msgid "Videos"
msgstr "Video"
#: ../data/totem.desktop.in.in.in.h:2
msgid "Play movies"
msgstr "Memutar film"
#: ../data/totem.desktop.in.in.in.h:3
msgid "Video;Movie;Film;Clip;Series;Player;DVD;TV;Disc;"
msgstr "Video;Film;Klip;Seri;Pemutar;DVD;TV;Disc;"
#: ../data/totem.ui.h:1
msgid "_Open"
msgstr "_Buka"
#: ../data/totem.ui.h:2
msgid "Open _Location"
msgstr "Buka _Lokasi"
#: ../data/totem.ui.h:3
msgid "_Fullscreen"
msgstr "Layar _Penuh"
#: ../data/totem.ui.h:4
msgid "Prefere_nces"
msgstr "Prefere_nsi"
#: ../data/totem.ui.h:5
msgid "Shuff_le"
msgstr "A_cak"
#: ../data/totem.ui.h:6
msgid "_Repeat"
msgstr "Be_rulang"
#: ../data/totem.ui.h:7
msgid "_Quit"
msgstr "_Keluar"
#: ../data/totem.ui.h:8
msgid "_Movie"
msgstr "Fil_m"
#: ../data/totem.ui.h:9
msgid "_Eject"
msgstr "K_eluarkan"
#: ../data/totem.ui.h:10
msgid "Eject the current disc"
msgstr "Keluarkan diska"
#: ../data/totem.ui.h:11
msgid "_Properties"
msgstr "_Properti"
#: ../data/totem.ui.h:12
msgid "View the properties of the current stream"
msgstr "Melihat properti dari media yang bersangkutan"
#: ../data/totem.ui.h:13
msgid "Play / P_ause"
msgstr "Putar / T_ahan"
#: ../data/totem.ui.h:14
msgid "Play or pause the movie"
msgstr "Memutar atau menahan putaran film"
#: ../data/totem.ui.h:15
msgid "_Edit"
msgstr "_Sunting"
#: ../data/totem.ui.h:16
msgid "_Clear Playlist"
msgstr "_Bersihkan Daftar Main"
#: ../data/totem.ui.h:17
msgid "Clear the playlist"
msgstr "Membersihkan daftar main"
#: ../data/totem.ui.h:18
msgid "Plugins..."
msgstr "Pengaya..."
#: ../data/totem.ui.h:19
msgid "Configure plugins to extend the application"
msgstr "Megonfigurasi pengaya untuk menambah kelengkapan aplikasi"
#: ../data/totem.ui.h:20
msgid "_View"
msgstr "_Tampilan"
#: ../data/totem.ui.h:21
msgid "Fit Window to Movie"
msgstr "Paskan Jendela ke Film"
#: ../data/totem.ui.h:22
msgid "_Resize 1:2"
msgstr "Ubah Uku_ran 1:2"
#: ../data/totem.ui.h:23
msgid "Resize to half the original video size"
msgstr "Setengah ukuran asli"
#: ../data/totem.ui.h:24
msgid "Resize _1:1"
msgstr "Ubah ukuran _1:1"
#: ../data/totem.ui.h:25
msgid "Resize to the original video size"
msgstr "Ukuran asli"
#: ../data/totem.ui.h:26
msgid "Resize _2:1"
msgstr "Ubah Ukuran _2:1"
#: ../data/totem.ui.h:27
msgid "Resize to double the original video size"
msgstr "Dua kali ukuran asli"
#: ../data/totem.ui.h:28
msgid "_Aspect Ratio"
msgstr "Perbandingan _Aspek"
#: ../data/totem.ui.h:29
msgid "Switch An_gles"
msgstr "Pindah Su_dut"
#: ../data/totem.ui.h:30
msgid "Switch camera angles"
msgstr "Berpindah sudut kamera"
#: ../data/totem.ui.h:31
msgid "_Go"
msgstr "_Buka"
#: ../data/totem.ui.h:32
msgid "_DVD Menu"
msgstr "Menu _DVD"
#: ../data/totem.ui.h:33
msgid "Go to the DVD menu"
msgstr "Membuka menu DVD"
#: ../data/totem.ui.h:34
msgid "_Title Menu"
msgstr "Menu _Judul"
#: ../data/totem.ui.h:35
msgid "Go to the title menu"
msgstr "Membuka menu judul"
#: ../data/totem.ui.h:36
msgid "A_udio Menu"
msgstr "Menu A_udio"
#: ../data/totem.ui.h:37
msgid "Go to the audio menu"
msgstr "Membuka menu audio"
#: ../data/totem.ui.h:38
msgid "_Angle Menu"
msgstr "Menu S_udut Kamera"
#: ../data/totem.ui.h:39
msgid "Go to the angle menu"
msgstr "Membuka menu sudut kamera"
#: ../data/totem.ui.h:40
msgid "_Chapter Menu"
msgstr "Menu _Bab"
#: ../data/totem.ui.h:41
msgid "Go to the chapter menu"
msgstr "Membuka menu bab"
#: ../data/totem.ui.h:42
msgid "_Next Chapter/Movie"
msgstr "Bab/Film Sela_njutnya"
#: ../data/totem.ui.h:43
msgid "Next chapter or movie"
msgstr "Bab atau film selanjutnya"
#: ../data/totem.ui.h:44
msgid "_Previous Chapter/Movie"
msgstr "Bab/Film _Sebelumnya"
#: ../data/totem.ui.h:45
msgid "Previous chapter or movie"
msgstr "Bab atau film sebelumnya"
#: ../data/totem.ui.h:46
msgid "_Sound"
msgstr "_Suara"
#: ../data/totem.ui.h:47
msgid "Volume _Up"
msgstr "Besarkan S_uara"
#: ../data/totem.ui.h:48
msgid "Increase volume"
msgstr "Memperbesar suara"
#: ../data/totem.ui.h:49
msgid "Volume _Down"
msgstr "_Pelankan Suara"
#: ../data/totem.ui.h:50
msgid "Decrease volume"
msgstr "Memelankan suara"
#: ../data/totem.ui.h:51
msgid "_Help"
msgstr "Ba_ntuan"
#: ../data/totem.ui.h:52
msgid "_Contents"
msgstr "_Isi"
#: ../data/totem.ui.h:53
msgid "Help contents"
msgstr "Membuka bantuan"
#: ../data/totem.ui.h:54
msgid "_About"
msgstr "Tent_ang"
#: ../data/totem.ui.h:55
msgid "About this application"
msgstr "Tentang aplikasi ini"
#: ../data/totem.ui.h:56
msgid "Show _Controls"
msgstr "Tampilkan _Kendali"
#: ../data/totem.ui.h:57
msgid "Show controls"
msgstr "Menampilkan panel kendali"
#: ../data/totem.ui.h:58
msgid "S_idebar"
msgstr "Panel Samp_ing"
#: ../data/totem.ui.h:59
msgid "Show or hide the sidebar"
msgstr "Menampilkan atau menyembunyikan panel samping"
#: ../data/totem.ui.h:60
msgctxt "Aspect ratio"
msgid "Auto"
msgstr "Otomatis"
#: ../data/totem.ui.h:61
msgid "Sets automatic aspect ratio"
msgstr "Menggunakan rasio aspek otomatis"
#: ../data/totem.ui.h:62
msgid "Square"
msgstr "Bujur Sangkar"
#: ../data/totem.ui.h:63
msgid "Sets square aspect ratio"
msgstr "Menggunakan rasio aspek bujur sangkar"
#: ../data/totem.ui.h:64
msgid "4:3 (TV)"
msgstr "4:3 (TV)"
#: ../data/totem.ui.h:65
msgid "Sets 4:3 (TV) aspect ratio"
msgstr "Menggunakan rasio aspek 4:3 (TV)"
#: ../data/totem.ui.h:66
msgid "16:9 (Widescreen)"
msgstr "16:9 (Layar Lebar)"
#: ../data/totem.ui.h:67
msgid "Sets 16:9 (widescreen) aspect ratio"
msgstr "Menggunakan rasio aspek 16:9 (layar lebar)"
#: ../data/totem.ui.h:68
msgid "2.11:1 (DVB)"
msgstr "2.11:1 (DVB)"
#: ../data/totem.ui.h:69
msgid "Sets 2.11:1 (DVB) aspect ratio"
msgstr "Menggunakan rasio aspek 2,11:1 (DVB)"
#: ../data/totem.ui.h:70
msgid "S_ubtitles"
msgstr "S_ubtitel"
#: ../data/totem.ui.h:73
msgid "_Languages"
msgstr "_Bahasa"
#: ../data/totem.ui.h:74
msgid "Zoom In"
msgstr "Perbesar"
#: ../data/totem.ui.h:75
msgid "Zoom in"
msgstr "Perbesar tampilan"
#: ../data/totem.ui.h:76
msgid "Skip _Forward"
msgstr "_Maju"
#: ../data/totem.ui.h:77
msgid "Skip forward"
msgstr "Maju"
#: ../data/totem.ui.h:78
msgid "Skip _Backwards"
msgstr "M_undur"
#: ../data/totem.ui.h:79
msgid "Skip backwards"
msgstr "Mundur"
#: ../data/totem.ui.h:82
msgid "Time seek bar"
msgstr "Bilah waktu"
#: ../data/uri.ui.h:1
msgid "Enter the _address of the file you would like to open:"
msgstr "Masukkan alamat berkas yang ingin Anda buka:"
#: ../data/video-list.ui.h:1
#: ../src/totem-dnd-menu.c:97
msgid "_Add to Playlist"
msgstr "T_ambah ke Daftar Main"
#: ../data/video-list.ui.h:2
msgid "Add the video to the playlist"
msgstr "Menambahkan video ke daftar main"
#: ../src/backend/bacon-video-widget-gst-0.10.c:1579
msgid "Password requested for RTSP server"
msgstr "Diperlukan sandi untuk server RTSP"
#: ../src/backend/bacon-video-widget-gst-0.10.c:2914
#, c-format
msgid "Audio Track #%d"
msgstr "Jalur Audio #%d"
#: ../src/backend/bacon-video-widget-gst-0.10.c:2918
#, c-format
msgid "Subtitle #%d"
msgstr "Subtitel #%d"
#: ../src/backend/bacon-video-widget-gst-0.10.c:3292
msgid "Location not found."
msgstr "Lokasi tidak ditemukan."
#: ../src/backend/bacon-video-widget-gst-0.10.c:3295
msgid "Could not open location; you might not have permission to open the file."
msgstr "Tidak dapat membuka lokasi; Anda mungkin tidak memiliki hak untuk membuka berkas tersebut."
#. should be exactly one missing thing (source or converter)
#: ../src/backend/bacon-video-widget-gst-0.10.c:3315
#: ../src/backend/bacon-video-widget-gst-0.10.c:3321
#, c-format
msgid "The playback of this movie requires a %s plugin which is not installed."
msgid_plural ""
"The playback of this movie requires the following decoders which are not installed:\n"
"\n"
"%s"
msgstr[0] "Untuk memutar film ini, diperlukan pengaya %s yang saat ini belum terpasang."
#: ../src/backend/bacon-video-widget-gst-0.10.c:3347
msgid "Cannot play this file over the network. Try downloading it to disk first."
msgstr "Tidak dapat memutar berkas ini melalui jaringan. Cobalah untuk mengunduhnya lebih dulu."
#: ../src/backend/bacon-video-widget-gst-0.10.c:5399
#: ../src/totem-properties-view.c:224
msgid "Surround"
msgstr "Stereo"
#: ../src/backend/bacon-video-widget-gst-0.10.c:5401
#: ../src/totem-properties-view.c:226
msgid "Mono"
msgstr "Mono"
#: ../src/backend/bacon-video-widget-gst-0.10.c:5686
msgid "Media contains no supported video streams."
msgstr "Media mengandung siaran video yang tidak didukung."
#: ../src/backend/bacon-video-widget-gst-0.10.c:5861
msgid "Failed to create a GStreamer play object. Please check your GStreamer installation."
msgstr "Gagal membuat objek putar GStreamer. Periksalah instalasi GStreamer Anda."
#. hour:minutes:seconds
#. Translators: This is a time format, like "9:05:02" for 9
#. * hours, 5 minutes, and 2 seconds. You may change ":" to
#. * the separator that your locale uses or use "%Id" instead
#. * of "%d" if your locale uses localized digits.
#.
#: ../src/backend/video-utils.c:83
#: ../src/plugins/skipto/totem-time-entry.c:57
#, c-format
msgctxt "long time format"
msgid "%d:%02d:%02d"
msgstr "%d:%02d:%02d"
#. minutes:seconds
#. Translators: This is a time format, like "5:02" for 5
#. * minutes and 2 seconds. You may change ":" to the
#. * separator that your locale uses or use "%Id" instead of
#. * "%d" if your locale uses localized digits.
#.
#: ../src/backend/video-utils.c:92
#, c-format
msgctxt "short time format"
msgid "%d:%02d"
msgstr "%d:%02d"
#: ../src/eggdesktopfile.c:165
#, c-format
msgid "File is not a valid .desktop file"
msgstr "Ini bukan berkas .desktop yang sah"
#: ../src/eggdesktopfile.c:188
#, c-format
msgid "Unrecognized desktop file Version '%s'"
msgstr "Berkas desktop Versi '%s' tak dikenal"
#: ../src/eggdesktopfile.c:968
#, c-format
msgid "Starting %s"
msgstr "Memulai %s"
#: ../src/eggdesktopfile.c:1110
#, c-format
msgid "Application does not accept documents on command line"
msgstr "Aplikasi tidak menerima dokumen pada baris perintah"
#: ../src/eggdesktopfile.c:1178
#, c-format
msgid "Unrecognized launch option: %d"
msgstr "Opsi peluncuran tak dikenal: %d"
#: ../src/eggdesktopfile.c:1383
#, c-format
msgid "Can't pass document URIs to a 'Type=Link' desktop entry"
msgstr "Tidak dapat melewatkan URI dokumen pada entri desktop 'Type=Link'"
#: ../src/eggdesktopfile.c:1404
#, c-format
msgid "Not a launchable item"
msgstr "Bukan objek yang dapat dieksekusi"
#: ../src/eggfileformatchooser.c:240
#, c-format
msgid "File _Format: %s"
msgstr "_Format Berkas: %s"
#: ../src/eggfileformatchooser.c:379
msgid "All Files"
msgstr "Semua Berkas"
#: ../src/eggfileformatchooser.c:380
msgid "All Supported Files"
msgstr "Semua Berkas yang Didukung"
#: ../src/eggfileformatchooser.c:389
msgid "By Extension"
msgstr "Berdasarkan Ekstensi"
#: ../src/eggfileformatchooser.c:404
msgid "File Format"
msgstr "Format Berkas"
#: ../src/eggfileformatchooser.c:422
msgid "Extension(s)"
msgstr "Ekstensi"
#. Translators: the parameter is a filename
#: ../src/eggfileformatchooser.c:657
#, c-format
msgid "The program was not able to find out the file format you want to use for `%s'. Please make sure to use a known extension for that file or manually choose a file format from the list below."
msgstr "Program tidak dapat menentukan format berkas yang ingin Anda pakai untuk `%s'. Pastikan untuk memakai ekstensi yang dikenali untuk berkas tersebut atau pilih sendiri format berkasnya dari daftar berikut."
#: ../src/eggfileformatchooser.c:664
msgid "File format not recognized"
msgstr "Format berkas tidak dikenal"
#: ../src/eggsmclient.c:226
msgid "Disable connection to session manager"
msgstr "Menonaktifkan koneksi ke manajer sesi"
#: ../src/eggsmclient.c:229
msgid "Specify file containing saved configuration"
msgstr "Menentukan berkas yang memuat konfigurasi"
#: ../src/eggsmclient.c:229
msgid "FILE"
msgstr "BERKAS"
#: ../src/eggsmclient.c:232
msgid "Specify session management ID"
msgstr "Menentukan ID manajemen sesi"
#: ../src/eggsmclient.c:232
msgid "ID"
msgstr "ID"
#: ../src/eggsmclient.c:253
msgid "Session management options:"
msgstr "Opsi manajemen sesi:"
#: ../src/eggsmclient.c:254
msgid "Show session management options"
msgstr "Menampilkan opsi manajemen sesi"
#. Title
#. Artist
#. Album
#. Year
#. Container
#: ../src/properties/bacon-video-widget-properties.c:107
#: ../src/properties/bacon-video-widget-properties.c:109
#: ../src/properties/bacon-video-widget-properties.c:111
#: ../src/properties/bacon-video-widget-properties.c:113
#: ../src/properties/bacon-video-widget-properties.c:119
msgid "Unknown"
msgstr "Tak Diketahui"
#. Dimensions
#: ../src/properties/bacon-video-widget-properties.c:122
msgctxt "Dimensions"
msgid "N/A"
msgstr "T/A"
#. Video Codec
#: ../src/properties/bacon-video-widget-properties.c:124
msgctxt "Video codec"
msgid "N/A"
msgstr "T/A"
#: ../src/properties/bacon-video-widget-properties.c:127
msgctxt "Video bit rate"
msgid "N/A"
msgstr "T/A"
#: ../src/properties/bacon-video-widget-properties.c:130
#: ../src/properties/bacon-video-widget-properties.c:240
msgctxt "Frame rate"
msgid "N/A"
msgstr "T/A"
#: ../src/properties/bacon-video-widget-properties.c:134
msgctxt "Audio bit rate"
msgid "N/A"
msgstr "T/A"
#. Audio Codec
#: ../src/properties/bacon-video-widget-properties.c:136
msgctxt "Audio codec"
msgid "N/A"
msgstr "T/A"
#. Sample rate
#: ../src/properties/bacon-video-widget-properties.c:138
msgid "0 Hz"
msgstr "0 Hz"
#. Channels
#: ../src/properties/bacon-video-widget-properties.c:140
msgid "0 Channels"
msgstr "0 Kanal"
#: ../src/properties/bacon-video-widget-properties.c:156
#, c-format
msgid "%d hour"
msgid_plural "%d hours"
msgstr[0] "%d jam"
#: ../src/properties/bacon-video-widget-properties.c:158
#, c-format
msgid "%d minute"
msgid_plural "%d minutes"
msgstr[0] "%d menit"
#: ../src/properties/bacon-video-widget-properties.c:161
#, c-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d detik"
#. 5 hours 2 minutes 12 seconds
#: ../src/properties/bacon-video-widget-properties.c:167
#, c-format
msgctxt "time"
msgid "%s %s %s"
msgstr "%s %s %s"
#. 2 minutes 12 seconds
#: ../src/properties/bacon-video-widget-properties.c:170
#, c-format
msgctxt "time"
msgid "%s %s"
msgstr "%s %s"
#. 0 seconds
#: ../src/properties/bacon-video-widget-properties.c:176
msgid "0 seconds"
msgstr "0 detik"
#: ../src/properties/bacon-video-widget-properties.c:237
#, c-format
msgid "%d frame per second"
msgid_plural "%d frames per second"
msgstr[0] "%d gambar per detik"
#: ../src/totem-audio-preview.c:164
msgid "Audio Preview"
msgstr "Pratampil Audio"
#: ../src/totem.c:238
msgid "Verify your system installation. Totem will now exit."
msgstr "Periksa instalasi sistem Anda. Totem akan segera keluar."
#: ../src/totem-cell-renderer-video.c:126
msgid "Unknown video"
msgstr "Video tak dikenal"
#: ../src/totem-dnd-menu.c:94
msgid "_Play Now"
msgstr "_Putar Sekarang"
#: ../src/totem-dnd-menu.c:103
msgid "Cancel"
msgstr "Batal"
#: ../src/totem-fullscreen.c:573
msgid "No File"
msgstr "Tidak Ada Berkas"
#: ../src/totem-interface.c:181
#: ../src/totem-interface.c:224
#, c-format
msgid "Couldn't load the '%s' interface. %s"
msgstr "Tidak dapat memuat antarmuka '%s'. %s"
#: ../src/totem-interface.c:181
msgid "The file does not exist."
msgstr "Berkas tidak ada."
#: ../src/totem-interface.c:183
#: ../src/totem-interface.c:185
#: ../src/totem-interface.c:226
#: ../src/totem-interface.c:228
msgid "Make sure that Totem is properly installed."
msgstr "Pastikan Totem telah terpasang dengan baik."
#: ../src/totem-interface.c:357
msgid "Totem is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version."
msgstr "Totem adalah perangkat lunak bebas; Anda dapat mendistribusikan ulang dan/atau mengubahnya di bawah ketentuan GNU General Public License sebagaimana dipublikasikan oleh Free Software Foundation; Lisensi versi 2, atau (sesuai pilihan Anda) menggunakan versi selanjutnya."
#: ../src/totem-interface.c:361
msgid "Totem is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details."
msgstr "Totem didistribusikan dengan harapan dapat berguna, tetapi TANPA ADANYA JAMINAN; termasuk tanpa jaminan DAYA JUAL atau KELAIKAN UNTUK TUJUAN TERTENTU. Lihat GNU General Public License untuk rincian lebih lanjut."
#: ../src/totem-interface.c:365
msgid "You should have received a copy of the GNU General Public License along with Totem; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"
msgstr "Anda seharusnya menerima salinan GNU General Public License yang disertakan bersama Totem; jika tidak, layangkan surat Anda ke Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"
#: ../src/totem-interface.c:368
msgid "Totem contains an exception to allow the use of proprietary GStreamer plugins."
msgstr "Ada pengecualian pada Totem yang mengizinkan Anda menggunakan pengaya propritari GStreamer.\""
#. Translators: an entry in the "Languages" menu, used to choose the audio language of a DVD
#: ../src/totem-menu.c:290
msgid "None"
msgstr "Nihil"
#. Translators: an entry in the "Languages" menu, used to choose the audio language of a DVD
#: ../src/totem-menu.c:295
msgctxt "Language"
msgid "Auto"
msgstr "Otomatis"
#: ../src/totem-menu.c:876
msgid "Copyright © 2002-2009 Bastien Nocera"
msgstr "Hak Cipta © 2002-2009 Bastien Nocera"
#: ../src/totem-menu.c:881
msgid "translator-credits"
msgstr ""
"Dicky Wahyu Purnomo <dicky.wahyu@massaint.or.id>, 2004.\n"
"Ahmad Riza H Nst <rizahnst@gnome.org>, 2005.\n"
"Andy Apdhani <imtheface@ubuntu.com>, 2007.\n"
"Dirgita <dirgitadevina@yahoo.co.id>, 2010.\n"
"Andika Triwidada <andika@gmail.com>, 2011, 2012."
#: ../src/totem-menu.c:885
msgid "Totem Website"
msgstr "Situs Web Totem"
#: ../src/totem-menu.c:916
msgid "Configure Plugins"
msgstr "Konfigurasi Pengaya"
#: ../src/totem-object.c:159
#, c-format
msgid ""
"%s\n"
"Run '%s --help' to see a full list of available command line options.\n"
msgstr ""
"%s\n"
"Jalankan '%s --help' untuk daftar lengkap opsi yang tersedia.\n"
#. Translators: %s is the totem version number
#: ../src/totem-object.c:547
#, c-format
msgid "Totem %s"
msgstr "Totem %s"
#: ../src/totem-object.c:1118
#: ../src/totem-options.c:52
msgid "Pause"
msgstr "Tahan"
#: ../src/totem-object.c:1125
#: ../src/totem-object.c:1135
#: ../src/totem-options.c:51
msgid "Play"
msgstr "Putar"
#: ../src/totem-object.c:1211
#: ../src/totem-object.c:1238
#: ../src/totem-object.c:1723
#: ../src/totem-object.c:1887
#, c-format
msgid "Totem could not play '%s'."
msgstr "Totem tidak dapat memutar '%s'."
#: ../src/totem-object.c:1729
msgid "No error message"
msgstr "Tidak ada pesan galat"
#: ../src/totem-object.c:2078
msgid "Totem could not display the help contents."
msgstr "Totem tidak dapat menampilkan bantuan."
#: ../src/totem-object.c:3960
#: ../src/totem-object.c:3962
msgid "Previous Chapter/Movie"
msgstr "Bab/Film Sebelumnya"
#: ../src/totem-object.c:3969
#: ../src/totem-object.c:3971
msgid "Play / Pause"
msgstr "Putar / Tahan"
#: ../src/totem-object.c:3979
#: ../src/totem-object.c:3981
msgid "Next Chapter/Movie"
msgstr "Bab/Film Selanjutnya"
#. Translators: this is the accessibility text for the fullscreen button in the controls box in Totem's main window.
#: ../src/totem-object.c:3992
#: ../src/totem-object.c:3994
msgid "Fullscreen"
msgstr "Layar Penuh"
#: ../src/totem-object.c:4125
msgid "Totem could not startup."
msgstr "Totem tidak dapat dijalankan."
#: ../src/totem-object.c:4125
msgid "No reason."
msgstr "Tanpa alasan."
#: ../src/totem-open-location.c:182
msgid "Open Location..."
msgstr "Buka Lokasi..."
#: ../src/totem-options.c:49
msgid "Enable debug"
msgstr "Mengaktifkan debug"
#: ../src/totem-options.c:50
msgid "Play/Pause"
msgstr "Putar/Tahan"
#: ../src/totem-options.c:53
msgid "Next"
msgstr "Selanjutnya"
#: ../src/totem-options.c:54
msgid "Previous"
msgstr "Sebelumnya"
#: ../src/totem-options.c:55
msgid "Seek Forwards"
msgstr "Lompat Maju"
#: ../src/totem-options.c:56
msgid "Seek Backwards"
msgstr "Lompat Mundur"
#: ../src/totem-options.c:57
msgid "Volume Up"
msgstr "Besarkan Suara"
#: ../src/totem-options.c:58
msgid "Volume Down"
msgstr "Pelankan Suara"
#: ../src/totem-options.c:59
msgid "Mute sound"
msgstr "Tanpa suara"
#: ../src/totem-options.c:60
msgid "Toggle Fullscreen"
msgstr "Layar Penuh"
#: ../src/totem-options.c:61
msgid "Show/Hide Controls"
msgstr "Menampil/Sembunyikan Kendali"
#: ../src/totem-options.c:62
msgid "Quit"
msgstr "Keluar"
#: ../src/totem-options.c:63
msgid "Enqueue"
msgstr "Taruh di akhir antrian"
#: ../src/totem-options.c:64
msgid "Replace"
msgstr "Ganti"
#: ../src/totem-options.c:65
msgid "Seek"
msgstr "Lompat"
#. Translators: help for a (hidden) command line option to specify (the zero-based index of) a playlist entry to start playing once Totem's finished loading
#: ../src/totem-options.c:67
msgid "Playlist index"
msgstr "Indeks daftar main"
#: ../src/totem-options.c:69
msgid "Movies to play"
msgstr "Film untuk diputar"
#: ../src/totem-options.c:79
msgid "- Play movies and songs"
msgstr "- Memutar film dan lagu"
#: ../src/totem-options.c:142
msgid "Can't enqueue and replace at the same time"
msgstr "Tak bisa mengantrikan dan menggantikan secara bersamaan"
#. By extension entry
#: ../src/totem-playlist.c:161
msgid "MP3 ShoutCast playlist"
msgstr "Daftar main MP3 ShoutCast"
#: ../src/totem-playlist.c:162
msgid "MP3 audio (streamed)"
msgstr "Audio MP3 (siar jaringan)"
#: ../src/totem-playlist.c:163
msgid "MP3 audio (streamed, DOS format)"
msgstr "Audio MP3 (siar jaringan, format DOS)"
#: ../src/totem-playlist.c:164
msgid "XML Shareable Playlist"
msgstr "Daftar Main XML Dapat-Berbagi"
#. This is "Title 3", where title is a DVD title
#. * Note: NOT a DVD chapter
#: ../src/totem-playlist.c:347
#, c-format
msgid "Title %d"
msgstr "Judul %d"
#: ../src/totem-playlist.c:446
msgid "Could not save the playlist"
msgstr "Tidak dapat menyimpan daftar main"
#: ../src/totem-playlist.c:1021
msgid "Save Playlist"
msgstr "Simpan Daftar Main"
#. translators: Playlist is the default saved playlist filename,
#. * without the suffix
#: ../src/totem-playlist.c:1033
#: ../src/totem-playlist.c:1262
#: ../src/totem-sidebar.c:145
msgid "Playlist"
msgstr "Daftar Main"
#: ../src/totem-playlist.c:1855
#, c-format
msgid "The playlist '%s' could not be parsed. It might be damaged."
msgstr "Daftar main '%s' tidak dapat dibaca. Sepertinya rusak."
#: ../src/totem-playlist.c:1856
msgid "Playlist error"
msgstr "Galat pada daftar main"
#: ../src/totem-preferences.c:297
msgid "Preferences"
msgstr "Preferensi"
#: ../src/totem-preferences.c:445
msgid "Select Subtitle Font"
msgstr "Pilih Fonta Subtitel"
#: ../src/totem-properties-main.c:115
#: ../src/totem-properties-view.c:266
msgid "Audio/Video"
msgstr "Audio/Video"
#: ../src/totem-properties-view.c:128
msgid "N/A"
msgstr "T/A"
#: ../src/totem-properties-view.c:157
#: ../src/plugins/properties/totem-movie-properties.c:152
#: ../src/plugins/properties/totem-movie-properties.c:163
msgctxt "Stream bit rate"
msgid "N/A"
msgstr "T/A"
#: ../src/totem-properties-view.c:160
#: ../src/plugins/properties/totem-movie-properties.c:152
#: ../src/plugins/properties/totem-movie-properties.c:163
#, c-format
msgid "%d kbps"
msgstr "%d kbps"
#: ../src/totem-properties-view.c:177
#: ../src/plugins/properties/totem-movie-properties.c:149
#, c-format
msgid "%d x %d"
msgstr "%d x %d"
#: ../src/totem-properties-view.c:209
#: ../src/plugins/properties/totem-movie-properties.c:166
#, c-format
msgid "%d Hz"
msgstr "%d Hz"
#: ../src/totem-properties-view.c:216
#: ../src/plugins/properties/totem-movie-properties.c:166
msgctxt "Sample rate"
msgid "N/A"
msgstr "T/A"
#: ../src/totem-properties-view.c:236
msgctxt "Number of audio channels"
msgid "N/A"
msgstr "T/A"
#: ../src/totem-statusbar.c:110
msgid "0:00 / 0:00"
msgstr "0:00 / 0:00"
#: ../src/totem-statusbar.c:133
#, c-format
msgid "%s (Streaming)"
msgstr "%s (Siar Jaringan)"
#. Elapsed / Total Length
#: ../src/totem-statusbar.c:140
#: ../src/totem-time-label.c:64
#, c-format
msgid "%s / %s"
msgstr "%s / %s"
#. Seeking to Time / Total Length
#: ../src/totem-statusbar.c:143
#: ../src/totem-time-label.c:67
#, c-format
msgid "Seek to %s / %s"
msgstr "Menuju ke %s / %s"
#: ../src/totem-statusbar.c:239
msgid "Buffering"
msgstr "Menyangga"
#. eg: 75 %
#: ../src/totem-statusbar.c:250
#, c-format
msgid "%d %%"
msgstr "%d %%"
#. eg: Paused, 0:32 / 1:05
#: ../src/totem-statusbar.c:325
#, c-format
msgid "%s, %s"
msgstr "%s, %s"
#. eg: Buffering, 75 %
#: ../src/totem-statusbar.c:330
#, c-format
msgid "%s, %d %%"
msgstr "%s, %d %%"
#: ../src/totem-subtitle-encoding.c:156
msgid "Current Locale"
msgstr "Lokal Sekarang"
#: ../src/totem-subtitle-encoding.c:159
#: ../src/totem-subtitle-encoding.c:161
#: ../src/totem-subtitle-encoding.c:163
#: ../src/totem-subtitle-encoding.c:165
msgid "Arabic"
msgstr "Arab"
#: ../src/totem-subtitle-encoding.c:168
msgid "Armenian"
msgstr "Armenia"
#: ../src/totem-subtitle-encoding.c:171
#: ../src/totem-subtitle-encoding.c:173
#: ../src/totem-subtitle-encoding.c:175
msgid "Baltic"
msgstr "Baltik"
#: ../src/totem-subtitle-encoding.c:178
msgid "Celtic"
msgstr "Seltik"
#: ../src/totem-subtitle-encoding.c:181
#: ../src/totem-subtitle-encoding.c:183
#: ../src/totem-subtitle-encoding.c:185
#: ../src/totem-subtitle-encoding.c:187
msgid "Central European"
msgstr "Eropa Tengah"
#: ../src/totem-subtitle-encoding.c:190
#: ../src/totem-subtitle-encoding.c:192
#: ../src/totem-subtitle-encoding.c:194
#: ../src/totem-subtitle-encoding.c:196
msgid "Chinese Simplified"
msgstr "Cina Sederhana"
#: ../src/totem-subtitle-encoding.c:199
#: ../src/totem-subtitle-encoding.c:201
#: ../src/totem-subtitle-encoding.c:203
msgid "Chinese Traditional"
msgstr "Cina Tradisional"
#: ../src/totem-subtitle-encoding.c:206
msgid "Croatian"
msgstr "Kroasia"
#: ../src/totem-subtitle-encoding.c:209
#: ../src/totem-subtitle-encoding.c:211
#: ../src/totem-subtitle-encoding.c:213
#: ../src/totem-subtitle-encoding.c:215
#: ../src/totem-subtitle-encoding.c:217
#: ../src/totem-subtitle-encoding.c:219
msgid "Cyrillic"
msgstr "Sirilik"
#: ../src/totem-subtitle-encoding.c:222
msgid "Cyrillic/Russian"
msgstr "Sirilik/Rusia"
#: ../src/totem-subtitle-encoding.c:225
#: ../src/totem-subtitle-encoding.c:227
msgid "Cyrillic/Ukrainian"
msgstr "Sirilik/Ukraina"
#: ../src/totem-subtitle-encoding.c:230
msgid "Georgian"
msgstr "Georgia"
#: ../src/totem-subtitle-encoding.c:233
#: ../src/totem-subtitle-encoding.c:235
#: ../src/totem-subtitle-encoding.c:237
msgid "Greek"
msgstr "Yunani"
#: ../src/totem-subtitle-encoding.c:240
msgid "Gujarati"
msgstr "Gujarat"
#: ../src/totem-subtitle-encoding.c:243
msgid "Gurmukhi"
msgstr "Gurmukh"
#: ../src/totem-subtitle-encoding.c:246
#: ../src/totem-subtitle-encoding.c:248
#: ../src/totem-subtitle-encoding.c:250
#: ../src/totem-subtitle-encoding.c:252
msgid "Hebrew"
msgstr "Ibrani"
#: ../src/totem-subtitle-encoding.c:255
msgid "Hebrew Visual"
msgstr "Tampilan Ibrani"
#: ../src/totem-subtitle-encoding.c:258
msgid "Hindi"
msgstr "Hindu"
#: ../src/totem-subtitle-encoding.c:261
msgid "Icelandic"
msgstr "Islandia"
#: ../src/totem-subtitle-encoding.c:264
#: ../src/totem-subtitle-encoding.c:266
#: ../src/totem-subtitle-encoding.c:268
msgid "Japanese"
msgstr "Jepang"
#: ../src/totem-subtitle-encoding.c:271
#: ../src/totem-subtitle-encoding.c:273
#: ../src/totem-subtitle-encoding.c:275
#: ../src/totem-subtitle-encoding.c:277
msgid "Korean"
msgstr "Korea"
#: ../src/totem-subtitle-encoding.c:280
msgid "Nordic"
msgstr "Nordik"
#: ../src/totem-subtitle-encoding.c:283
msgid "Persian"
msgstr "Persia"
#: ../src/totem-subtitle-encoding.c:286
#: ../src/totem-subtitle-encoding.c:288
msgid "Romanian"
msgstr "Rumania"
#: ../src/totem-subtitle-encoding.c:291
msgid "South European"
msgstr "Eropa Selatan"
#: ../src/totem-subtitle-encoding.c:294
msgid "Thai"
msgstr "Thailand"
#: ../src/totem-subtitle-encoding.c:297
#: ../src/totem-subtitle-encoding.c:299
#: ../src/totem-subtitle-encoding.c:301
#: ../src/totem-subtitle-encoding.c:303
msgid "Turkish"
msgstr "Turki"
#: ../src/totem-subtitle-encoding.c:306
#: ../src/totem-subtitle-encoding.c:308
#: ../src/totem-subtitle-encoding.c:310
#: ../src/totem-subtitle-encoding.c:312
#: ../src/totem-subtitle-encoding.c:314
msgid "Unicode"
msgstr "Unikode"
#: ../src/totem-subtitle-encoding.c:317
#: ../src/totem-subtitle-encoding.c:319
#: ../src/totem-subtitle-encoding.c:321
#: ../src/totem-subtitle-encoding.c:323
#: ../src/totem-subtitle-encoding.c:325
msgid "Western"
msgstr "Barat"
#: ../src/totem-subtitle-encoding.c:328
#: ../src/totem-subtitle-encoding.c:330
#: ../src/totem-subtitle-encoding.c:332
msgid "Vietnamese"
msgstr "Vietnam"
#: ../src/totem-uri.c:339
#: ../src/plugins/chapters/totem-chapters.c:998
msgid "All files"
msgstr "Semua berkas"
#: ../src/totem-uri.c:344
#: ../src/plugins/chapters/totem-chapters.c:995
msgid "Supported files"
msgstr "Berkas didukung"
#: ../src/totem-uri.c:356
msgid "Audio files"
msgstr "Berkas audio"
#: ../src/totem-uri.c:364
msgid "Video files"
msgstr "Berkas video"
#: ../src/totem-uri.c:374
msgid "Subtitle files"
msgstr "Berkas subtitel"
#: ../src/totem-uri.c:426
msgid "Select Text Subtitles"
msgstr "Pilih Teks Subtitel"
#: ../src/totem-uri.c:491
msgid "Select Movies or Playlists"
msgstr "Pilih Film atau Daftar Main"
#: ../src/totem-uri.c:495
msgid "Add Directory"
msgstr "Tambah Direktori"
#: ../src/totem-video-list.c:330
msgid "No video URI"
msgstr "Tidak ada URI video"
#. Translators: The first string is "Filename" (as translated); the second is an actual filename.
#. The third string is "Resolution" (as translated); the fourth and fifth are screenshot height and width, respectively.
#. The sixth string is "Duration" (as translated); the seventh is the movie duration in words.
#: ../src/totem-video-thumbnailer.c:890
#, c-format
msgid ""
"<b>%s</b>: %s\n"
"<b>%s</b>: %d×%d\n"
"<b>%s</b>: %s"
msgstr ""
"<b>%s</b>: %s\n"
"<b>%s</b>: %d×%d\n"
"<b>%s</b>: %s"
#: ../src/totem-video-thumbnailer.c:891
msgid "Filename"
msgstr "Nama berkas"
#: ../src/totem-video-thumbnailer.c:893
msgid "Resolution"
msgstr "Resolusi"
#: ../src/totem-video-thumbnailer.c:896
msgid "Duration"
msgstr "Durasi"
#: ../src/plugins/apple-trailers/apple-trailers.plugin.in.h:1
msgid "Apple Trailers"
msgstr "Apple Trailers"
#: ../src/plugins/apple-trailers/apple-trailers.plugin.in.h:2
msgid "Sets the user agent for the Apple Trailers site"
msgstr "Atur user agent bagi situs Apple Trailers"
#: ../src/plugins/autoload-subtitles/autoload-subtitles.plugin.in.h:1
msgid "Autoload Subtitles"
msgstr "Unduh Otomatis Subtitel"
#: ../src/plugins/autoload-subtitles/autoload-subtitles.plugin.in.h:2
msgid "Autoloads text subtitles"
msgstr "Mengunduh otomatis subtitel teks"
#: ../src/plugins/brasero-disc-recorder/brasero-disc-recorder.plugin.in.h:1
msgid "Video Disc Recorder"
msgstr "Perekam Diska Video"
#: ../src/plugins/brasero-disc-recorder/brasero-disc-recorder.plugin.in.h:2
msgid "Records (S)VCDs or video DVDs"
msgstr "Merekam (S)VCD atau DVD video"
#: ../src/plugins/brasero-disc-recorder/totem-disc-recorder.c:65
msgid "_Create Video Disc..."
msgstr "Buat _Diska Video..."
#: ../src/plugins/brasero-disc-recorder/totem-disc-recorder.c:66
msgid "Create a video DVD or a (S)VCD from the currently opened movie"
msgstr "Membuat DVD video atau (S)VCD dari film yang sedang diputar"
#: ../src/plugins/brasero-disc-recorder/totem-disc-recorder.c:68
msgid "Copy Vide_o DVD..."
msgstr "Salin DVD Vide_o..."
#: ../src/plugins/brasero-disc-recorder/totem-disc-recorder.c:69
msgid "Copy the currently playing video DVD"
msgstr "Menyalin DVD video yang sedang diputar"
#: ../src/plugins/brasero-disc-recorder/totem-disc-recorder.c:71
msgid "Copy (S)VCD..."
msgstr "Salin (S)VCD..."
#: ../src/plugins/brasero-disc-recorder/totem-disc-recorder.c:72
msgid "Copy the currently playing (S)VCD"
msgstr "Menyalin (S)VCD yang sedang diputar"
#: ../src/plugins/brasero-disc-recorder/totem-disc-recorder.c:136
msgid "The video disc could not be duplicated."
msgstr "Diska video tidak dapat digandakan."
#: ../src/plugins/brasero-disc-recorder/totem-disc-recorder.c:138
#: ../src/plugins/brasero-disc-recorder/totem-disc-recorder.c:283
msgid "The movie could not be recorded."
msgstr "Filmnya tidak dapat direkam."
#: ../src/plugins/brasero-disc-recorder/totem-disc-recorder.c:164
#: ../src/plugins/brasero-disc-recorder/totem-disc-recorder.c:174
#: ../src/plugins/brasero-disc-recorder/totem-disc-recorder.c:270
msgid "Unable to write a project."
msgstr "Tidak dapat menulis proyek."
#: ../src/plugins/chapters/chapters-edit.ui.h:1
msgid "Name for new chapter:"
msgstr "Nama untuk bab baru:"
#: ../src/plugins/chapters/chapters-list.ui.h:1
msgid "_Remove Chapter"
msgstr "_Hapus Bab"
#: ../src/plugins/chapters/chapters-list.ui.h:2
msgid "Remove the chapter from the list"
msgstr "Hapus bab dari daftar"
#: ../src/plugins/chapters/chapters-list.ui.h:3
msgid "_Go to Chapter"
msgstr "_Membuka Bab"
#: ../src/plugins/chapters/chapters-list.ui.h:4
msgid "Go to the chapter in the movie"
msgstr "Buka bab di film"
#: ../src/plugins/chapters/chapters-list.ui.h:5
msgid "Add Chapter..."
msgstr "Tambah Bab..."
#: ../src/plugins/chapters/chapters-list.ui.h:6
msgid "Remove Chapter"
msgstr "Hapus Bab"
#: ../src/plugins/chapters/chapters-list.ui.h:7
msgid "Go to Chapter"
msgstr "Buka Bab"
#: ../src/plugins/chapters/chapters-list.ui.h:8
msgid "Save Changes"
msgstr "Simpan Perubahan"
#: ../src/plugins/chapters/chapters-list.ui.h:9
msgid "No chapter data"
msgstr "Data bab tidak ada"
#: ../src/plugins/chapters/chapters-list.ui.h:10
msgid "Load Chapters..."
msgstr "Muat Bab..."
#: ../src/plugins/chapters/chapters-list.ui.h:11
msgid "Load chapters from an external CMML file"
msgstr "Memuat bab dari berkas eksternal CMML"
#: ../src/plugins/chapters/chapters-list.ui.h:12
msgid "Add New Chapters"
msgstr "Tambah Bab Baru"
#: ../src/plugins/chapters/chapters-list.ui.h:13
msgid "Create a new chapter list for the movie"
msgstr "Buat daftar bab baru bagi film"
#: ../src/plugins/chapters/chapters.plugin.in.h:1
#: ../src/plugins/chapters/totem-chapters.c:1139
msgid "Chapters"
msgstr "Bab"
#: ../src/plugins/chapters/chapters.plugin.in.h:2
msgid "Support chapter markers in movies"
msgstr "Mendukung penanda bab di film"
#: ../src/plugins/chapters/totem-chapters.c:56
#, c-format
msgid ""
"<b>Title: </b>%s\n"
"<b>Start time: </b>%s"
msgstr ""
"<b>Judul: </b>%s\n"
"<b>Waktu mulai: </b>%s"
#: ../src/plugins/chapters/totem-chapters.c:328
msgid "Error while reading file with chapters"
msgstr "Galat ketika membaca berkas dengan bab"
#: ../src/plugins/chapters/totem-chapters.c:543
msgid "Chapter with the same time already exists"
msgstr "Bab dengan waktu yang sama sudah ada"
#: ../src/plugins/chapters/totem-chapters.c:544
msgid "Try another name or remove an existing chapter."
msgstr "Coba nama lain atau hapus bab yang sudah ada."
#: ../src/plugins/chapters/totem-chapters.c:717
msgid "Error while writing file with chapters"
msgstr "Galat ketika menulis berkas disertai bab"
#: ../src/plugins/chapters/totem-chapters.c:842
msgid "Error occurred while saving chapters"
msgstr "Terjadi galat ketika menyimpan bab"
#: ../src/plugins/chapters/totem-chapters.c:843
msgid "Please check you have permission to write to the folder containing the movie."
msgstr "Silakan periksa apakah Anda memiliki hak menulis ke folder yang memuat film."
#: ../src/plugins/chapters/totem-chapters.c:976
msgid "Open Chapter File"
msgstr "Buka Berkas Bab"
#: ../src/plugins/chapters/totem-chapters.c:1093
msgid "Chapter Screenshot"
msgstr "Cuplikan Bab"
#: ../src/plugins/chapters/totem-chapters.c:1104
msgid "Chapter Title"
msgstr "Judul Bab"
#: ../src/plugins/chapters/totem-chapters.c:1184
msgid "Save changes to chapter list before closing?"
msgstr "Simpan perubahan ke daftar bab sebelum menutup?"
#. Translators: close Totem without saving changes to the chapter list of the current movie.
#: ../src/plugins/chapters/totem-chapters.c:1189
msgid "Close without Saving"
msgstr "Tutup tanpa Menyimpan"
#. Translators: save changes to the chapter list of the current movie before closing Totem.
#: ../src/plugins/chapters/totem-chapters.c:1191
msgid "Save"
msgstr "Simpan"
#: ../src/plugins/chapters/totem-chapters.c:1194
msgid "If you don't save, changes to the chapter list will be lost."
msgstr "Bila Anda tidak menyimpan, perubahan atas daftar bab akan hilang."
#: ../src/plugins/chapters/totem-cmml-parser.c:651
msgid "Failed to parse CMML file"
msgstr "Gagal menguraikan berkas CMML"
#: ../src/plugins/chapters/totem-edit-chapter.c:95
msgid "Add Chapter"
msgstr "Tambah Bab"
#: ../src/plugins/dbusservice/dbusservice.plugin.in.h:1
msgid "D-Bus Service"
msgstr "Layanan D-Bus"
#: ../src/plugins/dbusservice/dbusservice.plugin.in.h:2
msgid "Plugin for sending notifications of currently playing movies to the D-Bus subsystem."
msgstr "Plugin untuk mengirim pemberitahuan tentang film yang kini diputar ke subsistem D-Bus."
#: ../src/plugins/dbusservice/dbusservice.py:213
#: ../src/plugins/dbusservice/dbusservice.py:243
#, python-format
msgid "The MediaPlayer2 object does not implement the ‘%s’ interface"
msgstr "Objek MediaPlayer 2 tak mengimplementasikan antar muka '%s'"
#: ../src/plugins/dbusservice/dbusservice.py:222
#, python-format
msgid "The property ‘%s’ is not writeable."
msgstr "Properti '%s' tak dapat ditulisi."
#: ../src/plugins/dbusservice/dbusservice.py:238
#, python-format
msgid "Unknown property ‘%s’ requested of a MediaPlayer 2 object"
msgstr "Properti tak dikenal '%s' diminta oleh objek MediaPlayer 2"
#: ../src/plugins/dbusservice/dbusservice.py:341
#, python-format
msgid "The URI ‘%s’ is not supported."
msgstr "URI '%s' tak didukung."
#: ../src/plugins/grilo/grilo.plugin.in.h:1
msgid "Grilo Browser"
msgstr "Peramban Grilo"
#: ../src/plugins/grilo/grilo.plugin.in.h:2
msgid "A plugin to let you browse media content from various sources"
msgstr "Dengan pengaya ini, Anda dapat menelusuri isi media dari berbagai sumber"
#: ../src/plugins/grilo/grilo.ui.h:1
msgid "Add to Playlist"
msgstr "Tambah ke Daftar Putar"
#: ../src/plugins/grilo/grilo.ui.h:2
msgid "Copy Location"
msgstr "Salin Lokasi"
#: ../src/plugins/grilo/grilo.ui.h:3
#: ../src/plugins/grilo/totem-grilo.c:1185
msgid "Browse"
msgstr "Ramban"
#: ../src/plugins/grilo/grilo.ui.h:4
#: ../src/plugins/grilo/totem-grilo.c:1228
msgid "Search"
msgstr "Cari"
#: ../src/plugins/grilo/totem-grilo.c:454
msgid "Browse Error"
msgstr "Galat Meramban"
#: ../src/plugins/grilo/totem-grilo.c:610
msgid "Search Error"
msgstr "Galat Mencari"
#: ../src/plugins/gromit/gromit.plugin.in.h:1
msgid "Gromit Annotations"
msgstr "Anotasi Gromit"
#: ../src/plugins/gromit/gromit.plugin.in.h:2
msgid "Presentation helper to make annotations on screen"
msgstr "Pembantu presentasi untuk membuat anotasi pada layar"
#: ../src/plugins/gromit/totem-gromit.c:231
msgid "The gromit binary was not found."
msgstr "Berkas biner gromit tidak ditemukan."
#: ../src/plugins/im-status/totem-im-status.plugin.in.h:1
msgid "Instant Messenger Status"
msgstr "Status Pesan Instan"
#: ../src/plugins/im-status/totem-im-status.plugin.in.h:2
msgid "Set your Instant Messenger status to away when a movie is playing"
msgstr "Menetapkan status Pesan Instan Anda sebagai \"menjauh\" saat film diputar"
#: ../src/plugins/iplayer/iplayer2.py:298
msgid "<no reason given>"
msgstr "<tanpa alasan>"
#: ../src/plugins/iplayer/iplayer2.py:299
#, python-format
msgid "Programme unavailable (\"%s\")"
msgstr "Program tidak tersedia (\"%s\")"
#. Add the interface to Totem's sidebar
#: ../src/plugins/iplayer/iplayer.plugin.in.h:1
#: ../src/plugins/iplayer/iplayer.py:46
msgid "BBC iPlayer"
msgstr "iPlayer BBC"
#: ../src/plugins/iplayer/iplayer.plugin.in.h:2
msgid "Stream BBC programs from the last 7 days from the BBC iPlayer service"
msgstr "Menonton program BBC yang disiarkan 7 hari terakhir dari layanan iPlayer BBC"
#: ../src/plugins/iplayer/iplayer.py:72
msgid "Error listing channel categories"
msgstr "Galat ketika memperoleh daftar kategori kanal"
#: ../src/plugins/iplayer/iplayer.py:73
msgid "There was an unknown error getting the list of television channels available on BBC iPlayer."
msgstr "Terjadi galat yang tidak dikenal saat memperoleh daftar kanal televisi yang tersedia di iPlayer BBC."
#. Append a dummy child row so that the expander's visible; we can
#. then queue off the expander to load the programme listing for this
#. category
#: ../src/plugins/iplayer/iplayer.py:84
msgid "Loading…"
msgstr "Memuat..."
#. Translators: the "programme feed" is the list of TV shows
#. available to watch online
#: ../src/plugins/iplayer/iplayer.py:136
msgid "Error getting programme feed"
msgstr "Galat ketika memperoleh umpanan program"
#: ../src/plugins/iplayer/iplayer.py:137
msgid "There was an error getting the list of programmes for this channel and category combination."
msgstr "Terjadi Galat ketika memperoleh daftar program untuk kanal ini beserta kombinasi kategorinya."
#: ../src/plugins/lirc/lirc.plugin.in.h:1
msgid "Infrared Remote Control"
msgstr "Pengendali Jarak Jauh Inframerah"
#: ../src/plugins/lirc/lirc.plugin.in.h:2
msgid "Support infrared remote control"
msgstr "Dukungan pengendali jarak jauh inframerah"
#: ../src/plugins/lirc/totem-lirc.c:242
msgid "Couldn't initialize lirc."
msgstr "Tidak dapat menginisiasi lirc."
#: ../src/plugins/lirc/totem-lirc.c:254
msgid "Couldn't read lirc configuration."
msgstr "Tidak dapat membaca konfigurasi lirc."
#: ../src/plugins/media-player-keys/media-player-keys.plugin.in.h:1
msgid "Media Player Keys"
msgstr "Kunci Pemutar Media"
#: ../src/plugins/media-player-keys/media-player-keys.plugin.in.h:2
msgid "Support additional media player keys"
msgstr "Mendukung tambahan kunci pemutar media"
#: ../src/plugins/ontop/ontop.plugin.in.h:1
msgid "Always On Top"
msgstr "Selalu Di Atas"
#: ../src/plugins/ontop/ontop.plugin.in.h:2
msgid "Keep the main window on top when playing a movie"
msgstr "Mempertahankan jendela utama selalu berada di atas saat memutar film"
#: ../src/plugins/opensubtitles/opensubtitles.plugin.in.h:1
msgid "Subtitle Downloader"
msgstr "Pengunduh Subtitel"
#: ../src/plugins/opensubtitles/opensubtitles.plugin.in.h:2
msgid "Look for subtitles for the currently playing movie"
msgstr "Mencari teks subtitel untuk film yang sedang diputar"
#: ../src/plugins/opensubtitles/opensubtitles.py:42
msgid "Brazilian Portuguese"
msgstr "Portugis Brasil"
#: ../src/plugins/opensubtitles/opensubtitles.py:177
msgid "Searching for subtitles…"
msgstr "Mencari subtitel..."
#: ../src/plugins/opensubtitles/opensubtitles.py:225
#: ../src/plugins/opensubtitles/opensubtitles.py:645
msgid "Downloading the subtitles…"
msgstr "Mengunduh subtitel..."
#: ../src/plugins/opensubtitles/opensubtitles.py:290
msgid "Could not contact the OpenSubtitles website"
msgstr "Tidak dapat menghubungi situs web OpenSubtitles"
#: ../src/plugins/opensubtitles/opensubtitles.py:323
#: ../src/plugins/opensubtitles/opensubtitles.py:341
msgid "Could not contact the OpenSubtitles website."
msgstr "Tidak dapat menghubungi situs web OpenSubtitles."
#: ../src/plugins/opensubtitles/opensubtitles.py:329
msgid "No results found."
msgstr "Tak memperoleh hasil."
#: ../src/plugins/opensubtitles/opensubtitles.py:478
msgid "Subtitles"
msgstr "Subtitel"
#. translators comment:
#. This is the file-type of the subtitle file detected
#: ../src/plugins/opensubtitles/opensubtitles.py:484
msgid "Format"
msgstr "Format"
#. translators comment:
#. This is a rating of the quality of the subtitle
#: ../src/plugins/opensubtitles/opensubtitles.py:489
msgid "Rating"
msgstr "Rating"
#: ../src/plugins/opensubtitles/opensubtitles.py:525
msgid "Download movie subtitles from OpenSubtitles"
msgstr "Mengunduh subtitel film dari OpenSubtitles"
#: ../src/plugins/opensubtitles/opensubtitles.py:527
msgid "_Download Movie Subtitles…"
msgstr "Un_duh Subtitel Film..."
#: ../src/plugins/opensubtitles/opensubtitles.py:589
msgid "Searching subtitles…"
msgstr "Mencari subtitel..."
#: ../src/plugins/opensubtitles/opensubtitles.ui.h:1
msgid "Download Movie Subtitles"
msgstr "Unduh Subtitel Film"
#: ../src/plugins/opensubtitles/opensubtitles.ui.h:2
msgid "Subtitle _language:"
msgstr "Bahasa subtite_l:"
#: ../src/plugins/opensubtitles/opensubtitles.ui.h:3
msgid "_Play with Subtitle"
msgstr "_Putar dengan Subtitel"
#: ../src/plugins/opensubtitles/org.gnome.totem.plugins.opensubtitles.gschema.xml.in.in.h:1
msgid "Subtitle language"
msgstr "Bahasa subtitel"
#: ../src/plugins/opensubtitles/org.gnome.totem.plugins.opensubtitles.gschema.xml.in.in.h:2
msgid "The language to search for subtitles for movies in."
msgstr "Bahasa subtitel film yang ingin dicari."
#: ../src/plugins/properties/movie-properties.plugin.in.h:1
msgid "Movie Properties"
msgstr "Properti Film"
#: ../src/plugins/properties/movie-properties.plugin.in.h:2
msgid "Adds movie properties to the sidebar"
msgstr "Tambahkan properti film ke panel samping"
#: ../src/plugins/properties/totem-movie-properties.c:246
msgid "Properties"
msgstr "Properti"
#: ../src/plugins/pythonconsole/org.gnome.totem.plugins.pythonconsole.gschema.xml.in.in.h:1
msgid "rpdb2 password"
msgstr "sandi rdb2"
#: ../src/plugins/pythonconsole/org.gnome.totem.plugins.pythonconsole.gschema.xml.in.in.h:2
msgid "A password to protect the rpdb2 server for debugging Totem from unauthorized remote access. If this is empty, a default of 'totem' will be used."
msgstr "Sandi untuk melindungi server rpdb2 untuk mendebug Totem dari akses jarak jauh tanpa ijin. Bila ini kosong, nilai bawaan 'totem' akan dipakai."
#: ../src/plugins/pythonconsole/pythonconsole.plugin.in.h:1
msgid "Python Console"
msgstr "Konsol Python"
#: ../src/plugins/pythonconsole/pythonconsole.plugin.in.h:2
msgid "Interactive Python console"
msgstr "Konsol interaktif Python"
#: ../src/plugins/pythonconsole/pythonconsole.py:88
msgid "Python Console Menu"
msgstr "Menu Konsol Python"
#: ../src/plugins/pythonconsole/pythonconsole.py:93
msgid "_Python Console"
msgstr "Konsol _Python"
#: ../src/plugins/pythonconsole/pythonconsole.py:94
msgid "Show Totem's Python console"
msgstr "Menampilkan konsol Python pada Totem"
#: ../src/plugins/pythonconsole/pythonconsole.py:100
msgid "Python Debugger"
msgstr "Pendebug Python"
#: ../src/plugins/pythonconsole/pythonconsole.py:101
msgid "Enable remote Python debugging with rpdb2"
msgstr "Mengaktifkan debug jarak jauh Python dengan rpdb2"
#. pylint: disable-msg=E1101
#: ../src/plugins/pythonconsole/pythonconsole.py:125
#, python-format
msgid ""
"You can access the Totem.Object through 'totem_object' :\\n"
"%s"
msgstr ""
"Anda dapat mengakses Totem.Object melalui 'totem_object' :\\n"
"%s"
#: ../src/plugins/pythonconsole/pythonconsole.py:129
msgid "Totem Python Console"
msgstr "Konsol Python Totem"
#: ../src/plugins/pythonconsole/pythonconsole.py:139
msgid "After you press OK, Totem will wait until you connect to it with winpdb or rpdb2. If you have not set a debugger password in DConf, it will use the default password ('totem')."
msgstr "Setelah Anda mengklik OK, Totem akan menunggu hingga Anda terhubung melalui winpdb atau rpdb2. Apabila Anda belum menyetel sandi debuger pada DConf, maka akan dipakai sandi baku ('totem')."
#: ../src/plugins/rotation/rotation.plugin.in.h:1
msgid "Rotation Plugin"
msgstr "Plugin Rotasi"
#: ../src/plugins/rotation/rotation.plugin.in.h:2
msgid "Allows videos to be rotated if they are in the wrong orientation"
msgstr "Perbolehkan video diputar arahnya bila orientasinya salah"
#: ../src/plugins/rotation/totem-rotation-plugin.vala:60
msgid "_Rotate Clockwise"
msgstr "Puta_r Searah Jarum Jam"
#: ../src/plugins/rotation/totem-rotation-plugin.vala:62
msgid "Rotate Counterc_lockwise"
msgstr "Putar Me_lawan Arah Jarum Jam"
#: ../src/plugins/save-file/save-file.plugin.in.h:1
msgid "Save Copy"
msgstr "Simpan Salinan"
#: ../src/plugins/save-file/save-file.plugin.in.h:2
msgid "Save a copy of the currently playing movie"
msgstr "Menyimpan salinan dari film yang sedang diputar"
#: ../src/plugins/save-file/totem-save-file.c:63
msgid "Save a Copy..."
msgstr "Simpan Salinan..."
#: ../src/plugins/save-file/totem-save-file.c:64
msgid "Save a copy of the movie"
msgstr "Simpan sebuah salinan film"
#: ../src/plugins/save-file/totem-save-file.c:129
msgid "Save a Copy"
msgstr "Simpan Salinan"
#. translators: Movie is the default saved movie filename,
#. * without the suffix
#: ../src/plugins/save-file/totem-save-file.c:161
msgid "Movie"
msgstr "Film"
#: ../src/plugins/save-file/totem-save-file.c:183
msgid "Movie stream"
msgstr "Stream film"
#: ../src/plugins/screensaver/screensaver.plugin.in.h:1
msgid "Screen Saver"
msgstr "Pengaman Layar"
#: ../src/plugins/screensaver/screensaver.plugin.in.h:2
msgid "Deactivates the screen saver when a movie is playing"
msgstr "Nonaktifkan pengaman layar ketika suatu film sedang diputar"
#: ../src/plugins/screenshot/gallery.ui.h:1
msgid "Screenshot width (in pixels):"
msgstr "Lebar cuplikan (piksel):"
# Opsi.
#: ../src/plugins/screenshot/gallery.ui.h:2
msgid "Calculate the number of screenshots"
msgstr "Kalkulasikan jumlah cuplikan"
#: ../src/plugins/screenshot/gallery.ui.h:3
msgid "Number of screenshots:"
msgstr "Jumlah cuplikan:"
#: ../src/plugins/screenshot/gnome-screenshot.ui.h:1
msgid "_Name:"
msgstr "_Nama:"
#: ../src/plugins/screenshot/gnome-screenshot.ui.h:2
msgid "Save in _folder:"
msgstr "Simpan dalam _folder:"
#: ../src/plugins/screenshot/gnome-screenshot.ui.h:3
msgid "Select a folder"
msgstr "Pilih folder"
#. Write the screenshot to the temporary file
#: ../src/plugins/screenshot/gnome-screenshot-widget.c:385
#: ../src/plugins/screenshot/totem-screenshot.c:64
msgid "Screenshot.png"
msgstr "Cuplikan.png"
#: ../src/plugins/screenshot/screenshot.plugin.in.h:1
msgid "Screenshot"
msgstr "Cuplikan"
#: ../src/plugins/screenshot/screenshot.plugin.in.h:2
msgid "Allows screenshots and galleries to be taken of videos"
msgstr "Mengijinkan cuplikan layar dan galeri atas video diambil"
#: ../src/plugins/screenshot/totem-gallery.c:91
msgid "Save Gallery"
msgstr "Simpan Galeri"
#. Translators: The first argument is the movie title. The second
#. * argument is a number which is used to prevent overwriting files.
#. * Just translate "Gallery", and not the ".jpg". Example:
#. * "Galerie-%s-%d.jpg".
#: ../src/plugins/screenshot/totem-gallery.c:115
#, c-format
msgid "Gallery-%s-%d.jpg"
msgstr "Galeri-%s-%d.jpg"
#. Set up the window
#: ../src/plugins/screenshot/totem-gallery-progress.c:101
msgid "Creating Gallery..."
msgstr "Membuat Galeri..."
#. Set the progress label
#: ../src/plugins/screenshot/totem-gallery-progress.c:107
#, c-format
msgid "Saving gallery as \"%s\""
msgstr "Menyimpan galeri sebagai \"%s\""
#: ../src/plugins/screenshot/totem-screenshot.c:113
msgid "There was an error saving the screenshot."
msgstr "Terjadi Galat ketika menyimpan cuplikan."
#: ../src/plugins/screenshot/totem-screenshot.c:139
msgid "Save Screenshot"
msgstr "Simpan Cuplikan"
#. Create the screenshot widget
#. Translators: %s is the movie title and %d is an auto-incrementing number to make filename unique
#: ../src/plugins/screenshot/totem-screenshot.c:160
#, c-format
msgid "Screenshot-%s-%d.png"
msgstr "Cuplikan-%s-%d.png"
#: ../src/plugins/screenshot/totem-screenshot-plugin.c:84
#: ../src/plugins/screenshot/totem-screenshot-plugin.c:91
msgid "Totem could not get a screenshot of the video."
msgstr "Totem tidak dapat mengambil cuplikan video."
#: ../src/plugins/screenshot/totem-screenshot-plugin.c:91
msgid "This is not supposed to happen; please file a bug report."
msgstr "Ini tidak seharusnya terjadi, laporkanlah sebagai hama kode."
#: ../src/plugins/screenshot/totem-screenshot-plugin.c:191
msgid "Take _Screenshot..."
msgstr "Ambil _Cuplikan..."
#: ../src/plugins/screenshot/totem-screenshot-plugin.c:191
msgid "Take a screenshot"
msgstr "Mengambil cuplikan"
#: ../src/plugins/screenshot/totem-screenshot-plugin.c:192
msgid "Create Screenshot _Gallery..."
msgstr "Buat _Galeri Cuplikan..."
#: ../src/plugins/screenshot/totem-screenshot-plugin.c:192
msgid "Create a gallery of screenshots"
msgstr "Membuat galeri dari sejumlah cuplikan"
#: ../src/plugins/skipto/skipto.plugin.in.h:1
#: ../src/plugins/skipto/totem-skipto.c:197
msgid "Skip To"
msgstr "Lompat ke"
#: ../src/plugins/skipto/skipto.plugin.in.h:2
msgid "Provides the \"Skip to\" dialog"
msgstr "Menyediakan dialog \"Lompat ke\""
#: ../src/plugins/skipto/skipto.ui.h:1
msgid "_Skip to:"
msgstr "_Melompat ke:"
#. Update the "seconds" label so that it always has the correct singular/plural form
#. Translators: label for the seconds selector in the "Skip to" dialogue
#: ../src/plugins/skipto/totem-skipto.c:160
msgid "second"
msgid_plural "seconds"
msgstr[0] "detik"
#. Fix the label width at the maximum necessary for the plural labels, to prevent it changing size when we change the spinner value
#. Translators: you should translate this string to a number (written in digits) which corresponds to the longer character length of the
#. * translations for "second" and "seconds", as translated elsewhere in this file. For example, in English, "second" is 6 characters long and
#. * "seconds" is 7 characters long, so this string should be translated to "7". See: bgo#639398
#: ../src/plugins/skipto/totem-skipto.c:190
msgctxt "Skip To label length"
msgid "7"
msgstr "7"
#: ../src/plugins/skipto/totem-skipto-plugin.c:182
msgid "_Skip To..."
msgstr "_Lompat ke..."
#: ../src/plugins/skipto/totem-skipto-plugin.c:182
msgid "Skip to a specific time"
msgstr "Melompat ke waktu tertentu"
|