mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-04 00:36:45 +00:00
69 lines
1.6 KiB
JavaScript
Executable File
69 lines
1.6 KiB
JavaScript
Executable File
/*
|
|
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
|
For licensing, see LICENSE.html 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'
|
|
},
|
|
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',
|
|
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
|
|
type: 'Tipe',
|
|
typeText: 'Teks',
|
|
typePass: 'Kata kunci',
|
|
typeEmail: 'Surel',
|
|
typeSearch: 'Cari',
|
|
typeTel: 'Nomor Telepon',
|
|
typeUrl: 'URL'
|
|
}
|
|
});
|