-
Notifications
You must be signed in to change notification settings - Fork 22
/
id.json
1182 lines (1182 loc) · 77.5 KB
/
id.json
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
{
"Dashboard": "Dasbor",
"Back to spaces": "Kembali ke ruang",
"Content": "Konten",
"Commerce": "Perdagangan",
"Assets": "Aset",
"Datasources": "Sumber data",
"Activities": "Kegiatan",
"Tasks": "Tugas",
"Components": "Komponen",
"Apps": "Aplikasi",
"Settings": "Pengaturan",
"Subscription": "Langganan",
"Plugins": "Plugin",
"Logout": "Keluar",
"Report a problem": "Melaporkan masalah",
"Create new space": "Menciptakan ruang baru",
"Search spaces...": "Cari ruang...",
"My organization": "Organisasi saya",
"Subscribe": "Langganan",
"To": "Untuk",
"From": "Dari",
"Apply filter": "Terapkan filter",
"Filter": "Saring",
"Unknown user": "Pengguna tidak diketahui",
"Author": "Penulis",
"Action": "Tindakan",
"Date": "Tanggal",
"Back": "Kembali",
"Activity Details": "Rincian kegiatan",
"Open": "Buka",
"Restore this Story": "Kembalikan Cerita ini",
"Categories": "Kategori",
"Story": "Cerita",
"The item has been restored!": "Item telah dipulihkan!",
"All": "Semua",
"Search for apps, discover new field types and add functionalities to your Storyblok project.": "Mencari aplikasi, menemukan jenis bidang baru dan menambahkan fungsionalitas untuk proyek Storyblok Anda",
"My apps": "Aplikasi saya",
"Create new app": "Buat aplikasi baru",
"Installed": "Dipasang",
"App Directory": "App Directory",
"There are no apps in this category.": "Tidak ada aplikasi dalam kategori ini",
"Install": "Install",
"Choose the space to install this app": "Pilih ruang untuk menginstal aplikasi ini",
"Can not move asset folder into folder without permissions.": "Tidak bisa memindah folder aset ke dalam folder tanpa izin",
"Can not move asset into folder without permissions.": "Tidak bisa memindah aset ke folder tanpa izin",
"Can not move asset away from folder without permissions.": "Tidak bisa memindah aset jauh dari folder tanpa izin",
"Define the new name of the folder.": "Tentukan nama baru folder",
"Trashbin": "Bak sampah",
"Are you sure that you want to delete this folder?": "Apakah Anda yakin bahwa Anda ingin menghapus folder ini?",
"Add": "Menambahkan",
"Asset folders are not included in the free plan but you can try them in the": "Folder aset tidak termasuk dalam rencana gratis tapi Anda dapat mencoba mereka di",
"New folder will be created in": "Folder baru akan dibuat di",
"trial period": "Periode percobaan",
"Can not create asset folder without permission for parent.": "Tidak bisa membuat folder aset tanpa izin untuk orang tua",
"Original": "Asli",
"Done": "Selesai",
"Cancel": "Membatalkan",
"Insert": "Memasukkan",
"Add Asset(s)": "Tambah Aset (s)",
"Close": "Menutup",
"items": "Item",
"Delete": "Menghapus",
"Move to folder": "Pindah ke% FOLDER",
"Replace": "Menggantikan",
"Unselect all": "Semua unselect",
"Restore": "Mengembalikan",
"Tiles": "Ubin",
"List": "Daftar",
"No assets found": "Tidak ada aset yang ditemukan",
"Sort": "Menyortir",
"Default": "Kegagalan",
"View": "Melihat",
"Creation date (asc)": "Tanggal pembuatan (asc)",
"Filename (asc)": "Nama file (asc)",
"Creation date (desc)": "Tanggal pembuatan (desc)",
"Filename (desc)": "Nama file (desc)",
"Last updated date (asc)": "Terakhir diperbarui tanggal (asc)",
"Last updated date (desc)": "Terakhir diperbarui tanggal (desc)",
"You are not allowed to insert this filetype here.": "Anda tidak diizinkan untuk memasukkan filetype ini di sini",
"This key is already defined": "Kunci ini sudah didefinisikan",
"Key is in invalid format": "Key adalah dalam format tidak valid",
"Something went wrong uploading some items": "Sesuatu yang tidak beres upload beberapa item",
"Please choose a folder in the left sidebar": "Silakan pilih folder di sidebar kiri",
"Define the new name of": "Tentukan nama baru",
"Something went wrong renaming the attribute": "Sesuatu yang tidak beres mengubah nama atribut",
"Be aware! Changing the name can take a few minutes to update all content items. Make sure your editors have saved their current work and exit the editor.": "Waspadalah! Mengubah nama dapat mengambil beberapa menit untuk memperbarui semua item konten. Pastikan editor Anda telah menyelamatkan pekerjaan mereka saat ini dan keluar dari editor",
"Define the new name of the component group.": "Tentukan nama baru dari kelompok komponen",
"Save": "Menyimpan",
"Are you sure that you want to delete this component group?": "Apakah Anda yakin bahwa Anda ingin menghapus grup komponen ini?",
"Copy": "Salinan",
"New": "Baru",
"Move to group": "Pindah ke kelompok",
"Please choose a component group in the left sidebar": "Silakan memilih kelompok komponen di sidebar kiri",
"Paste": "Tempel",
"Add block": "Blok add",
"Creation of a component failed. Maybe it already exists.": "Penciptaan komponen gagal. Mungkin sudah ada",
"Are you sure you want to DELETE this component(s)?": "Apakah Anda yakin Anda ingin DELETE komponen ini (s)?",
"new": "Baru",
"Type to search or to create a": "Ketik untuk mencari atau untuk membuat",
"Create new": "Membuat baru",
"block": "Blok",
"New Component": "Komponen baru",
"Updated": "Diperbarui",
"Name": "Nama",
"Shortcuts: Esc, Control + S": "Shortcuts: Esc, Control + S",
"Next": "Lanjut",
"Define a name": "Tentukan nama",
"Save schema": "Simpan skema",
"Act as content type (eg. blog-post)": "Bertindak sebagai jenis konten (misalnya. Blog-post)",
"Define": "Menetapkan",
"Nestable": "Nestable",
"Technical name": "Nama teknis",
"Edit field": "Mengedit bidang",
"Config": "Config",
"Schema": "Skema",
"Renaming": "Mengganti nama",
"Change field name": "Perubahan nama field",
"Used in the json as component name": "Digunakan dalam json sebagai nama komponen",
"Be aware! Changing the technical name can take a few minutes to update all content items. Make sure your editors have saved their current work and exit the editor.": "Waspadalah! Mengubah nama teknis dapat mengambil beberapa menit untuk memperbarui semua item konten. Pastikan editor Anda telah menyelamatkan pekerjaan mereka saat ini dan keluar dari editor",
"Display name": "Nama tampilan",
"Preview template": "Preview Template",
"Screenshot or icon": "Screenshot atau ikon",
"Used in the editor interface only": "Digunakan dalam antarmuka Editor hanya",
"of this setting": "Dari pengaturan ini",
"Read the documentation": "Baca dokumentasi",
"Load versions": "Versi beban",
"Versions": "Versi",
"has been added below": "Telah ditambahkan di bawah ini",
"Examples: news_items, body, columns, title, description or call_to_action_btn": "Contoh: news_items, tubuh, kolom, judul, deskripsi atau call_to_action_btn",
"The component has been restored!": "Komponen telah dipulihkan!",
"Do you really want to leave without saving your changes?": "Apakah Anda benar-benar ingin meninggalkan tanpa menyimpan perubahan?",
"Type": "Tipe",
"Beta": "Beta",
"Translatable": "Yg dpt diterjemahkan",
"Allow empty paragraphs": "Memungkinkan paragraf kosong",
"Linktype": "Jenis Tautan",
"Rich-text as default": "Kaya-teks sebagai default",
"Custom type": "Jenis kustom",
"Category": "Kategori",
"Section items": "Item bagian",
"Product": "Produk",
"Customize toolbar": "Customize toolbar",
"Toolbar items": "Item toolbar",
"Source": "Sumber",
"CSS class options (label/value)": "Pilihan kelas CSS (label / nilai)",
"Datasource": "Sumber data",
"Stories": "Cerita",
"Self": "Diri",
"Internal datasource": "Sumber data internal",
"Recommended to be checked, as UID is required for automatic link resolving.": "Direkomendasikan untuk diperiksa, karena diperlukan UID untuk link otomatis menyelesaikan",
"Use UID instead of ID": "Gunakan UID bukannya ID",
"In case you have a multi-language folder structure you can add the {0} placeholder and the path will be adapted dynamically. Examples: {0}/categories/, {0}/{1}/categories/": "Dalam kasus Anda memiliki struktur folder multi-bahasa yang Anda dapat menambahkan {0} placeholder dan jalan akan disesuaikan secara dinamis. Contoh: {0} / kategori /, {0} / {1} / kategori /",
"External JSON": "JSON eksternal",
"Path to folder of stories": "Path ke folder cerita",
"Width": "Lebar",
"URL": "URL",
"ratio": "Perbandingan",
"pixel": "Pixel",
"Allowed maximum": "Diizinkan maksimum",
"Options (name/value)": "Pilihan (nama / nilai)",
"Component(s)": "Komponen (s)",
"Group(s)": "Group (s)",
"Required field(s) (comma separated)": "Kolom yang harus diisi (s) (dipisahkan koma)",
"Required": "Yg dibutuhkan",
"Default asset folder": "Folder aset default",
"Choose an asset folder where the assets should be assigned to.": "Pilih folder aset dimana aset harus diserahkan kepada",
"With {level} the path will be replaced dynamically using parts of the current slug. Examples: {0}/categories/, {0}/{1}/categories/": "Dengan {tingkat} jalan akan diganti secara dinamis menggunakan bagian dari siput saat ini. Contoh: {0} / kategori /, {0} / {1} / kategori /",
"Restrict to folder": "Batasi ke folder",
"Force folder restriction": "Pembatasan folder Angkatan",
"Regex validation": "Regex validasi",
"Exclude from export": "Kecualikan dari ekspor",
"export app": "Aplikasi ekspor",
"To use with the": "Untuk menggunakan dengan",
"Default value": "Nilai default",
"Can be updated by preview window": "Dapat diperbarui dengan jendela pratinjau",
"Loading...": "Memuat",
"Item": "Barang",
"Allow only specific components to be inserted": "Memungkinkan hanya komponen tertentu untuk dimasukkan",
"Restrict to content types": "Membatasi untuk jenis konten",
"Keep original size": "Menjaga ukuran aslinya",
"Force crop": "Tanaman Angkatan",
"Prepend https to url": "Prepend https ke url",
"Height": "Tinggi",
"Maximum characters": "Karakter maksimum",
"Disable time selection": "Pemilihan waktu Nonaktifkan",
"Description": "Deskripsi",
"dimensions app": "Dimensi aplikasi",
"Force overwrite by merge action": "Memaksa menimpa dengan tindakan penggabungan",
"Id/Slug": "Id / Slug",
"Enable RTL (Right to left)": "Aktifkan RTL (kanan ke kiri)",
"Autosave": "Penyimpanan otomatis",
"API Url": "API Url",
"Export": "Ekspor",
"Import/Export": "Ekspor Impor",
"Dimensions": "Ukuran",
"Add Dimension": "Tambahkan Dimensi",
"Import": "Impor",
"A datasource in Storyblok is a collection of key-value pairs.": "Sebuah sumber data di Storyblok adalah kumpulan dari pasangan kunci-nilai",
"Datasources can be used in a schema definition of a component for single or multiple choice options. You can also access": "Datasources dapat digunakan dalam definisi skema komponen untuk pilihan pilihan tunggal atau ganda. Anda juga dapat mengakses",
"datasource entries from the API": "Entri sumber data dari API",
"to use them for labels, categories or similar.": "Menggunakannya untuk label, kategori atau serupa",
"Unsaved Changes": "Belum disimpan Perubahan",
"Datasource entries": "Entri sumber data",
"Datasources are not included in the free plan": "Datasources tidak termasuk dalam rencana bebas",
"but you can try them in the": "Tapi Anda dapat mencoba mereka di",
"Saved": "Diselamatkan",
"Select all": "Pilih Semua",
"The options could not be loaded.": "Pilihan tidak dapat dimuat",
"New Datasource": "Baru DataSource",
"The following component(s) can not be pasted here": "Komponen berikut (s) tidak dapat ditempelkan di sini",
"Please save first to continue editing child components.": "Silakan simpan pertama untuk melanjutkan mengedit komponen anak",
"Enabled?": "Diaktifkan?",
"Asset manager": "Manajer aset",
"Loading": "Memuat",
"Upload new": "Unggah baru",
"Your file exceeds the maximum filesize limit of": "File Anda melebihi batas maksimum filesize",
"Please reduce the size of your file.": "Silakan mengurangi ukuran file Anda",
"Alt text": "Alt teks",
"Base64": "Base64",
"Original Size": "Ukuran asli",
"Image loading failed": "Loading gambar gagal",
"Quote": "Kutipan",
"Code Block": "Blok kode",
"Ordered List": "Daftar pesanan",
"Headline 2": "Headline 2",
"Headline 4": "Headline 4",
"Headline 3": "Headline 3",
"Headline 5": "Headline 5",
"Paragraph": "Gugus kalimat",
"Help": "Tolong",
"Internal link": "Internal link",
"Show only selected": "Tampilkan hanya dipilih",
"more items found": "Item yang lebih ditemukan",
"Invoices": "Faktur",
"Tip: Use Ctrl + S to save": "Tip: Gunakan Ctrl + S untuk menyimpan",
"Input": "Memasukkan",
"Publish": "Menerbitkan",
"You are not allowed to edit this plugin but can see the code at Settings/Details.": "Anda tidak diizinkan untuk mengedit plugin ini tetapi dapat melihat kode di Settings / Rincian",
"Field type preview": "Jenis pratinjau lapangan",
"Options (key/value)": "Pilihan (key / value)",
"Space Id": "Ruang Id",
"Enable local dev mode": "Aktifkan mode dev lokal",
"Settings/Details": "Pengaturan / Rincian",
"Output": "Keluaran",
"for approval to make it available for all users.": "Persetujuan untuk membuatnya tersedia untuk semua pengguna",
"Submit the plugin": "Kirim plugin",
"Code": "Kode",
"You can copy the code of this plugin to create your own plugin.": "Anda dapat menyalin kode plugin ini untuk membuat plugin sendiri",
"Assigned spaces": "Ruang ditugaskan",
"If you assign this plugin to a space other developers can also use it in the schema definition. Without assigning it only you can add the plugin to the schemas.": "Jika Anda menetapkan plugin ini untuk ruang pengembang lain juga dapat menggunakannya dalam definisi skema. Tanpa menetapkannya hanya Anda dapat menambahkan plugin untuk skema",
"Attention: All spaces using this plugin will not be able to use it any more if you click delete.": "Perhatian: Semua ruang menggunakan plugin ini tidak akan dapat menggunakannya lagi jika Anda klik delete",
"Documentation": "Dokumentasi",
"Danger zone": "Zona bahaya",
"What is a field type plugin?": "Apa jenis lapangan Plugin?",
"A field type plugin extends the Storyblok editor with your own custom field types.": "Sebuah jenis lapangan Plugin meluas editor Storyblok dengan jenis bidang kustom Anda sendiri",
"It is basically a": "Hal ini pada dasarnya",
"The properties that are passed to the field type are:": "Sifat-sifat yang dilewatkan ke jenis lapangan adalah:",
"component extended with a few helpers in the window.Storyblok.plugin mixin.": "Komponen diperpanjang dengan beberapa pembantu di mixin window. Storyblok. Plugin",
"Examples for field types are colorpickers, WYSYWYG editors or meta tags.": "Contoh untuk jenis bidang yang colorpickers, editor WYSYWYG atau meta tag",
"Uid of the parent component": "Uid dari komponen induk",
"Options parsed from the schema options array": "Pilihan diurai dari pilihan skema array yang",
"Schema options object": "Skema pilihan objek",
"Current value of the fieldtype": "Nilai saat fieldtype yang",
"Story id of the current story": "Cerita id dari cerita saat ini",
"Space id of the current space": "Ruang id dari ruang saat ini",
"Api function to call the delivery api": "Fungsi Api untuk memanggil api pengiriman",
"Methods": "Metode",
"Draft token of the current space": "Draft tanda ruang saat ini",
"How to call the Storyblok api?": "Bagaimana memanggil api Storyblok?",
"Should be used to define the initial data of the plugin.": "Harus digunakan untuk menentukan data awal dari plugin",
"Should be used to initialize the plugin. Examples: Load data from Storyblok or external sources, Load and initialize a WYSIWYG editor.": "Harus digunakan untuk menginisialisasi plugin. Contoh: Beban data dari Storyblok atau sumber eksternal, Load dan menginisialisasi editor WYSIWYG",
"To pass options that are configurable in the schema definition define the option keys in the \"Input\" box. The values will be available in the this.options object.": "Untuk lulus pilihan yang dikonfigurasi dalam definisi skema mendefinisikan tombol pilihan pada kotak \"Input\". Nilai-nilai akan tersedia di objek this. Options",
"How to pass options?": "Bagaimana untuk lulus pilihan?",
"In field types you can use this.api to get access to the Storyblok delivery api. You can use it for example to build a selectbox of stories.": "Dalam jenis bidang Anda dapat menggunakan this. Api untuk mendapatkan akses ke pengiriman api Storyblok. Anda dapat menggunakannya misalnya untuk membangun selectbox cerita",
"Folder/Content-item permissions": "Hak akses folder / Content-item",
"Item saved successfully!": "Item berhasil disimpan!",
"Source of sync": "Sumber sync",
"Preview": "Preview",
"Preview url": "Preview url",
"View on Jsfiddle": "Lihat di Jsfiddle",
"Download": "Download",
"Admin": "Admin",
"Permissions": "Perizinan",
"Editor": "Editor",
"Advanced Rights": "Hak canggih",
"Allow saving content": "Memungkinkan menyimpan konten",
"Allow publishing content": "Memungkinkan penerbitan konten",
"Allow saving datasources": "Memungkinkan menyimpan datasources",
"Allow managing subscription": "Memungkinkan mengelola langganan",
"Allow access to ecommerce app": "Memungkinkan akses ke aplikasi e-commerce",
"Deny access to visual composer": "Menolak akses ke komposer visual yang",
"Field Permissions": "Bidang Perizinan",
"General": "Umum",
"Allowed path": "Path Diizinkan",
"Your crawl URL": "URL merangkak Anda",
"Crawler": "Crawler",
"Enabled": "Diaktifkan",
"Index": "Indeks",
"Crawl now": "Crawl sekarang",
"Information needed to access the search endpoint or to configure the search client.": "Informasi yang diperlukan untuk mengakses titik akhir pencarian atau mengkonfigurasi klien pencarian",
"Search Setup Guide": "Panduan Search Pengaturan",
"Your tenant ID": "ID penyewa",
"See": "Lihat",
"Documents in index": "Dokumen indeks",
"Crawl requested at": "Merangkak diminta pada",
"Tenant ID": "Tenant ID",
"Documents": "Dokumen",
"Clear index": "Jelas index",
"Last crawled at": "Lalu merangkak di",
"Crawl has been initiated": "Crawl telah dimulai",
"In the first 14 days you can try out all Premium plan features!": "Dalam 14 hari pertama Anda dapat mencoba semua fitur rencana Premium!",
"Index deletion has been initiated": "Indeks penghapusan telah dimulai",
"API-Keys": "API-Keys",
"We would love to hear your thoughts about Storyblok on": "Kami akan senang mendengar pikiran Anda tentang Storyblok di",
"Renderer": "Renderer",
"Backup": "Backup",
"Users": "Pengguna",
"Workflow": "Workflow",
"Search": "Cari",
"Languages": "Bahasa",
"This is the page that the frontend-editor opens.": "Ini adalah halaman yang frontend-editor akan terbuka",
"Location (default environment)": "Lokasi (lingkungan default)",
"Insert your domain/location including the protocol. Example: http://www.example.com/": "Masukkan domain Anda / lokasi termasuk protokol. Contoh: http://www. Example. Com/",
"Provide this ID in your support tickets": "Memberikan ID ini di tiket dukungan Anda",
"Your space ID": "ID ruang Anda",
"Preview urls": "Preview url",
"Define multiple domains/locations to quickly switch the preview urls in the story-editor.": "Mendefinisikan beberapa domain / lokasi untuk beralih cepat url pratinjau dalam cerita-editor",
"Add preview url": "Menambahkan pratinjau url",
"Webhooks": "Webhooks",
"Story published & unpublished": "Cerita yang diterbitkan & amp; tidak diterbitkan",
"Story saved": "Cerita disimpan",
"Branch deployed": "Cabang dikerahkan",
"Release merged": "Rilis digabung",
"Slack integration": "Integrasi slack",
"Loading... You will be redirect to Slack in a few seconds!": "Loading. Anda akan redirect ke Slack dalam beberapa detik!",
"Get notified on your Slack channel if a new Story has been published!": "Dapatkan pemberitahuan pada saluran Slack Anda jika Cerita baru telah diterbitkan!",
"With this integration you can choose a Slack channel where Storyblok posts messages whenever a user publishes new content.": "Dengan integrasi ini Anda dapat memilih saluran Slack mana pesan Storyblok posting setiap kali pengguna menerbitkan konten baru",
"Disconnect": "Memutuskan",
"Cloud name": "Nama Cloud",
"Cloudinary integration": "Integrasi Cloudinary",
"Api Key": "Kunci API",
"Branches": "Ranting",
"Default content type": "Jenis konten default",
"Content types": "Jenis konten",
"Name of the branch": "Nama cabang",
"Branches are not included in the free plan": "Cabang tidak termasuk dalam rencana bebas",
"Duplication": "Duplikasi",
"This is useful if you want to offer your space for other users as a boilerplate or theme.": "Ini berguna jika Anda ingin menawarkan ruang untuk pengguna lain sebagai boilerplate atau tema",
"ATTENTION! Only check this checkbox if you are sure that you want all data of this space available for duplication.": "PERHATIAN! Hanya memeriksa kotak centang ini jika Anda yakin bahwa Anda ingin semua data ruang ini tersedia untuk duplikasi",
"Make this space duplicatable by all users": "Membuat ruang duplicatable ini dengan semua pengguna",
"Content ownership": "Kepemilikan konten",
"Parent ID": "Identitas orang tua",
"Parent": "Induk",
"Image service": "Layanan gambar",
"Content ownership client endpoint": "Kepemilikan konten klien endpoint",
"List of paths to invalidate": "Daftar jalan untuk invalidate",
"Delete this space": "Hapus ruang ini",
"Invalidate": "Pembatal",
"Workflow webhooks": "Webhooks Workflow",
"Owner": "Pemilik",
"Workflow changed": "Workflow berubah",
"Transfer ownership": "Transfer kepemilikan",
"Transfer": "Transfer",
"Attention! Transferring the ownership will remove all your rights to this space.": "Perhatian! Mentransfer kepemilikan akan menghapus semua hak Anda untuk ruang ini",
"The owner needs to add you as a collaborator if you want to have access again.": "Pemilik perlu menambahkan Anda sebagai kolaborator jika Anda ingin memiliki akses lagi",
"Collaborators": "Kolaborator",
"Collaborator": "Kolaborator",
"No user found with this email or username.": "Tidak ada pengguna yang ditemukan dengan email ini atau nama pengguna",
"Name of the role": "Nama peran",
"Role": "Wewenang",
"Add a new user to your org": "Tambahkan pengguna baru untuk org Anda",
"Advanced rights and roles are not included in the free and basic plan": "Hak canggih dan peran tidak termasuk dalam rencana bebas dan dasar",
"Use your Amazon S3 bucket to create backups.": "Gunakan ember Amazon S3 Anda untuk membuat backup",
"Backup now": "Cadangan sekarang",
"Backups content (stories) and compontents": "Konten Backup (cerita) dan compontents",
"Define your S3-Bucket and AWS-ARN to enable backups.": "Tentukan Anda S3-Bucket dan AWS-ARN untuk mengaktifkan backup",
"Daily backups": "Backup harian",
"Define the name of the S3-bucket where you want to store your backups.": "Tentukan nama S3-ember di mana Anda ingin menyimpan backup Anda",
"S3-bucket": "S3-ember",
"Activate automatic daily backups": "Aktifkan backup harian otomatis",
"1. Read the": "1. Baca",
"AWS Policy ARN": "AWS Kebijakan ARN",
"Show setup instructions": "Tampilkan instruksi pengaturan",
"tutorial on how to setup an Amazon IAM role": "Tutorial tentang cara setup peran Amazon IAM",
"2. Create an Amazon IAM role with following access policy document:": "2. Buat peran Amazon IAM dengan dokumen kebijakan akses berikut:",
"if not done yet.": "Jika belum selesai",
"The role should have the permission to access and create files on the S3 bucket you defined. You can for example use the following permission policy replacing YOUR_BUCKET with your bucket name:": "Peran harus memiliki izin untuk mengakses dan membuat file pada ember S3 Anda tetapkan. Misalnya, Anda dapat menggunakan kebijakan izin berikut mengganti YOUR_BUCKET dengan nama bucket Anda:",
"Restore spaces from backups on your Amazon S3 bucket.": "Kembalikan spasi dari backup pada bucket Amazon S3 Anda",
"Backup file": "File cadangan",
"Show latest backups": "Tampilkan backup terbaru",
"Latest five backups": "Terbaru lima backup",
"Restore now": "Kembalikan sekarang",
"The settings below only apply if you are using": "Pengaturan di bawah ini hanya berlaku jika Anda menggunakan",
"Attention! \"Restore now\" deletes old data and restores content (stories) and compontents from the backup file.": "Perhatian! \"Kembalikan sekarang\" menghapus data lama dan konten mengembalikan (cerita) dan compontents dari file backup",
"Rendering service": "Memberikan pelayanan",
"Your domain": "Domain Anda",
"To connect your domain to Storyblok you need to create a CNAME Record pointing to eu-domain.storyblok.com": "Untuk menghubungkan domain Anda ke Storyblok Anda perlu untuk membuat CNAME menunjuk ke eu-domain. Storyblok. Com",
"Routes": "Rute",
"Add Route": "Add Route",
"Please read the": "Silahkan baca",
"Add custom routes to define different page templates.": "Menambahkan rute kustom untuk mendefinisikan template halaman yang berbeda",
"documentation about internationalization": "Dokumentasi tentang internasionalisasi",
"before configuring languages.": "Sebelum mengkonfigurasi bahasa",
"Add languages to activate field level translations.": "Menambahkan bahasa ke Bahasa tingkat lapangan mengaktifkan",
"Add Language": "Tambahkan Bahasa",
"Label": "Label",
"The invalidation process has been initiated": "Proses pembatalan telah dimulai",
"The backup has been initiated": "Backup telah dirintis",
"Are you sure you want to delete your current content and overwrite it with this backup?": "Apakah Anda yakin ingin menghapus konten Anda saat ini dan menimpanya dengan cadangan ini?",
"The restore process has been initiated": "Proses pemulihan telah dimulai",
"Transfer was not successful. Make sure that the new owner exists.": "Transfer tidak berhasil. Pastikan bahwa pemilik baru ada",
"The collaborator has been added": "Kolaborator yang telah ditambahkan",
"Please insert an email address": "Silakan masukkan alamat email",
"Branches sorted successfully!": "Cabang diurutkan berhasil!",
"Create or join a space": "Membuat atau bergabung spasi",
"Create a new space": "Menciptakan ruang baru",
"Play with a demo": "Bermain dengan demo",
"Duplicate a space": "Gandakan spasi",
"Join a space": "Bergabung spasi",
"Create space": "Menciptakan ruang",
"Headless (API/SDKs)": "Headless (API / SDK)",
"what is that?": "Apa itu?",
"Duplicate space": "Ruang duplikat",
"Choose the space for the duplication": "Pilih ruang untuk duplikasi",
"You do not have created any spaces yet.": "Anda tidak telah menciptakan ruang-ruang apa pun",
"You can test the editing interface and our visual composer without to write any code on your own.": "Anda dapat menguji antarmuka mengedit dan komposer visual kita tanpa menulis kode apapun pada Anda sendiri",
"Create Demo": "Buat Demo",
"Insert the email of your space admin to let them add you as a collaborator of the space.": "Masukkan email dari admin ruang Anda untuk membiarkan mereka menambahkan Anda sebagai kolaborator ruang",
"Request access": "Akses permintaan",
"Email address of space admin": "Alamat email ruang admin",
"Success! You will get notified once the admin added you as a collaborator.": "Keberhasilan! Anda akan mendapatkan pemberitahuan sekali admin menambahkan Anda sebagai kolaborator",
"Available Billing Information": "Tersedia Informasi Penagihan",
"No spaces with billing information available": "Tidak ada ruang dengan informasi penagihan yang tersedia",
"Spaces": "Spaces",
"Show More": "Menampilkan lebih banyak",
"Apply": "Menerapkan",
"Show": "Menunjukkan",
"Billing Information of Space": "Penagihan Informasi Space",
"The information below will be applied to the fields of your current subscription process. You will be able to adopt them after applying them.": "Informasi di bawah akan diterapkan pada bidang proses langganan Anda saat ini. Anda akan dapat mengadopsi mereka setelah menerapkan mereka",
"Company": "Perusahaan",
"Country": "Negara",
"Street / City / ZIP": "Street / Kota / ZIP",
"Email": "Surel",
"Add or change preview urls": "Menambah atau mengubah url pratinjau",
"Your server address": "Alamat server Anda",
"1. Download a preconfigured project": "1. Download proyek yang telah dikonfigurasikan",
"Preferred by our users": "Disukai oleh pengguna kami",
"The downloaded package comes preconfigured with your api token": "Paket ini diunduh datang dikonfigurasikan dengan tanda api Anda",
"Tutorial": "Tutorial",
"Other technologies": "Teknologi lainnya",
"2. Start your server": "2. Mulai server Anda",
"Start the server of the downloaded package and insert your server url here:": "Mulai server dari paket download dan masukkan url server Anda di sini:",
"Go": "Pergilah",
"FAQ": "FAQ",
"Can I build a full blown website with Storyblok?": "Dapatkah saya membangun sebuah situs penuh sesak nafas dengan Storyblok?",
"Can I create a blog with Storyblok?": "Dapatkah saya membuat blog dengan Storyblok?",
"How does Storyblok work?": "Bagaimana Storyblok kerja?",
"What is the Storyblok bridge?": "Apa jembatan Storyblok?",
"Allow deploying content": "Memungkinkan penggelaran konten",
"General permissions": "Izin umum",
"Allow unpublishing content": "Memungkinkan konten batalkan publikasi",
"Allow deleting content": "Memungkinkan menghapus konten",
"Allow editing datasource keys & values": "Memungkinkan mengedit sumber data kunci & nilai-nilai",
"Allow editing datasource values": "Memungkinkan mengedit nilai-nilai sumber data",
"Allow access to the tasks app": "Memungkinkan akses ke aplikasi tugas",
"Deny moving a story": "Deny bergerak cerita",
"Deny changing alternates group": "Deny mengubah kelompok alternatif",
"Add languages the user should have access to (acts as whitelist). If no item is selected the user has rights to edit all content.": "Menambahkan bahasa pengguna harus memiliki akses ke (bertindak sebagai daftar putih). Jika tidak ada item yang dipilih pengguna memiliki hak untuk mengedit semua konten",
"Deny changing the slug of a story": "Deny mengubah siput cerita",
"Add folders or content items the user should have access to (acts as whitelist). If no item is selected the user has rights to edit all content.": "Menambahkan folder atau item konten pengguna harus memiliki akses ke (bertindak sebagai daftar putih). Jika tidak ada item yang dipilih pengguna memiliki hak untuk mengedit semua konten",
"Component field permissions": "Perizinan bidang komponen",
"Datasource permissions": "Izin sumber data",
"Add component fields here to hide them in the interface.": "Menambahkan kolom komponen di sini untuk menyembunyikan mereka dalam antarmuka",
"Add datasources the user should have access to (acts as whitelist). If no item is selected the user has rights to edit all datasources.": "Menambahkan datasources pengguna harus memiliki akses ke (bertindak sebagai daftar putih). Jika tidak ada item yang dipilih pengguna memiliki hak untuk mengedit semua datasources",
"Asset Folder Permissions": "Aset Folder Permissions",
"Add asset folders to restrict editing and upload access.": "Menambahkan folder aset untuk membatasi editing dan akses upload",
"Start by selecting a space in the sidebar or create a new space.": "Mulai dengan memilih ruang di sidebar atau menciptakan ruang baru",
"Welcome!": "Selamat datang!",
"Traffic": "Lalu lintas",
"Learn more about": "Belajar lebih tentang",
"Api requests": "Permintaan Api",
"Active Plan": "Rencana aktif",
"Usage": "Pemakaian",
"Content activities": "Kegiatan konten",
"No billing": "Tidak ada penagihan",
"Change": "Perubahan",
"Billed": "Ditagih",
"No recent changes": "Tidak ada perubahan terbaru",
"Choose your plan": "Pilih rencana Anda",
"Recent changes": "Perubahan terbaru",
"Custom": "Adat",
"Compare": "Membandingkan",
"user": "Pemakai",
"Got a custom plan or coupon code?": "Punya rencana kustom atau kode kupon?",
"Custom plan": "Rencana kustom",
"Entered plan ids will be validated after pressing subscribe.": "Memasuki id rencana akan divalidasi setelah menekan berlangganan",
"Coupon code": "Kode Kupon",
"Entered coupon codes will be validated and applied after pressing subscribe.": "Kode kupon masuk akan divalidasi dan diterapkan setelah menekan berlangganan",
"Select seats": "Pilih kursi",
"Confirm subscription": "Berlangganan Konfirmasi",
"Min": "Min",
"Max": "Max",
"By clicking the button below the new subscription will start.": "Dengan mengklik tombol di bawah langganan baru akan mulai",
"Decide payment interval": "Tentukan selang pembayaran",
"Change subscription": "Perubahan berlangganan",
"Monthly": "Bulanan",
"Annually": "Setiap tahun",
"Define billing information": "Mendefinisikan informasi penagihan",
"Email address": "Alamat email",
"VAT-Number": "PPN-Number",
"Reuse from another space": "Menggunakan kembali dari ruang angkasa lain",
"Order number": "Jumlah order",
"Street": "Jalan",
"City": "Kota",
"Credit or debit card": "Kredit atau kartu debit",
"ZIP": "Zip",
"Enter payment information": "Masukkan informasi pembayaran",
"Update payment information": "Perbarui informasi pembayaran",
"Update billing information": "Perbarui informasi penagihan",
"Information: Our payment provider validates card information when it is saved. As a result of this process, you may see a temporary authorization for $1 on your statement.": "Informasi: penyedia pembayaran kami memvalidasi informasi kartu ketika disimpan. Sebagai hasil dari proses ini, Anda mungkin melihat otorisasi sementara sebesar $ 1 pada laporan Anda",
"Please provide all billing informations marked as required (*)": "Harap memberikan semua informasi penagihan ditandai sebagai diperlukan (*)",
"Your selected team sizes are not in the limits of your selected feature set. You can select another feature set to continue.": "Ukuran tim yang dipilih Anda tidak berada dalam batas-batas set fitur yang dipilih. Anda dapat memilih fitur lain akan terus berlanjut",
"View invoices": "Lihat faktur",
"Summary": "Ringkasan",
"Please provide a credit or debit card": "Harap memberikan kredit atau debit card",
"If your entered plan is not correct you will still be able to try it again.": "Jika rencana masuk Anda tidak benar Anda masih akan dapat untuk mencoba lagi",
"You have entered a custom plan with a special offering and pricing": "Anda telah memasuki rencana kustom dengan penawaran khusus dan harga",
"users": "Pengguna",
"VAT reverse charge applies.": "PPN biaya sebaliknya berlaku",
"VAT": "TONG",
"Total": "Total",
"The benefits of the coupon code will be applied if available": "Manfaat dari kode kupon akan diterapkan jika tersedia",
"Thanks! You are awesome!": "Terima kasih! Kamu Menakjubkan!",
"We would love to hear what you think about Storyblok.": "Kami akan senang mendengar apa yang Anda pikirkan tentang Storyblok",
"Chat with us or": "Chat dengan kami atau",
"your feedback.": "Umpan balik Anda",
"Tweet": "Menciak",
"Star": "Bintang",
"Share": "Bagikan",
"Public access tokens are only for accessing the published version while preview tokens are for accessing the draft version also. Both are read-only tokens.": "Token akses publik hanya untuk mengakses versi yang dipublikasikan sementara token pratinjau adalah untuk mengakses draft versi juga. Keduanya hanya-baca token",
"Access level": "Tingkat akses",
"Public": "Publik",
"See API-Documentation": "Lihat API-Dokumentasi",
"Theme": "Tema",
"Branch": "Cabang",
"Choose branch": "Pilih cabang",
"Create Token": "Buat Token",
"Color": "Warna",
"Define as default stage for new content items": "Mendefinisikan sebagai tahap default untuk item konten baru",
"Publishing rights": "Hak penerbitan",
"Stage transition rules": "Aturan transisi tahap",
"Allow users to publish or schedule the content": "Memungkinkan pengguna untuk mempublikasikan atau jadwal konten",
"Specific stage(s)": "Tahap tertentu (s)",
"Next available stages": "Tersedia tahap berikutnya",
"All stages": "Semua tahap",
"All users": "Semua pengguna",
"User(s)/Role(s) who can change the stage": "Pengguna (s) / Peran (s) yang dapat mengubah panggung",
"to the next available stage": "Ke tahap berikutnya yang tersedia",
"Specific user(s)/role(s)": "Pengguna tertentu (s) / peran (s)",
"Role(s)": "Peran (s)",
"User(s)": "Pengguna (s)",
"Workflow stages": "Tahap alur kerja",
"See workflow documentation": "Lihat dokumentasi alur kerja",
"Create": "Membuat",
"Choose an approver": "Pilih pemberi persetujuan",
"Workflow stages sorted successfully!": "Tahap alur kerja diurutkan berhasil!",
"Are you sure you want to delete this workflow stage?": "Apakah Anda yakin ingin menghapus tahap alur kerja ini?",
"Send for approval": "Kirim untuk persetujuan",
"Approval request has been sent successfully!": "Permintaan persetujuan telah berhasil dikirim!",
"Content items": "Item konten",
"Entry": "Masuk",
"Define schema": "Mendefinisikan skema",
"Folder": "Map",
"You have not defined any schema for this block yet.": "Anda belum menentukan skema apa pun untuk blok ini",
"Define presets": "Mendefinisikan preset",
"Click \"Define schema\" to add the fields you need.": "Klik \"Tentukan skema\" untuk menambahkan bidang yang Anda butuhkan",
"No valid fields defined in this section yet.": "Tidak ada bidang yang berlaku ditentukan dalam bagian ini",
"is already part of another section": "Sudah bagian dari bagian lain",
"Translate": "Menterjemahkan",
"Choose to delete the values or add the schema keys.": "Memilih untuk menghapus nilai-nilai atau menambahkan tombol skema",
"items out of schema": "Item dari skema",
"We have found values which are not part of the schema.": "Kami telah menemukan nilai-nilai yang bukan bagian dari skema",
"No changes found": "Tidak ada perubahan yang ditemukan",
"Changes": "Perubahan",
"Remove all": "Menghapus semua",
"Select releases to deploy": "Pilih rilis untuk menyebarkan",
"What is getting deployed?": "Apa yang semakin dikerahkan?",
"All content that is currently on the source branch and the releases you select.": "Semua konten yang saat ini di cabang sumber dan rilis yang Anda pilih",
"No releases found on the source branch": "Tidak ada rilis ditemukan pada cabang sumber",
"A newer version of this content item has been found in the database.": "Sebuah versi yang lebih baru item konten ini telah ditemukan dalam database",
"Confirm": "Konfirmasi",
"Choose the conflict solution": "Memilih solusi konflik",
"Copy over": "Menyalin",
"Opens newer version in a new window to let you copy over your changes.": "Membuka versi yang lebih baru di jendela baru untuk membiarkan Anda menyalin perubahan",
"Overwrite": "Timpa",
"Slug": "Siput",
"Overwrites newer version with your changes.": "Menimpa versi yang lebih baru dengan perubahan Anda",
"Define as root for the folder": "Mendefinisikan sebagai root untuk folder",
"Preset": "Preset",
"Content type": "Jenis konten",
"Confirm deletion": "Konfirmasi penghapusan",
"Are you sure that you want to delete this item(s)?": "Apakah Anda yakin bahwa Anda ingin menghapus item ini (s)?",
"Include associated alternates": "Sertakan alternatif terkait",
"Target-Folder": "Target-Folder",
"Is alternative version of the duplicate?": "Apakah versi alternatif duplikat?",
"Duplicate": "Duplikat",
"Schedule": "Susunan acara",
"duplicated": "Digandakan",
"You are not allowed to duplicate this story.": "Anda tidak diperbolehkan untuk menduplikasi cerita ini",
"Open published": "Terbuka yang diterbitkan",
"Send approval": "Persetujuan Kirim",
"Open draft": "Terbuka rancangan",
"Unpublish": "Jangan publikasikan",
"Draft json": "Draft json",
"Discard changes": "Membuang perubahan",
"Start sync": "Mulai sync",
"Published json": "Diterbitkan json",
"Status": "Status",
"Tools": "Alat",
"Real path": "Path nyata",
"Settings for the folder content": "Pengaturan untuk konten folder",
"Disable visual composer": "Komposer visual yang Nonaktifkan",
"Clone to all": "Clone untuk semua",
"Deny changing content type": "Deny mengubah jenis konten",
"Merge to all": "Gabung ke semua",
"Dimensions are only available if you are editing a content item in a subfolder.": "Dimensi hanya tersedia jika Anda mengedit item konten di subfolder",
"Create a folder structure where the first folder defines your dimension (Example: de/home, en/home).": "Membuat struktur folder di mana folder pertama mendefinisikan dimensi Anda (Contoh: de / rumah, en / home)",
"Not created yet": "Belum dibuat",
"Create clone": "Buat clone",
"Merge": "Menggabungkan",
"Something went wrong merging the alternate(s)": "Sesuatu yang tidak beres penggabungan alternatif (s)",
"The alternate(s) have been created!": "Alternatif (s) telah diciptakan!",
"The alternate(s) have been merged!": "Alternatif (s) telah bergabung!",
"Add preset": "Add ditetapkan",
"Presets are blocks filled with the content you currently have in the selected block.": "Presets blok diisi dengan konten yang telah Anda miliki di blok yang dipilih",
"Something went wrong creating the alternate(s)": "Sesuatu yang tidak beres menciptakan alternatif (s)",
"The saved presets are shown for all users at the selection of new blocks.": "Preset yang disimpan akan ditampilkan untuk semua pengguna di pemilihan blok baru",
"Existing presets": "Preset yang ada",
"As default": "Sebagai default",
"Release date (optional)": "Tanggal rilis (opsional)",
"Branches to deploy": "Cabang menyebarkan",
"When the release gets merged all content will be automatically deployed to the selected branches.": "Ketika rilis akan digabung semua konten akan secara otomatis dikirim ke cabang-cabang yang dipilih",
"Entry configuration": "Konfigurasi entri",
"Editmode": "Editmode",
"Are you sure you want to delete this release?": "Apakah Anda yakin ingin menghapus rilis ini?",
"Form only": "Bentuk-satunya",
"Visual": "Visual",
"Tags": "Tags",
"Sort by date": "Urutkan berdasarkan tanggal",
"First published date": "Tanggal diterbitkan pertama",
"Remove": "Menghapus",
"Alternative versions": "Versi alternatif",
"Search for the content group of this story.": "Mencari kelompok isi cerita ini",
"Shortcut": "Jalan pintas",
"Pin as shortcut in the mini-browser": "Pin sebagai shortcut dalam mini-browser",
"Current": "Arus",
"New release": "Rilis baru",
"Skip this step": "Lewati langkah ini",
"Move": "Pindah",
"Next step": "Langkah berikutnya",
"We have already done that for you. Open the entry \"Home\" below to play around.": "Kami telah melakukan itu untuk Anda. Buka entri \"Home\" di bawah ini untuk bermain-main",
"Create a demo page": "Buat halaman demo",
"Create a new folder": "Buat folder baru",
"Create your first folder": "Buat folder pertama Anda",
"and define a new content type during the folder set-up.": "Dan menentukan jenis konten baru selama folder set-up",
"Create your first entry": "Buat entri pertama Anda",
"Create entry": "Buat entri",
"and define its fields by building its schema so you can fill it with content.": "Dan menentukan bidang dengan membangun skema sehingga Anda dapat mengisinya dengan konten",
"Will be released at": "Akan dirilis pada",
"Show only items from this release": "Tampilkan hanya item dari rilis ini",
"Has been published at": "Telah diterbitkan di",
"Last deployment": "Penyebaran terakhir",
"This branch has never been deployed": "Cabang ini tidak pernah digunakan",
"Release now": "Rilis sekarang",
"Open preview": "Terbuka pratinjau",
"Deploy from source": "Deploy dari sumber",
"You are seeing deleted items": "Anda melihat item yang dihapus",
"Name (desc)": "Nama (desc)",
"Default sorting": "Penyortiran default",
"Name (asc)": "Nama (asc)",
"Slug (desc)": "Slug (desc)",
"releases": "Rilis",
"Slug (asc)": "Slug (asc)",
"Created at": "Dibuat di",
"Updated at": "Diperbarui pada",
"Deleted at": "Dihapus",
"Are you sure you want to unpublish this item(s)?": "Apakah Anda yakin ingin membatalkan publikasi item ini (s)?",
"The items have been updated!": "Item telah diperbarui!",
"Are you sure you want to publish this item(s)?": "Apakah Anda yakin Anda ingin mempublikasikan item ini (s)?",
"Are you sure you want to restore this item(s)?": "Apakah Anda yakin Anda ingin mengembalikan item ini (s)?",
"Something went wrong restoring some items": "Sesuatu yang tidak beres memulihkan beberapa item",
"Something went wrong updating item(s)": "Terjadi barang memperbarui salah (s)",
"No tools installed on this space": "Tidak ada alat yang diinstal pada ruang ini",
"Deleted items can not be viewed. Please click the checkbox of the item and restore to view.": "Item yang dihapus tidak dapat dilihat. Silakan klik kotak centang item dan mengembalikan ke tampilan",
"The content has been released!": "Konten telah dirilis!",
"Do you really want to copy the content of the default language to the current and replace the existing field value?": "Apakah Anda benar-benar ingin menyalin isi dari bahasa default untuk saat ini dan mengganti nilai field yang ada?",
"Default language": "Bahasa default",
"Install from the app store": "Install dari app store",
"Draft updated at": "Draft diperbarui pada",
"Never": "Tidak pernah",
"Published at": "Diterbitkan di",
"Latest workflow changes": "Perubahan alur kerja terbaru",
"Last author": "Penulis lalu",
"None": "Tak satupun",
"Workflow stage": "Tahap alur kerja",
"set by": "Ditetapkan oleh",
"Assigned to": "Ditugaskan untuk",
"Update": "Memperbarui",
"Comments": "Komentar",
"Load older comments": "Memuat komentar lebih tua",
"Edit": "Mengedit",
"Workflow stage and assignments": "Tahap alur kerja dan tugas",
"Add a comment": "Tambahkan komentar",
"Assign to": "Ditugaskan kepada",
"Notify users via email": "Memberitahu pengguna melalui email",
"Submit": "Kirimkan",
"Lambda Function": "Lambda Fungsi",
"Task type": "Jenis tugas",
"Webhook": "WebHook",
"The payload of the request contains the task and the space id.": "Payload dari permintaan berisi tugas dan ruang id",
"Lambda Function (coming soon)": "Lambda Fungsi (segera hadir)",
"Provide the endpoint where you want to send a POST request.": "Memberikan titik akhir di mana Anda ingin mengirim permintaan POST",
"Protected variable": "Variabel dilindungi",
"Function code": "Fungsi kode",
"For example:": "Sebagai contoh:",
"Ok": "Baik",
"Are you sure you want to delete this task?": "Apakah Anda yakin ingin menghapus tugas ini?",
"Last execution": "Eksekusi terakhir",
"Currently running": "Saat berjalan",
"Executed successfully!": "Dieksekusi berhasil!",
"Execute": "Menjalankan",
"Choose XML for translation software like SDL Trados Studio or JSON for translation software like LingoHub.": "Pilih XML untuk perangkat lunak terjemahan seperti SDL Trados Studio atau JSON untuk perangkat lunak terjemahan seperti LingoHub",
"Autosave enabled?": "Autosave diaktifkan?",
"Empty": "Kosong",
"Choose a compatible XML or JSON generated from the export.": "Pilih XML kompatibel atau JSON yang dihasilkan dari ekspor",
"Desktop": "Desktop",
"Tablet": "Tablet",
"Tag": "Menandai",
"Mobile": "Mobil",
"Select": "Pilih",
"Content type value": "Nilai jenis konten",
"Component": "Komponen",
"Assigned to me only": "Ditugaskan kepada saya hanya",
"In folder": "Dalam folder",
"element": "Elemen",
"Search in current folder only": "Cari di folder saat ini hanya",
"No results found": "Tidak ada hasil yang ditemukan",
"Current version": "Versi sekarang",
"Start typing to search": "Mulai mengetik untuk mencari",
"Confirming invitation": "Mengkonfirmasikan undangan",
"Please wait a couple of seconds": "Silakan tunggu beberapa detik",
"Unknown author": "Penulis tidak diketahui",
"You are now a member of the organisation": "Anda sekarang anggota organisasi",
"Go to spaces": "Pergi ke ruang",
"Invitation confirmed!": "Undangan dikonfirmasi!",
"Please login first and then click the invitation link again.": "Silahkan login terlebih dahulu dan kemudian klik link undangan lagi",
"Go to login": "Pergi ke masuk",
"Login required.": "Login dibutuhkan",
"Your invitation is not valid anymore.": "Undangan Anda tidak berlaku lagi",
"Please upgrade your Storyblok space. You have": "Silahkan upgrade ruang Storyblok Anda. Kamu punya",
"Something went wrong.": "Ada yang salah",
"collaborator(s) and your": "Kolaborator (s) dan Anda",
"Please contact your Storyblok space owner. You have": "Silahkan hubungi pemilik ruang Storyblok Anda. Kamu punya",
"is over.": "Sudah selesai",
"Just a moment. A background task is still running.": "Sebentar. Sebuah tugas latar belakang masih berjalan",
"The Storyblok app has been updated!": "The Storyblok aplikasi telah diperbarui!",
"Please reload the window to get the newest version.": "Harap muat ulang jendela untuk mendapatkan versi terbaru",
"Reload window": "Window Reload",
"Manage": "Mengelola",
"Toggle assistance mode": "Modus bantuan beralih",
"Assisted spaces": "Ruang dibantu",
"Logging in": "Logging di",
"Sales": "Penjualan",
"I have read and agree to the": "Saya telah membaca dan setuju dengan",
"Logged in as": "Masuk sebagai",
"Catalogue": "Katalog",
"Initiating space": "Memulai ruang",
"Configuration": "Konfigurasi",
"There was an error confirming your account. Please try again.": "Ada kesalahan mengkonfirmasi akun Anda. Silakan coba lagi",
"Resend confirmation": "Kirim kembali konfirmasi",
"Confirmed successfully!": "Dikonfirmasi berhasil!",
"You have unsaved changes on this content item. Do you want to discard your changes?": "Anda memiliki perubahan yang belum disimpan pada item konten ini. Apakah Anda ingin membuang perubahan Anda?",
"No": "Tidak",
"To continue confirm that you have read and agree to the Terms and Privacy Policy.": "Untuk melanjutkan confirm bahwa Anda telah membaca dan menyetujui Ketentuan dan Kebijakan Privasi",
"Yes": "Iya",
"Invitation sent!": "Undangan terkirim!",
"Shortcuts: Esc for No, Enter for Yes": "Shortcuts: Esc untuk ada, Masukkan untuk Ya",
"Usertype": "Tipe Pengguna",
"The user has been invited to your organisation and will be added once confirmed.": "Pengguna telah diundang untuk organisasi Anda dan akan ditambahkan setelah dikonfirmasi",
"Normal": "Normal",
"Member": "Anggota",
"Provide the 15 digit ID": "Menyediakan ID 15 digit",
"Is sandbox user?": "Apakah sandbox pengguna?",
"Owner: Can manage users and define owners": "Pemilik: Dapat mengelola pengguna dan menentukan pemilik",
"Admin: Can manage users": "Admin: Dapat mengelola pengguna",
"Member: Can not manage users": "Anggota: Tidak dapat mengelola pengguna",
"Firstname": "Nama depan",
"Disable": "Nonaktifkan",
"Lastname": "Nama keluarga",
"Are you sure you want to disable this user?": "Apakah Anda yakin ingin menonaktifkan pengguna ini?",
"It seems you do not have any": "Tampaknya Anda tidak memiliki",
"Enable": "Memungkinkan",
"Type in all emails of the users you want to invite separated by a new line.": "Ketik semua email dari pengguna yang ingin mengundang dipisahkan dengan baris baru",
"Invite others": "Mengundang orang lain",
"yet.": "Namun",
"Send": "Kirim",
"Done!": "Selesai!",
"Your invitation has been sent! As soon as the users have signed up you can add them as collaborators to your space(s).": "Undangan Anda telah dikirim! Begitu pengguna telah mendaftar Anda dapat menambahkan mereka sebagai kolaborator ke ruang Anda (s)",
"Please enter at least one email": "Masukkan setidaknya satu email",
"Invite more people": "Mengundang lebih banyak orang",
"is not a valid email": "Bukan email yang valid",
"from": "Dari",
"Target": "Target",
"Asset": "Aset",
"Current window": "Jendela saat",
"Get started": "Memulai",
"New window": "Jendela baru",
"terms of use": "Syarat Penggunaan",
"Signup": "Daftar",
"By clicking \"Signup\" you accept the": "Dengan mengklik \"Signup\" Anda menerima",
"Switch to login": "Beralih ke masuk",
"Forgot password?": "Tidak ingat kata sandi?",
"Already have an account?": "Sudah memiliki akun?",
"No account yet?": "Tidak ada akun belum?",
"Signup here": "Daftar disini",
"Login": "Gabung",
"Resend": "Kirim Ulang",
"confirmation email": "Email konfirmasi",
"Send password reset link": "Kirim link ulang kata sandi",
"Imprint": "Jejak",
"Privacy policy": "Rahasia pribadi",
"Are you a developer?": "Apakah Anda pengembang?",
"Choose no if you want to join an existing project": "Pilih tidak jika Anda ingin bergabung proyek yang sudah ada",
"No, I am not a dev": "Tidak, saya tidak dev",
"Yes, I am a dev": "Ya, saya dev",
"Choose your own adventure": "Pilih petualangan Anda sendiri",
"Join an existing space": "Bergabung dengan ruang yang ada",
"What would you do like next?": "Apa yang akan Anda lakukan seperti selanjutnya?",
"You are almost there": "Anda hampir ada",
"Success!": "Keberhasilan!",
"Insert the email of your space admin to let them add you as a collaborator of the space": "Masukkan email dari admin ruang Anda untuk membiarkan mereka menambahkan Anda sebagai kolaborator ruang",
"I received the email": "Saya menerima email",
"You will get notified per email once the admin added you as a collaborator. Then click on the button below to continue.": "Anda akan mendapatkan pemberitahuan per email setelah admin menambahkan Anda sebagai kolaborator. Kemudian klik tombol di bawah untuk melanjutkan",
"It seems that the authentification code is wrong.": "Tampaknya bahwa kode otentifikasi yang salah",
"My account": "Akun saya",
"Please check the password confirmation.": "Silakan periksa konfirmasi password",
"You are logged in via a third party authentication provider.": "Anda login melalui penyedia otentikasi pihak ketiga",
"Profile picture": "Gambar profil",
"Username": "Nama pengguna",
"Your Storyblok ID for adding you as a collaborator to another project is": "ID Storyblok Anda untuk menambahkan Anda sebagai kolaborator untuk proyek lain adalah",
"Recommended: 500px x 500px (JPG or PNG)": "Direkomendasikan: 500px x 500px (JPG atau PNG)",
"Phone number": "Nomor telepon",
"Your timezone": "Zona waktu",
"Your language": "Bahasamu",
"Current password": "Kata sandi saat ini",
"Insert your current password if you changed your username, email, phone number, password or security settings": "Masukkan password Anda saat ini jika Anda mengubah pengaturan username, email, nomor telepon, password atau keamanan Anda",
"New Password": "Kata sandi baru",
"Do you want to change your current password?": "Apakah Anda ingin mengubah password Anda saat ini?",
"Password confirmation": "Konfirmasi kata kunci",
"Security Settings": "Pengaturan keamanan",
"How do you want to login?": "Bagaimana Anda ingin login?",
"Password only": "Password saja",
"Two factor authentication via SMS": "Dua faktor otentikasi melalui SMS",
"Personal access tokens": "Token akses pribadi",
"Two factor authentication via Email": "Dua faktor otentikasi melalui Email",
"Storyblok Management API": "API Storyblok Manajemen",
"Please copy this api key now. It will be visible only once.": "Silahkan copy kunci api ini sekarang. Ini hanya bisa dilihat sekali",
"Tokens that have been generated to access the": "Token yang telah dihasilkan untuk mengakses",
"Generate new Token": "Menghasilkan Token baru",
"Personal access tokens work like ordinary OAuth access tokens.": "Akses pribadi token kerja seperti token akses OAuth biasa",
"They can be used to authenticate yourself to have full access to the managment API programmatically and should NEVER be exposed in public.": "Mereka dapat digunakan untuk otentikasi diri Anda untuk memiliki akses penuh ke API manajemen pemrograman dan harus tidak pernah terkena di depan umum",
"Privacy": "Pribadi",
"Show username instead of email as collaborator": "Tampilkan nama pengguna, bukan email sebagai kolaborator",
"Privacy Setting": "Pengaturan Privasi",
"Download in German": "Download di Jerman",
"Download in English": "Download dalam bahasa Inggris",
"Data processing agreement": "Perjanjian pengolahan data",
"Read more about our": "Baca lebih lanjut tentang kami",
"Account deletion": "Penghapusan akun",
"privacy policy here": "Kebijakan privasi di sini",
"Yes, delete my account": "Ya, menghapus akun saya",
"Do you want to delete your account?": "Apakah Anda ingin menghapus akun Anda?",
"Do you really want to delete your account? Type \"delete me\" and click confirm.": "Apakah Anda benar-benar ingin menghapus akun Anda? Ketik \"menghapus saya\" dan klik confirm",
"User has been updated": "Pengguna telah diperbarui",
"Not found": "Tidak ditemukan",
"Please insert the code we sent to": "Silahkan masukkan kode yang kami dikirim ke",
"Add user": "Tambahkan pengguna",
"It seems that you do not have access to this page.": "Tampaknya Anda tidak memiliki akses ke halaman ini",
"Create a new organization": "Buat organisasi baru",
"Organisation name": "Nama organisasi",
"Create org": "Buat org",
"SO Settings": "Pengaturan SO",
"Whitelabeling": "Whitelabeling",
"Add SSO url": "Menambahkan SSO url",
"Url to the editor": "Url ke editor",
"Provide the full url like": "Menyediakan url lengkap seperti",
"Logo-Url": "Logo-Url",
"Provide the full url to the logo like": "Memberikan url penuh ke logo seperti",
"Not defined": "Tidak terdefinisikan",
"Organization updated successfully": "Organisasi diperbarui berhasil",
"Disabled": "Dengan disabilitas",
"Please set your password": "Silakan mengatur sandi Anda",
"Set password": "Set sandi",
"Password has been set. You can now login.": "Password telah ditetapkan. Sekarang Anda dapat login",
"Thank you": "Terima kasih",
"Please confirm your billing information": "Silahkan konfirmasi informasi penagihan",
"Login failed. The login token may expired. Please try again.": "Gagal masuk. Login Mei Token berakhir. Silakan coba lagi",
"Please enter all required information": "Mohon isikan semua informasi yang dibutuhkan",
"We try to keep your billing information for invoices up to date. Please confirm the below information are correct or change them accordingly.": "Kami mencoba untuk menjaga informasi penagihan faktur up to date. Silahkan konfirmasi informasi di bawah ini benar atau mengubahnya sesuai",
"One last thing before you can comment": "Satu hal terakhir sebelum Anda dapat komentar",
"Profile picture (optional)": "Profil picture (opsional)",
"Are you sure you want to delete this item?": "Apakah Anda yakin ingin menghapus item ini?",
"Help other collaborators to identify you better by providing your name and a profile picture.": "Membantu kolaborator lain untuk mengidentifikasi Anda lebih baik dengan memberikan nama dan gambar profil",
"Are you sure you want to delete this item(s)?": "Apakah Anda yakin ingin menghapus item ini (s)?",
"Loading user": "Memuat pengguna",
"You are in a demo space.": "Anda berada di ruang demo",
"Submit to App-Store": "Submit ke App-Store",
"Browse apps": "Aplikasi browse",
"Submit to App-Directory": "Submit ke App-Directory",
"Active Subscriptions": "Langganan aktif",
"Total revenue": "Total pendapatan",
"Finances": "Uang",
"Hi there!": "Hi di sana!",
"Choose to": "Memilih untuk",
"Perks": "Perks",
"Team": "Tim",
"Entering Partner Portal": "Memasuki Partner Portal",
"Signup as Partner": "Pendaftaran sebagai Mitra",
"You are now unsubscribed.": "Anda sekarang berhenti berlangganan",
"Seems that you do not have any tags yet.": "Tampaknya Anda tidak memiliki tag apa pun",
"Create your first space": "Menciptakan ruang pertama Anda",
"Install link": "Memasang link",
"Name of the app": "Nama aplikasi",
"Id/Slug of the app": "Id / Slug aplikasi",
"Allowed characters are letters, numbers and -.": "Karakter yang diizinkan adalah huruf, angka dan -",
"Oauth2 settings": "Pengaturan Oauth2",
"Client id": "Klien id",
"Secret": "Rahasia",
"Url to your app": "Url untuk aplikasi Anda",
"Oauth2 callback url": "Oauth2 callback url",
"Field types": "Jenis bidang",
"Select the Field-Type(s) that you would like to include in this app": "Pilih Lapangan-Type (s) yang ingin Anda sertakan dalam aplikasi ini",
"Images": "Gambar-gambar",
"Screenshot (minimum 1000px)": "Screenshot (minimal 1000px)",
"Icon (1024x1024px)": "Icon (1024x1024px)",
"Sidebar Icon (white transparent SVG)": "Sidebar Icon (SVG transparan putih)",
"Your website": "Situs Anda",
"Url to your website": "Url ke situs web Anda",
"Your name": "Namamu",
"Video (optional)": "Video (opsional)",
"Url to Youtube video": "Url ke video Youtube",
"Intro": "Intro",
"Short intro about what is your app about": "Intro singkat tentang apa yang Anda aplikasi tentang",
"Attention! The deletion of this app will also delete all installations.": "Perhatian! Penghapusan aplikasi ini juga akan menghapus semua instalasi",
"Delete this app": "Hapus aplikasi ini",
"Uninstall": "Uninstall",
"Requires plan": "Membutuhkan rencana",
"Try out in trial mode": "Cobalah dalam mode percobaan",
"Approve app": "Menyetujui aplikasi",
"Website": "Situs web",
"Last update": "Pembaharuan Terakhir",
"App content": "Konten aplikasi",
"Field-Type/UI Extension": "Bidang-Type / UI Ekstensi",
"App submission": "Pengajuan aplikasi",
"By committing your app the Storyblok app directory you accept the": "Dengan melakukan aplikasi direktori aplikasi Storyblok Anda menerima",
"App Directory Agreement": "Perjanjian Direktori App",
"The review process take usually 2-3 days and you will get updated via email once the app is available in the app directory.": "Proses peninjauan mengambil biasanya 2-3 hari dan Anda akan mendapatkan update melalui email setelah aplikasi tersedia di direktori aplikasi",
"Confirm submission": "Pengajuan Konfirmasi",
"References": "Referensi",
"Unselect": "Unselect",
"Clear trashcan": "Jelas sampah",
"Move users to org": "Pindahkan pengguna untuk org",
"Is content type": "Apakah jenis konten",
"Add fields by dragging them to the tab.": "Menambahkan kolom dengan menyeret mereka ke tab",
"Drag and drop the field to the tab name to add it here. All fields that are not placed in custom tabs will be visible in the general tab. To remove the general tab place all fields in custom tabs.": "Drag dan drop lapangan untuk nama tab untuk menambahkannya di sini. Semua bidang yang tidak ditempatkan di tab kustom akan terlihat di tab umum. Untuk menghapus tempat tab umum semua bidang di tab kustom",
"Manage tab": "Mengelola tab",
"Rename": "Rename",
"Move to right": "Bergerak ke kanan",
"Move to left": "Bergerak ke kiri",
"Hide empty option": "Sembunyikan opsi kosong",
"Restrict to content type": "Membatasi jenis konten",
"Enable email field": "Field Aktifkan email",
"Enable asset selection": "Memungkinkan pemilihan aset",
"Enable anchor field on internal link": "Aktifkan anchor lapangan pada link internal yang",
"Minimum": "Minimum",
"Maximum": "Maksimum",
"Define anchor": "Mendefinisikan jangkar",
"Choose to customize your experience": "Pilih untuk menyesuaikan pengalaman Anda",
"First name": "Nama depan",
"Last name": "Nama keluarga",
"Job function": "Fungsi Pekerjaan",
"Marketing": "Pemasaran",
"Information Technology": "Teknologi Informasi",
"Development/Engineering/Programming": "Pembangunan / Rekayasa / Programming",
"Human Resources": "Sumber daya manusia",
"Procurement": "Pembelian",
"Security": "Keamanan",
"Other": "Lain",
"Business area": "Area bisnis",