File: id.js

package info (click to toggle)
ckeditor 4.16.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 258,804 kB
  • sloc: javascript: 239,590; sh: 184; makefile: 64; python: 37; php: 15; xml: 5
file content (75 lines) | stat: -rw-r--r-- 2,354 bytes parent folder | download | duplicates (3)
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
/*
Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
CKEDITOR.plugins.setLang( 'table', 'id', {
	border: 'Ukuran batas',
	caption: 'Judul halaman',
	cell: {
		menu: 'Sel',
		insertBefore: 'Sisip Sel Sebelum',
		insertAfter: 'Sisip Sel Setelah',
		deleteCell: 'Hapus Sel',
		merge: 'Gabungkan Sel',
		mergeRight: 'Gabungkan ke Kanan',
		mergeDown: 'Gabungkan ke Bawah',
		splitHorizontal: 'Pisahkan Sel Secara Horisontal',
		splitVertical: 'Pisahkan Sel Secara Vertikal',
		title: 'Properti Sel',
		cellType: 'Tipe Sel',
		rowSpan: 'Rentang antar baris',
		colSpan: 'Rentang antar kolom',
		wordWrap: 'Word Wrap',
		hAlign: 'Jajaran Horisontal',
		vAlign: 'Jajaran Vertikal',
		alignBaseline: 'Dasar',
		bgColor: 'Warna Latar Belakang',
		borderColor: 'Warna Batasan',
		data: 'Data',
		header: 'Header',
		yes: 'Ya',
		no: 'Tidak',
		invalidWidth: 'Lebar sel harus sebuah angka.',
		invalidHeight: 'Tinggi sel harus sebuah angka',
		invalidRowSpan: 'Rentang antar baris harus angka seluruhnya.',
		invalidColSpan: 'Rentang antar kolom harus angka seluruhnya',
		chooseColor: 'Pilih'
	},
	cellPad: 'Sel spasi dalam',
	cellSpace: 'Spasi antar sel',
	column: {
		menu: 'Kolom',
		insertBefore: 'Sisip Kolom Sebelum',
		insertAfter: 'Sisip Kolom Sesudah',
		deleteColumn: 'Hapus Kolom'
	},
	columns: 'Kolom',
	deleteTable: 'Hapus Tabel',
	headers: 'Headers',
	headersBoth: 'Keduanya',
	headersColumn: 'Kolom pertama',
	headersNone: 'Tidak ada',
	headersRow: 'Baris Pertama',
	heightUnit: 'height unit', // MISSING
	invalidBorder: 'Ukuran batasan harus sebuah angka',
	invalidCellPadding: '\'Spasi dalam\' sel harus angka positif.',
	invalidCellSpacing: 'Spasi antar sel harus angka positif.',
	invalidCols: 'Jumlah kolom harus sebuah angka lebih besar dari 0',
	invalidHeight: 'Tinggi tabel harus sebuah angka.',
	invalidRows: 'Jumlah barus harus sebuah angka dan lebih besar dari 0.',
	invalidWidth: 'Lebar tabel harus sebuah angka.',
	menu: 'Properti Tabel',
	row: {
		menu: 'Baris',
		insertBefore: 'Sisip Baris Sebelum',
		insertAfter: 'Sisip Baris Sesudah',
		deleteRow: 'Hapus Baris'
	},
	rows: 'Baris',
	summary: 'Intisari',
	title: 'Properti Tabel',
	toolbar: 'Tabe',
	widthPc: 'persen',
	widthPx: 'piksel',
	widthUnit: 'lebar satuan'
} );