1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /*
- Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
- For licensing, see LICENSE.md or http://ckeditor.com/license
- */
- CKEDITOR.plugins.setLang( 'forms', 'id', {
- button: {
- title: 'Button Properties', // MISSING
- text: 'Teks (Nilai)',
- type: 'Tipe',
- typeBtn: 'Tombol',
- typeSbm: 'Menyerahkan',
- typeRst: 'Reset' // MISSING
- },
- checkboxAndRadio: {
- checkboxTitle: 'Checkbox Properties', // MISSING
- radioTitle: 'Radio Button Properties', // MISSING
- value: 'Nilai',
- selected: 'Terpilih',
- required: 'Required' // MISSING
- },
- form: {
- title: 'Form Properties', // MISSING
- menu: 'Form Properties', // MISSING
- action: 'Aksi',
- method: 'Metode',
- encoding: 'Encoding' // MISSING
- },
- hidden: {
- title: 'Hidden Field Properties', // MISSING
- name: 'Nama',
- value: 'Nilai'
- },
- select: {
- title: 'Selection Field Properties', // MISSING
- selectInfo: 'Select Info', // MISSING
- opAvail: 'Available Options', // MISSING
- value: 'Nilai',
- size: 'Ukuran',
- lines: 'garis',
- chkMulti: 'Izinkan pemilihan ganda',
- required: 'Required', // MISSING
- opText: 'Teks',
- opValue: 'Nilai',
- btnAdd: 'Tambah',
- btnModify: 'Modifikasi',
- btnUp: 'Atas',
- btnDown: 'Bawah',
- btnSetValue: 'Set as selected value', // MISSING
- btnDelete: 'Hapus'
- },
- textarea: {
- title: 'Textarea Properties', // MISSING
- cols: 'Kolom',
- rows: 'Baris'
- },
- textfield: {
- title: 'Text Field Properties', // MISSING
- name: 'Name',
- value: 'Nilai',
- charWidth: 'Character Width', // MISSING
- maxChars: 'Maximum Characters', // MISSING
- required: 'Required', // MISSING
- type: 'Tipe',
- typeText: 'Teks',
- typePass: 'Kata kunci',
- typeEmail: 'Surel',
- typeSearch: 'Cari',
- typeTel: 'Nomor Telepon',
- typeUrl: 'URL'
- }
- } );
|