Upgrade to ExtJS 3.1.0 - Released 12/16/2009
[extjs.git] / docs / source / ext-lang-id.html
1 <html>\r
2 <head>\r
3   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    \r
4   <title>The source code</title>\r
5     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
6     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
7 </head>\r
8 <body  onload="prettyPrint();">\r
9     <pre class="prettyprint lang-js"><div id="prop-Ext.Direct.Transaction-indicatorText"></div>/**
10  * Pedoman translasi:
11  * http://id.wikisource.org/wiki/Panduan_Pembakuan_Istilah,_Pelaksanaan_Instruksi_Presiden_Nomor_2_Tahun_2001_Tentang_Penggunaan_Komputer_Dengan_Aplikasi_Komputer_Berbahasa_Indonesia
12  * Original source: http://vlsm.org/etc/baku-0.txt
13  * by Farid GS
14  * farid [at] pulen.net
15  * 10:13 04 Desember 2007
16  * Indonesian Translations
17  */
18
19 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Pemuatan...</div>';
20
21 if(Ext.View){
22   Ext.View.prototype.emptyText = "";
23 }
24
25 if(Ext.grid.GridPanel){
26   Ext.grid.GridPanel.prototype.ddText = "{0} selected row(s)";
27   Ext.grid.GridPanel.prototype.ddText = "{0} baris terpilih";
28 }
29
30 if(Ext.TabPanelItem){
31   Ext.TabPanelItem.prototype.closeText = "Close this tab";
32   Ext.TabPanelItem.prototype.closeText = "Tutup tab ini";
33 }
34
35 if(Ext.form.Field){
36   Ext.form.Field.prototype.invalidText = "The value in this field is invalid";
37   Ext.form.Field.prototype.invalidText = "Isian belum benar";
38 }
39
40 if(Ext.LoadMask){
41   Ext.LoadMask.prototype.msg = "Loading...";
42   Ext.LoadMask.prototype.msg = "Pemuatan...";
43 }
44
45 Date.monthNames = [
46   "Januari",
47   "Februari",
48   "Maret",
49   "April",
50   "Mei",
51   "Juni",
52   "Juli",
53   "Agustus",
54   "September",
55   "Oktober",
56   "November",
57   "Desember"
58 ];
59
60 Date.getShortMonthName = function(month) {
61   return Date.monthNames[month].substring(0, 3);
62 };
63
64 Date.monthNumbers = {
65   Jan : 0,
66   Feb : 1,
67   Mar : 2,
68   Apr : 3,
69   Mei : 4,
70   Jun : 5,
71   Jul : 6,
72   Agu : 7,
73   Sep : 8,
74   Okt : 9,
75   Nov : 10,
76   Des : 11
77 };
78
79 Date.getMonthNumber = function(name) {
80   return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
81 };
82
83 Date.dayNames = [
84   "Minggu",
85   "Senin",
86   "Selasa",
87   "Rabu",
88   "Kamis",
89   "Jumat",
90   "Sabtu"
91 ];
92
93 Date.getShortDayName = function(day) {
94   return Date.dayNames[day].substring(0, 3);
95 };
96
97 if(Ext.MessageBox){
98   Ext.MessageBox.buttonText = {
99     ok     : "OK",
100     cancel : "Batal",
101     yes    : "Ya",
102     no     : "Tidak"
103   };
104 }
105
106 if(Ext.util.Format){
107   Ext.util.Format.date = function(v, format){
108     if(!v) return "";
109     if(!(v instanceof Date)) v = new Date(Date.parse(v));
110     return v.dateFormat(format || "d/m/Y");
111   };
112 }
113
114 if(Ext.DatePicker){
115   Ext.apply(Ext.DatePicker.prototype, {
116     todayText         : "Hari ini",
117     minText           : "Tanggal ini sebelum batas tanggal minimal", 
118     maxText           : "Tanggal ini setelah batas tanggal maksimal", 
119     disabledDaysText  : "",
120     disabledDatesText : "",
121     monthNames        : Date.monthNames,
122     dayNames          : Date.dayNames,
123     nextText          : 'Bulan Berikut (Kontrol+Kanan)', 
124     prevText          : 'Bulan Sebelum (Kontrol+Kiri)', 
125     monthYearText     : 'Pilih bulan (Kontrol+Atas/Bawah untuk pindah tahun)', 
126     todayTip          : "{0} (Spacebar)",
127     format            : "d/m/y",
128     okText            : "&#160;OK&#160;",
129     cancelText        : "Batal",
130     startDay          : 1
131   });
132 }
133
134 if(Ext.PagingToolbar){
135   Ext.apply(Ext.PagingToolbar.prototype, {
136     beforePageText : "Hal",
137     afterPageText  : "dari {0}",
138     firstText      : "Hal. Pertama",
139     prevText       : "Hal. Sebelum",
140     nextText       : "Hal. Berikut",
141     lastText       : "Hal. Akhir",
142     refreshText    : "Segarkan", 
143     displayMsg     : "Menampilkan {0} - {1} dari {2}",
144     emptyMsg       : 'Data tidak ditemukan' 
145   });
146 }
147
148 if(Ext.form.TextField){
149   Ext.apply(Ext.form.TextField.prototype, {
150     minLengthText : "Panjang minimal untuk field ini adalah {0}",  
151     maxLengthText : "Panjang maksimal untuk field ini adalah {0}", 
152     blankText     : "Field ini wajib diisi", 
153     regexText     : "",
154     emptyText     : null
155   });
156 }
157
158 if(Ext.form.NumberField){
159   Ext.apply(Ext.form.NumberField.prototype, {
160     minText : "Nilai minimal untuk field ini adalah {0}",  
161     maxText : "Nilai maksimal untuk field ini adalah {0}",  
162     nanText : "{0} bukan angka" 
163   });
164 }
165
166 if(Ext.form.DateField){
167   Ext.apply(Ext.form.DateField.prototype, {
168     disabledDaysText  : "Disfungsi",  
169     disabledDatesText : "Disfungsi",  
170     minText           : "Tanggal dalam field ini harus setelah {0}", 
171     maxText           : "Tanggal dalam field ini harus sebelum {0}", 
172     invalidText       : "{0} tanggal salah - Harus dalam format {1}", 
173     format            : "d/m/y", 
174     //altFormats        : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d|Y-m-d"
175     altFormats        : "d/m/Y|d-m-y|d-m-Y|m/d|m-d|md|mdy|mdY|d|Y-m-d"
176   });
177 }
178
179 if(Ext.form.ComboBox){
180   Ext.apply(Ext.form.ComboBox.prototype, {
181     loadingText       : "Pemuatan...",  
182     valueNotFoundText : undefined
183   });
184 }
185
186 if(Ext.form.VTypes){
187   Ext.apply(Ext.form.VTypes, {
188     emailText    : 'Field ini harus dalam format email seperti "user@example.com"', 
189     urlText      : 'Field ini harus dalam format URL seperti "http:/'+'/www.example.com"', 
190     alphaText    : 'Field ini harus terdiri dari huruf dan _', 
191     alphanumText : 'Field ini haris terdiri dari huruf, angka dan _'  
192   });
193 }
194
195 if(Ext.form.HtmlEditor){
196   Ext.apply(Ext.form.HtmlEditor.prototype, {
197     createLinkText : 'Silakan masukkan URL untuk tautan:', 
198     buttonTips : {
199       bold : {
200         title: 'Tebal (Ctrl+B)', 
201         text: 'Buat tebal teks terpilih', 
202         cls: 'x-html-editor-tip'
203       },
204       italic : {
205         title: 'Miring (CTRL+I)', 
206         text: 'Buat miring teks terpilih', 
207         cls: 'x-html-editor-tip'
208       },
209       underline : {
210         title: 'Garisbawah (CTRl+U)', 
211         text: 'Garisbawahi teks terpilih', 
212         cls: 'x-html-editor-tip'
213       },
214       increasefontsize : {
215         title: 'Perbesar teks', 
216         text: 'Perbesar ukuran fonta', 
217         cls: 'x-html-editor-tip'
218       },
219       decreasefontsize : {
220         title: 'Perkecil teks',  
221         text: 'Perkecil ukuran fonta', 
222         cls: 'x-html-editor-tip'
223       },
224       backcolor : {
225         title: 'Sorot Warna Teks',  
226         text: 'Ubah warna latar teks terpilih', 
227         cls: 'x-html-editor-tip'
228       },
229       forecolor : {
230         title: 'Warna Fonta', 
231         text: 'Ubah warna teks terpilih',  
232         cls: 'x-html-editor-tip'
233       },
234       justifyleft : {
235         title: 'Rata Kiri', 
236         text: 'Ratakan teks ke kiri', 
237         cls: 'x-html-editor-tip'
238       },
239       justifycenter : {
240         title: 'Rata Tengah', 
241         text: 'Ratakan teks ke tengah editor', 
242         cls: 'x-html-editor-tip'
243       },
244       justifyright : {
245         title: 'Rata Kanan', 
246         text: 'Ratakan teks ke kanan', 
247         cls: 'x-html-editor-tip'
248       },
249       insertunorderedlist : {
250         title: 'Daftar Bulet', 
251         text: 'Membuat daftar berbasis bulet', 
252         cls: 'x-html-editor-tip'
253       },
254       insertorderedlist : {
255         title: 'Daftar Angka', 
256         text: 'Membuat daftar berbasis angka', 
257         cls: 'x-html-editor-tip'
258       },
259       createlink : {
260         title: 'Hipertaut', 
261         text: 'Buat teks terpilih sebagai Hipertaut', 
262         cls: 'x-html-editor-tip'
263       },
264       sourceedit : {
265         title: 'Edit Kode Sumber', 
266         text: 'Pindah dalam mode kode sumber', 
267         cls: 'x-html-editor-tip'
268       }
269     }
270   });
271 }
272
273 if(Ext.grid.GridView){
274   Ext.apply(Ext.grid.GridView.prototype, {
275     sortAscText  : "Urut Naik", 
276     sortDescText : "Urut Turun", 
277     lockText     : "Kancing Kolom", 
278     unlockText   : "Lepas Kunci Kolom", 
279     columnsText  : "Kolom"
280   });
281 }
282
283 if(Ext.grid.GroupingView){
284   Ext.apply(Ext.grid.GroupingView.prototype, {
285     emptyGroupText : '(Kosong)', 
286     groupByText    : 'Kelompokkan Berdasar Field Ini', 
287     showGroupsText : 'Tampil Dalam Kelompok' 
288   });
289 }
290
291 if(Ext.grid.PropertyColumnModel){
292   Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
293     nameText   : "Nama", 
294     valueText  : "Nilai", 
295     dateFormat : "d/m/Y" 
296   });
297 }
298
299 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
300   Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
301     splitTip            : "Seret untuk ubah ukuran.", 
302     collapsibleSplitTip : "Seret untuk ubah ukuran, Dobel klik untuk sembunyikan." 
303   });
304 }
305 </pre>    \r
306 </body>\r
307 </html>