123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- (function($) {
- $.extend($.summernote.lang, {
- 'id-ID': {
- font: {
- bold: 'Tebal',
- italic: 'Miring',
- underline: 'Garis bawah',
- clear: 'Bersihkan gaya',
- height: 'Jarak baris',
- name: 'Font Family',
- strikethrough: 'Coret',
- subscript: 'Subscript',
- superscript: 'Superscript',
- size: 'Ukuran font'
- },
- image: {
- image: 'Gambar',
- insert: 'Sisipkan gambar',
- resizeFull: 'Ukuran penuh',
- resizeHalf: 'Ukuran 50%',
- resizeQuarter: 'Ukuran 25%',
- floatLeft: 'Rata kiri',
- floatRight: 'Rata kanan',
- floatNone: 'Tidak ada perataan',
- shapeRounded: 'Shape: Rounded',
- shapeCircle: 'Shape: Circle',
- shapeThumbnail: 'Shape: Thumbnail',
- shapeNone: 'Shape: None',
- dragImageHere: 'Tarik gambar pada area ini',
- dropImage: 'Drop image or Text',
- selectFromFiles: 'Pilih gambar dari berkas',
- maximumFileSize: 'Maximum file size',
- maximumFileSizeError: 'Maximum file size exceeded.',
- url: 'URL gambar',
- remove: 'Hapus Gambar',
- original: 'Original'
- },
- video: {
- video: 'Video',
- videoLink: 'Link video',
- insert: 'Sisipkan video',
- url: 'Tautan video',
- providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion atau Youku)'
- },
- link: {
- link: 'Tautan',
- insert: 'Tambah tautan',
- unlink: 'Hapus tautan',
- edit: 'Edit',
- textToDisplay: 'Tampilan teks',
- url: 'Tautan tujuan',
- openInNewWindow: 'Buka di jendela baru'
- },
- table: {
- table: 'Tabel',
- addRowAbove: 'Add row above',
- addRowBelow: 'Add row below',
- addColLeft: 'Add column left',
- addColRight: 'Add column right',
- delRow: 'Delete row',
- delCol: 'Delete column',
- delTable: 'Delete table'
- },
- hr: {
- insert: 'Masukkan garis horizontal'
- },
- style: {
- style: 'Gaya',
- p: 'p',
- blockquote: 'Kutipan',
- pre: 'Kode',
- h1: 'Heading 1',
- h2: 'Heading 2',
- h3: 'Heading 3',
- h4: 'Heading 4',
- h5: 'Heading 5',
- h6: 'Heading 6'
- },
- lists: {
- unordered: 'Pencacahan',
- ordered: 'Penomoran'
- },
- options: {
- help: 'Bantuan',
- fullscreen: 'Layar penuh',
- codeview: 'Kode HTML'
- },
- paragraph: {
- paragraph: 'Paragraf',
- outdent: 'Outdent',
- indent: 'Indent',
- left: 'Rata kiri',
- center: 'Rata tengah',
- right: 'Rata kanan',
- justify: 'Rata kanan kiri'
- },
- color: {
- recent: 'Warna sekarang',
- more: 'Selengkapnya',
- background: 'Warna latar',
- foreground: 'Warna font',
- transparent: 'Transparan',
- setTransparent: 'Atur transparansi',
- reset: 'Atur ulang',
- resetToDefault: 'Kembalikan kesemula'
- },
- shortcut: {
- shortcuts: 'Jalan pintas',
- close: 'Keluar',
- textFormatting: 'Format teks',
- action: 'Aksi',
- paragraphFormatting: 'Format paragraf',
- documentStyle: 'Gaya dokumen',
- extraKeys: 'Extra keys'
- },
- help: {
- 'insertParagraph': 'Insert Paragraph',
- 'undo': 'Undoes the last command',
- 'redo': 'Redoes the last command',
- 'tab': 'Tab',
- 'untab': 'Untab',
- 'bold': 'Set a bold style',
- 'italic': 'Set a italic style',
- 'underline': 'Set a underline style',
- 'strikethrough': 'Set a strikethrough style',
- 'removeFormat': 'Clean a style',
- 'justifyLeft': 'Set left align',
- 'justifyCenter': 'Set center align',
- 'justifyRight': 'Set right align',
- 'justifyFull': 'Set full align',
- 'insertUnorderedList': 'Toggle unordered list',
- 'insertOrderedList': 'Toggle ordered list',
- 'outdent': 'Outdent on current paragraph',
- 'indent': 'Indent on current paragraph',
- 'formatPara': 'Change current block\'s format as a paragraph(P tag)',
- 'formatH1': 'Change current block\'s format as H1',
- 'formatH2': 'Change current block\'s format as H2',
- 'formatH3': 'Change current block\'s format as H3',
- 'formatH4': 'Change current block\'s format as H4',
- 'formatH5': 'Change current block\'s format as H5',
- 'formatH6': 'Change current block\'s format as H6',
- 'insertHorizontalRule': 'Insert horizontal rule',
- 'linkDialog.show': 'Show Link Dialog'
- },
- history: {
- undo: 'Kembali',
- redo: 'Ulang'
- },
- specialChar: {
- specialChar: 'SPECIAL CHARACTERS',
- select: 'Select Special characters'
- }
- }
- });
- })(jQuery);
|