-
-
Notifications
You must be signed in to change notification settings - Fork 625
Expand file tree
/
Copy pathid.json
More file actions
1089 lines (1089 loc) · 48.7 KB
/
id.json
File metadata and controls
1089 lines (1089 loc) · 48.7 KB
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
{
"1 update available|:count updates available": "1 pembaruan tersedia| :count pembaruan tersedia",
"1 update|:count updates": ":count pembaruan",
":count item selected|:count items selected": ":count item dipilih",
":count row|:count rows": ":count baris",
":count selected|:count selected": ":count dipilih",
":count set|:count sets": ":count set",
":count word|:count words": ":count kata| :count kata",
":count\/:max selected": ":count \/ :max yang dipilih",
":count\/:total characters": ":count \/ :total karakter",
":file uploaded": ":file diunggah",
":start-:end of :total": ":start - :end dari :total",
":success\/:total entries were deleted": ":success \/ :total entri telah dihapus",
":success\/:total entries were published": ":success \/ :total entri telah dipublikasikan",
":success\/:total entries were unpublished": ":success \/ :total entri tidak dipublikasikan",
":success\/:total items were deleted": ":success \/ :total item telah dihapus",
":title Field": ":title Bidang",
"A blueprint with that name already exists.": "Cetak biru dengan nama itu sudah ada.",
"A fieldset with that name already exists.": "fieldset dengan nama itu sudah ada.",
"A Global Set with that handle already exists.": "Set Global dengan pegangan itu sudah ada.",
"A navigation with that handle already exists.": "Navigasi dengan pegangan itu sudah ada.",
"A Role with that handle already exists.": "Peran dengan pegangan itu sudah ada.",
"A User Group with that handle already exists.": "Grup Pengguna dengan pegangan itu sudah ada.",
"A valid blueprint is required.": "Diperlukan cetak biru yang valid.",
"Above": "Di atas",
"Action completed": "Tindakan selesai",
"Action failed": "Aksi gagal",
"Activate Account": "Aktifkan Akun",
"Activation URL": "URL Aktivasi",
"Active": "Aktif",
"Add": "Tambah",
"Add Attribute": "Tambahkan Atribut",
"Add child link to entry": "Tambahkan tautan anak ke entri",
"Add child nav item": "Tambahkan item navigasi anak",
"Add Color": "Tambahkan Warna",
"Add Column": "Tambahkan Kolom",
"Add Column After": "Tambahkan Kolom Setelah",
"Add Column Before": "Tambahkan Kolom Sebelum",
"Add Condition": "Tambahkan Kondisi",
"Add Date": "Tambahkan Tanggal",
"Add Email": "Tambahkan Email",
"Add Item": "Tambahkan Barang",
"Add Key": "Tambahkan Kunci",
"Add Nav Item": "Tambahkan Item Nav",
"Add Option": "Tambahkan Opsi",
"Add or drag fields here": "Tambahkan atau seret bidang ke sini",
"Add Row": "Tambahkan Baris",
"Add Row After": "Tambahkan Baris Setelah",
"Add Row Before": "Tambahkan Baris Sebelum",
"Add Row Label": "Tambahkan Label Baris",
"Add Rule": "Tambahkan Aturan",
"Add Ruler": "Tambahkan Penggaris",
"Add Section": "Tambahkan Bagian",
"Add Set": "Tambahkan Set",
"Add Set Group": "Tambahkan Grup Set",
"Add Set Label": "Tambahkan Label Set",
"Add Site": "Tambahkan Situs",
"Add Tab": "Tambahkan Tab",
"Added": "Ditambahkan",
"Addon Settings": "Pengaturan Pengaya",
"Addons": "Pengaya",
"Affected files": "File yang terpengaruh",
"After": "Setelah",
"After Saving": "Setelah Disimpan",
"Alias Item": "Alias Barang",
"Align Center": "Sejajarkan Tengah",
"Align Justify": "Ratakan Ratakan",
"Align Left": "Rata Kiri",
"Align Right": "Rata Kanan",
"All": "Semua",
"All caches cleared.": "Semua cache dihapus",
"All of the following conditions pass": "Semua kondisi berikut lulus",
"All rights reserved.": "Hak cipta dilindungi",
"Allow additions": "Izinkan penambahan",
"Allow Antlers": "Izinkan Tanduk",
"Allow Any Color": "Izinkan Warna Apa Pun",
"Allow Creating": "Izinkan Pembuatan",
"Allow Downloading": "Izinkan Mengunduh",
"Allow Fullscreen Mode": "Izinkan Mode Layar Penuh",
"Allow Moving": "Izinkan Memindahkan",
"Allow Renaming": "Izinkan Mengganti Nama",
"Allow Source Mode": "Izinkan Mode Sumber",
"Allow Uploads": "Izinkan Mengunggah",
"Alt Text": "Teks Alternatif",
"Always Save": "Selalu Simpan",
"Always show": "Selalu tunjukkan",
"Always Show Set Button": "Selalu Tunjukkan Tombol Set",
"An entry will be deleted|:count entries will be deleted": "Entri akan dihapus|:count entri akan dihapus",
"An item with this ID could not be found": "Item dengan ID ini tidak dapat ditemukan",
"and": "dan",
"and :count more": "dan :count lainnya",
"Antlers": "Tanduk",
"Any of the following conditions pass": "Salah satu kondisi berikut lulus",
"Any unsaved changes will not be duplicated into the new entry.": "Segala perubahan yang belum disimpan tidak akan diduplikasi ke entri baru.",
"Any unsaved changes will not be reflected in this action's behavior.": "Segala perubahan yang belum disimpan tidak akan tercermin dalam perilaku tindakan ini.",
"Appearance": "Penampilan",
"Appearance & Behavior": "Penampilan & Perilaku",
"Append": "Menambahkan",
"Application Cache": "Cache Aplikasi",
"Application cache cleared.": "Cache aplikasi dihapus.",
"Apply": "Menerapkan",
"Save All": "Simpan semua",
"Apply Link": "Terapkan Tautan",
"Are you sure you want to delete this column?": "Anda yakin ingin menghapus kolom ini?",
"Are you sure you want to delete this entry?": "Anda yakin ingin menghapus entri ini?",
"Are you sure you want to delete this item?": "Anda yakin ingin menghapus item ini?",
"Are you sure you want to delete this row?": "Anda yakin ingin menghapus baris ini?",
"Are you sure you want to delete this value?": "Anda yakin ingin menghapus nilai ini?",
"Are you sure you want to delete this view?": "Apakah Anda yakin ingin menghapus tampilan ini?",
"Are you sure you want to delete this?|Are you sure you want to delete these :count items?": "Anda yakin ingin menghapus ini?|Anda yakin ingin menghapus :count item ini?",
"Are you sure you want to move this asset?|Are you sure you want to move these :count assets?": "Anda yakin ingin memindahkan aset ini?|Anda yakin ingin memindahkan :count aset ini?",
"Are you sure you want to move this folder?|Are you sure you want to move these :count folders?": "Apakah Anda yakin ingin memindahkan folder ini?|Apakah Anda yakin ingin memindahkan :count folder ini?",
"Are you sure you want to publish this entry?|Are you sure you want to publish these :count entries?": "Anda yakin ingin mempublikasikan entri ini?|Anda yakin ingin mempublikasikan :count entri ini?",
"Are you sure you want to remove this page?": "Anda yakin ingin menghapus halaman ini?",
"Are you sure you want to remove this section and all of its children?": "Apakah Anda yakin ingin menghapus bagian ini dan semua turunannya?",
"Are you sure you want to rename this asset?|Are you sure you want to rename these :count assets?": "Anda yakin ingin mengganti nama aset ini?|Anda yakin ingin mengganti nama :count aset ini?",
"Are you sure you want to rename this folder?|Are you sure you want to rename these :count folders?": "Apakah Anda yakin ingin mengganti nama folder ini?|Apakah Anda yakin ingin mengganti nama :count folder ini?",
"Are you sure you want to reset nav customizations?": "Apakah Anda yakin ingin mengatur ulang penyesuaian navigasi?",
"Are you sure you want to reset this item?": "Apakah Anda yakin ingin mengatur ulang item ini?",
"Are you sure you want to restore this revision?": "Anda yakin ingin memulihkan revisi ini?",
"Are you sure you want to run this action?|Are you sure you want to run this action on :count items?": "Anda yakin ingin menjalankan tindakan ini?|Anda yakin ingin menjalankan tindakan ini pada :count item?",
"Are you sure you want to unpublish this entry?|Are you sure you want to unpublish these :count entries?": "Anda yakin ingin membatalkan publikasi entri ini?|Anda yakin ingin membatalkan publikasi :count entri ini?",
"Are you sure?": "Apakah Anda yakin?",
"Are you sure? This field's value will be replaced by the value in the original entry.": "Apakah Anda yakin? Nilai bidang ini akan digantikan oleh nilai dalam entri asli.",
"Are you sure? Unsaved changes will be lost.": "Apakah Anda yakin? Perubahan yang belum disimpan akan hilang.",
"Ascending": "Menaik",
"Asset": "Aset",
"Asset container created": "Penampung aset dibuat",
"Asset container deleted": "Penampung aset dihapus",
"Asset container saved": "Penampung aset disimpan",
"Asset container updated": "Penampung aset diperbarui",
"Asset Containers": "Penampung Aset",
"Asset deleted": "Aset dihapus",
"Asset folder deleted": "Folder aset dihapus",
"Asset folder saved": "Folder aset disimpan",
"Asset references updated": "Referensi aset diperbarui",
"Asset reuploaded": "Aset diunggah ulang",
"Asset saved": "Aset disimpan",
"Asset uploaded": "Aset diunggah",
"Assets": "Aset",
"Assign Groups": "Tetapkan Grup",
"Assign groups to this user?|Assign groups to these :count users?": "Tetapkan grup ke pengguna ini?|Tetapkan grup ke :count pengguna ini?",
"Assign Roles": "Tetapkan Peran",
"Assign roles to this user?|Assign roles to these :count users?": "Tetapkan peran ke pengguna ini?|Tetapkan peran ke :count pengguna ini?",
"Assign|Assign to :count users": "Tetapkan|Tetapkan ke :count pengguna",
"Attachments": "Lampiran",
"Author": "Author",
"Autocomplete": "Pelengkapan otomatis",
"Automatic Line Breaks": "Pemutusan Baris Otomatis",
"Automatic Links": "Tautan Otomatis",
"Available Columns": "Kolom yang Tersedia",
"Back to Users": "Kembali ke Pengguna",
"BCC Recipient(s)": "Penerima BCC",
"Before": "Sebelum",
"Before you can delete this fieldset, you need to remove references to it in blueprints and fieldsets:": "Sebelum Anda dapat menghapus fieldset ini, Anda perlu menghapus referensi ke fieldset tersebut dalam cetak biru dan fieldset:",
"Behavior": "Perilaku",
"Below": "Di bawah",
"Between": "Di antara",
"Blockquote": "Blockquote",
"Blueprint": "Cetak Biru",
"Blueprint created": "Cetak biru dibuat",
"Blueprint deleted": "Cetak biru dihapus",
"Blueprint reset": "Atur ulang cetak biru",
"Blueprint saved": "Cetak biru disimpan",
"Blueprints": "Cetak biru",
"Blueprints successfully reordered": "Cetak biru berhasil disusun ulang",
"Bold": "Tebal",
"Border": "Berbatasan",
"Boundaries": "Batasan",
"Browse": "Jelajahi",
"Build time": "Waktu membangun",
"Button": "Tombol",
"Buttons": "Tombol",
"Buttons & Controls": "Tombol & Kontrol",
"Buy Licenses": "Beli Lisensi",
"Cache": "Cache",
"Cache Manager": "Manager Cache",
"Cached images": "Gambar tercache",
"Cancel": "Batalkan",
"Cast Booleans": "Cast Booleans",
"CC Recipient(s)": "Penerima CC",
"Change Password": "Ganti Kata Sandi",
"Change successful.": "Perubahan berhasil.",
"Changes to this field in the fieldset will stay in sync.": "Perubahan pada bidang ini di fieldset akan tetap sinkron.",
"Changes to this fieldset will stay in sync.": "Perubahan pada fieldset ini akan tetap sinkron.",
"Character Limit": "Batas Karakter",
"Characters": "Karakter",
"Checkbox Options": "Opsi Kotak Centang",
"Choose Blueprint": "Pilih Cetak Biru",
"Choose Image": "Pilih Gambah",
"Choose...": "Pilih...",
"Clear": "Bersihkan",
"Clear All": "Bersihkan Semua",
"Clearable": "Dapat dibersihkan",
"Close": "Tutup",
"Close Editor": "Tutup Editor",
"Close Markdown Cheatsheet": "Tutup Contekan Markdown",
"Close Modal": "Tutup Modal",
"Code Block": "Blok Kode",
"Collapse": "Jatuh",
"Collapse All": "Ciutkan Semua",
"Collapse Set": "Ciutkan Set",
"Collapse Sets": "Ciutkan Set",
"Collection": "Koleksi",
"Collection already exists": "Koleksi sudah ada",
"Collection created": "Koleksi dibuat",
"Collection deleted": "Koleksi dihapus",
"Collection is not available on site \":handle\".": "Koleksi tidak tersedia di situs " :handle ".",
"Collection saved": "Koleksi disimpan",
"Collection tree deleted": "Pohon koleksi dihapus",
"Collection tree saved": "Pohon koleksi disimpan",
"Collections": "Koleksi",
"Columns": "Kolom",
"Columns have been reset to their defaults.": "Kolom telah disetel ulang ke defaultnya.",
"Commit": "Commit",
"Common": "Umum",
"Computed": "Dihitung",
"Conditions": "Kondisi",
"Configuration": "Konfigurasi",
"Configuration is cached": "Konfigurasi di-cache",
"Configure": "Konfigurasi",
"Configure Asset Container": "Konfigurasikan Penampung Aset",
"Configure Blueprints": "Konfigurasikan Cetak Biru",
"Configure Collection": "Konfigurasi Koleksi",
"Configure Form": "Konfigurasi Formulir",
"Configure Global Set": "Konfigurasi Set Global",
"Configure Navigation": "Konfigurasi Navigasi",
"Configure Role": "Konfigurasi Peran",
"Configure Site": "Konfigurasikan Situs",
"Configure Sites": "Konfigurasikan Situs",
"Configure Taxonomy": "Konfigurasi Taksonomi",
"Configure User Group": "Konfigurasi Grup Pengguna",
"Confirm": "Konfirmasi",
"Confirm Password": "Konfirmasi Kata Sandi",
"Container": "Penampung",
"Contains": "Memuat",
"Contains Any": "Mengandung apa pun",
"Content": "Konten",
"Content committed": "Konten dicommit",
"Content Model": "Model Konten",
"Content saved": "Konten disimpan",
"Content Stache": "Stache Konten",
"Continue Editing": "Lanjutkan Menyunting",
"Copied to clipboard": "Disalin ke papan klip",
"Copy": "Menyalin",
"Copy password reset email for this user?": "Salin email pengaturan ulang kata sandi untuk pengguna ini?",
"Copy Password Reset Link": "Salin Tautan Reset Kata Sandi",
"Copy to clipboard": "Salin ke papan klip",
"Copy URL": "Salin URL",
"Core": "Inti",
"Couldn't publish entry": "Tidak dapat menerbitkan entri",
"Couldn't save entry": "Tidak dapat menyimpan entri",
"Couldn't save term": "Tidak dapat menyimpan istilah",
"Couldn't unpublish entry": "Tidak dapat membatalkan publikasi entri",
"CP Nav Preferences": "Preferensi CP Nav",
"Create": "Buat",
"Create & Link Item": "Buat & Tautkan Item",
"Create a Blueprint": "Buat Cetak Biru",
"Create a Collection": "Buat Koleksi",
"Create a Navigation": "Buat Navigasi",
"Create and Send Email": "Buat dan Kirim Email",
"Create Another": "Buat yang lain",
"Create Asset Container": "Buat Penampung Aset",
"Create Blueprint": "Buat Cetak Biru",
"Create Child Entry": "Buat Entri Anak",
"Create Collection": "Buat Koleksi",
"Create Container": "Buat Penampung",
"Create Entry": "Buat Entri",
"Create Field": "Buat Bidang",
"Create Fieldset": "Buat Fieldset",
"Create Folder": "Buat Folder",
"Create Folders": "Buat Folder",
"Create Form": "Buat Formulir",
"Create Global Set": "Buat Set Global",
"Create Group": "Buat Grup",
"Create Localization": "Buat Lokalisasi",
"Create Navigation": "Buat Navigasi",
"Create New View": "Buat Tampilan Baru",
"Create Revision": "Buat Revisi",
"Create Role": "Buat Peran",
"Create Taxonomy": "Buat Taksonomi",
"Create Term": "Buat Istilah",
"Create User": "Buat Pengguna",
"Create User Group": "Buat Grup Pengguna",
"Create Views": "Buat Tampilan",
"Current": "Sekarang ini",
"Current Password": "Kata Sandi Saat Ini",
"Current Version": "Versi Sekarang Ini",
"Custom": "Kebiasaan",
"Custom Attributes": "Atribut Kustom",
"Custom Item": "Barang Kustom",
"Custom method passes": "Metode kustom lulus",
"Custom Section": "Bagian Kustom",
"Customize Columns": "Sesuaikan Kolom",
"Customize Invitation": "Sesuaikan Undangan",
"Customizing the Control Panel Nav": "Menyesuaikan Navigasi Panel Kontrol",
"Dark": "Gelap",
"Dark Mode": "Mode Gelap",
"Dashboard": "Dasbor",
"Data": "Data",
"Data Format": "Format Data",
"Data updated": "Data diperbarui",
"Date": "Tanggal",
"Dates & Behaviors": "Tanggal & Perilaku",
"Default": "Default",
"Default Color": "Warna Default",
"Default From Address": "Dari Alamat Default",
"Default From Name": "Dari Nama Default",
"Default Mailer": "Mailer Default",
"Default Mode": "Modus Default",
"Default preferences saved": "Preferensi default disimpan",
"Default Value": "Nilai Default",
"Delete": "Hapus",
"Delete :resource": "Hapus :resource",
"Delete child entry|Delete :count child entries": "Hapus entri anak|Hapus :count entru anak",
"Delete Column": "Hapus Kolom",
"Delete Container": "Hapus Penampung",
"Delete Entry": "Hapus Entri",
"Delete Form": "Hapus Formulir",
"Delete Original Asset": "Hapus Aset Asli",
"Delete Row": "Hapus Baris",
"Delete Rule": "Hapus Aturan",
"Delete Set": "Hapus Set",
"Delete Table": "Hapus Tabel",
"Delete Taxonomy": "Hapus Taksonomi",
"Delete User Group": "Hapus Grup Pengguna",
"Delete Value": "Hapus Nilai",
"Delete View": "Hapus Tampilan",
"Deleted": "Terhapus",
"Delete|Delete :count items?": "Hapus|Hapus :count item?",
"Descending": "Menurun",
"Description of the image": "Deskripsi gambar",
"Deselect option": "Batalkan pilihan",
"Detach": "Melepaskan",
"Dictionary": "Kamus",
"Directory": "Direktori",
"Directory already exists.": "Direktori sudah ada.",
"Disabled": "Dinonaktifkan",
"Discard": "Membuang",
"Discard Changes": "Buang perubahan",
"Disk": "Disk",
"Dismiss": "Memberhentikan",
"Display": "Tampilkan",
"Display Label": "Label Tampilan",
"Displayed Columns": "Tampilkan Kolom",
"Documentation": "Dokumentasi",
"Don't remove empty nodes": "Jangan hapus node kosong",
"Downgrade to :version": "Turunkan ke :version",
"Download": "Unduh",
"Download file": "Unduh file",
"Downloads": "Unduh",
"Draft": "Draf",
"Driver": "Driver",
"Drop File to Upload": "Jatuhkan File untuk Diunggah",
"Drop to Upload": "Jatuhkan untuk Mengunggah",
"DummyClass": "DummyClass",
"Duplicate": "Duplikat",
"Duplicate ID Regenerated": "ID Duplikat Dibuat Ulang",
"Duplicate IDs": "ID Duplikat",
"Duplicate Row": "Duplikat Baris",
"Duplicate Set": "Set Duplikat",
"Duplicated": "Digandakan",
"Dynamic": "Dinamic",
"Dynamic Folder": "Folder Dinamis",
"e.g. hero_": "misalnya, hero_",
"Earliest Date": "Tanggal Paling Awal",
"Edit": "Sunting",
"Edit Asset": "Sunting Aset",
"Edit Blueprint": "Sunting Cetak Biru",
"Edit Blueprints": "Sunting Cetak Biru",
"Edit Collection": "Sunting Koleksi",
"Edit Container": "Sunting Penampung",
"Edit Content": "Edit Konten",
"Edit Entry": "Edit Entri",
"Edit Fieldset": "Sunting Fieldset",
"Edit Form": "Sunting Formulir",
"Edit Global Set": "Sunting Set Global",
"Edit Image": "Edit Gambar",
"Edit Nav Item": "Edit Item Navigasi",
"Edit Navigation": "Sunting Navigasi",
"Edit Section": "Edit Bagian",
"Edit Set": "Edit Atur",
"Edit Set Group": "Edit Set Grup",
"Edit Site": "Sunting Situs",
"Edit Tab": "Tab Sunting",
"Edit Taxonomy": "Sunting Taksonomi",
"Edit Term": "Sunting Istilah",
"Edit User": "Sunting Pengguna",
"Edit User Group": "Sunting Grup Pengguna",
"Editable once created": "Dapat disunting setelah dibuat",
"Editions": "Edisi",
"Editor": "Editor",
"Email": "Email",
"Email Address": "Alamat Email",
"Email Content": "Konten Email",
"Email Subject": "Subjek Email",
"Emojis": "Emoji",
"Enable Input Rules": "Aktifkan Aturan Input",
"Enable Line Wrapping": "Aktifkan Pembungkus Garis",
"Enable Paste Rules": "Aktifkan Aturan Tempel",
"Enable Pro Mode": "Aktifkan Mode Pro",
"Enable Publish Dates": "Aktifkan Tanggal Publikasi",
"Enable Revisions": "Aktifkan Revisi",
"Encryption": "Enkripsi",
"Enter any internal or external URL.": "Masukkan URL internal atau eksternal apa pun.",
"Enter URL": "Masukkan URL",
"Entries": "Entri",
"Entries could not be deleted": "Entri tidak dapat dihapus",
"Entries could not be published": "Entri tidak dapat dipublikasikan",
"Entries could not be unpublished": "Entri tidak dapat dibatalkan publikasinya",
"Entries successfully reordered": "Entri berhasil disusun ulang",
"Entry": "Entri",
"Entry could not be deleted": "Entri tidak dapat dihapus",
"Entry could not be published": "Entri tidak dapat dipublikasikan",
"Entry could not be unpublished": "Entri tidak dapat dibatalkan publikasinya",
"Entry created": "Entri dibuat",
"Entry deleted": "Entri dihapus",
"Entry deleted|Entries deleted": "Entri dihapus|Entri dihapus",
"Entry has a published version": "Entri memiliki versi terbitan",
"Entry has not been published": "Entri belum diterbitkan",
"Entry has unpublished changes": "Entri memiliki perubahan yang belum diterbitkan",
"Entry link": "Tautan entri",
"Entry published|Entries published": "Entri diterbitkan|Entri diterbitkan",
"Entry saved": "Entri disimpan",
"Entry schedule reached": "Jadwal masuk telah tercapai",
"Entry unpublished|Entries unpublished": "Entri belum dipublikasikan|Entri belum dipublikasikan",
"Equals": "Setara",
"Escape Markup": "Abaikan Markup",
"Everything is up to date.": "Semuanya terbaru.",
"Example": "Contoh",
"Exit Fullscreen Mode": "Keluar dari Mode Layar Penuh",
"Expand": "Memperluas",
"Expand All": "Bentangkan Semua",
"Expand Set": "Bentangkan Set",
"Expand Sets": "Perluas Set",
"Expand\/Collapse Sets": "Perluas\/Ciutkan Set",
"Expect a root page": "Mengharapkan alaman akar",
"Expired": "Kedaluwarsa",
"Export Submissions": "Ekspor Kiriman",
"External link": "Tautan eksternal",
"False": "PALSU",
"Favorite removed": "Favorit dihapus",
"Favorite saved": "Favorit disimpan",
"Favorites": "Favorit",
"Featured": "Unggulan",
"Field": "Bidang",
"Field added": "Bidang ditambahkan",
"Field Previews": "Pratinjau Lapangan",
"Fields": "Bidang",
"Fieldset": "Fieldset",
"Fieldset created": "Fieldset dibuat",
"Fieldset deleted": "Fieldset dihapus",
"Fieldset reset": "Setel ulang Fieldset",
"Fieldset saved": "Fieldset disimpan",
"Fieldsets": "Fieldset",
"Fieldtypes": "Fieldtypes",
"File": "File",
"File Driver": "Driver File",
"Filename": "Nama file",
"Filter": "Filter",
"Filter preset deleted": "Preset filter dihapus",
"Filter preset saved": "Preset filter disimpan",
"Filter preset updated": "Preset filter diperbarui",
"Finish": "Selesai",
"First Child": "Anak Pertama",
"Fix": "Memperbaiki",
"Fixed": "Tetap",
"Floating": "Mengambang",
"Focal Point": "Titik Fokus",
"Focus Search": "Fokus Pencarian",
"Folder": "Folder",
"Folder created": "Folder dibuat",
"Folder Name": "Nama Folder",
"Forgot password?": "Lupa kata sandi?",
"Forgot Your Password?": "Lupa kata sandi Anda?",
"Form already exists": "Formulis sudah ada",
"Form created": "Formulir dibuat",
"Form deleted": "Formulir dihapus",
"Form saved": "Formulir disimpan",
"Form Submission": "Pengiriman Formulir",
"Format": "Format",
"Forms": "Formulir",
"Free": "Free",
"From": "Dari",
"Full Width": "Lebar Penuh",
"Future Date Behavior": "Perilaku Tanggal Mendatang",
"General": "Umum",
"Generate": "Hasilkan",
"Git": "Bahasa Indonesia: Git",
"Global Search": "Pencarian Global",
"Global Set created": "Set Global dibuat",
"Global Set deleted": "Set Global dihapus",
"Global Set saved": "Set Global disimpan",
"Global Sets": "Set Global",
"Global Variables": "Variable Global",
"Globals": "Global",
"Go To Listing": "Pergi ke Daftar",
"Greater than": "Lebih besar dari",
"Greater than or equals": "Lebih besar dari atau sama dengan",
"Grid": "Kisi",
"Group": "Grup",
"Groups": "Grup",
"Handle": "Handle",
"Heading 1": "Judul 1",
"Heading 2": "Judul 2",
"Heading 3": "Judul 3",
"Heading 4": "Judul 4",
"Heading 5": "Judul 5",
"Heading 6": "Judul 6",
"Heading Anchors": "Judul Jangkar",
"Hello!": "Halo!",
"Here": "Disini",
"Hidden": "Tersembunyi",
"Hidden by default": "Tersembunyi secara default",
"Hidden from output": "Tersembunyi dari keluaran",
"Hidden Item": "Barang Tersembunyi",
"Hidden Section": "Bagian Tersembunyi",
"Hide": "Bersembunyi",
"Hide Partials": "Sembunyikan Parsial",
"Hide when": "Sembunyikan saat",
"Horizontal Rule": "Aturan Horisontal",
"Host": "Host",
"HTML view": "Tampilan HTML",
"HTTP Status": "Status HTTP",
"I remember my password": "Saya ingat kata sandi saya",
"Icon": "Ikon",
"ID": "PENGENAL",
"ID regenerated and Stache cleared": "ID dibuat ulang dan Stache dibersihkan",
"If you're having trouble clicking the \":actionText\" button, copy and paste the URL below\ninto your web browser:": "Jika anda mengalami masalah saat mengklik tombol \":actionText\", salin dan tempel URL di bawah ini ke browser: Anda",
"Image": "Gambar",
"Image Cache": "Cache Gambar",
"Image cache cleared.": "ache Gambar dibersihkan",
"Image Manipulation": "Manipulasi Gambar",
"Impersonating": "Meniru",
"Imported from fieldset": "Diimpor dari fieldset",
"Included in output": "Sertakan dalam keluaran",
"Indent Size": "Ukuran Inden",
"Indent Type": "Tipe Inden",
"Index": "Indeks",
"Index Template": "Template Indeks",
"Inline": "Sebaris",
"Inline Code": "Kode Sebaris",
"Inline Label": "Label Sebaris",
"Inline Label when True": "Label Sebaris saat Benar",
"Input Behavior": "Perilaku Input",
"Input Label": "Label Masukan",
"Input Type": "Tipe Masukan",
"Insert Asset": "Sisipkan Aset",
"Insert Image": "Sisipkan Gambar",
"Insert Link": "Sisipkan tautan",
"Installed": "Terpasang",
"Instructions": "Instruksi",
"Instructions Position": "Instruksi Posisi",
"Intelligently Warm Presets": "Preset Pemanasan Cerdas",
"Invalid content, :type button\/extension is not enabled": "Konten tidak valid, tombol\/ekstensi :type tidak diaktifkan",
"Invalid content, nodes and marks must have a type": "Konten, node, dan tanda yang tidak valid harus memiliki tipe",
"Invalid credentials.": "Kredensial tidak valid.",
"Invitation": "Undangan",
"Is": "Adalah",
"Isn't": "Tidak",
"Italic": "Miring",
"Item could not be deleted": "Item tidak dapat dihapus",
"Item deleted|Items deleted": "Item dihapus|Item dihapus",
"Items could not be deleted": "Item tidak dapat dihapus",
"Key": "Kunci",
"Key Mappings": "Pemetaan Kunci",
"Keyboard Shortcuts": "Pintasan keyboard",
"Keyed": "Kunci",
"Keys": "Kunci",
"Label": "Label",
"Language": "Bahasa",
"Laptop": "Laptop",
"Last Login": "Terakhir Masuk",
"Last Modified": "Terakhir diubah",
"Last rebuild": "Terakhir dibangun kembali",
"Latest Date": "Tanggal Terbaru",
"Layout": "Tata letak",
"Learn more": "Pelajari lebih lanjut",
"Learn more about :link": "Pelajari lebih lanjut tentang :link",
"Less than": "Kurang dari",
"Less than or equals": "Kurang dari atau sama dengan",
"Licensing": "Perizinan",
"Light": "Terang",
"Light Mode": "Mode Terang",
"Link": "Tautan",
"Link a fieldset": "Tautkan fieldset",
"Link a single field": "Tautkan sebuah bidang",
"Link Collections": "Koleksi Tautan",
"Link Existing": "Tautan yang Ada",
"Link Existing Item": "Tautkan Item yang Ada",
"Link Fields": "Tautkan Bidang",
"Link Noopener": "Tautan Noopener",
"Link Noreferrer": "Tautan Noreferrer",
"Link to Entry": "Tautan ke Entri",
"Link to URL": "Tautan ke URL",
"Linked fieldset": "Fieldset yang tertaut",
"Links": "Tautan",
"List": "Daftar",
"Listable": "Dapat didaftar",
"Live Preview": "Pratinjau Langsung",
"Locale": "Lokal",
"Localizable": "Dapat dilokalkan",
"Localizable field": "Bidang yang dapat dilokalkan",
"Localizations": "Lokalisasi",
"Location": "Lokasi",
"Locked": "Terkunci",
"Log in": "Masuk",
"Log in to continue": "Masuk untuk melanjutkan",
"Log in with :provider": "Masuk dengan :provider",
"Log in with email": "Masuk dengan email",
"Log out": "Keluar",
"Logged in": "Sudah masuk",
"Login successful.": "Berhasil masuk",
"Main": "Utama",
"Manage Licenses": "Kelola Lisensi",
"Manage Sets": "Kelola Set",
"Map to Blueprint": "Peta ke Cetak Biru",
"Markdown": "Penurunan harga",
"Markdown Cheatsheet": "Contekan Markdown",
"Markdown paths": "Jalur markdown",
"Markdown theme": "Tema markdown",
"Max": "Maksimal",
"Max Depth": "Kedalaman Maksimal",
"Max Files": "File maksimal",
"Max Items": "Item maksimal",
"Max Rows": "Baris maksimal",
"Max Sets": "Set Maks",
"Maximum items selected:": "Maksimal item selected:",
"Maximum Rows": "Baris maksimal",
"Media": "Media",
"Merge Cells": "Gabungkan Sel",
"Min": "Minimal",
"Min Files": "File Min",
"Min Rows": "Baris Minimal",
"Minimum Rows": "Baris Minimum",
"Miscellaneous": "Serba Aneka",
"Mobile": "Seluler",
"Modified": "Diubah",
"Modified Item": "Item yang dimodifikasi",
"Mount": "Pasang",
"Move": "Pindah",
"Move Asset|Move :count Assets": "Pindahkan Aset| Pindahkan :count Aset",
"Move Folder|Move :count Folders": "Pindahkan Folder | Pindahkan :count Folder",
"Moved Item": "Barang yang Dipindahkan",
"Multi-Site": "Multi-Situs",
"Multiple": "Banyak",
"My Fieldsets": "Set Lapangan Saya",
"My Nav": "Navigasi Saya",
"My Preferences": "Preferensi Saya",
"Name": "Nama",
"Nav Item": "Item Navigasi",
"Navigation": "Navigasi",
"Navigation deleted": "Navigasi dihapus",
"Navigation saved": "Navigasi disimpan",
"Navigation tree deleted": "Pohon navigasi dihapus",
"Navigation tree saved": "Pohon navigasi tersimpan",
"Never": "Tidak pernah",
"New Asset": "Aset Baru",
"New Filename": "Nama File Baru",
"New Section": "Bagian Baru",
"New Set": "Set Baru",
"New Set Group": "Grup Set Baru",
"New Tab": "Tab Baru",
"Next": "Berikutnya",
"No": "Tidak",
"No addons installed": "Tidak ada pengaya yang dipasang",
"No available filters": "Tidak ada filter yang tersedia",
"No items with duplicate IDs.": "Tidak ada item dengan ID duplikat.",
"No license key": "Tidak ada kunci lesensi",
"No link data found for": "Tidak ada data tautan yang ditemukan untuk",
"No options to choose from.": "Tidak ada pilihan untuk dipilih.",
"No results": "Tidak ada hasil",
"No revisions": "Tidak ada revisi",
"No submissions": "Tidak ada kiriman",
"No templates to choose from.": "Tidak ada templat untuk dipilih.",
"None": "Tidak ada",
"Not": "Bukan",
"Not equals": "Tidak sama",
"Not Featured": "Tidak diunggulkan",
"Not listable": "Tidak bisa didaftarkan",
"Notes about this revision": "Catatan tentang revisi ini",
"Number": "Nomor",
"OK": "OKE",
"Only the references will be removed. Entries will not be deleted.": "Hanya referensi yang akan dihapus. Entri tidak akan dihapus.",
"Open Dropdown": "Buka Dropdown",
"Open in a new window": "Buka di jendela baru",
"Open in new window": "Buka di jendela baru",
"Option": "Pilihan",
"Optional": "Opsional",
"Options": "Pilihan",
"or": "atau",
"or drag & drop here to replace.": "atau seret & letakkan di sini untuk mengganti.",
"or drag & drop here.": "atau seret & lepas di sini.",
"Orderable": "Dapat disusun ulang",
"Ordered List": "Daftar yang disusun ulang",
"Ordering": "Mendaftarkan ulang",
"Origin": "Asal",
"Origin Behavior": "Perilaku Asal",
"Other": "Lain",
"Override Alt": "Timpa Semua",
"Override For Role": "Mengganti Untuk Peran",
"Override For User": "Ganti Untuk Pengguna",
"Page Not Found": "Halaman Tidak Ditemukan",
"Pages": "Halaman",
"Parser": "Pengurai",
"Password": "Kata Sandi",
"Password changed": "Kata sandi diubah",
"Password Confirmation": "Konfirmasi Kata Sandi",
"Password for :username": "Kata sandi untuk :username",
"Past Date Behavior": "Perilaku Tanggal Lalu",
"Per Page": "Per Halaman",
"Per-site": "Per situs",
"Permissions": "Izin",
"Phone": "Telepon",
"PHP Info": "Info PHP",
"PHP Version": "Versi PHP",
"Pick Color": "Pilih Warna",
"Pin to Favorites": "Sematkan ke Favorit",
"Pin to Top Level": "Sematkan ke Tingkat Atas",
"Pinned Item": "Item yang Disematkan",
"Placeholder": "Placeholder",
"Pop in": "Pop in",
"Pop out": "Pop out",
"Port": "Port",
"Preferences": "Preferensi",
"Prefix": "Awalan",
"Prepend": "Tambahkan di awal",
"Preview": "Pratinjau",
"Preview Targets": "Pratinjau Target",
"Previous": "Sebelumnya",
"Price": "Harga",
"Pro": "Pro",
"Pro Tip": "Tip Pro",
"Process Source Images": "Gambar Sumber Proses",
"Profile": "Profil",
"Propagate": "Menyebarkan",
"Protected Page": "Halaman yang dilindungi",
"Publish": "Terbitkan",
"Publish by Default": "Publikasikan secara Default",
"Publish Date": "Tanggal Publikasi",
"Publish Entry|Publish :count Entries": "Publikasikan Entri|Publikasikan :count Entri",
"Publish Now": "Publikasikan Sekarang",
"Published": "Diterbitkan",
"Push Tags": "Push Tags",
"Query Scopes": "Cakupan Kueri",
"Quick Save": "Simpan Cepat",
"Radio Options": "Opsi Radio",
"Range": "Jarak",
"Read Only": "Baca Saja",
"Read the Docs": "Baca Dokumen",
"Read the Documentation": "Baca Dokumentasi",
"Reading Time": "Waktu Membaca",
"Rebuild Search": "Bangun Ulang Pencarian",
"Recipient(s)": "Penerima",
"Records": "Rekaman",
"Redirect": "Alihkan",
"Refresh": "Segarkan",
"Regards,": "Salam,",
"Regenerate": "Diperbarui",
"Regenerate from: :field": "Regenerasi dari: :field",
"Region": "Wilayah",
"Registration successful.": "Pendaftaran berhasil.",
"Relationship": "Hubungan",
"Released on :date": "Rilis pada :date",
"Remember me": "Ingat saya",
"Remove": "Hapus",
"Remove all empty nodes": "Hapus semua node kosong",
"Remove Asset": "Hapus Aset",
"Remove child page|Remove :count child pages": "Hapus halaman anak|Hapus :count halaman anak",
"Remove Empty Nodes": "Hapus Node Kosong",
"Remove empty nodes at the start and end": "Hapus node kosong di awal dan akhir",
"Remove Filter": "Hapus Filter",
"Remove Formatting": "Hapus Pemformatan",
"Remove Link": "Hapus Tautan",
"Remove Page": "Hapus Halaman",
"Remove tag": "Hapus tag",
"Rename": "Ganti Nama",
"Rename Asset|Rename :count Assets": "Ganti Nama Aset| Ganti Nama :count Aset",
"Rename Folder": "Ganti Nama Folder",
"Rename Folder|Rename :count Folders": "Ganti Nama Folder | Ganti Nama :count Folder",
"Rename View": "Ubah Nama Tampilan",
"Renamed Section": "Bagian yang Diganti Namanya",
"Reorder": "Susun Ukang",
"Reorderable": "Dapat disusun ulang",
"Replace": "Ganti",
"Replace Asset": "Ganti Aset",
"Reply To": "Balas Ke",
"Repository path": "Jalur Repository",
"Require Slugs": "Membutuhkan Slug",
"Required": "Dibutuhkan",
"Reset": "Setel ulang",
"Reset :resource": "Setel ulang :resource",
"Reset Nav Customizations": "Setel Ulang Kustomisasi Nav",
"Reset Password": "Setel Ulang Kata Sandi",
"Responsive": "Responsif",
"Restore": "Pulihkan",
"Restore Revision": "Pulihkan Revisi",
"Restrict": "Batasi",
"Restrict to Folder": "Batasi ke Folder",
"Resume Your Session": "Lanjutkan Sesi Anda",
"Reupload": "Unggah ulang",
"Reveal Password": "Ungkapkan Kata Sandi",
"Revision created": "Revisi dibuat",
"Revision deleted": "Revisi dihapus",
"Revision History": "Sejarah Revisi",
"Revision restored": "Revisi dipulihkan",
"Revision saved": "Revisi disimpan",
"Revisions": "Revisi",
"Role": "Peran",
"Role created": "Peran dibuat",
"Role deleted": "Peran dihapus",
"Role saved": "Peran disimpan",
"Role updated": "Peran diperbarui",
"Roles": "Peran",
"Roles & Groups": "Peran & Grup",
"Roles & Permissions": "Peran & Izin",
"Root": "Akar",
"Route": "Rute",
"Routing & URLs": "Perutean & URL",
"Rows": "Baris",
"Rulers": "Penggaris",
"Rules": "Aturan",
"Run action|Run action on :count items": "Jalankan tindakan|Jalankan tindakan pada :count item",
"Save": "Simpan",
"Save & Publish": "Simpan & Terbitkan",
"Save & Unpublish": "Simpan & Batalkan Penerbitan",
"Save as HTML": "Simpan sebagai HTML",
"Save Changes": "Simpan Perubahan",
"Save Draft": "Simpan Draf",
"Save Order": "Simpan Susunan",
"Save to": "Simpan ke",
"Saved": "Disimpan",
"Saving": "Menyimpan",
"Scaffold Collection": "Koleksi Perancah",
"Scaffold Views": "Tampilan Perancah",
"Scheduled": "Terjadwal",
"Search": "Cari",
"Search Index": "Indeks Pencarian",
"Search Indexes": "Indeks Pencarian",
"Search Sets": "Pencarian Set",
"Search...": "Cari ...",
"Searchable": "Dapat dicari",
"Searchables": "Yang dapat dicari",
"Searching in:": "Mencari di:",
"Select": "Pilih",
"Select Across Sites": "Pilih di Seluruh Situs",
"Select asset container": "Pilih penampung aset",
"Select Collection(s)": "Pilih Koleksi",
"Select Dropdown": "Pilih Dropdown",
"Select Group": "Pilih Grup",
"Select Operator": "Pilih Operator",
"Select Role": "Pilih Peran",
"Select Value": "Pilih Nilai",
"Selectable Mode": "Mode yang Dapat Dipilih",
"Selection": "Pilihan",
"Seller": "Penjual",
"Send Email Invitation": "Kirim Email Undangan",
"Send Password Reset": "Kirim Setel Ulang Kata Sandi",
"Would you like to email a reset link to this user?|Would you like to email a reset link to these :count users?": "Kirim Setel Ulang Kata Sandi ke pengguna ini?|Kirim Setel Ulang Kata Sandi ke :count pengguna ini?",
"Send Test Email": "Kirim Email Uji",
"Sender": "Pengirim",
"Sendmail": "Sendmail",
"Send|Send to :count users": "Kirim|Kirim ke :count pengguna",
"Service Unavailable": "Layanan tidak tersedia",
"Session Expired": "Sesi Kedaluwarsa",
"Set Alt": "Atur Segalanya",
"Set as start page": "Atur sebagai halaman awal",
"Set Behavior": "Mengatur Perilaku",
"Set to now": "Diatur ke sekarang",
"Sets": "Sets",
"Settings": "Pengaturan",
"Show": "Menunjukkan",
"Show Fields": "Tampilkan Bidang",
"Show Filename": "Tampilkan Nama Berkas",
"Show HTML Source": "Tampilkan Sumber HTML",
"Show Keyboard Shortcuts": "Tampilkan Pintasan Keyboard",
"Show Line Numbers": "Tunjukkan Nomor Baris",
"Show Markdown Cheatsheet": "Tampilkan Cheatsheet Penurunan Harga",
"Show Reading Time": "Tunjukkan Waktu Membaca",
"Show Regenerate Button": "Tampilkan Tombol Regenerasi",
"Show Seconds": "Tampilkan Detik",
"Show Set Alt": "Tampilkan Set Alt",
"Show Template": "Tampilkan Template",
"Show when": "Tunjukkan kapan",
"Show Word Count": "Tampilkan Jumlah Kata",
"Shown by default": "Ditampilkan secara default",
"Single": "Tunggal",
"Site": "Situs",
"Site deleted": "Situs dihapus",
"Site saved": "Situs tersimpan",
"Site selected.": "Situs dipilih.",
"Sites": "Situs",
"Size": "Ukuran",
"Slug": "Siput",
"Slugs": "Siput",
"Small": "Kecil",
"Smart Typography": "Tipografi Cerdas",
"Smartypants": "Smartypants",
"Something went wrong": "Ada yang salah",
"Sometimes": "Kadang-kadang",
"Sort Direction": "Arah Urut",
"Sortable": "Dapat diurutkan",
"Spaces": "Spasi",
"Special": "Khusus",
"Stache cleared.": "Stache dihapus.",
"Stache warmed.": "Kumisnya menghangat.",
"Stack Selector": "Pemilih Tumpukan",
"Stacked": "Ditumpuk",
"Start Impersonating": "Mulai Meniru",
"Start Page": "Halaman Awal",
"Statamic": "Statamic",
"Statamic Pro is required.": "Statamic Pro diperlukan.",
"Static Page Cache": "Cache Halaman Statis",
"Static page cache cleared.": "Cache halaman statis dihapus.",
"Status": "Status",
"Step": "Langkah",
"Stop impersonating": "Berhenti meniru",
"Stop Impersonating": "Berhenti Meniru",
"Store Submissions": "Pengiriman Toko",
"Strategy": "Strategi",
"Strikethrough": "Coret",
"Structured": "Tersusun",
"Subject": "Subjek",
"Submission deleted": "Kiriman dihapus",
"Submission saved": "Kiriman disimpan",
"Submission successful.": "Pengiriman berhasil.",
"Submissions": "Kiriman",
"Submit": "Kirimkan",
"Subscript": "Subskrip",
"Super Admin": "Admin Super",
"Super User": "Pengguna Super",
"Superscript": "Superskrip",
"Support": "Dukung",
"Swatches": "Swatch",
"Sync": "Sinkronisasi",
"System": "Sistem",
"System default": "Default sistem",
"Table": "Meja",
"Table of Contents": "Daftar isi",
"Tablet": "Tablet",
"Tabs": "Tab",
"Target Blank": "Target Kosong",
"Taxonomies": "Taksonomi",
"Taxonomy": "Taksonomi",
"Taxonomy created": "Taksonomi dibuat",
"Taxonomy deleted": "Taksonomi dihapus",
"Taxonomy saved": "Taksonomi disimpan",
"Template": "Template",
"Templates": "Templat",
"Term created": "Istilah dibuat",
"Term deleted": "Istilah dihapus",
"Term references updated": "Referensi istilah diperbarui",
"Term saved": "Jangka waktu disimpan",
"Term Template": "Templat Istilah",
"Terms": "Persyaratan",
"Test email sent.": "Email uji terkirim.",
"Text": "Teks",
"Text & Rich Content": "Teks & Konten Kaya",
"Text item": "Item teks",
"Text view": "Tampilan teks",
"The given data was invalid.": "Data yang diberikan tidak valid.",
"The Statamic Playground": "The Statamic Playground",
"Theme": "Tema",
"There are no entries in this collection": "Tidak ada entri dalam koleksi ini",
"These are now your default columns.": "Ini sekarang menjadi kolom default Anda.",
"This action is unauthorized.": "Tindakan ini tidak sah.",
"This container is empty": "Wadah ini kosong",
"This form is awaiting responses": "Formulir ini menunggu tanggapan",
"This Global Set has no fields.": "Set Global ini tidak memiliki bidang.",
"This is now your start page.": "Sekarang ini adalah halaman awal Anda.",
"This is the published version": "Ini adalah versi yang dipublikasikan",
"This is the root page": "Ini adalah halaman root",
"This will delete the collection and all of its entries.|This will delete the collections and all of their entries.": "Ini akan menghapus koleksi dan semua entri di dalamnya.|Ini akan menghapus koleksi dan semua entri di dalamnya.",
"Time Enabled": "Waktu Diaktifkan",
"Timepicker": "Pemilih Waktu",
"Title": "Judul",
"Title Format": "Format Judul",
"Today": "Hari ini",
"Toggle": "Beralih",
"Toggle Button": "Tombol Toggle",
"Toggle Dark Mode": "Alihkan Mode Gelap",
"Toggle Fullscreen": "Alihkan Layar Penuh",
"Toggle Fullscreen Mode": "Alihkan Mode Layar Penuh",
"Toggle Header Cell": "Alihkan Sel Header",
"Toggle Mobile Nav": "Beralih Nav Seluler",
"Toggle Nav": "Beralih Nav",
"Toggle Sidebar": "Toggle Sidebar",
"Toolbar Mode": "Mode Toolbar",
"Tools": "Alat",
"Tree": "Pohon",
"Trial Mode": "Mode percobaan",
"True": "BENAR",
"Try again": "Coba lagi",
"Typeahead Field": "Bidang Kepala Ketik",
"UI Mode": "Mode UI",
"Unable to change password": "Tidak dapat mengubah kata sandi",
"Unable to delete filter preset": "Tak dapat menghapus prasetel filter",
"Unable to delete view": "Tidak dapat menghapus tampilan",
"Unable to rename view": "Tidak dapat mengganti nama tampilan",
"Unable to save changes": "Tidak dapat menyimpan perubahan",