WP-Table Reloaded - Version 1.9.1

Version Description

This upgrade includes a few new features, like output caching and a custom table CSS class, and several enhancements.

Download this release

Release Info

Developer TobiasBg
Plugin Icon wp plugin WP-Table Reloaded
Version 1.9.1
Comparing to
See all releases

Code changes from version 1.9 to 1.9.1

controllers/controller-admin.php CHANGED
@@ -136,7 +136,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
136
 
137
  // WordPress 3.1 requires new update check
138
  if ( version_compare( $this->options['installed_version'], WP_TABLE_RELOADED_PLUGIN_VERSION, '<' ) )
139
- $this->plugin_update();
140
 
141
  // init variables to check whether we do valid AJAX
142
  $doing_ajax = defined( 'DOING_AJAX' ) ? DOING_AJAX : false;
@@ -1558,6 +1558,11 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1558
  // update general plugin options
1559
  // 1. step: by adding/overwriting existing options
1560
  $this->options = $this->load_options();
 
 
 
 
 
1561
  $new_options = array();
1562
 
1563
  // 1b. step: update new default options before possibly adding them
136
 
137
  // WordPress 3.1 requires new update check
138
  if ( version_compare( $this->options['installed_version'], WP_TABLE_RELOADED_PLUGIN_VERSION, '<' ) )
139
+ add_action( 'init', array( &$this, 'plugin_update' ) );
140
 
141
  // init variables to check whether we do valid AJAX
142
  $doing_ajax = defined( 'DOING_AJAX' ) ? DOING_AJAX : false;
1558
  // update general plugin options
1559
  // 1. step: by adding/overwriting existing options
1560
  $this->options = $this->load_options();
1561
+
1562
+ // do nothing, if installed version is up-to-date
1563
+ if ( ! version_compare( $this->options['installed_version'], WP_TABLE_RELOADED_PLUGIN_VERSION, '<' ) )
1564
+ return;
1565
+
1566
  $new_options = array();
1567
 
1568
  // 1b. step: update new default options before possibly adding them
controllers/controller-frontend.php CHANGED
@@ -319,14 +319,14 @@ class WP_Table_Reloaded_Controller_Frontend extends WP_Table_Reloaded_Controller
319
 
320
  // check if table output shall and can be loaded from the transient cache, otherwise generate the output
321
  $cache_name = "wp_table_reloaded_table_output_{$table_id}";
322
- if ( !$output_options['cache_table_output'] || ( false === ( $output = get_transient( $cache_name ) ) ) ) {
323
  // render/generate the table HTML
324
  $render = $this->create_class_instance( 'WP_Table_Reloaded_Render', 'render.class.php' );
325
  $render->output_options = apply_filters( 'wp_table_reloaded_frontend_output_options', $output_options, $table['id'], $table );
326
  $render->table = $table;
327
  $output = $render->render_table();
328
 
329
- if ( $output_options['cache_table_output'] )
330
  set_transient( $cache_name, $output, 60*60*24 ); // store $output in a transient, set cache timeout to 24 hours
331
  }
332
 
319
 
320
  // check if table output shall and can be loaded from the transient cache, otherwise generate the output
321
  $cache_name = "wp_table_reloaded_table_output_{$table_id}";
322
+ if ( !$output_options['cache_table_output'] || is_user_logged_in() || ( false === ( $output = get_transient( $cache_name ) ) ) ) {
323
  // render/generate the table HTML
324
  $render = $this->create_class_instance( 'WP_Table_Reloaded_Render', 'render.class.php' );
325
  $render->output_options = apply_filters( 'wp_table_reloaded_frontend_output_options', $output_options, $table['id'], $table );
326
  $render->table = $table;
327
  $output = $render->render_table();
328
 
329
+ if ( $output_options['cache_table_output'] && !is_user_logged_in() )
330
  set_transient( $cache_name, $output, 60*60*24 ); // store $output in a transient, set cache timeout to 24 hours
331
  }
332
 
languages/datatables/lang-id_ID.txt CHANGED
@@ -1,9 +1,9 @@
1
  {
2
- "sProcessing": "Sedang memroses...",
3
  "sLengthMenu": "Tampilkan entri _MENU_",
4
- "sZeroRecords": "Tidak ditemukan rekor yang cocok",
5
  "sInfo": "Menampilkan _START_ s/d _END_ dari _TOTAL_ entri",
6
- "sInfoEmpty": "Menampilkan 0 to 0 of 0 entri",
7
  "sInfoFiltered": "(disaring dari total _MAX_ entri)",
8
  "sInfoPostFix": "",
9
  "sSearch": "Cari:",
@@ -11,7 +11,7 @@
11
  "oPaginate": {
12
  "sFirst": "Pertama",
13
  "sPrevious": "Sebelumnya",
14
- "sNext": "Selanjutnya",
15
  "sLast": "Terakhir"
16
  }
17
  }
1
  {
2
+ "sProcessing": "Sedang memproses...",
3
  "sLengthMenu": "Tampilkan entri _MENU_",
4
+ "sZeroRecords": "Tidak ditemukan data yang cocok",
5
  "sInfo": "Menampilkan _START_ s/d _END_ dari _TOTAL_ entri",
6
+ "sInfoEmpty": "Menampilkan 0 s/d 0 dari 0 entri",
7
  "sInfoFiltered": "(disaring dari total _MAX_ entri)",
8
  "sInfoPostFix": "",
9
  "sSearch": "Cari:",
11
  "oPaginate": {
12
  "sFirst": "Pertama",
13
  "sPrevious": "Sebelumnya",
14
+ "sNext": "Berikutnya",
15
  "sLast": "Terakhir"
16
  }
17
  }
languages/wp-table-reloaded-id_ID.mo CHANGED
Binary file
languages/wp-table-reloaded-id_ID.po CHANGED
@@ -1,11 +1,11 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WP-Table Reloaded 1.8\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
5
- "POT-Creation-Date: 2011-01-11 18:13:11+00:00\n"
6
- "PO-Revision-Date: 2011-02-11 21:47+0700\n"
7
  "Last-Translator: Dedy <dedy@sys-talk.com>\n"
8
- "Language-Team: Dedy Sofyan <dedy@sys-talk.com>, Kelayang <k@kelayang.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -19,1390 +19,1415 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ wp-table-reloaded
22
- #: views/view-ajax_list.php:3
23
- #: views/view-list.php:2
24
- msgid "This is a list of all available tables."
25
- msgstr "Ini adalah daftar dari seluruh tabel yang ada."
26
-
27
- # @ wp-table-reloaded
28
- #: views/view-ajax_list.php:3
29
- msgid "You may insert a table into a post or page here."
30
- msgstr "Anda dapat menyisipkan sebuah tabel ke dalam tulisan atau halaman di sini."
31
 
32
  # @ wp-table-reloaded
33
- #: views/view-ajax_list.php:4
34
- msgid "Click the &quot;%s&quot; link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=&lt;ID&gt; /]</strong>)."
35
- msgstr "Klik taut &quot;%s&quot; sesudah tabel yang diinginkan maka kode-singkat ybs akan disisipkan ke dalam editor (<strong>[table id=&lt;ID&gt; /]</strong>)."
 
36
 
37
  # @ wp-table-reloaded
38
- #: views/view-ajax_list.php:4
39
- #: views/view-ajax_list.php:44
40
- msgid "Insert"
41
- msgstr "Sisipkan"
42
 
43
  # @ wp-table-reloaded
44
- #: views/view-ajax_list.php:13
45
- #: views/view-ajax_list.php:21
46
- #: views/view-list.php:13
47
- #: views/view-list.php:23
48
- #: views/view-import.php:98
49
- #: views/view-import.php:107
50
- msgid "ID"
51
- msgstr "ID"
52
 
53
  # @ wp-table-reloaded
54
- #: views/view-ajax_list.php:14
55
- #: views/view-ajax_list.php:22
56
- #: views/view-list.php:15
57
- #: views/view-list.php:25
58
- #: views/view-add.php:13
59
- #: views/view-import.php:99
60
- #: views/view-import.php:108
61
- #: views/view-edit.php:23
62
- #: views/view-edit.php:283
63
- msgid "Table Name"
64
- msgstr "Nama Tabel"
65
 
66
  # @ wp-table-reloaded
67
- #: views/view-ajax_list.php:15
68
- #: views/view-ajax_list.php:23
69
- #: views/view-list.php:16
70
- #: views/view-list.php:26
71
- #: views/view-add.php:17
72
- #: views/view-import.php:100
73
- #: views/view-import.php:109
74
- #: views/view-edit.php:27
75
- msgid "Description"
76
- msgstr "Deskripsi"
77
 
78
  # @ wp-table-reloaded
79
- #: views/view-ajax_list.php:16
80
- #: views/view-ajax_list.php:24
81
- #: views/view-import.php:101
82
- #: views/view-import.php:110
83
- #: views/view-edit.php:434
84
- msgid "Action"
85
- msgstr "Tindakan"
86
 
87
  # @ wp-table-reloaded
88
- #: views/view-ajax_list.php:53
89
- #: views/view-list.php:88
90
- #: views/view-export.php:72
91
- #: controllers/controller-admin.php:1868
92
- msgid "No tables were found."
93
- msgstr "Tidak ditemukan tabel."
94
 
95
  # @ wp-table-reloaded
96
- #: views/view-list.php:2
97
- msgid "You may add, edit, copy, delete or preview tables here."
98
- msgstr "Anda dapat menambah, menyunting, menyalin, menghapus atau pratinjau tabel di sini."
99
 
100
  # @ wp-table-reloaded
101
- #: views/view-list.php:2
102
- #: views/view-edit.php:9
103
- #: views/view-about.php:14
104
- #: views/view-ajax_preview.php:5
105
- msgid "To insert the table into a page, post or text-widget, copy the shortcode <strong>[table id=%s /]</strong> and paste it into the corresponding place in the editor."
106
- msgstr "Untuk menambahkan tabel ke dalam suatu halaman, tulisan, atau widget teks, salinlah kode-singkat ini <strong>[table id=%s /]</strong> dan tempelkan ke tempat yang diinginkan pada editor."
107
 
108
  # @ wp-table-reloaded
109
- #: views/view-list.php:2
110
- msgid "Each table has a unique ID that needs to be adjusted in that shortcode."
111
- msgstr "Setiap tabel memiliki satu ID unik yang perlu disesuaikan pada kode-singkat tadi."
 
112
 
113
  # @ wp-table-reloaded
114
- #: views/view-list.php:2
115
- msgid "You can also click the button &quot;%s&quot; in the editor toolbar to select and insert a table."
116
- msgstr "Anda juga dapat meng-klik tombol &quot;%s&quot; pada baris perkakas editor untuk memilih dan menyisipkan tabel."
 
117
 
118
  # @ wp-table-reloaded
119
- #: views/view-list.php:2
120
- #: views/view-about.php:14
121
- #: controllers/controller-admin.php:1803
122
- msgid "Table"
123
- msgstr "Tabel"
124
 
125
  # @ wp-table-reloaded
126
- #: views/view-list.php:17
127
- #: views/view-list.php:27
128
- #: views/view-edit.php:32
129
- msgid "Last Modified"
130
- msgstr "Terakhir Dimodifikasi"
131
 
132
  # @ wp-table-reloaded
133
- #: views/view-list.php:39
134
- msgid "(no name)"
135
- msgstr "(tiada nama)"
136
 
137
  # @ wp-table-reloaded
138
- #: views/view-list.php:40
139
- msgid "(no description)"
140
- msgstr "(tiada deskripsi)"
 
141
 
142
  # @ wp-table-reloaded
143
- #: views/view-list.php:44
144
- #: views/view-edit.php:33
145
- msgid "by"
146
- msgstr "oleh"
147
 
148
  # @ wp-table-reloaded
149
- #: views/view-list.php:58
150
- msgid "Edit %s"
151
- msgstr "Sunting %s"
 
152
 
153
  # @ default
154
  # @ wp-table-reloaded
155
- #: views/view-list.php:60
156
  #: classes/render.class.php:141
 
157
  msgid "Edit"
158
  msgstr "Sunting"
159
 
160
  # @ wp-table-reloaded
161
- #: views/view-list.php:62
162
- msgid "Shortcode"
163
- msgstr "Kode-singkat"
164
 
165
  # @ wp-table-reloaded
166
- #: views/view-list.php:63
167
- msgid "Copy"
168
- msgstr "Salin"
169
 
170
  # @ wp-table-reloaded
171
- #: views/view-list.php:64
172
- msgid "Export"
173
- msgstr "Ekspor"
174
 
175
  # @ wp-table-reloaded
176
- #: views/view-list.php:65
177
- #: views/view-edit.php:156
178
- #: views/view-edit.php:160
179
- msgid "Delete"
180
- msgstr "Hapus"
181
 
182
  # @ wp-table-reloaded
183
- #: views/view-list.php:66
184
- msgid "Preview of Table %s"
185
- msgstr "Pratampil dari Tabel %s"
186
 
187
  # @ wp-table-reloaded
188
- #: views/view-list.php:67
189
- msgid "Preview"
190
- msgstr "Pratinjau"
191
 
192
  # @ wp-table-reloaded
193
- #: views/view-list.php:79
194
- #: views/view-import.php:139
195
- msgid "Bulk actions:"
196
- msgstr "Tindakan massal:"
197
 
198
  # @ wp-table-reloaded
199
- #: views/view-list.php:79
200
- msgid "Copy Tables"
201
- msgstr "Salin Tabel"
 
 
 
202
 
203
  # @ wp-table-reloaded
204
- #: views/view-list.php:79
205
- msgid "Delete Tables"
206
- msgstr "Hapus Tabel"
207
 
208
  # @ wp-table-reloaded
209
- #: views/view-list.php:88
210
- #: views/view-export.php:72
211
- msgid "You should <a href=\"%s\">add</a> or <a href=\"%s\">import</a> a table to get started!"
212
- msgstr "Anda disarankan untuk <a href=\"%s\">menambah</a> atau <a href=\"%s\">mengimpor</a> sebuah tabel untuk memulai!"
 
 
 
 
 
 
 
 
 
 
 
213
 
214
  # @ wp-table-reloaded
215
- #: views/view-add.php:4
216
- msgid "To add a new table, enter its name, a description (optional) and the number of rows and columns."
217
- msgstr "Untuk menambahkan sebuah tabel baru, masukkan namanya, deskripsi (opsional) serta beberapa baris dan kolom."
 
 
 
 
 
 
 
 
 
 
 
218
 
219
  # @ wp-table-reloaded
220
- #: views/view-add.php:4
221
- msgid "You may also add, insert or delete rows and columns later."
222
- msgstr "Anda juga dapat menambahkan, menyisipkan atau menghapus baris dan kolom lain kali."
223
 
224
  # @ wp-table-reloaded
225
- #: views/view-add.php:14
226
- msgid "Enter Table Name"
227
- msgstr "Masukkan Nama Tabel"
 
 
 
 
 
 
 
 
228
 
229
  # @ wp-table-reloaded
230
- #: views/view-add.php:18
231
- msgid "Enter Description"
232
- msgstr "Masukkan Deskripsi"
 
 
 
 
 
 
 
233
 
234
  # @ wp-table-reloaded
235
- #: views/view-add.php:21
236
- msgid "Number of Rows"
237
- msgstr "Jumlah Baris"
 
 
238
 
239
  # @ wp-table-reloaded
240
- #: views/view-add.php:25
241
- msgid "Number of Columns"
242
- msgstr "Jumlah Kolom"
 
243
 
244
  # @ wp-table-reloaded
245
- #: views/view-add.php:32
246
- msgid "Add Table"
247
- msgstr "Tambah Tabel"
 
 
 
 
248
 
249
  # @ wp-table-reloaded
250
- #: views/view-import.php:3
251
- msgid "WP-Table Reloaded can import tables from existing data."
252
- msgstr "WP-Table Reloaded dapat mengimpor tabel dari data yang sudah ada."
 
 
 
253
 
254
  # @ wp-table-reloaded
255
- #: views/view-import.php:3
256
- msgid "This may be a CSV, XML or HTML file, each with a certain structure."
257
- msgstr "Ini dapat berupa berkas CSV, XML atau HTML, masing-masing dengan struktur tertentu."
 
 
 
 
 
258
 
259
  # @ wp-table-reloaded
260
- #: views/view-import.php:3
261
- msgid "To import an existing table, please select its format and the source for the import."
262
- msgstr "Untuk mengimpor tabel yang sudah ada, silahkan pilih formatnya dan dari sumber mana diimpornya."
263
 
264
  # @ wp-table-reloaded
265
- #: views/view-import.php:3
266
- msgid "You can also decide, if you want to import it as a new table or replace an existing table."
267
- msgstr "Anda juga dapat memutuskan jika Anda ingin mengimpornya sebagai satu tabel baru atau mengganti tabel yang sudah ada."
268
 
269
  # @ wp-table-reloaded
270
- #: views/view-import.php:10
271
- msgid "Select Import Format"
272
- msgstr "Pilih Format Impor"
 
273
 
274
  # @ wp-table-reloaded
275
- #: views/view-import.php:21
276
- msgid "Add or Replace Table?"
277
- msgstr "Tambah atau Ganti Tabel?"
278
 
279
  # @ wp-table-reloaded
280
- #: views/view-import.php:23
281
- msgid "Add as new Table"
282
- msgstr "Tambah sebagai Tabel baru"
283
 
284
  # @ wp-table-reloaded
285
- #: views/view-import.php:24
286
- msgid "Replace existing Table"
287
- msgstr "Ganti Tabel yang sudah ada"
288
 
289
  # @ wp-table-reloaded
290
- #: views/view-import.php:28
291
- msgid "Select existing Table to Replace"
292
- msgstr "Pilih Tabel yang sudah ada untuk Diganti"
293
 
294
  # @ wp-table-reloaded
295
- #: views/view-import.php:44
296
- msgid "Select source for Import"
297
- msgstr "Pilih sumber untuk Diimpor"
298
 
299
  # @ wp-table-reloaded
300
- #: views/view-import.php:46
301
- msgid "File upload"
302
- msgstr "Pengunggahan berkas"
 
 
303
 
304
  # @ wp-table-reloaded
305
- #: views/view-import.php:47
306
- msgid "URL"
307
- msgstr "URL"
 
 
308
 
309
  # @ wp-table-reloaded
310
- #: views/view-import.php:48
311
- msgid "Manual input"
312
- msgstr "Masukan Manual"
 
313
 
314
  # @ wp-table-reloaded
315
- #: views/view-import.php:49
316
- msgid "File on server"
317
- msgstr "Berkas pada server"
 
318
 
319
  # @ wp-table-reloaded
320
- #: views/view-import.php:53
321
- msgid "Select File with Table to Import"
322
- msgstr "Pilih Berkas dengan Tabel untuk Diimpor"
323
 
324
  # @ wp-table-reloaded
325
- #: views/view-import.php:57
326
- msgid "URL to Import Table from"
327
- msgstr "URL dari mana Tabel akan Diimpor"
328
 
329
  # @ wp-table-reloaded
330
- #: views/view-import.php:61
331
- msgid "Path to file on server"
332
- msgstr "Alamat berkas pada server"
333
 
334
  # @ wp-table-reloaded
335
- #: views/view-import.php:65
336
- msgid "Paste data with Table to Import"
337
- msgstr "Tempel data dengan Tabel untuk Impor"
338
 
339
  # @ wp-table-reloaded
340
- #: views/view-import.php:71
341
- msgid "Import Table"
342
- msgstr "Impor Tabel"
343
 
344
  # @ wp-table-reloaded
345
- #: views/view-import.php:85
346
- msgid "Import from original wp-Table plugin"
347
- msgstr "Impor dari plugin asal wp-Table"
 
 
348
 
349
  # @ wp-table-reloaded
350
- #: views/view-import.php:131
351
- msgid "Import"
352
- msgstr "Impor"
 
353
 
354
  # @ wp-table-reloaded
355
- #: views/view-import.php:139
356
- msgid "Import Tables"
357
- msgstr "Impor Tabel"
358
 
359
  # @ wp-table-reloaded
360
- #: views/view-import.php:145
361
- msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
362
- msgstr "wp-Table oleh Alex Rabe sepertinya telah terpasang, tapi tidak ditemukan tabel apa pun."
 
363
 
364
  # @ wp-table-reloaded
365
- #: views/view-uninstall.php:3
366
- msgid "Plugin deactivated successfully."
367
- msgstr "Plugin berhasil dinonaktifkan."
368
 
369
  # @ wp-table-reloaded
370
- #: views/view-uninstall.php:4
371
- msgid "All tables, data and options were deleted. You may now manually remove the plugin's subfolder from your WordPress plugin folder or use the \"Delete\" link on the Plugins page."
372
- msgstr "Semua tabel, data dan pilihan telah dihapus. Anda sekarang dapat secara manual menghapus subfolder plugin dari folder plugin WordPress Anda atau gunakan taut \"Hapus\" pada laman Plugin."
 
 
373
 
374
  # @ wp-table-reloaded
375
- #: views/view-options.php:3
376
- msgid "WP-Table Reloaded has several options which affect the plugin behavior in different areas."
377
- msgstr "WP-Table Reloaded memiliki beberapa pilihan yang dapat mempengaruhi perilaku plugin di area tertentu."
378
 
379
  # @ wp-table-reloaded
380
- #: views/view-options.php:4
381
- msgid "Frontend Options influence the output and used features of tables in pages, posts or text-widgets."
382
- msgstr "Pilihan Muka-depan mempengaruhi keluaran dan fitur yang digunakan oleh tabel pada halaman, tulisan, atau widget teks."
383
 
384
  # @ wp-table-reloaded
385
- #: views/view-options.php:4
386
- msgid "The Backend Options control the plugin's admin area, e.g. the &quot;%s&quot; screen."
387
- msgstr "Pilihan Muka-Belakang mempengaruhi area admin plugin, co: layar &quot;%s&quot;."
 
388
 
389
  # @ wp-table-reloaded
390
- #: views/view-options.php:4
391
- #: views/view-options.php:55
392
- #: views/view-options.php:75
393
- #: views/view-options.php:79
394
- msgid "Edit Table"
395
- msgstr "Sunting Tabel"
396
 
397
  # @ wp-table-reloaded
398
- #: views/view-options.php:4
399
- msgid "Administrators have access to further Admin Options."
400
- msgstr "Administrator memiliki akses ke Pilihan Admin lebih lanjut."
 
401
 
402
  # @ wp-table-reloaded
403
- #: views/view-options.php:19
404
- msgid "Frontend Options"
405
- msgstr "Pilihan Muka-Depan"
 
406
 
407
  # @ wp-table-reloaded
408
- #: views/view-options.php:19
409
- #: views/view-options.php:70
410
- #: views/view-options.php:91
411
- #: views/view-options.php:188
412
- #: views/view-options.php:199
413
- #: views/view-edit.php:15
414
- #: views/view-edit.php:51
415
- #: views/view-edit.php:104
416
- #: views/view-edit.php:262
417
- #: views/view-edit.php:361
418
- #: views/view-edit.php:422
419
- #: views/view-about.php:86
420
- msgctxt "expand"
421
- msgid "Hide"
422
- msgstr "Sembunyikan"
423
 
424
  # @ wp-table-reloaded
425
- #: views/view-options.php:19
426
- #: views/view-options.php:70
427
- #: views/view-options.php:91
428
- #: views/view-options.php:188
429
- #: views/view-options.php:199
430
- #: views/view-edit.php:15
431
- #: views/view-edit.php:51
432
- #: views/view-edit.php:104
433
- #: views/view-edit.php:262
434
- #: views/view-edit.php:361
435
- #: views/view-edit.php:422
436
- #: views/view-about.php:86
437
- msgid "Expand"
438
- msgstr "Perluas"
439
 
440
  # @ wp-table-reloaded
441
- #: views/view-options.php:23
442
- msgid "JavaScript library"
443
- msgstr "Pustaka JavaScript"
444
 
445
  # @ wp-table-reloaded
446
- #: views/view-options.php:24
447
- msgid "Yes, enable the use of a JavaScript library."
448
- msgstr "Ya, nyalakan penggunaan pustaka JavaScript."
449
 
450
  # @ wp-table-reloaded
451
- #: views/view-options.php:24
452
- msgid "WP-Table Reloaded includes three JavaScript libraries that can add useful features, like sorting, pagination, and filtering, to a table."
453
- msgstr "WP-Table Reloaded mengikutsertakan tiga pustaka JavaScript yang dapat menambahkan fitur-fitur berguna, seperti sortir, penomoran halaman, dan penyaringan ke dalam tabel."
454
 
455
  # @ wp-table-reloaded
456
- #: views/view-options.php:28
457
- msgid "Select the library to use:"
458
- msgstr "Pilih pustaka yang akan digunakan:"
459
 
460
  # @ wp-table-reloaded
461
- #: views/view-options.php:29
462
- #: views/view-options.php:131
463
- msgid "recommended"
464
- msgstr "direkomendasikan"
465
 
466
  # @ wp-table-reloaded
467
- #: views/view-options.php:33
468
- msgid "(You can read more about each library's features on the <a href=\"%s\">plugin's website</a>.)"
469
- msgstr "(Anda dapat baca lebih lanjut mengenai fitur dari masing-masing pustaka di <a href=\"%s\">situs web plugin tsb</a>.)"
470
 
471
  # @ wp-table-reloaded
472
- #: views/view-options.php:36
473
- msgid "Default CSS"
474
- msgstr "CSS Bawaan"
475
 
476
  # @ wp-table-reloaded
477
- #: views/view-options.php:38
478
- msgid "Yes, include and load the plugin's default CSS Stylesheets. This is highly recommended, if you use one of the JavaScript libraries!"
479
- msgstr "Ya, sertakan dan gunakan Stylesheet CSS bawaan plugin. Ini sangat direkomendasikan, bila Anda menggunakan satu dari beberapa pustaka JavaScript yang disediakan!"
480
 
481
  # @ wp-table-reloaded
482
- #: views/view-options.php:42
483
- msgid "Custom CSS"
484
- msgstr "CSS Tersuai"
485
 
486
  # @ wp-table-reloaded
487
- #: views/view-options.php:44
488
- msgid "Yes, include and load the following custom CSS commands."
489
- msgstr "Ya, sertakan dan gunakan perintah-perintah CSS tersuai berikut."
490
 
491
  # @ wp-table-reloaded
492
- #: views/view-options.php:44
493
- msgid "This should be used to change the table layout and styling."
494
- msgstr "Ini sebaiknya digunakan untuk mengubah tata letak dan gaya tabel."
495
 
496
  # @ wp-table-reloaded
497
- #: views/view-options.php:50
498
- msgid "You can get styling examples from the <a href=\"%s\">FAQ</a>."
499
- msgstr "Anda bisa mendapatkan contoh penggayaan dari <a href=\"%s\">FAQ</a>."
 
500
 
501
  # @ wp-table-reloaded
502
- #: views/view-options.php:50
503
- msgid "Information on available CSS selectors can be found in the <a href=\"%s\">documentation</a>."
504
- msgstr "Informasi mengenai pemilih CSS yang tersedia dapat dilihat pada <a href=\"%s\">dokumentasi</a>."
 
505
 
506
  # @ wp-table-reloaded
507
- #: views/view-options.php:54
508
- msgid "Links in new window"
509
- msgstr "Tautan pada jendela baru"
510
 
511
  # @ wp-table-reloaded
512
- #: views/view-options.php:55
513
- msgid "Yes, open links that are inserted with the &quot;%s&quot; button on the &quot;%s&quot; screen in a new browser window <strong>from now on</strong>."
514
- msgstr "Ya, buka tautan yang disisipkan dengan tombol &quot;%s&quot; pada layar &quot;%s&quot; di jendela peramban baru <strong>mulai sekarang</strong>."
515
 
516
  # @ wp-table-reloaded
517
- #: views/view-options.php:55
518
- #: views/view-edit.php:114
519
- msgid "Insert Link"
520
- msgstr "Sisipkan Taut"
 
 
 
 
 
 
 
521
 
522
  # @ wp-table-reloaded
523
- #: views/view-options.php:62
524
- #: views/view-options.php:172
525
- msgid "Save Options"
526
- msgstr "Simpan Pilihan"
 
 
 
527
 
528
  # @ wp-table-reloaded
529
- #: views/view-options.php:65
530
- #: views/view-options.php:175
531
- #: views/view-edit.php:45
532
- #: views/view-edit.php:257
533
- #: views/view-edit.php:417
534
- #: views/view-edit.php:468
535
- msgid "Cancel"
536
- msgstr "Batal"
537
 
538
  # @ wp-table-reloaded
539
- #: views/view-options.php:70
540
- msgid "Backend Options"
541
- msgstr "Pilihan Muka-Belakang"
 
 
542
 
543
  # @ wp-table-reloaded
544
- #: views/view-options.php:74
545
- msgid "Exit warning"
546
- msgstr "Tutup peringatan"
 
547
 
548
  # @ wp-table-reloaded
549
- #: views/view-options.php:75
550
- msgid "Yes, show a warning message, if I leave the &quot;%s&quot; screen and have not yet saved my changes."
551
- msgstr "Ya, tampilkan pesan peringatan, jika saya keluar dari layar &quot;%s&quot; dan belum menyimpan perubahan yang ada."
552
 
553
  # @ wp-table-reloaded
554
- #: views/view-options.php:78
555
- msgid "Growing textareas"
556
- msgstr "Area-teks yang bisa membesar"
557
 
558
  # @ wp-table-reloaded
559
- #: views/view-options.php:79
560
- msgid "Yes, enlarge the textareas on the &quot;%s&quot; screen when they are focussed."
561
- msgstr "Ya, perbesar area-teks pada layar &quot;%s&quot; ketika mereka difokuskan."
 
 
 
 
562
 
563
  # @ wp-table-reloaded
564
- #: views/view-options.php:82
565
- msgid "List of Tables features"
566
- msgstr "Daftar Fitur Tabel"
567
 
568
- #: views/view-options.php:83
569
- msgid "Yes, use the DataTables JavaScript features (sorting, pagination, filtering) on the &quot;%s&quot; screen."
570
- msgstr "Ya, gunakan fitur JavaScript DataTables (sortir, penomoran halaman, saring) pada layar &quot;%s&quot;."
 
571
 
572
  # @ wp-table-reloaded
573
- #: views/view-options.php:83
574
- #: controllers/controller-admin.php:1302
575
- msgid "List Tables"
576
- msgstr "Daftar Tabel"
577
 
578
  # @ wp-table-reloaded
579
- #: views/view-options.php:91
580
- msgid "Admin Options"
581
- msgstr "Pilihan Admin"
582
 
583
  # @ wp-table-reloaded
584
- #: views/view-options.php:93
585
- #: views/view-options.php:213
586
- #: views/view-options.php:227
587
- msgid "This area are only available to site administrators!"
588
- msgstr "Area ini hanya tersedia bagi administrator situs!"
589
 
590
  # @ wp-table-reloaded
591
- #: views/view-options.php:93
592
- msgid "You can therefore not change these options."
593
- msgstr "Oleh sebab itu Anda tidak dapat mengubah pilihan berikut ini."
594
 
595
  # @ wp-table-reloaded
596
- #: views/view-options.php:98
597
- msgid "Plugin Access"
598
- msgstr "Akses Plugin"
599
 
600
  # @ wp-table-reloaded
601
- #: views/view-options.php:99
602
- msgid "To access WP-Table Reloaded, a user needs to be:"
603
- msgstr "Untuk mengakses WP-Table Reloaded, seorang pengguna haruslah:"
604
 
605
- # @ default
606
- #: views/view-options.php:100
607
- #: views/view-options.php:111
608
- msgctxt "User role"
609
- msgid "Administrator"
610
- msgstr "Administrator"
611
 
612
- # @ default
613
- #: views/view-options.php:101
614
- #: views/view-options.php:112
615
- msgctxt "User role"
616
- msgid "Editor"
617
- msgstr "Penyunting"
618
 
619
- # @ default
620
- #: views/view-options.php:102
621
- #: views/view-options.php:113
622
- msgctxt "User role"
623
- msgid "Author"
624
- msgstr "Penulis"
625
-
626
- # @ default
627
- #: views/view-options.php:103
628
- msgctxt "User role"
629
- msgid "Contributor"
630
- msgstr "Kontributor"
631
 
632
  # @ wp-table-reloaded
633
- #: views/view-options.php:109
634
- msgid "Plugin Options Access"
635
- msgstr "Akses Pilihan Plugin"
636
 
637
  # @ wp-table-reloaded
638
- #: views/view-options.php:110
639
- msgid "To access the Plugin Options of WP-Table Reloaded, a user needs to be:"
640
- msgstr "Untuk mengakses Pilihan Plugin WP-Table Reloaded, seorang pengguna haruslah:"
641
 
642
  # @ wp-table-reloaded
643
- #: views/view-options.php:114
644
- msgid "Admin Options, Dump file Import, and Manual Plugin Uninstall are always accessible by Administrators only, regardless of this setting."
645
- msgstr "Pilihan Admin, Impor berkas <em>Dump</em>, dan Pencabutan Plugin secara Manual akan selalu dapat diakses hanya oleh Administrator, terlepas dari pengaturan apapun di sini."
646
 
647
  # @ wp-table-reloaded
648
- #: views/view-options.php:118
649
- msgid "Plugin Language"
650
- msgstr "Bahasa Plugin"
651
 
652
  # @ wp-table-reloaded
653
- #: views/view-options.php:119
654
- msgid "WP-Table Reloaded shall be shown in this language:"
655
- msgstr "WP-Table Reloaded akan ditampilkan dalam bahasa ini:"
656
 
657
  # @ wp-table-reloaded
658
- #: views/view-options.php:120
659
- msgid "WordPress Default (currently %s)"
660
- msgstr "Bawaan WordPress (saat ini %s)"
661
 
662
  # @ wp-table-reloaded
663
- #: views/view-options.php:129
664
- msgid "Admin menu entry"
665
- msgstr "Entri menu Admin"
666
 
667
  # @ wp-table-reloaded
668
- #: views/view-options.php:130
669
- msgid "WP-Table Reloaded shall be shown in this section of the admin menu:"
670
- msgstr "WP-Table Reloaded akan ditampilkan pada bagian ini di menu admin:"
671
-
672
- # @ default
673
- #: views/view-options.php:131
674
- msgid "Tools"
675
- msgstr "Perkakas"
676
-
677
- # @ default
678
- #: views/view-options.php:132
679
- msgid "Posts"
680
- msgstr "Tulisan"
681
-
682
- # @ default
683
- #: views/view-options.php:142
684
- msgid "Pages"
685
- msgstr "Halaman"
686
-
687
- # @ default
688
- #: views/view-options.php:143
689
- msgid "Plugins"
690
- msgstr "Plugin"
691
-
692
- # @ default
693
- #: views/view-options.php:144
694
- msgid "Settings"
695
- msgstr "Pengaturan"
696
-
697
- # @ default
698
- #: views/view-options.php:145
699
- msgid "Dashboard"
700
- msgstr "Dasbor"
701
 
702
  # @ wp-table-reloaded
703
- #: views/view-options.php:146
704
- msgid "Top-Level"
705
- msgstr "Level-Atas"
706
 
707
  # @ wp-table-reloaded
708
- #: views/view-options.php:151
709
- msgid "Frontend Edit Link"
710
- msgstr "Taut Sunting Muka-depan"
711
 
712
  # @ wp-table-reloaded
713
- #: views/view-options.php:152
714
- msgid "Yes, show an \"Edit\" link to users with sufficient rights near every table on the frontend."
715
- msgstr "Ya, tampilkan taut \"Sunting\" bagi pengguna, dengan hak akses yang cukup, di dekat setiap tabel pada muka-depan."
716
 
717
  # @ wp-table-reloaded
718
- #: views/view-options.php:156
719
- msgid "WordPress Search"
720
- msgstr "Pencarian WordPress"
721
 
722
  # @ wp-table-reloaded
723
- #: views/view-options.php:157
724
- msgid "Yes, the WordPress Search shall also find posts and pages that contain the search term inside a table."
725
- msgstr "Ya, Pencarian WordPress juga akan mencari tulisan dan halaman yang mengandung kata-kata yang dicari di dalam sebuah tabel."
726
 
727
  # @ wp-table-reloaded
728
- #: views/view-options.php:161
729
- msgid "Remove upon Deactivation"
730
- msgstr "Singkirkan bila Dinon-aktifkan"
731
 
732
  # @ wp-table-reloaded
733
- #: views/view-options.php:162
734
- msgid "Yes, remove all plugin related data from the database when the plugin is deactivated."
735
- msgstr "Ya, singkirkan semua data yang berhubungan dengan plugin dari basis data ketika plugin ini di-nonaktifkan."
736
 
737
  # @ wp-table-reloaded
738
- #: views/view-options.php:162
739
- msgid "Should be activated directly before deactivation only!"
740
- msgstr "Sebaiknya diaktifkan langsung sebelum non-aktivasi saja!"
741
 
742
  # @ wp-table-reloaded
743
- #: views/view-options.php:182
744
- msgid "WP-Table Reloaded Data Export and Backup"
745
- msgstr "Ekspor dan Cadangkan Data WP-Table Reloaded"
746
 
747
  # @ wp-table-reloaded
748
- #: views/view-options.php:185
749
- msgid "WP-Table Reloaded can export and import a so-called dump file that contains all tables, their settings and the plugin's options."
750
- msgstr "WP-Table Reloaded dapat mengekspor dan mengimpor berkas <em>dump</em> yang berisi seluruh tabel, pengaturannya serta pilihan pluginnya."
 
 
 
 
751
 
752
  # @ wp-table-reloaded
753
- #: views/view-options.php:185
754
- msgid "This file can be used as a backup or to move all data to another WordPress site."
755
- msgstr "Berkas ini dapat digunakan sebagai cadangan atau untuk memindahkan seluruh data ke situs WordPress lain."
756
 
757
  # @ wp-table-reloaded
758
- #: views/view-options.php:188
759
- msgid "Export a dump file"
760
- msgstr "Ekspor berkas <em>dump</em>"
761
 
762
  # @ wp-table-reloaded
763
- #: views/view-options.php:190
764
- msgid "To export all Tables and their settings, click the button below to generate and download a dump file."
765
- msgstr "Untuk mengekspor seluruh Tabel dan pengaturannya, klik tombol di bawah untuk membuat dan mengunduh berkas <em>dump</em>-nya."
766
 
767
  # @ wp-table-reloaded
768
- #: views/view-options.php:190
769
- msgid "<strong>Warning</strong>: Do <strong>not</strong> edit the content of that file under any circumstances as you will destroy the file!"
770
- msgstr "<strong>Peringatan</strong>: <strong>Jangan</strong> sunting konten dari berkas tsb untuk keperluan apapun karena akan merusak isinya!"
771
 
772
  # @ wp-table-reloaded
773
- #: views/view-options.php:193
774
- #: views/view-export.php:10
775
- msgid "Create and Download Dump File"
776
- msgstr "Ciptakan dan Unduh Berkas <em>Dump</em>"
777
 
778
  # @ wp-table-reloaded
779
- #: views/view-options.php:199
780
- msgid "Import a dump file"
781
- msgstr "Impor berkas <em>dump</em>"
782
 
783
  # @ wp-table-reloaded
784
- #: views/view-options.php:201
785
- msgid "To import a WP-Table Reloaded dump file and restore the included data, upload the file from your computer."
786
- msgstr "Untuk mengimpor berkas <em>dump</em> WP-Table Reloaded dan memulihkan data yang disertakan di dalamnya, unggah berkasnya dari komputer Anda."
 
787
 
788
  # @ wp-table-reloaded
789
- #: views/view-options.php:201
790
- msgid "All current data of this WP-Table Reloaded installation (Tables, Options, Settings) <strong>WILL BE OVERWRITTEN</strong> with the data from the file!"
791
- msgstr "Semua data yang ada pada instalasi WP-Table Reloaded ini (Tabel, Pilihan, Pengaturan) <strong>AKAN TERTIMPA</strong> dengan data dari berkas ini!"
792
 
793
  # @ wp-table-reloaded
794
- #: views/view-options.php:201
795
- msgid "Do not proceed, if you do not understand this!"
796
- msgstr "Jangan lanjutkan bila Anda tidak paham sepenuhnya!"
797
 
798
  # @ wp-table-reloaded
799
- #: views/view-options.php:201
800
- msgid "It is highly recommended to export and backup the data of this installation before importing another dump file (see above)."
801
- msgstr "Sangat direkomendasikan untuk mengekspor dan menyimpan salinan data dari instalasi ini sebelum melakukan impor dari berkas <em>dump</em> yang lain (lihat di atas)."
802
 
803
  # @ wp-table-reloaded
804
- #: views/view-options.php:207
805
- msgid "Select Dump File"
806
- msgstr "Pilih Berkas <em>Dump</em>"
 
 
 
807
 
808
  # @ wp-table-reloaded
809
- #: views/view-options.php:209
810
- msgid "Import Dump File"
811
- msgstr "Impor Berkas <em>Dump</em>"
812
 
813
  # @ wp-table-reloaded
814
- #: views/view-options.php:219
815
- msgid "Manually Uninstall WP-Table Reloaded"
816
- msgstr "Cabut Secara Manual WP-Table Reloaded"
817
 
818
  # @ wp-table-reloaded
819
- #: views/view-options.php:221
820
- msgid "Uninstalling <strong>will permanently delete</strong> all tables, data, and options, that belong to WP-Table Reloaded from the database, including all tables you added or imported."
821
- msgstr "Pencabutan akan <strong>menghapus secara permanen</strong> seluruh tabel, data, dan pilihan, yang terkait dengan WP-Table Reloaded dari basis data, termasuk seluruh tabel yang pernah Anda tambahkan atau impor."
822
 
823
  # @ wp-table-reloaded
824
- #: views/view-options.php:221
825
- msgid "You will manually need to remove the plugin's files from the plugin folder afterwards."
826
- msgstr "Sesudah ini, Anda perlu menghapus berkas-berkas plugin ini dari folder plugin secara manual."
827
 
828
  # @ wp-table-reloaded
829
- #: views/view-options.php:221
830
- msgid "Be very careful with this and only click the button if you know what you are doing!"
831
- msgstr "Hati-hati dengan ini dan harap hanya klik tombol ini jika Anda mengerti apa yang sedang Anda lakukan!"
832
 
833
  # @ wp-table-reloaded
834
- #: views/view-options.php:225
835
- msgid "Uninstall Plugin WP-Table Reloaded"
836
- msgstr "Cabut Plugin WP-Table Reloaded"
837
 
838
  # @ wp-table-reloaded
839
- #: views/view-options.php:236
840
- #: controllers/controller-admin.php:1079
841
- msgid "You do not have sufficient rights to access the Plugin Options."
842
- msgstr "Anda belum memiliki hak yang cukup untuk mengakses Pilihan Plugin."
843
 
844
  # @ wp-table-reloaded
845
- #: views/view-export.php:10
846
- msgid "It is recommended to export and backup the data of important tables regularly."
847
- msgstr "Disarankan untuk mengekspor dan mencadangkan data-data penting pada tabel secara teratur."
848
 
849
  # @ wp-table-reloaded
850
- #: views/view-export.php:10
851
- msgid "Select the table, the desired export format and (for CSV only) a delimiter."
852
- msgstr "Pilih tabel, format ekspor yang diinginkan dan (untuk CSV saja) karakter pembatas."
853
 
854
  # @ wp-table-reloaded
855
- #: views/view-export.php:10
856
- msgid "You may choose to download the export file. Otherwise it will be shown on this page."
857
- msgstr "Anda dapat memilih untuk mengunduh berkas ekspor. Jika tidak, ia akan muncul di halaman ini."
858
 
859
  # @ wp-table-reloaded
860
- #: views/view-export.php:10
861
- msgid "Be aware that only the table data, but no options or settings are exported."
862
- msgstr "Mohon dicatat, hanya data tabel saja (pilihan tidak termasuk) yang akan diekspor."
863
 
864
  # @ wp-table-reloaded
865
- #: views/view-export.php:10
866
- msgid "To backup all tables, including their settings, at once use the &quot;%s&quot; button in the &quot;%s&quot;."
867
- msgstr "Untuk mencadangkan seluruh tabel dan pengaturan mereka sekaligus, silahkan gunakan tombol &quot;%s&quot; pada &quot;%s&quot;."
868
 
869
  # @ wp-table-reloaded
870
- #: views/view-export.php:10
871
- #: views/view-edit.php:350
872
- #: views/view-edit.php:365
873
- #: controllers/controller-admin.php:1270
874
- #: controllers/controller-admin.php:1312
875
- msgid "Plugin Options"
876
- msgstr "Pilihan Plugin"
877
 
878
  # @ wp-table-reloaded
879
- #: views/view-export.php:18
880
- msgid "Select Table to Export"
881
- msgstr "Pilih Tabel untuk Diekspor"
882
 
883
  # @ wp-table-reloaded
884
- #: views/view-export.php:34
885
- msgid "Select Export Format"
886
- msgstr "Pilih Format Ekspor"
887
 
888
  # @ wp-table-reloaded
889
- #: views/view-export.php:44
890
- msgid "Select Delimiter to use"
891
- msgstr "Pilih Karakter Pembatas yang ingin digunakan"
892
 
893
  # @ wp-table-reloaded
894
- #: views/view-export.php:51
895
- msgid "Only needed for CSV export."
896
- msgstr "Hanya dibutuhkan ketika mengekspor CSV."
897
 
898
  # @ wp-table-reloaded
899
- #: views/view-export.php:54
900
- msgid "Download file"
901
- msgstr "Unduh berkas"
 
902
 
903
  # @ wp-table-reloaded
904
- #: views/view-export.php:55
905
- msgid "Yes, I want to download the export file."
906
- msgstr "Ya, saya ingin mengunduh berkas ekspor tsb."
907
 
908
  # @ wp-table-reloaded
909
- #: views/view-export.php:60
910
- #: views/view-edit.php:477
911
- msgid "Export Table"
912
- msgstr "Ekspor Tabel"
913
 
914
  # @ wp-table-reloaded
915
- #: views/view-edit.php:8
916
- msgid "On this page, you can edit the content of the table."
917
- msgstr "Pada laman ini, Anda dapat menyunting konten dari tabel."
918
 
919
  # @ wp-table-reloaded
920
- #: views/view-edit.php:8
921
- msgid "It is also possible to change the table structure by inserting, deleting, moving, and swapping columns and rows."
922
- msgstr "Mungkin juga untuk mengubah struktur tabel dengan menyisipkan, menghapus, memindahkan, dan menukar kolom dan baris."
923
 
924
  # @ wp-table-reloaded
925
- #: views/view-edit.php:15
926
- msgid "Table Information"
927
- msgstr "Informasi Tabel"
928
 
929
  # @ wp-table-reloaded
930
- #: views/view-edit.php:19
931
- msgid "Table ID"
932
- msgstr "ID Tabel"
933
 
934
- # @ wp-table-reloaded
935
- #: views/view-edit.php:41
936
- #: views/view-edit.php:253
937
- #: views/view-edit.php:413
938
- #: views/view-edit.php:464
939
- #: controllers/controller-admin.php:1745
940
- msgid "Update Changes"
941
- msgstr "Perbarui Perubahan"
942
 
943
  # @ wp-table-reloaded
944
- #: views/view-edit.php:42
945
- #: views/view-edit.php:254
946
- #: views/view-edit.php:414
947
- #: views/view-edit.php:465
948
- msgid "Save and go back"
949
- msgstr "Simpan dan kembali"
950
 
951
  # @ wp-table-reloaded
952
- #: views/view-edit.php:51
953
- msgid "Table Contents"
954
- msgstr "Konten Tabel"
955
 
956
  # @ wp-table-reloaded
957
- #: views/view-edit.php:104
958
- msgid "Data Manipulation"
959
- msgstr "Manipulasi Data"
 
 
960
 
961
  # @ wp-table-reloaded
962
- #: views/view-edit.php:115
963
- msgid "Insert Image"
964
- msgstr "Sisip Gambar"
965
 
966
  # @ wp-table-reloaded
967
- #: views/view-edit.php:124
968
- msgid "ascending"
969
- msgstr "naik"
970
 
971
  # @ wp-table-reloaded
972
- #: views/view-edit.php:125
973
- msgid "descending"
974
- msgstr "turun"
975
 
976
- # @ wp-table-reloaded
977
- #: views/view-edit.php:128
978
- msgid "Sort table by column %s in %s order"
979
- msgstr "Sortir tabel dengan kolom %s dalam urutan %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
980
 
981
  # @ wp-table-reloaded
982
- #: views/view-edit.php:130
983
- msgid "Sort"
984
- msgstr "Sortir"
985
 
986
  # @ wp-table-reloaded
987
- #: views/view-edit.php:135
988
- #: views/view-edit.php:139
989
- msgctxt "item"
990
- msgid "Hide"
991
- msgstr "Sembunyikan"
992
 
993
  # @ wp-table-reloaded
994
- #: views/view-edit.php:136
995
- #: views/view-edit.php:140
996
- msgctxt "item"
997
- msgid "Unhide"
998
- msgstr "Munculkan"
999
 
1000
  # @ wp-table-reloaded
1001
- #: views/view-edit.php:137
1002
- msgctxt "hide_unhide"
1003
- msgid "Selected rows: %s %s"
1004
- msgstr "Baris terpilih: %s %s"
1005
 
1006
  # @ wp-table-reloaded
1007
- #: views/view-edit.php:141
1008
- msgctxt "hide_unhide"
1009
- msgid "Selected columns: %s %s"
1010
- msgstr "Kolom terpilih: %s %s"
1011
 
1012
  # @ wp-table-reloaded
1013
- #: views/view-edit.php:144
1014
- msgid "Combine cells in a row:"
1015
- msgstr "Gabungkan sel dalam satu baris:"
1016
 
1017
  # @ wp-table-reloaded
1018
- #: views/view-edit.php:145
1019
- msgid "Add colspan"
1020
- msgstr "Tambah <em>colspan</em>"
1021
 
1022
  # @ wp-table-reloaded
1023
- #: views/view-edit.php:148
1024
- msgid "Combine cells in a column:"
1025
- msgstr "Gabungkan sel pada satu kolom:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1026
 
1027
  # @ wp-table-reloaded
1028
- #: views/view-edit.php:149
1029
- msgid "Add rowspan"
1030
- msgstr "Tambah <em>rowspan</em>"
1031
 
1032
  # @ wp-table-reloaded
1033
- #: views/view-edit.php:155
1034
- msgid "Insert row"
1035
- msgstr "Tambah baris"
1036
 
1037
  # @ wp-table-reloaded
1038
- #: views/view-edit.php:157
1039
- msgctxt "insert_delete"
1040
- msgid "Selected rows: %s %s"
1041
- msgstr "Baris terpilih: %s %s"
1042
 
1043
  # @ wp-table-reloaded
1044
- #: views/view-edit.php:159
1045
- msgid "Insert column"
1046
- msgstr "Tambah kolom"
1047
 
1048
  # @ wp-table-reloaded
1049
- #: views/view-edit.php:161
1050
- msgctxt "insert_delete"
1051
- msgid "Selected columns: %s %s"
1052
- msgstr "Kolom terpilih: %s %s"
1053
 
1054
  # @ wp-table-reloaded
1055
- #: views/view-edit.php:171
1056
- msgid "Add %s row(s)"
1057
- msgstr "Tambah %s baris"
1058
 
1059
  # @ wp-table-reloaded
1060
- #: views/view-edit.php:172
1061
- #: views/view-edit.php:175
1062
- #: views/view-edit.php:459
1063
- msgid "Add"
1064
- msgstr "Tambah"
1065
 
1066
  # @ wp-table-reloaded
1067
- #: views/view-edit.php:174
1068
- msgid "Add %s column(s)"
1069
- msgstr "Tambah %s kolom"
1070
 
1071
  # @ wp-table-reloaded
1072
- #: views/view-edit.php:189
1073
- msgid "Swap rows %s and %s"
1074
- msgstr "Tukar baris %s dan %s"
1075
 
1076
  # @ wp-table-reloaded
1077
- #: views/view-edit.php:191
1078
- #: views/view-edit.php:206
1079
- msgid "Swap"
1080
- msgstr "Tukar"
1081
 
1082
  # @ wp-table-reloaded
1083
- #: views/view-edit.php:204
1084
- msgid "Swap columns %s and %s"
1085
- msgstr "Tukar kolom %s dan %s"
1086
 
1087
  # @ wp-table-reloaded
1088
- #: views/view-edit.php:219
1089
- #: views/view-edit.php:239
1090
- msgid "before"
1091
- msgstr "sebelum"
1092
 
1093
  # @ wp-table-reloaded
1094
- #: views/view-edit.php:220
1095
- #: views/view-edit.php:240
1096
- msgid "after"
1097
- msgstr "sesudah"
1098
 
1099
  # @ wp-table-reloaded
1100
- #: views/view-edit.php:223
1101
- msgid "Move row %s %s row %s"
1102
- msgstr "Pindah baris %s %s baris %s"
1103
 
1104
  # @ wp-table-reloaded
1105
- #: views/view-edit.php:225
1106
- #: views/view-edit.php:245
1107
- msgid "Move"
1108
- msgstr "Pindah"
1109
 
1110
  # @ wp-table-reloaded
1111
- #: views/view-edit.php:243
1112
- msgid "Move column %s %s column %s"
1113
- msgstr "Pindah kolom %s %s kolom %s"
1114
 
1115
  # @ wp-table-reloaded
1116
- #: views/view-edit.php:262
1117
- msgid "Table Styling Options"
1118
- msgstr "Pilihan Penggayaan Tabel"
1119
 
1120
  # @ wp-table-reloaded
1121
- #: views/view-edit.php:264
1122
- msgid "These settings will only be used for this table."
1123
- msgstr "Pengaturan ini hanya akan digunakan oleh tabel ini saja."
1124
 
1125
  # @ wp-table-reloaded
1126
- #: views/view-edit.php:267
1127
- msgid "Alternating row colors"
1128
- msgstr "Warna baris bergantian"
1129
 
1130
  # @ wp-table-reloaded
1131
- #: views/view-edit.php:268
1132
- msgid "Every second row has an alternating background color."
1133
- msgstr "Setiap baris genap akan memiliki warna yang berbeda dengan yang ganjil."
1134
 
1135
  # @ wp-table-reloaded
1136
- #: views/view-edit.php:271
1137
- msgid "Row Highlighting"
1138
- msgstr "Penyorotan baris"
1139
 
1140
  # @ wp-table-reloaded
1141
- #: views/view-edit.php:272
1142
- msgid "Highlight a row by changing its background color while the mouse cursor hovers above it."
1143
- msgstr "Sorot sebuah baris dengan mengganti warna latarnya ketika kursor tetikus melayang di atasnya."
1144
 
1145
  # @ wp-table-reloaded
1146
- #: views/view-edit.php:275
1147
- msgid "Table head"
1148
- msgstr "Tajuk tabel"
1149
 
1150
  # @ wp-table-reloaded
1151
- #: views/view-edit.php:276
1152
- msgid "The first row of your table is the table head (HTML tags &lt;thead&gt; and &lt;th&gt;)."
1153
- msgstr "Baris pertama tabel Anda adalah tajuk tabel (tag HTML &lt;thead&gt; dan &lt;th&gt;)."
1154
 
1155
  # @ wp-table-reloaded
1156
- #: views/view-edit.php:279
1157
- msgid "Table footer"
1158
- msgstr "Kaki tabel"
1159
 
1160
  # @ wp-table-reloaded
1161
- #: views/view-edit.php:280
1162
- msgid "The last row of your table is the table footer (HTML tags &lt;tfoot&gt; and &lt;th&gt;)."
1163
- msgstr "Baris terakhir dari tabel Anda adalah kaki tabel (tag HTML &lt;tfoot&gt; dan &lt;th&gt;)."
1164
 
1165
  # @ wp-table-reloaded
1166
- #: views/view-edit.php:289
1167
- #: views/view-edit.php:306
1168
- msgid "above"
1169
- msgstr "di atas"
1170
 
1171
  # @ wp-table-reloaded
1172
- #: views/view-edit.php:291
1173
- #: views/view-edit.php:308
1174
- msgid "below"
1175
- msgstr "di bawah"
1176
 
1177
  # @ wp-table-reloaded
1178
- #: views/view-edit.php:294
1179
- msgid "The Table Name shall be written %s the table (HTML tag &lt;h2&gt;)."
1180
- msgstr "Nama Tabel akan ditulis %s tabel (tag HTML &lt;h2&gt;)."
1181
 
1182
  # @ wp-table-reloaded
1183
- #: views/view-edit.php:300
1184
- msgid "Table Description"
1185
- msgstr "Deskripsi Tabel"
1186
 
1187
  # @ wp-table-reloaded
1188
- #: views/view-edit.php:311
1189
- msgid "The Table Description shall be written %s the table."
1190
- msgstr "Deskripsi Tabel akan ditulis %s tabel ybs."
1191
-
1192
- #: views/view-edit.php:317
1193
- msgid "Cache Table Output"
1194
- msgstr "Tembolokkan Hasil Tabel"
1195
 
1196
- #: views/view-edit.php:318
1197
- msgid "The resulting HTML output of the table shall be cached in the WordPress database cache for faster page generation."
1198
- msgstr "Hasil keluaran HTML berikut akan ditembolokkan ke dalam tembolok basis data WordPress untuk menghasilkan halaman dengan lebih cepat."
 
1199
 
1200
  # @ wp-table-reloaded
1201
- #: views/view-edit.php:321
1202
- msgid "Custom CSS Class"
1203
- msgstr "Kelas CSS Tersuai"
1204
 
1205
- #: views/view-edit.php:322
1206
- msgid "Enter a string that will be given to the table as an additional class for styling with CSS."
1207
- msgstr "Masukkan sebuah <em>string</em> yang akan diberikan ke tabel sebagai kelas tambahan untuk penggayaan dengan CSS."
 
1208
 
1209
  # @ wp-table-reloaded
1210
- #: views/view-edit.php:325
1211
- msgid "Use JavaScript library"
1212
- msgstr "Gunakan pustaka JavaScript"
1213
 
1214
  # @ wp-table-reloaded
1215
- #: views/view-edit.php:331
1216
- #: views/view-edit.php:335
1217
- #: views/view-edit.php:347
1218
- msgid "You can change further settings for this library below."
1219
- msgstr "Anda dapat mengubah pengaturan lebih lanjut untuk pustaka ini di bawah."
1220
 
1221
  # @ wp-table-reloaded
1222
- #: views/view-edit.php:339
1223
- #: views/view-edit.php:343
1224
- msgid "The table will then be sortable by the visitor."
1225
- msgstr "Tabel akan dapat disortir oleh pengunjung."
1226
 
1227
  # @ wp-table-reloaded
1228
- #: views/view-edit.php:350
1229
- msgid "Yes, use the &quot;%s&quot; JavaScript library with this table."
1230
- msgstr "Ya, gunakan pustaka JavaScript &quot;%s&quot; pada tabel ini."
1231
 
1232
  # @ wp-table-reloaded
1233
- #: views/view-edit.php:350
1234
- msgid "You must enable the use of a JavaScript library on the &quot;%s&quot; screen first."
1235
- msgstr "Anda harus menyalakan pustaka JavaScript pada layar &quot;%s&quot; terlebih dahulu."
1236
 
1237
  # @ wp-table-reloaded
1238
- #: views/view-edit.php:361
1239
- msgid "DataTables JavaScript Features"
1240
- msgstr "Fitur JavaScript DataTables"
1241
 
1242
  # @ wp-table-reloaded
1243
- #: views/view-edit.php:363
1244
- msgid "You can enable certain features for the DataTables JavaScript library here."
1245
- msgstr "Anda dapat menyalakan fitur-fitur tertentu pada pustaka JavaScript DataTables di sini."
1246
 
1247
  # @ wp-table-reloaded
1248
- #: views/view-edit.php:363
1249
- msgid "More information on these features can be found on the <a href=\"http://www.datatables.net/\">DataTables website</a>."
1250
- msgstr "Info lebih lanjut untuk fitur-fitur ini dapat dilihat di <a href=\"http://www.datatables.net/\">situs web DataTables</a>."
1251
 
1252
  # @ wp-table-reloaded
1253
- #: views/view-edit.php:365
1254
- msgid "You can currently not change these options, because you have not enabled the &quot;DataTables&quot; or the &quot;DataTables+TableTools&quot; JavaScript library on the &quot;%s&quot; screen."
1255
- msgstr "Anda saat ini tidak dapat mengubah pilihan ini, karena Anda belum menyalakan pustaka JavaScript &quot;DataTables&quot; atau &quot;DataTables+TableTools&quot; pada layar &quot;%s&quot;."
1256
 
1257
  # @ wp-table-reloaded
1258
- #: views/view-edit.php:365
1259
- msgid "It is not possible to use these features with the &quot;Tablesorter&quot; or &quot;Tablesorter Extended&quot; libraries."
1260
- msgstr "Tidak memungkinkan untuk menggunakan fitur-fitur ini dengan pustaka &quot;Tablesorter&quot; atau &quot;Tablesorter Extended&quot;"
1261
 
1262
  # @ wp-table-reloaded
1263
- #: views/view-edit.php:369
1264
- msgid "Sorting"
1265
- msgstr "Pensortiran"
1266
 
1267
  # @ wp-table-reloaded
1268
- #: views/view-edit.php:370
1269
- msgid "Yes, enable sorting of table data by the visitor."
1270
- msgstr "Ya, nyalakan pensortiran data tabel oleh pengunjung."
1271
 
1272
  # @ wp-table-reloaded
1273
- #: views/view-edit.php:373
1274
- msgid "Pagination"
1275
- msgstr "Penomoran halaman"
1276
 
1277
  # @ wp-table-reloaded
1278
- #: views/view-edit.php:378
1279
- msgid "Yes, enable pagination (showing only a certain number of rows) of the table by the visitor."
1280
- msgstr "Ya, nyalakan penomoran halaman (menampilkan hanya beberapa baris saja) pada suatu tabel oleh pengunjung."
1281
 
1282
  # @ wp-table-reloaded
1283
- #: views/view-edit.php:380
1284
- msgid "Show %1$s rows of the table per page."
1285
- msgstr "Tampilkan %1$s baris dari sebuah tabel per halaman."
1286
 
1287
  # @ wp-table-reloaded
1288
- #: views/view-edit.php:386
1289
- msgid "Length Change"
1290
- msgstr "Perubahan Panjang"
1291
 
1292
  # @ wp-table-reloaded
1293
- #: views/view-edit.php:387
1294
- msgid "Yes, allow the visitor to change the number of rows shown when using pagination."
1295
- msgstr "Ya, izinkan pengunjung mengubah jumlah baris yang ditampilkan ketika menggunakan penomoran halaman."
1296
 
1297
  # @ wp-table-reloaded
1298
- #: views/view-edit.php:390
1299
- msgid "Filtering"
1300
- msgstr "Penyaringan"
 
 
 
 
 
1301
 
1302
  # @ wp-table-reloaded
1303
- #: views/view-edit.php:391
1304
- msgid "Yes, enable the visitor to filter or search the table. Only rows with the search word in them are shown."
1305
- msgstr "Ya, izinkan pengunjung menyaring atau mencari pada tabel. Hanya baris-baris dengan kata pencarian yang ditampilkan."
1306
 
1307
  # @ wp-table-reloaded
1308
- #: views/view-edit.php:394
1309
- msgid "Info Bar"
1310
- msgstr "Batang Info"
 
1311
 
1312
  # @ wp-table-reloaded
1313
- #: views/view-edit.php:395
1314
- msgid "Yes, show the table information display. This shows information and statistics about the currently visible data, including filtering."
1315
- msgstr "Ya, tampilkan informasi tabel. Ini menampilkan informasi dan statistik mengenai data yang muncul saat ini, termasuk penyaringan."
1316
 
1317
  # @ wp-table-reloaded
1318
- #: views/view-edit.php:398
1319
- msgid "TableTools"
1320
- msgstr "TableTools"
1321
 
1322
  # @ wp-table-reloaded
1323
- #: views/view-edit.php:400
1324
- msgid "Yes, activate the TableTools functions (Copy to Clipboard, Save to CSV, Save to XLS, Print Table) for this table."
1325
- msgstr "Ya, aktifkan fungsi TableTools (Salin ke Papan Klip, Simpan ke CSV, Simpan ke XLS, Cetak Tabel) untuk tabel ini."
 
1326
 
1327
  # @ wp-table-reloaded
1328
- #: views/view-edit.php:401
1329
- msgid "This option can only be used with the &quot;DataTables+TableTools&quot; JavaScript library."
1330
- msgstr "Pilihan ini hanya dapat digunakan dengan pustaka JavaScript &quot;DataTables+TableTools&quot;."
1331
 
1332
  # @ wp-table-reloaded
1333
- #: views/view-edit.php:405
1334
- msgid "Custom Commands"
1335
- msgstr "Perintah Tersuai"
1336
 
1337
  # @ wp-table-reloaded
1338
- #: views/view-edit.php:406
1339
- msgid "Enter additional DataTables JavaScript parameters that will be included with the script call here."
1340
- msgstr "Masukkan parameter tambahan JavaScript DataTables yang ingin diikutsertakan ke dalam panggilan skrip di sini."
1341
 
1342
  # @ wp-table-reloaded
1343
- #: views/view-edit.php:406
1344
- msgid "For advanced use only. Read the <a href=\"http://www.datatables.net/\">DataTables documentation</a> before."
1345
- msgstr "Untuk pengguna lanjutan saja. Baca terlebih dahulu <a href=\"http://www.datatables.net/\">dokumentasi DataTables</a>."
 
 
1346
 
1347
  # @ wp-table-reloaded
1348
- #: views/view-edit.php:422
1349
- msgid "Custom Data Fields"
1350
- msgstr "Ruas Data Tersuai"
1351
 
1352
  # @ wp-table-reloaded
1353
- #: views/view-edit.php:424
1354
- msgid "Custom Data Fields can be used to add extra metadata to a table."
1355
- msgstr "Ruas Data Tersuai yang dapat digunakan untuk menambah metadata tambahan ke dalam tabel."
1356
 
1357
  # @ wp-table-reloaded
1358
- #: views/view-edit.php:424
1359
- msgid "For example, this could be information about the source or the creator of the data."
1360
- msgstr "Sebagai contoh, bisa merupakan informasi mengenai sumber atau pembuat data tsb."
1361
 
1362
  # @ wp-table-reloaded
1363
- #: views/view-edit.php:426
1364
- msgid "You can show this data in the same way as tables by using the shortcode <strong>[table-info id=%s field=\"&lt;field-name&gt;\" /]</strong>."
1365
- msgstr "Anda dapat menampilkan data ini dengan cara yang sama dengan tabel lain menggunakan kode-singkat <strong>[table-info id=%s field=\"&lt;nama-ruas&gt;\" /]</strong>."
1366
 
1367
  # @ wp-table-reloaded
1368
- #: views/view-edit.php:432
1369
- msgid "Field Name"
1370
- msgstr "Nama Ruas"
1371
 
1372
  # @ wp-table-reloaded
1373
- #: views/view-edit.php:433
1374
- msgid "Value"
1375
- msgstr "Nilai"
1376
 
1377
  # @ wp-table-reloaded
1378
- #: views/view-edit.php:447
1379
- msgid "Delete Field"
1380
- msgstr "Hapus Ruas"
1381
 
1382
  # @ wp-table-reloaded
1383
- #: views/view-edit.php:449
1384
- msgid "View shortcode"
1385
- msgstr "Tampil kode-singkat"
1386
 
1387
  # @ wp-table-reloaded
1388
- #: views/view-edit.php:458
1389
- msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
1390
- msgstr "Untuk menambah Ruas Data Tersuai yang baru, masukkan namanya (hanya huruf kecil, angka, _ dan -)."
1391
 
1392
  # @ wp-table-reloaded
1393
- #: views/view-edit.php:459
1394
- msgid "Custom Data Field Name"
1395
- msgstr "Nama Ruas Data Tersuai"
1396
 
1397
  # @ wp-table-reloaded
1398
- #: views/view-edit.php:473
1399
- msgid "Other actions"
1400
- msgstr "Tindakan lain"
 
 
 
1401
 
1402
  # @ wp-table-reloaded
1403
- #: views/view-edit.php:476
1404
- msgid "Delete Table"
1405
- msgstr "Hapus Tabel"
 
1406
 
1407
  # @ wp-table-reloaded
1408
  #: views/view-about.php:5
@@ -1412,17 +1437,17 @@ msgstr "Kegunaan Plugin"
1412
  # @ wp-table-reloaded
1413
  #: views/view-about.php:7
1414
  msgid "WP-Table Reloaded allows you to create and manage tables in the admin-area of WordPress."
1415
- msgstr "WP-Table Reloaded mengizinkan Anda membuat dan mengatur tabel-tabel dari area admin WordPress."
1416
 
1417
  # @ wp-table-reloaded
1418
  #: views/view-about.php:7
1419
  msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
1420
- msgstr "Tabel-tabel dapat mengandung unsur teks (string), angka dan bahkan HTML (co: untuk menyisipkan gambar atau taut)."
1421
 
1422
  # @ wp-table-reloaded
1423
  #: views/view-about.php:7
1424
  msgid "You can then show the tables in your posts, on your pages or in text-widgets by using a shortcode."
1425
- msgstr "Anda dapat menampilkan tabel pada tulisan, halaman, atau pada widget teks Anda dengan menggunakan kode-singkat."
1426
 
1427
  # @ wp-table-reloaded
1428
  #: views/view-about.php:7
@@ -1437,27 +1462,27 @@ msgstr "Pemakaian"
1437
  # @ wp-table-reloaded
1438
  #: views/view-about.php:14
1439
  msgid "At first you should add or import a table."
1440
- msgstr "Pertama-tama Anda disarankan menambahkan atau mengimpor sebuah tabel."
1441
 
1442
  # @ wp-table-reloaded
1443
  #: views/view-about.php:14
1444
  msgid "This means that you either let the plugin create an empty table for you or that you load an existing table from either a CSV, XML or HTML file."
1445
- msgstr "Ini artinya Anda mengizinkan plugin membuat sebuah tabel kosong untuk Anda atau memuat tabel yang sudah ada dari berkas CSV, XML atau HTML."
1446
 
1447
  # @ wp-table-reloaded
1448
  #: views/view-about.php:14
1449
  msgid "Then you can edit your data or change the structure of your table (e.g. by inserting or deleting rows or columns, swaping rows or columns or sorting them) and select specific table options like alternating row colors or whether to print the name or description, if you want."
1450
- msgstr "Lalu Anda sunting datanya atau ubah struktur tabelnya (co: dengan menyisipkan atau menghapus baris atau kolom, menukar baris atau kolom, atau mensortir mereka) dan memilih pilihan tabel tertentu seperti warna baris berseling atau bahkan menampilkan nama atau deskripsi, jika Anda mau."
1451
 
1452
  # @ wp-table-reloaded
1453
  #: views/view-about.php:14
1454
  msgid "To easily add a link or an image to a cell, use the provided buttons. Those will ask you for the URL and a title. Then you can click into a cell and the corresponding HTML will be added to it for you."
1455
- msgstr "Untuk menambahkan sebuah taut atau gambar ke dalam satu sel dengan mudah, gunakan tombol-tombol yang telah disediakan. Mereka akan menanyakan Anda URL-nya dan judulnya. Lalu Anda klik pada sel dan HTML yang terkait akan ditambahkan di sana untuk Anda."
1456
 
1457
  # @ wp-table-reloaded
1458
  #: views/view-about.php:14
1459
  msgid "You can also select the desired table from a list (after clicking the button &quot;%s&quot; in the editor toolbar) and the corresponding shortcode will be added for you."
1460
- msgstr "Anda juga dapat memilih tabel yang diinginkan dari daftar (setelah klik tombol &quot;%s&quot; pada batang perkakas dalam penyunting) lalu kode-singkat ybs akan ditambahkan otomatis untuk Anda."
1461
 
1462
  # @ wp-table-reloaded
1463
  #: views/view-about.php:14
@@ -1482,41 +1507,17 @@ msgstr "Silahkan baca <a href=\"%s\">dokumentasi</a> untuk daftar pemilih dan un
1482
  # @ wp-table-reloaded
1483
  #: views/view-about.php:19
1484
  msgid "More Information and Documentation"
1485
- msgstr "Info lebih lanjut dan Dokumentasi"
1486
-
1487
- # @ wp-table-reloaded
1488
- #: views/view-about.php:21
1489
- #: classes/helper.class.php:40
1490
- msgid "More information about WP-Table Reloaded can be found on the <a href=\"%s\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress Plugin Directory</a>."
1491
- msgstr "Info lebih lanjut mengenai WP-Table Reloaded bisa Anda temukan di <a href=\"%s\">situs plugin tsb</a> atau pada halaman <a href=\"%s\">Direktori Plugin WordPress</a>."
1492
-
1493
- # @ wp-table-reloaded
1494
- #: views/view-about.php:21
1495
- #: classes/helper.class.php:41
1496
- msgid "For technical information, see the <a href=\"%s\">documentation</a>."
1497
- msgstr "Untuk info teknis, silahkan baca <a href=\"%s\">dokumentasi</a>."
1498
 
1499
  # @ wp-table-reloaded
1500
  #: views/view-about.php:26
1501
  msgid "Help and Support"
1502
  msgstr "Bantuan dan Dukungan"
1503
 
1504
- # @ wp-table-reloaded
1505
- #: views/view-about.php:28
1506
- #: classes/helper.class.php:42
1507
- msgid "<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress Support Forums</a>."
1508
- msgstr "<a href=\"%s\">Dukungan</a> diberikan melalui <a href=\"%s\">Forum Dukungan WordPress</a>."
1509
-
1510
- # @ wp-table-reloaded
1511
- #: views/view-about.php:28
1512
- #: classes/helper.class.php:43
1513
- msgid "Before asking for support, please carefully read the <a href=\"%s\">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums."
1514
- msgstr "Sebelum meminta dukungan, harap baca terlebih dahulu secara seksama <a href=\"%s\">Frequently Asked Questions</a> di mana akan ditampilkan pertanyaan-pertanyaan yang biasanya sering ditanyakan oleh pengguna lain, setelah itu barulah lakukan pencarian di forum."
1515
-
1516
  # @ wp-table-reloaded
1517
  #: views/view-about.php:28
1518
  msgid "If you do not find an answer there, please <a href=\"%s\">open a new thread</a> in the WordPress Support Forums with the tag &quot;wp-table-reloaded&quot;."
1519
- msgstr "Bila Anda tidak menemukan jawaban yang Anda cari di sini, harap <a href=\"%s\">buka rangkai-alur baru</a> di Forum Dukungan WordPress dengan tag &quot;wp-table-reloaded&quot;."
1520
 
1521
  # @ wp-table-reloaded
1522
  #: views/view-about.php:33
@@ -1531,13 +1532,7 @@ msgstr "Plugin ini ditulis oleh <a href=\"%s\">Tobias B&auml;thge</a>."
1531
  # @ wp-table-reloaded
1532
  #: views/view-about.php:35
1533
  msgid "It is licensed as Free Software under GPL 2."
1534
- msgstr "Dilisensi sebagai Piranti Lunak Gratis di bawah naungan GPL 2 (\"Free Software under GPL 2\")."
1535
-
1536
- # @ wp-table-reloaded
1537
- #: views/view-about.php:35
1538
- #: classes/helper.class.php:44
1539
- msgid "If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is recommended."
1540
- msgstr "Jika Anda suka plugin ini, kami hargai <a href=\"%s\"><strong>donasinya</strong></a>."
1541
 
1542
  # @ wp-table-reloaded
1543
  #: views/view-about.php:35
@@ -1547,12 +1542,12 @@ msgstr "Silahkan nilai plugin ini di <a href=\"%s\">Direktori Plugin WordPress</
1547
  # @ wp-table-reloaded
1548
  #: views/view-about.php:35
1549
  msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
1550
- msgstr "Donasi dan nilai yang bagus akan mendorong saya untuk terus mengembangkan plugin ini dan memberikan berjam-jam dukungan. Berapapun jumlah dan nilainya tetap saya hargai! Terima kasih!"
1551
 
1552
  # @ wp-table-reloaded
1553
  #: views/view-about.php:40
1554
  msgid "Credits and Thanks"
1555
- msgstr "Penghargaan dan Terima kasih"
1556
 
1557
  # @ wp-table-reloaded
1558
  #: views/view-about.php:43
@@ -1577,52 +1572,153 @@ msgstr "Soeren Krings untuk ekstensi <a href=\"http://tablesorter.openwerk.de/\"
1577
  # @ wp-table-reloaded
1578
  #: views/view-about.php:47
1579
  msgid "the submitters of translations:"
1580
- msgstr "pengirim terjemahan:"
1581
 
1582
  # @ wp-table-reloaded
1583
- #: views/view-about.php:77
1584
  msgid "%s (thanks to %s)"
1585
  msgstr "%s (terima kasih kepada %s)"
1586
 
1587
  # @ wp-table-reloaded
1588
- #: views/view-about.php:80
1589
  msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
1590
  msgstr "dan kepada semua donatur, kontributor, pendukung, pengulas dan pengguna plugin ini!"
1591
 
1592
  # @ wp-table-reloaded
1593
- #: views/view-about.php:86
1594
  msgid "Debug and Version Information"
1595
  msgstr "Debug dan Informasi Versi"
1596
 
1597
  # @ wp-table-reloaded
1598
- #: views/view-about.php:89
1599
  msgid "You are using the following versions of the software."
1600
  msgstr "Anda menggunakan piranti lunak dengan versi berikut ini."
1601
 
1602
  # @ wp-table-reloaded
1603
- #: views/view-about.php:89
1604
  msgid "Please provide this information in bug reports."
1605
- msgstr "Silahkan sertakan informasi ini pada laporan <em>bug</em>."
1606
 
1607
  # @ wp-table-reloaded
1608
- #: views/view-about.php:92
1609
  msgid "Plugin installed"
1610
  msgstr "Plugin terpasang"
1611
 
1612
  # @ wp-table-reloaded
1613
- #: views/view-ajax_preview.php:3
1614
- msgid "This is a preview of your table."
1615
- msgstr "Ini adalah pratampil dari tabel Anda."
1616
 
1617
  # @ wp-table-reloaded
1618
- #: views/view-ajax_preview.php:4
1619
- msgid "Because of CSS styling, the table might look different on your page!"
1620
- msgstr "Karena penggayaan CSS, tabel Anda mungkin akan beda tampilannya pada halaman Anda!"
1621
 
1622
  # @ wp-table-reloaded
1623
- #: views/view-ajax_preview.php:4
1624
- msgid "The JavaScript libraries are also not available in this preview."
1625
- msgstr "Pustaka JavaScript juga tidak akan muncul pada pratampil ini."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1626
 
1627
  #: controllers/controller-admin.php:255
1628
  msgid "Arabic"
@@ -1667,780 +1763,680 @@ msgstr "Perancis"
1667
  msgid "Hindi"
1668
  msgstr "Hindi"
1669
 
1670
- # @ wp-table-reloaded
1671
  #: controllers/controller-admin.php:264
 
 
 
 
 
1672
  msgid "Italian"
1673
  msgstr "Itali"
1674
 
1675
  # @ wp-table-reloaded
1676
- #: controllers/controller-admin.php:265
1677
  msgid "Japanese"
1678
  msgstr "Jepang"
1679
 
1680
- #: controllers/controller-admin.php:266
1681
  msgid "Dutch"
1682
  msgstr "Belanda"
1683
 
1684
  # @ wp-table-reloaded
1685
- #: controllers/controller-admin.php:267
1686
  msgid "Polish"
1687
  msgstr "Polandia"
1688
 
1689
  # @ wp-table-reloaded
1690
- #: controllers/controller-admin.php:268
1691
  msgid "Brazilian Portuguese"
1692
  msgstr "Portugis Brazil"
1693
 
1694
  # @ wp-table-reloaded
1695
- #: controllers/controller-admin.php:269
1696
  msgid "Russian"
1697
  msgstr "Rusia"
1698
 
1699
  # @ wp-table-reloaded
1700
- #: controllers/controller-admin.php:270
1701
  msgid "Slovak"
1702
  msgstr "Slovakia"
1703
 
1704
  # @ wp-table-reloaded
1705
- #: controllers/controller-admin.php:271
1706
  msgid "Swedish"
1707
  msgstr "Swedia"
1708
 
1709
  # @ wp-table-reloaded
1710
- #: controllers/controller-admin.php:272
1711
  msgid "Ukrainian"
1712
  msgstr "Ukraina"
1713
 
1714
  # @ wp-table-reloaded
1715
- #: controllers/controller-admin.php:273
1716
  msgid "Chinese (Simplified)"
1717
  msgstr "China (Sederhana)"
1718
 
1719
- #: controllers/controller-admin.php:275
1720
- msgid "Albanian"
1721
- msgstr "Albania"
1722
-
1723
- #: controllers/controller-admin.php:276
1724
- msgid "Turkish"
1725
- msgstr "Turki"
1726
-
1727
  # @ wp-table-reloaded
1728
- #: controllers/controller-admin.php:302
1729
  msgid "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s\">documentation</a>, and the <a href=\"%s\">support</a> section."
1730
  msgstr "Selamat datang di WP-Table Reloaded %s. Jika Anda mengalami kesulitan atau memiliki pertanyaan, silahkan merujuk ke <a href=\"%s\">FAQ</a>, <a href=\"%s\">Dokumentasi</a>, dan bagian <a href=\"%s\">Dukungan</a>."
1731
 
1732
  # @ wp-table-reloaded
1733
- #: controllers/controller-admin.php:303
1734
  msgid "Thank you for upgrading to WP-Table Reloaded %s."
1735
  msgstr "Terima kasih telah memutakhirkan WP-Table Reloaded %s."
1736
 
1737
- #: controllers/controller-admin.php:303
1738
  msgid "This version includes a few new features, like output caching and a custom table CSS class, and several enhancements."
1739
  msgstr "Versi ini mengikutsertakan beberapa fitur baru, seperti tembolok keluaran dan sebuah kelas CSS tabel tersuai, dan beberapa penambahan lainnya."
1740
 
1741
  # @ wp-table-reloaded
1742
- #: controllers/controller-admin.php:303
1743
  msgid "Please read the <a href=\"%s\">release announcement</a> for more information."
1744
  msgstr "Silahkan baca <a href=\"%s\">pengumuman rilis</a> untuk info lebih lanjut."
1745
 
1746
  # @ wp-table-reloaded
1747
- #: controllers/controller-admin.php:303
1748
  msgid "If you like the new features and enhancements, I would appreciate a small <a href=\"%s\">donation</a>. Thank you."
1749
  msgstr "Jika Anda ingin tambahan fitur baru dan pengembangan lebih lanjut, saya hargai <a href=\"%s\">donasi</a> suka rela Anda. Terima kasih."
1750
 
1751
  # @ wp-table-reloaded
1752
- #: controllers/controller-admin.php:308
1753
  msgid "Hide this message"
1754
  msgstr "Sembunyikan pesan ini"
1755
 
1756
  # @ wp-table-reloaded
1757
- #: controllers/controller-admin.php:316
1758
  msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago."
1759
  msgstr "Terima kasih telah menggunakan plugin ini! Anda telah memasang WP-Table Reloaded lebih dari satu bulan yang lalu."
1760
 
1761
  # @ wp-table-reloaded
1762
- #: controllers/controller-admin.php:316
1763
  msgid "If it works and you are satisfied with the results of managing your %s table, isn't it worth at least one dollar or euro?"
1764
  msgid_plural "If it works and you are satisfied with the results of managing your %s tables, isn't it worth at least one dollar or euro?"
1765
- msgstr[0] "Jika plugin ini berfungsi semestinya dan Anda puas akan hasil dari mengatur %s tabel Anda, bukankah plugin ini setidaknya bernilai sekurang-kurangnya satu dolar atau euro?"
1766
 
1767
  # @ wp-table-reloaded
1768
- #: controllers/controller-admin.php:317
1769
  msgid "<a href=\"%s\">Donations</a> help me to continue support and development of this <i>free</i> software - things for which I spend countless hours of my free time! Thank you!"
1770
- msgstr "<a href=\"%s\">Donasi</a> membantu saya untuk terus mendukung dan mengembangkan piranti linak <i>gratis</i> ini - di mana saya telah meluangkan banyak waktu luang saya untuk plugin ini! Terima kasih!"
1771
 
1772
  # @ wp-table-reloaded
1773
- #: controllers/controller-admin.php:318
1774
  msgid "Sure, no problem!"
1775
  msgstr "Tentu, tidak masalah!"
1776
 
1777
  # @ wp-table-reloaded
1778
- #: controllers/controller-admin.php:319
1779
  msgid "I already donated."
1780
  msgstr "Saya sudah memberikan donasi."
1781
 
1782
  # @ wp-table-reloaded
1783
- #: controllers/controller-admin.php:320
1784
  msgid "No, thanks. Don't ask again."
1785
  msgstr "Tidak, terima kasih. Tolong jangan tanya lagi."
1786
 
1787
  # @ wp-table-reloaded
1788
- #: controllers/controller-admin.php:348
1789
  msgid "Table &quot;%s&quot; added successfully."
1790
  msgstr "Tabel &quot;%s&quot; berhasil ditambahkan."
1791
 
1792
  # @ wp-table-reloaded
1793
- #: controllers/controller-admin.php:379
1794
  msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
1795
- msgstr "Tabel telah berhasil disunting. Tabel sekarang ber-ID %s. Anda harus menyesuaikan kode-singkat yang telah ada."
1796
 
1797
  # @ wp-table-reloaded
1798
- #: controllers/controller-admin.php:381
1799
  msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
1800
- msgstr "ID tidak dapat diubah dari %s menjadi %s, karena sudah ada Tabel lain dengan ID tsb."
1801
 
1802
  # @ wp-table-reloaded
1803
- #: controllers/controller-admin.php:384
1804
  msgid "Table edited successfully."
1805
  msgstr "Tabel berhasil disunting."
1806
 
1807
  # @ wp-table-reloaded
1808
- #: controllers/controller-admin.php:433
1809
  msgid "Rows swapped successfully."
1810
- msgstr "Baris-baris tsb telah berhasil ditukar posisinya."
1811
 
1812
  # @ wp-table-reloaded
1813
- #: controllers/controller-admin.php:454
1814
  msgid "Columns swapped successfully."
1815
- msgstr "Kolom-kolom tsb telah berhasil ditukar posisinya."
1816
 
1817
  # @ wp-table-reloaded
1818
- #: controllers/controller-admin.php:495
1819
  msgid "Table sorted successfully."
1820
  msgstr "Tabel telah berhasil disortir."
1821
 
1822
  # @ wp-table-reloaded
1823
- #: controllers/controller-admin.php:516
1824
  msgid "Row moved successfully."
1825
- msgstr "Baris tsb telah berhasil dipindahkan."
1826
 
1827
  # @ wp-table-reloaded
1828
- #: controllers/controller-admin.php:541
1829
  msgid "Column moved successfully."
1830
  msgstr "Kolom telah berhasil dipindahkan."
1831
 
1832
  # @ wp-table-reloaded
1833
- #: controllers/controller-admin.php:549
1834
  msgid "Row could not be deleted."
1835
  msgid_plural "Rows could not be deleted."
1836
  msgstr[0] "Baris tidak dapat dihapus."
1837
 
1838
  # @ wp-table-reloaded
1839
- #: controllers/controller-admin.php:558
1840
  msgid "Row deleted successfully."
1841
  msgid_plural "Rows deleted successfully."
1842
  msgstr[0] "Baris telah berhasil dihapus."
1843
 
1844
  # @ wp-table-reloaded
1845
- #: controllers/controller-admin.php:568
1846
  msgid "Column could not be deleted."
1847
  msgid_plural "Columns could not be deleted."
1848
  msgstr[0] "Kolom tidak dapat dihapus."
1849
 
1850
  # @ wp-table-reloaded
1851
- #: controllers/controller-admin.php:581
1852
  msgid "Column deleted successfully."
1853
  msgid_plural "Columns deleted successfully."
1854
  msgstr[0] "Kolom telah berhasil dihapus."
1855
 
1856
  # @ wp-table-reloaded
1857
- #: controllers/controller-admin.php:604
1858
  msgid "Row inserted successfully."
1859
  msgid_plural "Rows inserted successfully."
1860
  msgstr[0] "Baris telah berhasil disisipkan."
1861
 
1862
  # @ wp-table-reloaded
1863
- #: controllers/controller-admin.php:631
1864
  msgid "Column inserted successfully."
1865
  msgid_plural "Columns inserted successfully."
1866
  msgstr[0] "Kolom telah berhasil disisipkan."
1867
 
1868
  # @ wp-table-reloaded
1869
- #: controllers/controller-admin.php:646
1870
  msgid "Row added successfully."
1871
  msgid_plural "Rows added successfully."
1872
  msgstr[0] "Baris telah berhasil ditambahkan."
1873
 
1874
  # @ wp-table-reloaded
1875
- #: controllers/controller-admin.php:660
1876
  msgid "Column added successfully."
1877
  msgid_plural "Columns added successfully."
1878
  msgstr[0] "Kolom telah berhasil ditambahkan."
1879
 
1880
  # @ wp-table-reloaded
1881
- #: controllers/controller-admin.php:667
1882
  msgid "Could not add Custom Data Field, because you did not enter a name."
1883
- msgstr "Tidak dapat menambahkan Ruas Data Tersuai, karena Anda belum mengisikan sebuah nama."
1884
 
1885
  # @ wp-table-reloaded
1886
- #: controllers/controller-admin.php:672
1887
  msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
1888
- msgstr "Tidak dapat menambah Ruas Data Tersuai, karena nama yang Anda masukkan sudah di-booking untuk tabel data yang lain."
1889
 
1890
  # @ wp-table-reloaded
1891
- #: controllers/controller-admin.php:678
1892
  msgid "Could not add Custom Data Field, because the name contained illegal characters."
1893
- msgstr "Tidak dapat menambahkan Ruas Data Tersuai, karena nama mengandung karakter ilegal."
1894
 
1895
  # @ wp-table-reloaded
1896
- #: controllers/controller-admin.php:682
1897
  msgid "Could not add Custom Data Field, because a Field with that name already exists."
1898
  msgstr "Tidak dapat menambahkan Ruas Data Tersuai, karena sudah ada Ruas dengan nama tersebut."
1899
 
1900
  # @ wp-table-reloaded
1901
- #: controllers/controller-admin.php:688
1902
  msgid "Custom Data Field added successfully."
1903
  msgstr "Ruas Data Tersuai berhasil ditambahkan."
1904
 
1905
  # @ wp-table-reloaded
1906
- #: controllers/controller-admin.php:728
1907
- #: controllers/controller-admin.php:784
1908
  msgid "Copy of"
1909
  msgstr "Salinan dari"
1910
 
1911
  # @ wp-table-reloaded
1912
- #: controllers/controller-admin.php:732
1913
  msgid "Table copied successfully."
1914
  msgid_plural "Tables copied successfully."
1915
  msgstr[0] "Tabel berhasil disalin."
1916
 
1917
  # @ wp-table-reloaded
1918
- #: controllers/controller-admin.php:738
1919
  msgid "Table deleted successfully."
1920
  msgid_plural "Tables deleted successfully."
1921
  msgstr[0] "Tabel berhasil dihapus."
1922
 
1923
  # @ wp-table-reloaded
1924
- #: controllers/controller-admin.php:759
1925
- #: controllers/controller-admin.php:914
1926
- #: controllers/controller-admin.php:952
1927
  msgid "Table imported successfully."
1928
  msgid_plural "Tables imported successfully."
1929
  msgstr[0] "Tabel berhasil diimpor."
1930
 
1931
  # @ wp-table-reloaded
1932
- #: controllers/controller-admin.php:766
1933
  msgid "You did not select any tables!"
1934
  msgstr "Anda belum memilih satu tabel pun!"
1935
 
1936
  # @ wp-table-reloaded
1937
- #: controllers/controller-admin.php:789
1938
  msgid "Table &quot;%s&quot; copied successfully."
1939
  msgstr "Tabel &quot;%s&quot; berhasil disalin."
1940
 
1941
  # @ wp-table-reloaded
1942
- #: controllers/controller-admin.php:807
1943
  msgid "Table &quot;%s&quot; deleted successfully."
1944
  msgstr "Tabel &quot;%s&quot; berhasil dihapus."
1945
 
1946
  # @ wp-table-reloaded
1947
- #: controllers/controller-admin.php:815
1948
  msgid "Custom Data Field deleted successfully."
1949
  msgstr "Ruas Data Tersuai berhasil dihapus."
1950
 
1951
  # @ wp-table-reloaded
1952
- #: controllers/controller-admin.php:817
1953
  msgid "Custom Data Field could not be deleted."
1954
- msgstr "Ruas Data Tersuai tidak berhasil dihapus."
1955
 
1956
  # @ wp-table-reloaded
1957
- #: controllers/controller-admin.php:823
1958
  msgid "Delete failed."
1959
  msgstr "Gagal dihapus."
1960
 
1961
  # @ wp-table-reloaded
1962
- #: controllers/controller-admin.php:855
1963
- #: controllers/controller-admin.php:865
1964
- #: controllers/controller-admin.php:876
1965
  msgid "Imported Table"
1966
  msgstr "Tabel yang Diimpor"
1967
 
1968
  # @ wp-table-reloaded
1969
- #: controllers/controller-admin.php:856
1970
- #: controllers/controller-admin.php:877
1971
  msgid "from %s"
1972
  msgstr "dari %s"
1973
 
1974
  # @ wp-table-reloaded
1975
- #: controllers/controller-admin.php:866
1976
  msgid "via form"
1977
  msgstr "lewat formulir"
1978
 
1979
  # @ wp-table-reloaded
1980
- #: controllers/controller-admin.php:893
1981
- #: controllers/controller-admin.php:930
1982
  msgid "Table could not be imported."
1983
  msgstr "Tabel tidak dapat diimpor."
1984
 
1985
  # @ wp-table-reloaded
1986
- #: controllers/controller-admin.php:910
1987
  msgid "Table %s (%s) replaced successfully."
1988
- msgstr "Tabel %s (%s) berhasil ditukar."
1989
 
1990
  # @ wp-table-reloaded
1991
- #: controllers/controller-admin.php:960
1992
- #: controllers/controller-admin.php:1154
1993
  msgid "You do not have sufficient rights to perform this action."
1994
- msgstr "Anda belum memiliki hak akses yang cukup untuk melakukan tindakan ini."
1995
 
1996
  # @ wp-table-reloaded
1997
- #: controllers/controller-admin.php:967
1998
  msgid "You did not upload a WP-Table Reloaded dump file."
1999
  msgstr "Anda tidak mengunggah berkas <em>dump</em> WP-Table Reloaded."
2000
 
2001
  # @ wp-table-reloaded
2002
- #: controllers/controller-admin.php:976
2003
  msgid "The uploaded dump file is empty. Please upload a valid dump file."
2004
  msgstr "Berkas <em>dump</em> yang diunggah ternyata kosong. Silahkan unggah berkas <em>dump</em> yang valid."
2005
 
2006
  # @ wp-table-reloaded
2007
- #: controllers/controller-admin.php:1005
2008
  msgid "All Tables, Settings and Options were successfully imported."
2009
  msgstr "Semua Tabel, Pengaturan dan Pilihan berhasil diimpor."
2010
 
2011
  # @ wp-table-reloaded
2012
- #: controllers/controller-admin.php:1034
2013
  msgid "Table &quot;%s&quot; exported successfully."
2014
  msgstr "Tabel &quot;%s&quot; berhasil diekspor."
2015
 
2016
  # @ wp-table-reloaded
2017
- #: controllers/controller-admin.php:1135
2018
  msgid "Options saved successfully."
2019
  msgstr "Pilihan berhasil disimpan."
2020
 
2021
  # @ wp-table-reloaded
2022
- #: controllers/controller-admin.php:1138
2023
  msgid "<a href=\"%s\">Click here to Proceed.</a>"
2024
- msgstr "<a href=\"%s\">Klik di sini untuk lanjut.</a>"
2025
 
2026
  # @ wp-table-reloaded
2027
- #: controllers/controller-admin.php:1204
2028
  msgid "There is no table with this ID!"
2029
  msgstr "Tidak ada tabel dengan ID ini!"
2030
 
2031
  # @ wp-table-reloaded
2032
- #: controllers/controller-admin.php:1241
2033
  msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
2034
- msgstr "Saya ucapkan banyak terima kasih! Donasi Anda amat dihargai. Anda baru saja memberikan kontribusi untuk mendorong pengembangan WP-Table Reloaded lebih lanjut!"
2035
 
2036
  # @ wp-table-reloaded
2037
- #: controllers/controller-admin.php:1243
2038
  msgid "No problem! I still hope you enjoy the benefits that WP-Table Reloaded brings to you. If you should want to change your mind, you'll always find the &quot;%s&quot; button on the <a href=\"%s\">WP-Table Reloaded website</a>."
2039
- msgstr "Tak masalah! Saya tetap berharap Anda tetap dapat menikmati fitur-fitur WP-Table Reloaded. Jika Anda berubah pikiran, Anda selalu dapat menemukan tombol &quot;%s&quot; di <a href=\"%s\">situs web WP-Table Reloaded</a>."
2040
 
2041
  # @ wp-table-reloaded
2042
- #: controllers/controller-admin.php:1243
2043
- #: controllers/controller-admin.php:1677
2044
  msgid "Donate"
2045
  msgstr "Donasi"
2046
 
2047
  # @ wp-table-reloaded
2048
- #: controllers/controller-admin.php:1266
2049
- #: controllers/controller-admin.php:1273
2050
  msgid "List of Tables"
2051
  msgstr "Daftar Tabel"
2052
 
2053
  # @ wp-table-reloaded
2054
  #. #-#-#-#-# plugin.pot (WP-Table Reloaded 1.9) #-#-#-#-#
2055
  #. Plugin Name of the plugin/theme
2056
- #: controllers/controller-admin.php:1266
2057
- #: controllers/controller-admin.php:1270
2058
- #: controllers/controller-admin.php:1272
2059
  msgid "WP-Table Reloaded"
2060
  msgstr "WP-Table Reloaded"
2061
 
2062
  # @ wp-table-reloaded
2063
- #: controllers/controller-admin.php:1267
2064
- #: controllers/controller-admin.php:1303
2065
  msgid "Add new Table"
2066
  msgstr "Tambah Tabel baru"
2067
 
2068
  # @ wp-table-reloaded
2069
- #: controllers/controller-admin.php:1268
2070
- #: controllers/controller-admin.php:1304
2071
  msgid "Import a Table"
2072
  msgstr "Impor Tabel"
2073
 
2074
  # @ wp-table-reloaded
2075
- #: controllers/controller-admin.php:1269
2076
- #: controllers/controller-admin.php:1305
2077
  msgid "Export a Table"
2078
  msgstr "Ekspor Tabel"
2079
 
2080
  # @ wp-table-reloaded
2081
- #: controllers/controller-admin.php:1271
2082
  msgid "About WP-Table Reloaded"
2083
- msgstr "Tentang WP-Table Reloaded"
2084
 
2085
  # @ wp-table-reloaded
2086
- #: controllers/controller-admin.php:1279
2087
  msgid "Edit Table &quot;%s&quot; (ID %s)"
2088
  msgstr "Sunting Tabel &quot;%s&quot; (ID %s)"
2089
 
2090
  # @ wp-table-reloaded
2091
- #: controllers/controller-admin.php:1280
2092
  msgid "Preview of Table &quot;%s&quot; (ID %s)"
2093
- msgstr "Pratinjau Tabel &quot;%s&quot; (ID %s)"
2094
 
2095
  # @ wp-table-reloaded
2096
- #: controllers/controller-admin.php:1313
2097
  msgid "About the plugin"
2098
- msgstr "Tentang plugin ini"
2099
 
2100
  # @ wp-table-reloaded
2101
- #: controllers/controller-admin.php:1673
2102
  msgid "WP-Table Reloaded Plugin Page"
2103
  msgstr "Laman Plugin WP-Table Reloaded"
2104
 
2105
  # @ wp-table-reloaded
2106
- #: controllers/controller-admin.php:1673
2107
  msgid "Plugin Page"
2108
  msgstr "Laman Plugin"
2109
 
2110
  # @ wp-table-reloaded
2111
- #: controllers/controller-admin.php:1674
2112
  msgid "Frequently Asked Questions"
2113
  msgstr "FAQ: Pertanyaan yang sering ditanyakan"
2114
 
2115
  # @ wp-table-reloaded
2116
- #: controllers/controller-admin.php:1674
2117
  msgid "FAQ"
2118
  msgstr "FAQ"
2119
 
2120
  # @ wp-table-reloaded
2121
- #: controllers/controller-admin.php:1675
2122
  msgid "Support"
2123
  msgstr "Dukungan"
2124
 
2125
  # @ wp-table-reloaded
2126
- #: controllers/controller-admin.php:1676
2127
  msgid "Plugin Documentation"
2128
  msgstr "Dokumentasi Plugin"
2129
 
2130
  # @ wp-table-reloaded
2131
- #: controllers/controller-admin.php:1676
2132
  msgid "Documentation"
2133
  msgstr "Dokumentasi"
2134
 
2135
  # @ wp-table-reloaded
2136
- #: controllers/controller-admin.php:1677
2137
  msgid "Support WP-Table Reloaded with your donation!"
2138
  msgstr "Dukung WP-Table Reloaded dengan donasi Anda!"
2139
 
2140
  # @ wp-table-reloaded
2141
- #: controllers/controller-admin.php:1716
2142
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
2143
  msgstr "Anda yakin ingin mengaktifkan ini? Anda hanya ingin melakukan ini sebelum pencabutan plugin!"
2144
 
2145
  # @ wp-table-reloaded
2146
- #: controllers/controller-admin.php:1717
2147
  msgid "URL of link to insert"
2148
  msgstr "URL dari taut yang ingin disisipkan"
2149
 
2150
  # @ wp-table-reloaded
2151
- #: controllers/controller-admin.php:1718
2152
  msgid "Text of link"
2153
  msgstr "Teks dari taut"
2154
 
2155
  # @ wp-table-reloaded
2156
- #: controllers/controller-admin.php:1719
2157
  msgid "To insert the following HTML code for a link into a cell, just click the cell after closing this dialog."
2158
  msgstr "Untuk menyisipkan kode HTML untuk tautan ke dalam sebuah sel, cukup klik sel tersebut sesudah menutup dialog ini."
2159
 
2160
  # @ wp-table-reloaded
2161
- #: controllers/controller-admin.php:1720
2162
  msgid "To insert an image, click &quot;OK&quot; and then click into the cell into which you want to insert the image."
2163
  msgstr "Untuk menyisipkan sebuah gambar, klik &quot;OK&quot; lalu klik ke dalam sel yang Anda maksud."
2164
 
2165
  # @ wp-table-reloaded
2166
- #: controllers/controller-admin.php:1720
2167
  msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
2168
  msgstr "Pustaka Media akan dibuka, dari situ Anda dapat memilih gambar atau URL gambar ybs."
2169
 
2170
  # @ wp-table-reloaded
2171
- #: controllers/controller-admin.php:1720
2172
  msgid "Click the &quot;%s&quot; button to insert the image."
2173
  msgstr "Klik tombol &quot;%s&quot; untuk menyisipkan gambar."
2174
 
2175
  # @ default
2176
- #: controllers/controller-admin.php:1720
2177
  msgid "Insert into Post"
2178
  msgstr "Sisipkan ke dalam Tulisan"
2179
 
2180
  # @ wp-table-reloaded
2181
- #: controllers/controller-admin.php:1721
2182
  msgid "To combine cells within a row, click into the cell to the right of the cell that has the content the combined cells shall have."
2183
  msgstr "Untuk menggabungkan sel di dalam satu baris, klik pada sel di sebelah kanan sel yang memiliki konten yang ingin digabungkan."
2184
 
2185
  # @ wp-table-reloaded
2186
- #: controllers/controller-admin.php:1722
2187
  msgid "To combine cells within a column, click into the cell below the cell that has the content the combined cells shall have."
2188
- msgstr "Untuk menggabungkan sel di dalam satu kolom, klik pada sel di sebelah kanan sel yang memiliki konten yang ingin digabungkan."
2189
 
2190
  # @ wp-table-reloaded
2191
- #: controllers/controller-admin.php:1723
2192
  msgid "Do you want to copy the selected tables?"
2193
- msgstr "Apakah Anda ingin menyalin tabel yang terpilih?"
2194
 
2195
  # @ wp-table-reloaded
2196
- #: controllers/controller-admin.php:1724
2197
  msgid "The selected tables and all content will be erased. Do you really want to delete them?"
2198
- msgstr "Tabel yang terpilih beserta seluruh kontennya akan dihapus. Anda yakin ingin menghapus mereka?"
2199
 
2200
  # @ wp-table-reloaded
2201
- #: controllers/controller-admin.php:1725
2202
  msgid "Do you really want to import the selected tables from the wp-Table plugin?"
2203
- msgstr "Anda yakin ingin mengimpor tabel yang terpilih ke dalam plugin wp-Table?"
2204
 
2205
  # @ wp-table-reloaded
2206
- #: controllers/controller-admin.php:1726
2207
  msgid "Do you want to copy this table?"
2208
  msgstr "Anda ingin menyalin tabel ini?"
2209
 
2210
  # @ wp-table-reloaded
2211
- #: controllers/controller-admin.php:1727
2212
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
2213
  msgstr "Tabel dan seluruh isinya akan dihapus. Anda yakin ingin menghapusnya?"
2214
 
2215
  # @ wp-table-reloaded
2216
- #: controllers/controller-admin.php:1728
2217
  msgid "Do you really want to delete the selected rows?"
2218
  msgstr "Apakah Anda yakin ingin menghapus baris yang dipilih?"
2219
 
2220
  # @ wp-table-reloaded
2221
- #: controllers/controller-admin.php:1729
2222
  msgid "Do you really want to delete the selected columns?"
2223
  msgstr "Apakah Anda yakin ingin menghapus kolom yang dipilih?"
2224
 
2225
  # @ wp-table-reloaded
2226
- #: controllers/controller-admin.php:1730
2227
- #: controllers/controller-admin.php:1734
2228
- #: controllers/controller-admin.php:1736
2229
  msgid "You have not selected any rows."
2230
  msgstr "Anda belum memilih satu baris pun."
2231
 
2232
  # @ wp-table-reloaded
2233
- #: controllers/controller-admin.php:1731
2234
- #: controllers/controller-admin.php:1735
2235
- #: controllers/controller-admin.php:1737
2236
  msgid "You have not selected any columns."
2237
  msgstr "Anda belum memilih satu kolom pun."
2238
 
2239
  # @ wp-table-reloaded
2240
- #: controllers/controller-admin.php:1732
2241
  msgid "You can not delete all rows of the table at once!"
2242
  msgstr "Anda tidak dapat menghapus seluruh baris pada satu tabel sekaligus!"
2243
 
2244
  # @ wp-table-reloaded
2245
- #: controllers/controller-admin.php:1733
2246
  msgid "You can not delete all columns of the table at once!"
2247
  msgstr "Anda tidak dapat menghapus seluruh kolom pada satu tabel sekaligus!"
2248
 
2249
  # @ wp-table-reloaded
2250
- #: controllers/controller-admin.php:1738
2251
  msgid "Do you really want to import this table from the wp-Table plugin?"
2252
- msgstr "Anda yakin ingin mengimpor tabel ini ke dalam plugin wp-Table?"
2253
 
2254
  # @ wp-table-reloaded
2255
- #: controllers/controller-admin.php:1739
2256
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
2257
  msgstr "Anda yakin ingin mencabut plugin dan menghapus SEMUA data?"
2258
 
2259
  # @ wp-table-reloaded
2260
- #: controllers/controller-admin.php:1740
2261
  msgid "Are you really sure?"
2262
  msgstr "Apakah Anda yakin?"
2263
 
2264
  # @ wp-table-reloaded
2265
- #: controllers/controller-admin.php:1741
2266
  msgid "Do you really want to change the ID of the table?"
2267
  msgstr "Apakah Anda yakin ingin mengubah ID tabel ini?"
2268
 
2269
  # @ wp-table-reloaded
2270
- #: controllers/controller-admin.php:1742
2271
  msgid "To show this Custom Data Field, use this shortcode:"
2272
  msgstr "Untuk menampilkan Ruas Data Tersuai, gunakan kode-singkat ini:"
2273
 
2274
  # @ wp-table-reloaded
2275
- #: controllers/controller-admin.php:1743
2276
  msgid "To show this table, use this shortcode:"
2277
  msgstr "Untuk menampilkan tabel ini, gunakan kode-singkat ini:"
2278
 
2279
  # @ wp-table-reloaded
2280
- #: controllers/controller-admin.php:1744
2281
  msgid "Warning: You will lose all current Tables and Settings! You should create a backup first. Be warned!"
2282
- msgstr "Perhatian: Anda akan kehilangan seluruh Tabel dan Pengaturan! Anda sebaiknya membuat cadangan dahulu. Berhati-hatilah!"
2283
 
2284
  # @ wp-table-reloaded
2285
- #: controllers/controller-admin.php:1745
2286
  msgid "You have made changes to the content of this table and not yet saved them."
2287
  msgstr "Anda telah melakukan perubahan pada konten tabel ini dan belum menyimpannya."
2288
 
2289
  # @ wp-table-reloaded
2290
- #: controllers/controller-admin.php:1745
2291
  msgid "You should first click &quot;%s&quot; or they will be lost if you navigate away from this page."
2292
- msgstr "Anda sebaiknya meng-klik &quot;%s&quot; atau mereka semua akan hilang bila Anda berpindah dari laman ini."
2293
 
2294
  # @ wp-table-reloaded
2295
- #: controllers/controller-admin.php:1804
2296
  msgid "Insert a Table"
2297
  msgstr "Sisipkan sebuah Tabel"
2298
 
2299
  # @ wp-table-reloaded
2300
- #: controllers/controller-admin.php:1865
2301
  msgid "Please wait..."
2302
  msgstr "Silahkan tunggu..."
2303
 
2304
  # @ wp-table-reloaded
2305
- #: controllers/controller-admin.php:1866
2306
  msgid "Show _MENU_ Tables"
2307
  msgstr "Tampilkan Tabel _MENU_"
2308
 
2309
- #: controllers/controller-admin.php:1867
2310
  msgid "All"
2311
  msgstr "Semua"
2312
 
2313
  # @ wp-table-reloaded
2314
- #: controllers/controller-admin.php:1869
2315
  msgid "_START_ to _END_ of _TOTAL_ Tables"
2316
  msgstr "_START_ s/d _END_ dari _TOTAL_ Tabel"
2317
 
2318
  # @ wp-table-reloaded
2319
- #: controllers/controller-admin.php:1870
2320
  msgid "(filtered from _MAX_ Tables)"
2321
  msgstr "(disaring dari _MAX_ Tabel)"
2322
 
2323
  # @ wp-table-reloaded
2324
- #: controllers/controller-admin.php:1871
2325
  msgid "Filter:"
2326
  msgstr "Saringan:"
2327
 
2328
  # @ wp-table-reloaded
2329
- #: controllers/controller-admin.php:1872
2330
  msgid "First"
2331
  msgstr "Pertama"
2332
 
2333
  # @ wp-table-reloaded
2334
- #: controllers/controller-admin.php:1873
2335
  msgid "Back"
2336
  msgstr "Kembali"
2337
 
2338
  # @ wp-table-reloaded
2339
- #: controllers/controller-admin.php:1874
2340
  msgid "Next"
2341
  msgstr "Berikut"
2342
 
2343
  # @ wp-table-reloaded
2344
- #: controllers/controller-admin.php:1875
2345
  msgid "Last"
2346
  msgstr "Terakhir"
2347
 
2348
- # @ wp-table-reloaded
2349
- #: classes/export.class.php:28
2350
- #: classes/import.class.php:36
2351
- msgid "CSV - Character-Separated Values"
2352
- msgstr "CSV - Comma-Separated Values"
2353
-
2354
- # @ wp-table-reloaded
2355
- #: classes/export.class.php:29
2356
- #: classes/import.class.php:37
2357
- msgid "HTML - Hypertext Markup Language"
2358
- msgstr "HTML - Hypertext Markup Language"
2359
-
2360
- # @ wp-table-reloaded
2361
- #: classes/export.class.php:30
2362
- #: classes/import.class.php:38
2363
- msgid "XML - eXtended Markup Language"
2364
- msgstr "XML - eXtended Markup Language"
2365
-
2366
- # @ wp-table-reloaded
2367
- #: classes/export.class.php:33
2368
- msgid "; (semicolon)"
2369
- msgstr "; (titik koma)"
2370
-
2371
- # @ wp-table-reloaded
2372
- #: classes/export.class.php:34
2373
- msgid ", (comma)"
2374
- msgstr ", (koma)"
2375
-
2376
- # @ wp-table-reloaded
2377
- #: classes/export.class.php:35
2378
- msgid ": (colon)"
2379
- msgstr ": (titik dua)"
2380
-
2381
- # @ wp-table-reloaded
2382
- #: classes/export.class.php:36
2383
- msgid ". (dot)"
2384
- msgstr ". (titik)"
2385
-
2386
- # @ wp-table-reloaded
2387
- #: classes/export.class.php:37
2388
- msgid "| (pipe)"
2389
- msgstr "| (pipa)"
2390
-
2391
- # @ wp-table-reloaded
2392
- #: classes/helper.class.php:74
2393
- msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
2394
- msgstr "Terima kasih telah menggunakan <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
2395
-
2396
- # @ wp-table-reloaded
2397
- #: classes/helper.class.php:74
2398
- msgid "Support the plugin with your <a href=\"%s\">donation</a>!"
2399
- msgstr "Dukung plugin ini dengan <a href=\"%s\">donasi Anda</a>!"
2400
-
2401
- # @ wp-table-reloaded
2402
- #: classes/helper.class.php:104
2403
- #: classes/helper.class.php:109
2404
- msgid "Table cells can span across more than one column or row."
2405
- msgstr "Sel tabel dapat dibentangkan lebih dari satu kolom atau baris."
2406
-
2407
- # @ wp-table-reloaded
2408
- #: classes/helper.class.php:104
2409
- msgid "Combining consecutive cells within the same row is called \"colspanning\"."
2410
- msgstr "Menggabungkan sel-sel yang berdekatan pada baris yang sama disebut \"colspanning\"."
2411
-
2412
- # @ wp-table-reloaded
2413
- #: classes/helper.class.php:104
2414
- msgid "To combine cells, add the keyword #colspan# to the cell to the right of the one with the content for the combined cell by using the corresponding button."
2415
- msgstr "Untuk menggabungkan sel, tambahkan kata kunci #colspan# pada sel tepat di sebelah kanan sel yang mengandung konten untuk digabungkan, dengan menggunakan tombol ybs."
2416
-
2417
- # @ wp-table-reloaded
2418
- #: classes/helper.class.php:104
2419
- #: classes/helper.class.php:109
2420
- msgid "Repeat this to add the keyword to all cells that shall be connected."
2421
- msgstr "Ulangi langkah ini untuk menambahkan kata kunci ke semua sel yang ingin dihubungkan."
2422
-
2423
- # @ wp-table-reloaded
2424
- #: classes/helper.class.php:104
2425
- #: classes/helper.class.php:109
2426
- msgid "Be aware that the JavaScript libraries will not work on tables which have combined cells."
2427
- msgstr "Harap ingat bahwa pustaka JavaScript tidak akan berfungsi pada tabel yang memiliki sel yang telah digabungkan."
2428
-
2429
- # @ wp-table-reloaded
2430
- #: classes/helper.class.php:109
2431
- msgid "Combining consecutive cells within the same column is called \"rowspanning\"."
2432
- msgstr "Menggabungkan sel-sel yang berdekatan pada kolom yang sama disebut \"rowspanning\"."
2433
-
2434
- # @ wp-table-reloaded
2435
- #: classes/helper.class.php:109
2436
- msgid "To combine cells, add the keyword #rowspan# to the cell below the one with the content for the combined cell by using the corresponding button."
2437
- msgstr "Untuk menggabungkan sel-sel, tambahkan kata kunci #rowspan# pada sel di sebelah bawah sel yang mengandung konten yang ingin digabungkan, dengan menggunakan tombol ybs."
2438
-
2439
- # @ wp-table-reloaded
2440
- #: classes/helper.class.php:118
2441
- msgid "Help"
2442
- msgstr "Bantuan"
2443
-
2444
  # @ wp-table-reloaded
2445
  #. Plugin URI of the plugin/theme
2446
  msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
@@ -2461,3 +2457,8 @@ msgstr "Tobias B&auml;thge"
2461
  msgid "http://tobias.baethge.com/"
2462
  msgstr "http://tobias.baethge.com/"
2463
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP-Table Reloaded 1.9.1\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
5
+ "POT-Creation-Date: 2011-02-25 21:18:27+00:00\n"
6
+ "PO-Revision-Date: 2011-03-09 09:39+0700\n"
7
  "Last-Translator: Dedy <dedy@sys-talk.com>\n"
8
+ "Language-Team: Dedy Sofyan <dedy@sys-talk.com>, Kelayang <k@kelayang.com>, A. Rhama S. <golden_pen007@yahoo.co.uk>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ wp-table-reloaded
22
+ #: classes/helper.class.php:40
23
+ #: views/view-about.php:21
24
+ msgid "More information about WP-Table Reloaded can be found on the <a href=\"%s\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress Plugin Directory</a>."
25
+ msgstr "Informasi lebih lanjut mengenai WP-Table Reloaded dapat ditemukan di <a href=\"%s\">situs web plugin tersebut</a> atau pada halaman <a href=\"%s\">Direktori Plugin WordPress</a>."
 
 
 
 
 
26
 
27
  # @ wp-table-reloaded
28
+ #: classes/helper.class.php:41
29
+ #: views/view-about.php:21
30
+ msgid "For technical information, see the <a href=\"%s\">documentation</a>."
31
+ msgstr "Untuk informasi teknis, bacalah <a href=\"%s\">dokumentasi</a>."
32
 
33
  # @ wp-table-reloaded
34
+ #: classes/helper.class.php:42
35
+ #: views/view-about.php:28
36
+ msgid "<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress Support Forums</a>."
37
+ msgstr "<a href=\"%s\">Dukungan</a> diberikan melalui <a href=\"%s\">Forum Dukungan WordPress</a>."
38
 
39
  # @ wp-table-reloaded
40
+ #: classes/helper.class.php:43
41
+ #: views/view-about.php:28
42
+ msgid "Before asking for support, please carefully read the <a href=\"%s\">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums."
43
+ msgstr "Sebelum mengajukan dukungan, harap baca terlebih dahulu secara seksama <a href=\"%s\">Frequently Asked Questions</a> di mana akan ditampilkan pertanyaan-pertanyaan yang biasanya sering ditanyakan oleh pengguna lain beserta jawabannya, setelah itu barulah lakukan pencarian di forum."
 
 
 
 
44
 
45
  # @ wp-table-reloaded
46
+ #: classes/helper.class.php:44
47
+ #: views/view-about.php:35
48
+ msgid "If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is recommended."
49
+ msgstr "Jika Anda menyukai plugin ini, silahkan berikan <a href=\"%s\"><strong>donasi</strong></a>."
 
 
 
 
 
 
 
50
 
51
  # @ wp-table-reloaded
52
+ #: classes/helper.class.php:74
53
+ msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
54
+ msgstr "Terima kasih telah menggunakan <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
 
 
 
 
 
 
 
55
 
56
  # @ wp-table-reloaded
57
+ #: classes/helper.class.php:74
58
+ msgid "Support the plugin with your <a href=\"%s\">donation</a>!"
59
+ msgstr "Dukung plugin ini dengan <a href=\"%s\">donasi</a> Anda!"
 
 
 
 
60
 
61
  # @ wp-table-reloaded
62
+ #: classes/helper.class.php:104
63
+ #: classes/helper.class.php:109
64
+ msgid "Table cells can span across more than one column or row."
65
+ msgstr "Sel tabel dapat dibentangkan melebihi satu kolom atau baris."
 
 
66
 
67
  # @ wp-table-reloaded
68
+ #: classes/helper.class.php:104
69
+ msgid "Combining consecutive cells within the same row is called \"colspanning\"."
70
+ msgstr "Menggabungkan sel-sel yang berdekatan pada baris yang sama disebut \"colspanning\"."
71
 
72
  # @ wp-table-reloaded
73
+ #: classes/helper.class.php:104
74
+ msgid "To combine cells, add the keyword #colspan# to the cell to the right of the one with the content for the combined cell by using the corresponding button."
75
+ msgstr "Untuk menggabungkan sel, tambahkan kata kunci #colspan# pada sel tepat di sebelah kanan sel yang mengandung konten yang ingin digabungkan dengan menggunakan tombol ybs."
 
 
 
76
 
77
  # @ wp-table-reloaded
78
+ #: classes/helper.class.php:104
79
+ #: classes/helper.class.php:109
80
+ msgid "Repeat this to add the keyword to all cells that shall be connected."
81
+ msgstr "Ulangi langkah ini untuk menambahkan kata kunci ke semua sel yang ingin dihubungkan."
82
 
83
  # @ wp-table-reloaded
84
+ #: classes/helper.class.php:104
85
+ #: classes/helper.class.php:109
86
+ msgid "Be aware that the JavaScript libraries will not work on tables which have combined cells."
87
+ msgstr "Harap ingat bahwa pustaka JavaScript tidak akan berfungsi pada tabel yang memiliki sel yang telah digabungkan."
88
 
89
  # @ wp-table-reloaded
90
+ #: classes/helper.class.php:109
91
+ msgid "Combining consecutive cells within the same column is called \"rowspanning\"."
92
+ msgstr "Menggabungkan sel-sel yang berdekatan pada kolom yang sama disebut \"rowspanning\"."
 
 
93
 
94
  # @ wp-table-reloaded
95
+ #: classes/helper.class.php:109
96
+ msgid "To combine cells, add the keyword #rowspan# to the cell below the one with the content for the combined cell by using the corresponding button."
97
+ msgstr "Untuk menggabungkan sel, tambahkan kata kunci #rowspan# pada sel di sebelah bawah sel yang mengandung konten yang ingin digabungkan dengan menggunakan tombol ybs."
 
 
98
 
99
  # @ wp-table-reloaded
100
+ #: classes/helper.class.php:118
101
+ msgid "Help"
102
+ msgstr "Bantuan"
103
 
104
  # @ wp-table-reloaded
105
+ #: classes/import.class.php:36
106
+ #: classes/export.class.php:28
107
+ msgid "CSV - Character-Separated Values"
108
+ msgstr "CSV - Comma-Separated Values"
109
 
110
  # @ wp-table-reloaded
111
+ #: classes/import.class.php:37
112
+ #: classes/export.class.php:29
113
+ msgid "HTML - Hypertext Markup Language"
114
+ msgstr "HTML - Hypertext Markup Language"
115
 
116
  # @ wp-table-reloaded
117
+ #: classes/import.class.php:38
118
+ #: classes/export.class.php:30
119
+ msgid "XML - eXtended Markup Language"
120
+ msgstr "XML - eXtended Markup Language"
121
 
122
  # @ default
123
  # @ wp-table-reloaded
 
124
  #: classes/render.class.php:141
125
+ #: views/view-list.php:60
126
  msgid "Edit"
127
  msgstr "Sunting"
128
 
129
  # @ wp-table-reloaded
130
+ #: classes/export.class.php:33
131
+ msgid "; (semicolon)"
132
+ msgstr "; (titik-koma)"
133
 
134
  # @ wp-table-reloaded
135
+ #: classes/export.class.php:34
136
+ msgid ", (comma)"
137
+ msgstr ", (koma)"
138
 
139
  # @ wp-table-reloaded
140
+ #: classes/export.class.php:35
141
+ msgid ": (colon)"
142
+ msgstr ": (titik-dua)"
143
 
144
  # @ wp-table-reloaded
145
+ #: classes/export.class.php:36
146
+ msgid ". (dot)"
147
+ msgstr ". (titik)"
 
 
148
 
149
  # @ wp-table-reloaded
150
+ #: classes/export.class.php:37
151
+ msgid "| (pipe)"
152
+ msgstr "| (pipa)"
153
 
154
  # @ wp-table-reloaded
155
+ #: views/view-edit.php:8
156
+ msgid "On this page, you can edit the content of the table."
157
+ msgstr "Pada laman ini, Anda dapat menyunting konten tabel."
158
 
159
  # @ wp-table-reloaded
160
+ #: views/view-edit.php:8
161
+ msgid "It is also possible to change the table structure by inserting, deleting, moving, and swapping columns and rows."
162
+ msgstr "Juga dimungkinkan untuk mengubah struktur tabel dengan menyisipkan, menghapus, memindahkan, dan menukar kolom dan baris."
 
163
 
164
  # @ wp-table-reloaded
165
+ #: views/view-edit.php:9
166
+ #: views/view-ajax_preview.php:5
167
+ #: views/view-list.php:2
168
+ #: views/view-about.php:14
169
+ msgid "To insert the table into a page, post or text-widget, copy the shortcode <strong>[table id=%s /]</strong> and paste it into the corresponding place in the editor."
170
+ msgstr "Untuk menambahkan tabel ke dalam suatu halaman, tulisan, atau widget teks, salinlah kode-singkat ini <strong>[table id=%s /]</strong> dan tempelkan ke tempat yang diinginkan pada editor."
171
 
172
  # @ wp-table-reloaded
173
+ #: views/view-edit.php:15
174
+ msgid "Table Information"
175
+ msgstr "Informasi Tabel"
176
 
177
  # @ wp-table-reloaded
178
+ #: views/view-edit.php:15
179
+ #: views/view-edit.php:51
180
+ #: views/view-edit.php:104
181
+ #: views/view-edit.php:262
182
+ #: views/view-edit.php:361
183
+ #: views/view-edit.php:422
184
+ #: views/view-options.php:19
185
+ #: views/view-options.php:70
186
+ #: views/view-options.php:91
187
+ #: views/view-options.php:188
188
+ #: views/view-options.php:199
189
+ #: views/view-about.php:87
190
+ msgctxt "expand"
191
+ msgid "Hide"
192
+ msgstr "Sembunyikan"
193
 
194
  # @ wp-table-reloaded
195
+ #: views/view-edit.php:15
196
+ #: views/view-edit.php:51
197
+ #: views/view-edit.php:104
198
+ #: views/view-edit.php:262
199
+ #: views/view-edit.php:361
200
+ #: views/view-edit.php:422
201
+ #: views/view-options.php:19
202
+ #: views/view-options.php:70
203
+ #: views/view-options.php:91
204
+ #: views/view-options.php:188
205
+ #: views/view-options.php:199
206
+ #: views/view-about.php:87
207
+ msgid "Expand"
208
+ msgstr "Perluas"
209
 
210
  # @ wp-table-reloaded
211
+ #: views/view-edit.php:19
212
+ msgid "Table ID"
213
+ msgstr "ID Tabel"
214
 
215
  # @ wp-table-reloaded
216
+ #: views/view-edit.php:23
217
+ #: views/view-edit.php:283
218
+ #: views/view-import.php:99
219
+ #: views/view-import.php:108
220
+ #: views/view-list.php:15
221
+ #: views/view-list.php:25
222
+ #: views/view-add.php:13
223
+ #: views/view-ajax_list.php:14
224
+ #: views/view-ajax_list.php:22
225
+ msgid "Table Name"
226
+ msgstr "Nama Tabel"
227
 
228
  # @ wp-table-reloaded
229
+ #: views/view-edit.php:27
230
+ #: views/view-import.php:100
231
+ #: views/view-import.php:109
232
+ #: views/view-list.php:16
233
+ #: views/view-list.php:26
234
+ #: views/view-add.php:17
235
+ #: views/view-ajax_list.php:15
236
+ #: views/view-ajax_list.php:23
237
+ msgid "Description"
238
+ msgstr "Deskripsi"
239
 
240
  # @ wp-table-reloaded
241
+ #: views/view-edit.php:32
242
+ #: views/view-list.php:17
243
+ #: views/view-list.php:27
244
+ msgid "Last Modified"
245
+ msgstr "Modifikasi Terakhir"
246
 
247
  # @ wp-table-reloaded
248
+ #: views/view-edit.php:33
249
+ #: views/view-list.php:44
250
+ msgid "by"
251
+ msgstr "oleh"
252
 
253
  # @ wp-table-reloaded
254
+ #: views/view-edit.php:41
255
+ #: views/view-edit.php:253
256
+ #: views/view-edit.php:413
257
+ #: views/view-edit.php:464
258
+ #: controllers/controller-admin.php:1746
259
+ msgid "Update Changes"
260
+ msgstr "Perbarui Perubahan"
261
 
262
  # @ wp-table-reloaded
263
+ #: views/view-edit.php:42
264
+ #: views/view-edit.php:254
265
+ #: views/view-edit.php:414
266
+ #: views/view-edit.php:465
267
+ msgid "Save and go back"
268
+ msgstr "Simpan dan kembali"
269
 
270
  # @ wp-table-reloaded
271
+ #: views/view-edit.php:45
272
+ #: views/view-edit.php:257
273
+ #: views/view-edit.php:417
274
+ #: views/view-edit.php:468
275
+ #: views/view-options.php:65
276
+ #: views/view-options.php:175
277
+ msgid "Cancel"
278
+ msgstr "Batal"
279
 
280
  # @ wp-table-reloaded
281
+ #: views/view-edit.php:51
282
+ msgid "Table Contents"
283
+ msgstr "Konten Tabel"
284
 
285
  # @ wp-table-reloaded
286
+ #: views/view-edit.php:104
287
+ msgid "Data Manipulation"
288
+ msgstr "Manipulasi Data"
289
 
290
  # @ wp-table-reloaded
291
+ #: views/view-edit.php:114
292
+ #: views/view-options.php:55
293
+ msgid "Insert Link"
294
+ msgstr "Sisipkan Taut"
295
 
296
  # @ wp-table-reloaded
297
+ #: views/view-edit.php:115
298
+ msgid "Insert Image"
299
+ msgstr "Sisip Gambar"
300
 
301
  # @ wp-table-reloaded
302
+ #: views/view-edit.php:124
303
+ msgid "ascending"
304
+ msgstr "naik"
305
 
306
  # @ wp-table-reloaded
307
+ #: views/view-edit.php:125
308
+ msgid "descending"
309
+ msgstr "turun"
310
 
311
  # @ wp-table-reloaded
312
+ #: views/view-edit.php:128
313
+ msgid "Sort table by column %s in %s order"
314
+ msgstr "Sortir tabel dengan kolom %s dalam urutan %s"
315
 
316
  # @ wp-table-reloaded
317
+ #: views/view-edit.php:130
318
+ msgid "Sort"
319
+ msgstr "Sortir"
320
 
321
  # @ wp-table-reloaded
322
+ #: views/view-edit.php:135
323
+ #: views/view-edit.php:139
324
+ msgctxt "item"
325
+ msgid "Hide"
326
+ msgstr "Sembunyikan"
327
 
328
  # @ wp-table-reloaded
329
+ #: views/view-edit.php:136
330
+ #: views/view-edit.php:140
331
+ msgctxt "item"
332
+ msgid "Unhide"
333
+ msgstr "Munculkan"
334
 
335
  # @ wp-table-reloaded
336
+ #: views/view-edit.php:137
337
+ msgctxt "hide_unhide"
338
+ msgid "Selected rows: %s %s"
339
+ msgstr "Baris terpilih: %s %s"
340
 
341
  # @ wp-table-reloaded
342
+ #: views/view-edit.php:141
343
+ msgctxt "hide_unhide"
344
+ msgid "Selected columns: %s %s"
345
+ msgstr "Kolom terpilih: %s %s"
346
 
347
  # @ wp-table-reloaded
348
+ #: views/view-edit.php:144
349
+ msgid "Combine cells in a row:"
350
+ msgstr "Gabungkan sel dalam satu baris:"
351
 
352
  # @ wp-table-reloaded
353
+ #: views/view-edit.php:145
354
+ msgid "Add colspan"
355
+ msgstr "Tambah <em>colspan</em>"
356
 
357
  # @ wp-table-reloaded
358
+ #: views/view-edit.php:148
359
+ msgid "Combine cells in a column:"
360
+ msgstr "Gabungkan sel dalam satu kolom:"
361
 
362
  # @ wp-table-reloaded
363
+ #: views/view-edit.php:149
364
+ msgid "Add rowspan"
365
+ msgstr "Tambah <em>rowspan</em>"
366
 
367
  # @ wp-table-reloaded
368
+ #: views/view-edit.php:155
369
+ msgid "Insert row"
370
+ msgstr "Sisipkan baris"
371
 
372
  # @ wp-table-reloaded
373
+ #: views/view-edit.php:156
374
+ #: views/view-edit.php:160
375
+ #: views/view-list.php:65
376
+ msgid "Delete"
377
+ msgstr "Hapus"
378
 
379
  # @ wp-table-reloaded
380
+ #: views/view-edit.php:157
381
+ msgctxt "insert_delete"
382
+ msgid "Selected rows: %s %s"
383
+ msgstr "Baris terpilih: %s %s"
384
 
385
  # @ wp-table-reloaded
386
+ #: views/view-edit.php:159
387
+ msgid "Insert column"
388
+ msgstr "Sisipkan kolom"
389
 
390
  # @ wp-table-reloaded
391
+ #: views/view-edit.php:161
392
+ msgctxt "insert_delete"
393
+ msgid "Selected columns: %s %s"
394
+ msgstr "Kolom terpilih: %s %s"
395
 
396
  # @ wp-table-reloaded
397
+ #: views/view-edit.php:171
398
+ msgid "Add %s row(s)"
399
+ msgstr "Tambah %s baris"
400
 
401
  # @ wp-table-reloaded
402
+ #: views/view-edit.php:172
403
+ #: views/view-edit.php:175
404
+ #: views/view-edit.php:459
405
+ msgid "Add"
406
+ msgstr "Tambah"
407
 
408
  # @ wp-table-reloaded
409
+ #: views/view-edit.php:174
410
+ msgid "Add %s column(s)"
411
+ msgstr "Tambah %s kolom"
412
 
413
  # @ wp-table-reloaded
414
+ #: views/view-edit.php:189
415
+ msgid "Swap rows %s and %s"
416
+ msgstr "Tukar baris %s dan %s"
417
 
418
  # @ wp-table-reloaded
419
+ #: views/view-edit.php:191
420
+ #: views/view-edit.php:206
421
+ msgid "Swap"
422
+ msgstr "Tukar"
423
 
424
  # @ wp-table-reloaded
425
+ #: views/view-edit.php:204
426
+ msgid "Swap columns %s and %s"
427
+ msgstr "Tukar kolom %s dan %s"
 
 
 
428
 
429
  # @ wp-table-reloaded
430
+ #: views/view-edit.php:219
431
+ #: views/view-edit.php:239
432
+ msgid "before"
433
+ msgstr "sebelum"
434
 
435
  # @ wp-table-reloaded
436
+ #: views/view-edit.php:220
437
+ #: views/view-edit.php:240
438
+ msgid "after"
439
+ msgstr "sesudah"
440
 
441
  # @ wp-table-reloaded
442
+ #: views/view-edit.php:223
443
+ msgid "Move row %s %s row %s"
444
+ msgstr "Pindah baris %s %s baris %s"
 
 
 
 
 
 
 
 
 
 
 
 
445
 
446
  # @ wp-table-reloaded
447
+ #: views/view-edit.php:225
448
+ #: views/view-edit.php:245
449
+ msgid "Move"
450
+ msgstr "Pindah"
 
 
 
 
 
 
 
 
 
 
451
 
452
  # @ wp-table-reloaded
453
+ #: views/view-edit.php:243
454
+ msgid "Move column %s %s column %s"
455
+ msgstr "Pindah kolom %s %s kolom %s"
456
 
457
  # @ wp-table-reloaded
458
+ #: views/view-edit.php:262
459
+ msgid "Table Styling Options"
460
+ msgstr "Pilihan Penggayaan Tabel"
461
 
462
  # @ wp-table-reloaded
463
+ #: views/view-edit.php:264
464
+ msgid "These settings will only be used for this table."
465
+ msgstr "Pengaturan ini hanya akan digunakan pada tabel ini saja."
466
 
467
  # @ wp-table-reloaded
468
+ #: views/view-edit.php:267
469
+ msgid "Alternating row colors"
470
+ msgstr "Warna baris bergantian"
471
 
472
  # @ wp-table-reloaded
473
+ #: views/view-edit.php:268
474
+ msgid "Every second row has an alternating background color."
475
+ msgstr "Setiap baris genap akan memiliki warna latar yang berbeda dengan yang ganjil."
 
476
 
477
  # @ wp-table-reloaded
478
+ #: views/view-edit.php:271
479
+ msgid "Row Highlighting"
480
+ msgstr "Penyorotan Baris"
481
 
482
  # @ wp-table-reloaded
483
+ #: views/view-edit.php:272
484
+ msgid "Highlight a row by changing its background color while the mouse cursor hovers above it."
485
+ msgstr "Sorot sebuah baris dengan mengganti warna latarnya ketika kursor tetikus melayang di atasnya."
486
 
487
  # @ wp-table-reloaded
488
+ #: views/view-edit.php:275
489
+ msgid "Table head"
490
+ msgstr "Tajuk tabel"
491
 
492
  # @ wp-table-reloaded
493
+ #: views/view-edit.php:276
494
+ msgid "The first row of your table is the table head (HTML tags &lt;thead&gt; and &lt;th&gt;)."
495
+ msgstr "Baris pertama tabel Anda adalah tajuk tabel (tag HTML &lt;thead&gt; dan &lt;th&gt;)."
496
 
497
  # @ wp-table-reloaded
498
+ #: views/view-edit.php:279
499
+ msgid "Table footer"
500
+ msgstr "Kaki tabel"
501
 
502
  # @ wp-table-reloaded
503
+ #: views/view-edit.php:280
504
+ msgid "The last row of your table is the table footer (HTML tags &lt;tfoot&gt; and &lt;th&gt;)."
505
+ msgstr "Baris terakhir tabel Anda disebut kaki tabel (tag HTML &lt;tfoot&gt; dan &lt;th&gt;)."
506
 
507
  # @ wp-table-reloaded
508
+ #: views/view-edit.php:289
509
+ #: views/view-edit.php:306
510
+ msgid "above"
511
+ msgstr "di atas"
512
 
513
  # @ wp-table-reloaded
514
+ #: views/view-edit.php:291
515
+ #: views/view-edit.php:308
516
+ msgid "below"
517
+ msgstr "di bawah"
518
 
519
  # @ wp-table-reloaded
520
+ #: views/view-edit.php:294
521
+ msgid "The Table Name shall be written %s the table (HTML tag &lt;h2&gt;)."
522
+ msgstr "Nama Tabel akan ditulis %s tabel (tag HTML &lt;h2&gt;)."
523
 
524
  # @ wp-table-reloaded
525
+ #: views/view-edit.php:300
526
+ msgid "Table Description"
527
+ msgstr "Deskripsi Tabel"
528
 
529
  # @ wp-table-reloaded
530
+ #: views/view-edit.php:311
531
+ msgid "The Table Description shall be written %s the table."
532
+ msgstr "Deskripsi Tabel akan ditulis %s tabel."
533
+
534
+ #: views/view-edit.php:317
535
+ msgid "Cache Table Output"
536
+ msgstr "Tembolok Keluaran Tabel"
537
+
538
+ #: views/view-edit.php:318
539
+ msgid "The resulting HTML output of the table shall be cached in the WordPress database cache for faster page generation."
540
+ msgstr "Hasil keluaran HTML tabel akan ditembolokkan ke dalam tembolok basis data WordPress agar dapat menghasilkan halaman secara lebih cepat."
541
 
542
  # @ wp-table-reloaded
543
+ #: views/view-edit.php:321
544
+ msgid "Custom CSS Class"
545
+ msgstr "Kelas CSS Tersuai"
546
+
547
+ #: views/view-edit.php:322
548
+ msgid "Enter a string that will be given to the table as an additional class for styling with CSS."
549
+ msgstr "Masukkan sebuah <em>string</em> yang akan diberikan ke tabel sebagai kelas tambahan untuk penggayaan dengan CSS."
550
 
551
  # @ wp-table-reloaded
552
+ #: views/view-edit.php:325
553
+ msgid "Use JavaScript library"
554
+ msgstr "Gunakan pustaka JavaScript"
 
 
 
 
 
555
 
556
  # @ wp-table-reloaded
557
+ #: views/view-edit.php:331
558
+ #: views/view-edit.php:335
559
+ #: views/view-edit.php:347
560
+ msgid "You can change further settings for this library below."
561
+ msgstr "Anda dapat mengubah pengaturan lebih lanjut untuk pustaka ini di bawah."
562
 
563
  # @ wp-table-reloaded
564
+ #: views/view-edit.php:339
565
+ #: views/view-edit.php:343
566
+ msgid "The table will then be sortable by the visitor."
567
+ msgstr "Tabel akan dapat disortir oleh pengunjung."
568
 
569
  # @ wp-table-reloaded
570
+ #: views/view-edit.php:350
571
+ msgid "Yes, use the &quot;%s&quot; JavaScript library with this table."
572
+ msgstr "Ya, gunakan pustaka JavaScript &quot;%s&quot; pada tabel ini."
573
 
574
  # @ wp-table-reloaded
575
+ #: views/view-edit.php:350
576
+ msgid "You must enable the use of a JavaScript library on the &quot;%s&quot; screen first."
577
+ msgstr "Anda harus menyalakan pustaka JavaScript pada layar &quot;%s&quot; terlebih dahulu."
578
 
579
  # @ wp-table-reloaded
580
+ #: views/view-edit.php:350
581
+ #: views/view-edit.php:365
582
+ #: views/view-export.php:10
583
+ #: controllers/controller-admin.php:1271
584
+ #: controllers/controller-admin.php:1313
585
+ msgid "Plugin Options"
586
+ msgstr "Pilihan Plugin"
587
 
588
  # @ wp-table-reloaded
589
+ #: views/view-edit.php:361
590
+ msgid "DataTables JavaScript Features"
591
+ msgstr "Fitur JavaScript DataTables"
592
 
593
+ # @ wp-table-reloaded
594
+ #: views/view-edit.php:363
595
+ msgid "You can enable certain features for the DataTables JavaScript library here."
596
+ msgstr "Anda dapat menyalakan fitur-fitur tertentu pada pustaka JavaScript DataTables di sini."
597
 
598
  # @ wp-table-reloaded
599
+ #: views/view-edit.php:363
600
+ msgid "More information on these features can be found on the <a href=\"http://www.datatables.net/\">DataTables website</a>."
601
+ msgstr "Informasi lebih lanjut untuk fitur-fitur ini dapat dilihat di <a href=\"http://www.datatables.net/\">situs web DataTables</a>."
 
602
 
603
  # @ wp-table-reloaded
604
+ #: views/view-edit.php:365
605
+ msgid "You can currently not change these options, because you have not enabled the &quot;DataTables&quot; or the &quot;DataTables+TableTools&quot; JavaScript library on the &quot;%s&quot; screen."
606
+ msgstr "Anda saat ini tidak dapat mengubah pilihan ini, karena Anda belum menyalakan pustaka JavaScript &quot;DataTables&quot; atau &quot;DataTables+TableTools&quot; pada layar &quot;%s&quot;."
607
 
608
  # @ wp-table-reloaded
609
+ #: views/view-edit.php:365
610
+ msgid "It is not possible to use these features with the &quot;Tablesorter&quot; or &quot;Tablesorter Extended&quot; libraries."
611
+ msgstr "Tidak memungkinkan untuk menggunakan fitur-fitur ini dengan pustaka &quot;Tablesorter&quot; atau &quot;Tablesorter Extended&quot;"
 
 
612
 
613
  # @ wp-table-reloaded
614
+ #: views/view-edit.php:369
615
+ msgid "Sorting"
616
+ msgstr "Mensortir"
617
 
618
  # @ wp-table-reloaded
619
+ #: views/view-edit.php:370
620
+ msgid "Yes, enable sorting of table data by the visitor."
621
+ msgstr "Ya, nyalakan pensortiran data tabel oleh pengunjung."
622
 
623
  # @ wp-table-reloaded
624
+ #: views/view-edit.php:373
625
+ msgid "Pagination"
626
+ msgstr "Penomoran halaman"
627
 
628
+ # @ wp-table-reloaded
629
+ #: views/view-edit.php:378
630
+ msgid "Yes, enable pagination (showing only a certain number of rows) of the table by the visitor."
631
+ msgstr "Ya, nyalakan penomoran halaman (menampilkan hanya beberapa baris saja) pada suatu tabel oleh pengunjung."
 
 
632
 
633
+ # @ wp-table-reloaded
634
+ #: views/view-edit.php:380
635
+ msgid "Show %1$s rows of the table per page."
636
+ msgstr "Tampilkan %1$s baris dari sebuah tabel per halaman."
 
 
637
 
638
+ # @ wp-table-reloaded
639
+ #: views/view-edit.php:386
640
+ msgid "Length Change"
641
+ msgstr "Perubahan Panjang"
 
 
 
 
 
 
 
 
642
 
643
  # @ wp-table-reloaded
644
+ #: views/view-edit.php:387
645
+ msgid "Yes, allow the visitor to change the number of rows shown when using pagination."
646
+ msgstr "Ya, izinkan pengunjung mengubah jumlah baris yang ditampilkan ketika menggunakan penomoran halaman."
647
 
648
  # @ wp-table-reloaded
649
+ #: views/view-edit.php:390
650
+ msgid "Filtering"
651
+ msgstr "Penyaringan"
652
 
653
  # @ wp-table-reloaded
654
+ #: views/view-edit.php:391
655
+ msgid "Yes, enable the visitor to filter or search the table. Only rows with the search word in them are shown."
656
+ msgstr "Ya, izinkan pengunjung menyaring atau mencari pada tabel. Hanya baris-baris dengan kata pencarian yang akan ditampilkan."
657
 
658
  # @ wp-table-reloaded
659
+ #: views/view-edit.php:394
660
+ msgid "Info Bar"
661
+ msgstr "Batang Info"
662
 
663
  # @ wp-table-reloaded
664
+ #: views/view-edit.php:395
665
+ msgid "Yes, show the table information display. This shows information and statistics about the currently visible data, including filtering."
666
+ msgstr "Ya, tampilkan informasi tabel. Ini menampilkan informasi dan statistik mengenai data yang muncul saat ini, termasuk penyaringan."
667
 
668
  # @ wp-table-reloaded
669
+ #: views/view-edit.php:398
670
+ msgid "TableTools"
671
+ msgstr "TableTools"
672
 
673
  # @ wp-table-reloaded
674
+ #: views/view-edit.php:400
675
+ msgid "Yes, activate the TableTools functions (Copy to Clipboard, Save to CSV, Save to XLS, Print Table) for this table."
676
+ msgstr "Ya, aktifkan fungsi TableTools (Salin ke Papan Klip, Simpan ke CSV, Simpan ke XLS, Cetak Tabel) untuk tabel ini."
677
 
678
  # @ wp-table-reloaded
679
+ #: views/view-edit.php:401
680
+ msgid "This option can only be used with the &quot;DataTables+TableTools&quot; JavaScript library."
681
+ msgstr "Pilihan ini hanya dapat digunakan dengan pustaka JavaScript &quot;DataTables+TableTools&quot;."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
682
 
683
  # @ wp-table-reloaded
684
+ #: views/view-edit.php:405
685
+ msgid "Custom Commands"
686
+ msgstr "Perintah Tersuai"
687
 
688
  # @ wp-table-reloaded
689
+ #: views/view-edit.php:406
690
+ msgid "Enter additional DataTables JavaScript parameters that will be included with the script call here."
691
+ msgstr "Masukkan parameter JavaScript tambahan DataTables yang ingin diikutsertakan ke dalam panggilan skrip di sini."
692
 
693
  # @ wp-table-reloaded
694
+ #: views/view-edit.php:406
695
+ msgid "For advanced use only. Read the <a href=\"http://www.datatables.net/\">DataTables documentation</a> before."
696
+ msgstr "Untuk pengguna lanjutan saja. Baca terlebih dahulu <a href=\"http://www.datatables.net/\">dokumentasi DataTables</a>."
697
 
698
  # @ wp-table-reloaded
699
+ #: views/view-edit.php:422
700
+ msgid "Custom Data Fields"
701
+ msgstr "Ruas Data Tersuai"
702
 
703
  # @ wp-table-reloaded
704
+ #: views/view-edit.php:424
705
+ msgid "Custom Data Fields can be used to add extra metadata to a table."
706
+ msgstr "Ruas Data Tersuai dapat digunakan untuk menambah metadata tambahan ke dalam tabel."
707
 
708
  # @ wp-table-reloaded
709
+ #: views/view-edit.php:424
710
+ msgid "For example, this could be information about the source or the creator of the data."
711
+ msgstr "Sebagai contoh, dapat berupa informasi mengenai sumber atau pembuat data tersebut."
712
 
713
  # @ wp-table-reloaded
714
+ #: views/view-edit.php:426
715
+ msgid "You can show this data in the same way as tables by using the shortcode <strong>[table-info id=%s field=\"&lt;field-name&gt;\" /]</strong>."
716
+ msgstr "Anda dapat menampilkan data ini dengan cara yang sama dengan tabel lain menggunakan kode-singkat <strong>[table-info id=%s field=\"&lt;nama-ruas&gt;\" /]</strong>."
717
 
718
  # @ wp-table-reloaded
719
+ #: views/view-edit.php:432
720
+ msgid "Field Name"
721
+ msgstr "Nama Ruas"
722
 
723
  # @ wp-table-reloaded
724
+ #: views/view-edit.php:433
725
+ msgid "Value"
726
+ msgstr "Nilai"
727
 
728
  # @ wp-table-reloaded
729
+ #: views/view-edit.php:434
730
+ #: views/view-import.php:101
731
+ #: views/view-import.php:110
732
+ #: views/view-ajax_list.php:16
733
+ #: views/view-ajax_list.php:24
734
+ msgid "Action"
735
+ msgstr "Tindakan"
736
 
737
  # @ wp-table-reloaded
738
+ #: views/view-edit.php:447
739
+ msgid "Delete Field"
740
+ msgstr "Hapus Ruas"
741
 
742
  # @ wp-table-reloaded
743
+ #: views/view-edit.php:449
744
+ msgid "View shortcode"
745
+ msgstr "Tampil kode-singkat"
746
 
747
  # @ wp-table-reloaded
748
+ #: views/view-edit.php:458
749
+ msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
750
+ msgstr "Untuk menambah Ruas Data Tersuai yang baru, masukkan namanya (hanya huruf kecil, angka, _ dan -)."
751
 
752
  # @ wp-table-reloaded
753
+ #: views/view-edit.php:459
754
+ msgid "Custom Data Field Name"
755
+ msgstr "Nama Ruas Data Tersuai"
756
 
757
  # @ wp-table-reloaded
758
+ #: views/view-edit.php:473
759
+ msgid "Other actions"
760
+ msgstr "Tindakan lain"
 
761
 
762
  # @ wp-table-reloaded
763
+ #: views/view-edit.php:476
764
+ msgid "Delete Table"
765
+ msgstr "Hapus Tabel"
766
 
767
  # @ wp-table-reloaded
768
+ #: views/view-edit.php:477
769
+ #: views/view-export.php:60
770
+ msgid "Export Table"
771
+ msgstr "Ekspor Tabel"
772
 
773
  # @ wp-table-reloaded
774
+ #: views/view-options.php:3
775
+ msgid "WP-Table Reloaded has several options which affect the plugin behavior in different areas."
776
+ msgstr "WP-Table Reloaded memiliki beberapa pilihan yang dapat mempengaruhi perilaku plugin di area tertentu."
777
 
778
  # @ wp-table-reloaded
779
+ #: views/view-options.php:4
780
+ msgid "Frontend Options influence the output and used features of tables in pages, posts or text-widgets."
781
+ msgstr "Pilihan Muka-Depan mempengaruhi keluaran dan fitur yang digunakan oleh tabel pada halaman, tulisan, atau widget teks."
782
 
783
  # @ wp-table-reloaded
784
+ #: views/view-options.php:4
785
+ msgid "The Backend Options control the plugin's admin area, e.g. the &quot;%s&quot; screen."
786
+ msgstr "Pilihan Muka-Belakang mempengaruhi area admin plugin, cth: layar &quot;%s&quot;."
787
 
788
  # @ wp-table-reloaded
789
+ #: views/view-options.php:4
790
+ #: views/view-options.php:55
791
+ #: views/view-options.php:75
792
+ #: views/view-options.php:79
793
+ msgid "Edit Table"
794
+ msgstr "Sunting Tabel"
795
 
796
  # @ wp-table-reloaded
797
+ #: views/view-options.php:4
798
+ msgid "Administrators have access to further Admin Options."
799
+ msgstr "Administrator memiliki akses ke Pilihan Admin lebih lanjut."
800
 
801
  # @ wp-table-reloaded
802
+ #: views/view-options.php:19
803
+ msgid "Frontend Options"
804
+ msgstr "Pilihan Muka-Depan"
805
 
806
  # @ wp-table-reloaded
807
+ #: views/view-options.php:23
808
+ msgid "JavaScript library"
809
+ msgstr "Pustaka JavaScript"
810
 
811
  # @ wp-table-reloaded
812
+ #: views/view-options.php:24
813
+ msgid "Yes, enable the use of a JavaScript library."
814
+ msgstr "Ya, nyalakan penggunaan pustaka JavaScript."
815
 
816
  # @ wp-table-reloaded
817
+ #: views/view-options.php:24
818
+ msgid "WP-Table Reloaded includes three JavaScript libraries that can add useful features, like sorting, pagination, and filtering, to a table."
819
+ msgstr "WP-Table Reloaded mengikutsertakan tiga pustaka JavaScript yang dapat menambahkan fitur-fitur berguna, seperti sortir, penomoran halaman, dan penyaringan ke dalam tabel."
820
 
821
  # @ wp-table-reloaded
822
+ #: views/view-options.php:28
823
+ msgid "Select the library to use:"
824
+ msgstr "Pilih pustaka yang akan digunakan:"
825
 
826
  # @ wp-table-reloaded
827
+ #: views/view-options.php:29
828
+ #: views/view-options.php:131
829
+ msgid "recommended"
830
+ msgstr "direkomendasikan"
831
 
832
  # @ wp-table-reloaded
833
+ #: views/view-options.php:33
834
+ msgid "(You can read more about each library's features on the <a href=\"%s\">plugin's website</a>.)"
835
+ msgstr "(Anda dapat baca lebih lanjut mengenai fitur dari masing-masing pustaka di <a href=\"%s\">situs web plugin tsb</a>.)"
836
 
837
  # @ wp-table-reloaded
838
+ #: views/view-options.php:36
839
+ msgid "Default CSS"
840
+ msgstr "CSS Bawaan"
841
 
842
  # @ wp-table-reloaded
843
+ #: views/view-options.php:38
844
+ msgid "Yes, include and load the plugin's default CSS Stylesheets. This is highly recommended, if you use one of the JavaScript libraries!"
845
+ msgstr "Ya, sertakan dan gunakan Stylesheet CSS bawaan plugin. Ini sangat direkomendasikan, bila Anda menggunakan satu dari beberapa pustaka JavaScript yang disediakan!"
846
 
847
  # @ wp-table-reloaded
848
+ #: views/view-options.php:42
849
+ msgid "Custom CSS"
850
+ msgstr "CSS Tersuai"
851
 
852
  # @ wp-table-reloaded
853
+ #: views/view-options.php:44
854
+ msgid "Yes, include and load the following custom CSS commands."
855
+ msgstr "Ya, sertakan dan gunakan perintah-perintah CSS tersuai berikut."
856
 
857
  # @ wp-table-reloaded
858
+ #: views/view-options.php:44
859
+ msgid "This should be used to change the table layout and styling."
860
+ msgstr "Ini sebaiknya digunakan untuk mengubah tata letak dan gaya tabel."
 
 
 
 
861
 
862
  # @ wp-table-reloaded
863
+ #: views/view-options.php:50
864
+ msgid "You can get styling examples from the <a href=\"%s\">FAQ</a>."
865
+ msgstr "Anda bisa mendapatkan contoh penggayaan dari <a href=\"%s\">FAQ</a>."
866
 
867
  # @ wp-table-reloaded
868
+ #: views/view-options.php:50
869
+ msgid "Information on available CSS selectors can be found in the <a href=\"%s\">documentation</a>."
870
+ msgstr "Informasi mengenai pemilih CSS yang tersedia dapat dilihat pada <a href=\"%s\">dokumentasi</a>."
871
 
872
  # @ wp-table-reloaded
873
+ #: views/view-options.php:54
874
+ msgid "Links in new window"
875
+ msgstr "Tautan pada jendela baru"
876
 
877
  # @ wp-table-reloaded
878
+ #: views/view-options.php:55
879
+ msgid "Yes, open links that are inserted with the &quot;%s&quot; button on the &quot;%s&quot; screen in a new browser window <strong>from now on</strong>."
880
+ msgstr "Ya, buka tautan yang disisipkan dengan tombol &quot;%s&quot; pada layar &quot;%s&quot; di jendela peramban baru <strong>mulai sekarang</strong>."
881
 
882
  # @ wp-table-reloaded
883
+ #: views/view-options.php:62
884
+ #: views/view-options.php:172
885
+ msgid "Save Options"
886
+ msgstr "Simpan Pilihan"
887
 
888
  # @ wp-table-reloaded
889
+ #: views/view-options.php:70
890
+ msgid "Backend Options"
891
+ msgstr "Pilihan Muka-Belakang"
892
 
893
  # @ wp-table-reloaded
894
+ #: views/view-options.php:74
895
+ msgid "Exit warning"
896
+ msgstr "Tutup peringatan"
 
897
 
898
  # @ wp-table-reloaded
899
+ #: views/view-options.php:75
900
+ msgid "Yes, show a warning message, if I leave the &quot;%s&quot; screen and have not yet saved my changes."
901
+ msgstr "Ya, tampilkan pesan peringatan, jika saya keluar dari layar &quot;%s&quot; dan belum menyimpan perubahan yang ada."
902
 
903
  # @ wp-table-reloaded
904
+ #: views/view-options.php:78
905
+ msgid "Growing textareas"
906
+ msgstr "Area-teks yang bisa membesar"
907
 
908
  # @ wp-table-reloaded
909
+ #: views/view-options.php:79
910
+ msgid "Yes, enlarge the textareas on the &quot;%s&quot; screen when they are focussed."
911
+ msgstr "Ya, perbesar area-teks pada layar &quot;%s&quot; ketika mereka difokuskan."
912
 
913
  # @ wp-table-reloaded
914
+ #: views/view-options.php:82
915
+ msgid "List of Tables features"
916
+ msgstr "Daftar Fitur Tabel"
917
 
918
+ #: views/view-options.php:83
919
+ msgid "Yes, use the DataTables JavaScript features (sorting, pagination, filtering) on the &quot;%s&quot; screen."
920
+ msgstr "Ya, gunakan fitur JavaScript DataTables (sortir, penomoran halaman, saring) pada layar &quot;%s&quot;."
 
 
 
 
 
921
 
922
  # @ wp-table-reloaded
923
+ #: views/view-options.php:83
924
+ #: controllers/controller-admin.php:1303
925
+ msgid "List Tables"
926
+ msgstr "Daftar Tabel"
 
 
927
 
928
  # @ wp-table-reloaded
929
+ #: views/view-options.php:91
930
+ msgid "Admin Options"
931
+ msgstr "Pilihan Admin"
932
 
933
  # @ wp-table-reloaded
934
+ #: views/view-options.php:93
935
+ #: views/view-options.php:213
936
+ #: views/view-options.php:227
937
+ msgid "This area are only available to site administrators!"
938
+ msgstr "Area ini hanya tersedia bagi administrator situs!"
939
 
940
  # @ wp-table-reloaded
941
+ #: views/view-options.php:93
942
+ msgid "You can therefore not change these options."
943
+ msgstr "Oleh sebab itu Anda tidak dapat mengubah pilihan berikut ini."
944
 
945
  # @ wp-table-reloaded
946
+ #: views/view-options.php:98
947
+ msgid "Plugin Access"
948
+ msgstr "Akses Plugin"
949
 
950
  # @ wp-table-reloaded
951
+ #: views/view-options.php:99
952
+ msgid "To access WP-Table Reloaded, a user needs to be:"
953
+ msgstr "Untuk mengakses WP-Table Reloaded, seorang pengguna haruslah:"
954
 
955
+ # @ default
956
+ #: views/view-options.php:100
957
+ #: views/view-options.php:111
958
+ msgctxt "User role"
959
+ msgid "Administrator"
960
+ msgstr "Administrator"
961
+
962
+ # @ default
963
+ #: views/view-options.php:101
964
+ #: views/view-options.php:112
965
+ msgctxt "User role"
966
+ msgid "Editor"
967
+ msgstr "Penyunting"
968
+
969
+ # @ default
970
+ #: views/view-options.php:102
971
+ #: views/view-options.php:113
972
+ msgctxt "User role"
973
+ msgid "Author"
974
+ msgstr "Penulis"
975
+
976
+ # @ default
977
+ #: views/view-options.php:103
978
+ msgctxt "User role"
979
+ msgid "Contributor"
980
+ msgstr "Kontributor"
981
 
982
  # @ wp-table-reloaded
983
+ #: views/view-options.php:109
984
+ msgid "Plugin Options Access"
985
+ msgstr "Akses Pilihan Plugin"
986
 
987
  # @ wp-table-reloaded
988
+ #: views/view-options.php:110
989
+ msgid "To access the Plugin Options of WP-Table Reloaded, a user needs to be:"
990
+ msgstr "Untuk mengakses Pilihan Plugin WP-Table Reloaded, seorang pengguna haruslah:"
 
 
991
 
992
  # @ wp-table-reloaded
993
+ #: views/view-options.php:114
994
+ msgid "Admin Options, Dump file Import, and Manual Plugin Uninstall are always accessible by Administrators only, regardless of this setting."
995
+ msgstr "Pilihan Admin, Impor berkas <em>Dump</em>, dan Pencabutan Plugin secara Manual akan selalu dapat diakses hanya oleh Administrator, terlepas dari pengaturan apapun di sini."
 
 
996
 
997
  # @ wp-table-reloaded
998
+ #: views/view-options.php:118
999
+ msgid "Plugin Language"
1000
+ msgstr "Bahasa Plugin"
 
1001
 
1002
  # @ wp-table-reloaded
1003
+ #: views/view-options.php:119
1004
+ msgid "WP-Table Reloaded shall be shown in this language:"
1005
+ msgstr "WP-Table Reloaded akan ditampilkan dalam bahasa ini:"
 
1006
 
1007
  # @ wp-table-reloaded
1008
+ #: views/view-options.php:120
1009
+ msgid "WordPress Default (currently %s)"
1010
+ msgstr "Bawaan WordPress (saat ini %s)"
1011
 
1012
  # @ wp-table-reloaded
1013
+ #: views/view-options.php:129
1014
+ msgid "Admin menu entry"
1015
+ msgstr "Entri menu Admin"
1016
 
1017
  # @ wp-table-reloaded
1018
+ #: views/view-options.php:130
1019
+ msgid "WP-Table Reloaded shall be shown in this section of the admin menu:"
1020
+ msgstr "WP-Table Reloaded akan ditampilkan pada bagian ini di menu admin:"
1021
+
1022
+ # @ default
1023
+ #: views/view-options.php:131
1024
+ msgid "Tools"
1025
+ msgstr "Perkakas"
1026
+
1027
+ # @ default
1028
+ #: views/view-options.php:132
1029
+ msgid "Posts"
1030
+ msgstr "Tulisan"
1031
+
1032
+ # @ default
1033
+ #: views/view-options.php:142
1034
+ msgid "Pages"
1035
+ msgstr "Halaman"
1036
+
1037
+ # @ default
1038
+ #: views/view-options.php:143
1039
+ msgid "Plugins"
1040
+ msgstr "Plugin"
1041
+
1042
+ # @ default
1043
+ #: views/view-options.php:144
1044
+ msgid "Settings"
1045
+ msgstr "Pengaturan"
1046
+
1047
+ # @ default
1048
+ #: views/view-options.php:145
1049
+ msgid "Dashboard"
1050
+ msgstr "Dasbor"
1051
 
1052
  # @ wp-table-reloaded
1053
+ #: views/view-options.php:146
1054
+ msgid "Top-Level"
1055
+ msgstr "Level-Atas"
1056
 
1057
  # @ wp-table-reloaded
1058
+ #: views/view-options.php:151
1059
+ msgid "Frontend Edit Link"
1060
+ msgstr "Taut Sunting Muka-depan"
1061
 
1062
  # @ wp-table-reloaded
1063
+ #: views/view-options.php:152
1064
+ msgid "Yes, show an \"Edit\" link to users with sufficient rights near every table on the frontend."
1065
+ msgstr "Ya, tampilkan taut \"Sunting\" bagi pengguna dengan hak akses yang cukup di dekat setiap tabel pada muka-depan."
 
1066
 
1067
  # @ wp-table-reloaded
1068
+ #: views/view-options.php:156
1069
+ msgid "WordPress Search"
1070
+ msgstr "Pencarian WordPress"
1071
 
1072
  # @ wp-table-reloaded
1073
+ #: views/view-options.php:157
1074
+ msgid "Yes, the WordPress Search shall also find posts and pages that contain the search term inside a table."
1075
+ msgstr "Ya, Pencarian WordPress juga akan mencari tulisan dan halaman yang mengandung kata-kata yang dicari di dalam sebuah tabel."
 
1076
 
1077
  # @ wp-table-reloaded
1078
+ #: views/view-options.php:161
1079
+ msgid "Remove upon Deactivation"
1080
+ msgstr "Singkirkan bila Dinon-aktifkan"
1081
 
1082
  # @ wp-table-reloaded
1083
+ #: views/view-options.php:162
1084
+ msgid "Yes, remove all plugin related data from the database when the plugin is deactivated."
1085
+ msgstr "Ya, singkirkan semua data yang berhubungan dengan plugin dari basis data ketika plugin ini di-nonaktifkan."
 
 
1086
 
1087
  # @ wp-table-reloaded
1088
+ #: views/view-options.php:162
1089
+ msgid "Should be activated directly before deactivation only!"
1090
+ msgstr "Sebaiknya diaktifkan sebelum non-aktivasi saja!"
1091
 
1092
  # @ wp-table-reloaded
1093
+ #: views/view-options.php:182
1094
+ msgid "WP-Table Reloaded Data Export and Backup"
1095
+ msgstr "Ekspor dan Cadangkan Data WP-Table Reloaded"
1096
 
1097
  # @ wp-table-reloaded
1098
+ #: views/view-options.php:185
1099
+ msgid "WP-Table Reloaded can export and import a so-called dump file that contains all tables, their settings and the plugin's options."
1100
+ msgstr "WP-Table Reloaded dapat mengekspor dan mengimpor berkas <em>dump</em> yang berisi seluruh tabel, pengaturannya serta pilihan pluginnya."
 
1101
 
1102
  # @ wp-table-reloaded
1103
+ #: views/view-options.php:185
1104
+ msgid "This file can be used as a backup or to move all data to another WordPress site."
1105
+ msgstr "Berkas ini dapat digunakan sebagai cadangan atau untuk memindahkan seluruh data ke situs WordPress lain."
1106
 
1107
  # @ wp-table-reloaded
1108
+ #: views/view-options.php:188
1109
+ msgid "Export a dump file"
1110
+ msgstr "Ekspor berkas <em>dump</em>"
 
1111
 
1112
  # @ wp-table-reloaded
1113
+ #: views/view-options.php:190
1114
+ msgid "To export all Tables and their settings, click the button below to generate and download a dump file."
1115
+ msgstr "Untuk mengekspor seluruh Tabel dan pengaturannya, klik tombol di bawah untuk membuat dan mengunduh berkas <em>dump</em>-nya."
 
1116
 
1117
  # @ wp-table-reloaded
1118
+ #: views/view-options.php:190
1119
+ msgid "<strong>Warning</strong>: Do <strong>not</strong> edit the content of that file under any circumstances as you will destroy the file!"
1120
+ msgstr "<strong>Peringatan</strong>: <strong>Jangan</strong> sunting konten dari berkas tersebut untuk keperluan apapun karena akan merusak berkasnya!"
1121
 
1122
  # @ wp-table-reloaded
1123
+ #: views/view-options.php:193
1124
+ #: views/view-export.php:10
1125
+ msgid "Create and Download Dump File"
1126
+ msgstr "Ciptakan dan Unduh Berkas <em>Dump</em>"
1127
 
1128
  # @ wp-table-reloaded
1129
+ #: views/view-options.php:199
1130
+ msgid "Import a dump file"
1131
+ msgstr "Impor berkas <em>dump</em>"
1132
 
1133
  # @ wp-table-reloaded
1134
+ #: views/view-options.php:201
1135
+ msgid "To import a WP-Table Reloaded dump file and restore the included data, upload the file from your computer."
1136
+ msgstr "Untuk mengimpor berkas <em>dump</em> WP-Table Reloaded dan memulihkan data yang disertakan di dalamnya, unggah berkasnya dari komputer Anda."
1137
 
1138
  # @ wp-table-reloaded
1139
+ #: views/view-options.php:201
1140
+ msgid "All current data of this WP-Table Reloaded installation (Tables, Options, Settings) <strong>WILL BE OVERWRITTEN</strong> with the data from the file!"
1141
+ msgstr "Semua data yang ada pada instalasi WP-Table Reloaded ini (Tabel, Pilihan, Pengaturan) <strong>AKAN TERTIMPA</strong> dengan data dari berkas ini!"
1142
 
1143
  # @ wp-table-reloaded
1144
+ #: views/view-options.php:201
1145
+ msgid "Do not proceed, if you do not understand this!"
1146
+ msgstr "Jangan lanjutkan bila Anda tidak paham sepenuhnya!"
1147
 
1148
  # @ wp-table-reloaded
1149
+ #: views/view-options.php:201
1150
+ msgid "It is highly recommended to export and backup the data of this installation before importing another dump file (see above)."
1151
+ msgstr "Sangat disarankan untuk mengekspor dan menyimpan salinan data dari instalasi ini sebelum melakukan impor dari berkas <em>dump</em> yang lain (lihat di atas)."
1152
 
1153
  # @ wp-table-reloaded
1154
+ #: views/view-options.php:207
1155
+ msgid "Select Dump File"
1156
+ msgstr "Pilih Berkas <em>Dump</em>"
1157
 
1158
  # @ wp-table-reloaded
1159
+ #: views/view-options.php:209
1160
+ msgid "Import Dump File"
1161
+ msgstr "Impor Berkas <em>Dump</em>"
1162
 
1163
  # @ wp-table-reloaded
1164
+ #: views/view-options.php:219
1165
+ msgid "Manually Uninstall WP-Table Reloaded"
1166
+ msgstr "Cabut Secara Manual WP-Table Reloaded"
1167
 
1168
  # @ wp-table-reloaded
1169
+ #: views/view-options.php:221
1170
+ msgid "Uninstalling <strong>will permanently delete</strong> all tables, data, and options, that belong to WP-Table Reloaded from the database, including all tables you added or imported."
1171
+ msgstr "Pencabutan akan <strong>menghapus secara permanen</strong> seluruh tabel, data, dan pilihan, yang terkait dengan WP-Table Reloaded dari basis data, termasuk seluruh tabel yang pernah Anda tambahkan atau impor."
1172
 
1173
  # @ wp-table-reloaded
1174
+ #: views/view-options.php:221
1175
+ msgid "You will manually need to remove the plugin's files from the plugin folder afterwards."
1176
+ msgstr "Sesudah ini, Anda perlu menghapus berkas-berkas plugin ini dari folder plugin secara manual."
1177
 
1178
  # @ wp-table-reloaded
1179
+ #: views/view-options.php:221
1180
+ msgid "Be very careful with this and only click the button if you know what you are doing!"
1181
+ msgstr "Hati-hati dengan ini dan harap hanya klik tombol ini jika Anda mengerti apa yang sedang Anda lakukan!"
1182
 
1183
  # @ wp-table-reloaded
1184
+ #: views/view-options.php:225
1185
+ msgid "Uninstall Plugin WP-Table Reloaded"
1186
+ msgstr "Cabut Plugin WP-Table Reloaded"
 
1187
 
1188
  # @ wp-table-reloaded
1189
+ #: views/view-options.php:236
1190
+ #: controllers/controller-admin.php:1080
1191
+ msgid "You do not have sufficient rights to access the Plugin Options."
1192
+ msgstr "Anda belum memiliki hak yang cukup untuk mengakses Pilihan Plugin."
1193
 
1194
  # @ wp-table-reloaded
1195
+ #: views/view-ajax_preview.php:3
1196
+ msgid "This is a preview of your table."
1197
+ msgstr "Ini adalah pratampil dari tabel Anda."
1198
 
1199
  # @ wp-table-reloaded
1200
+ #: views/view-ajax_preview.php:4
1201
+ msgid "Because of CSS styling, the table might look different on your page!"
1202
+ msgstr "Karena penggayaan CSS, tabel Anda mungkin akan beda tampilannya pada halaman Anda!"
1203
 
1204
  # @ wp-table-reloaded
1205
+ #: views/view-ajax_preview.php:4
1206
+ msgid "The JavaScript libraries are also not available in this preview."
1207
+ msgstr "Pustaka JavaScript juga tidak akan muncul pada pratampil ini."
 
 
 
 
1208
 
1209
+ # @ wp-table-reloaded
1210
+ #: views/view-import.php:3
1211
+ msgid "WP-Table Reloaded can import tables from existing data."
1212
+ msgstr "WP-Table Reloaded dapat mengimpor tabel dari data yang sudah ada."
1213
 
1214
  # @ wp-table-reloaded
1215
+ #: views/view-import.php:3
1216
+ msgid "This may be a CSV, XML or HTML file, each with a certain structure."
1217
+ msgstr "Ini dapat berupa berkas CSV, XML atau HTML, masing-masing dengan struktur sendiri."
1218
 
1219
+ # @ wp-table-reloaded
1220
+ #: views/view-import.php:3
1221
+ msgid "To import an existing table, please select its format and the source for the import."
1222
+ msgstr "Untuk mengimpor tabel yang sudah ada, silahkan pilih format dan sumber impornya."
1223
 
1224
  # @ wp-table-reloaded
1225
+ #: views/view-import.php:3
1226
+ msgid "You can also decide, if you want to import it as a new table or replace an existing table."
1227
+ msgstr "Anda juga dapat memutuskan, jika Anda ingin mengimpornya sebagai satu tabel baru atau mengganti tabel yang sudah ada."
1228
 
1229
  # @ wp-table-reloaded
1230
+ #: views/view-import.php:10
1231
+ msgid "Select Import Format"
1232
+ msgstr "Pilih Format Impor"
 
 
1233
 
1234
  # @ wp-table-reloaded
1235
+ #: views/view-import.php:21
1236
+ msgid "Add or Replace Table?"
1237
+ msgstr "Tambah atau Ganti Tabel?"
 
1238
 
1239
  # @ wp-table-reloaded
1240
+ #: views/view-import.php:23
1241
+ msgid "Add as new Table"
1242
+ msgstr "Tambah sebagai Tabel baru"
1243
 
1244
  # @ wp-table-reloaded
1245
+ #: views/view-import.php:24
1246
+ msgid "Replace existing Table"
1247
+ msgstr "Ganti Tabel yang sudah ada"
1248
 
1249
  # @ wp-table-reloaded
1250
+ #: views/view-import.php:28
1251
+ msgid "Select existing Table to Replace"
1252
+ msgstr "Pilih Tabel yang sudah ada untuk Diganti"
1253
 
1254
  # @ wp-table-reloaded
1255
+ #: views/view-import.php:44
1256
+ msgid "Select source for Import"
1257
+ msgstr "Pilih sumber untuk Diimpor"
1258
 
1259
  # @ wp-table-reloaded
1260
+ #: views/view-import.php:46
1261
+ msgid "File upload"
1262
+ msgstr "Unggah berkas"
1263
 
1264
  # @ wp-table-reloaded
1265
+ #: views/view-import.php:47
1266
+ msgid "URL"
1267
+ msgstr "URL"
1268
 
1269
  # @ wp-table-reloaded
1270
+ #: views/view-import.php:48
1271
+ msgid "Manual input"
1272
+ msgstr "Masukan Manual"
1273
 
1274
  # @ wp-table-reloaded
1275
+ #: views/view-import.php:49
1276
+ msgid "File on server"
1277
+ msgstr "Berkas pada server"
1278
 
1279
  # @ wp-table-reloaded
1280
+ #: views/view-import.php:53
1281
+ msgid "Select File with Table to Import"
1282
+ msgstr "Pilih Berkas dengan Tabel untuk Diimpor"
1283
 
1284
  # @ wp-table-reloaded
1285
+ #: views/view-import.php:57
1286
+ msgid "URL to Import Table from"
1287
+ msgstr "URL untuk Mengimpor Tabel"
1288
 
1289
  # @ wp-table-reloaded
1290
+ #: views/view-import.php:61
1291
+ msgid "Path to file on server"
1292
+ msgstr "Alamat berkas pada server"
1293
 
1294
  # @ wp-table-reloaded
1295
+ #: views/view-import.php:65
1296
+ msgid "Paste data with Table to Import"
1297
+ msgstr "Tempel data dengan Tabel untuk Impor"
1298
 
1299
  # @ wp-table-reloaded
1300
+ #: views/view-import.php:71
1301
+ msgid "Import Table"
1302
+ msgstr "Impor Tabel"
1303
 
1304
  # @ wp-table-reloaded
1305
+ #: views/view-import.php:85
1306
+ msgid "Import from original wp-Table plugin"
1307
+ msgstr "Impor dari plugin asli wp-Table"
1308
 
1309
  # @ wp-table-reloaded
1310
+ #: views/view-import.php:98
1311
+ #: views/view-import.php:107
1312
+ #: views/view-list.php:13
1313
+ #: views/view-list.php:23
1314
+ #: views/view-ajax_list.php:13
1315
+ #: views/view-ajax_list.php:21
1316
+ msgid "ID"
1317
+ msgstr "ID"
1318
 
1319
  # @ wp-table-reloaded
1320
+ #: views/view-import.php:131
1321
+ msgid "Import"
1322
+ msgstr "Impor"
1323
 
1324
  # @ wp-table-reloaded
1325
+ #: views/view-import.php:139
1326
+ #: views/view-list.php:79
1327
+ msgid "Bulk actions:"
1328
+ msgstr "Tindakan massal:"
1329
 
1330
  # @ wp-table-reloaded
1331
+ #: views/view-import.php:139
1332
+ msgid "Import Tables"
1333
+ msgstr "Impor Tabel"
1334
 
1335
  # @ wp-table-reloaded
1336
+ #: views/view-import.php:145
1337
+ msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
1338
+ msgstr "wp-Table oleh Alex Rabe sepertinya telah terpasang, tapi tidak ditemukan tabel apa pun."
1339
 
1340
  # @ wp-table-reloaded
1341
+ #: views/view-list.php:2
1342
+ #: views/view-ajax_list.php:3
1343
+ msgid "This is a list of all available tables."
1344
+ msgstr "Ini adalah daftar dari seluruh tabel yang tersedia."
1345
 
1346
  # @ wp-table-reloaded
1347
+ #: views/view-list.php:2
1348
+ msgid "You may add, edit, copy, delete or preview tables here."
1349
+ msgstr "Anda dapat menambah, menyunting, menyalin, menghapus atau pratampil tabel di sini."
1350
 
1351
  # @ wp-table-reloaded
1352
+ #: views/view-list.php:2
1353
+ msgid "Each table has a unique ID that needs to be adjusted in that shortcode."
1354
+ msgstr "Setiap tabel memiliki satu ID unik yang perlu disesuaikan pada kode-singkat tadi."
1355
 
1356
  # @ wp-table-reloaded
1357
+ #: views/view-list.php:2
1358
+ msgid "You can also click the button &quot;%s&quot; in the editor toolbar to select and insert a table."
1359
+ msgstr "Anda juga dapat meng-klik tombol &quot;%s&quot; pada batang perkakas penyunting untuk memilih dan menyisipkan tabel."
1360
 
1361
  # @ wp-table-reloaded
1362
+ #: views/view-list.php:2
1363
+ #: views/view-about.php:14
1364
+ #: controllers/controller-admin.php:1804
1365
+ msgid "Table"
1366
+ msgstr "Tabel"
1367
 
1368
  # @ wp-table-reloaded
1369
+ #: views/view-list.php:39
1370
+ msgid "(no name)"
1371
+ msgstr "(tiada nama)"
1372
 
1373
  # @ wp-table-reloaded
1374
+ #: views/view-list.php:40
1375
+ msgid "(no description)"
1376
+ msgstr "(tiada deskripsi)"
1377
 
1378
  # @ wp-table-reloaded
1379
+ #: views/view-list.php:58
1380
+ msgid "Edit %s"
1381
+ msgstr "Sunting %s"
1382
 
1383
  # @ wp-table-reloaded
1384
+ #: views/view-list.php:62
1385
+ msgid "Shortcode"
1386
+ msgstr "Kode-singkat"
1387
 
1388
  # @ wp-table-reloaded
1389
+ #: views/view-list.php:63
1390
+ msgid "Copy"
1391
+ msgstr "Salin"
1392
 
1393
  # @ wp-table-reloaded
1394
+ #: views/view-list.php:64
1395
+ msgid "Export"
1396
+ msgstr "Ekspor"
1397
 
1398
  # @ wp-table-reloaded
1399
+ #: views/view-list.php:66
1400
+ msgid "Preview of Table %s"
1401
+ msgstr "Pratampil dari Tabel %s"
1402
 
1403
  # @ wp-table-reloaded
1404
+ #: views/view-list.php:67
1405
+ msgid "Preview"
1406
+ msgstr "Pratampil"
1407
 
1408
  # @ wp-table-reloaded
1409
+ #: views/view-list.php:79
1410
+ msgid "Copy Tables"
1411
+ msgstr "Salin Tabel"
1412
 
1413
  # @ wp-table-reloaded
1414
+ #: views/view-list.php:79
1415
+ msgid "Delete Tables"
1416
+ msgstr "Hapus Tabel"
1417
 
1418
  # @ wp-table-reloaded
1419
+ #: views/view-list.php:88
1420
+ #: views/view-export.php:72
1421
+ #: views/view-ajax_list.php:53
1422
+ #: controllers/controller-admin.php:1869
1423
+ msgid "No tables were found."
1424
+ msgstr "Tabel tidak ditemukan."
1425
 
1426
  # @ wp-table-reloaded
1427
+ #: views/view-list.php:88
1428
+ #: views/view-export.php:72
1429
+ msgid "You should <a href=\"%s\">add</a> or <a href=\"%s\">import</a> a table to get started!"
1430
+ msgstr "Anda perlu <a href=\"%s\">menambah</a> atau <a href=\"%s\">mengimpor</a> sebuah tabel untuk memulai!"
1431
 
1432
  # @ wp-table-reloaded
1433
  #: views/view-about.php:5
1437
  # @ wp-table-reloaded
1438
  #: views/view-about.php:7
1439
  msgid "WP-Table Reloaded allows you to create and manage tables in the admin-area of WordPress."
1440
+ msgstr "WP-Table Reloaded mengizinkan Anda membuat dan mengatur tabel dalam area admin WordPress."
1441
 
1442
  # @ wp-table-reloaded
1443
  #: views/view-about.php:7
1444
  msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
1445
+ msgstr "Tabel-tabel dapat mengandung unsur teks (string), angka dan bahkan HTML (cth: untuk menyisipkan gambar atau taut)."
1446
 
1447
  # @ wp-table-reloaded
1448
  #: views/view-about.php:7
1449
  msgid "You can then show the tables in your posts, on your pages or in text-widgets by using a shortcode."
1450
+ msgstr "Anda kemudian dapat menampilkan tabel pada tulisan, halaman, atau pada widget teks Anda dengan menggunakan kode-singkat."
1451
 
1452
  # @ wp-table-reloaded
1453
  #: views/view-about.php:7
1462
  # @ wp-table-reloaded
1463
  #: views/view-about.php:14
1464
  msgid "At first you should add or import a table."
1465
+ msgstr "Pertama-tama Anda perlu menambahkan atau mengimpor sebuah tabel."
1466
 
1467
  # @ wp-table-reloaded
1468
  #: views/view-about.php:14
1469
  msgid "This means that you either let the plugin create an empty table for you or that you load an existing table from either a CSV, XML or HTML file."
1470
+ msgstr "Ini berarti Anda mengizinkan plugin membuat sebuah tabel kosong untuk Anda atau memuat tabel yang sudah ada dari berkas CSV, XML atau HTML."
1471
 
1472
  # @ wp-table-reloaded
1473
  #: views/view-about.php:14
1474
  msgid "Then you can edit your data or change the structure of your table (e.g. by inserting or deleting rows or columns, swaping rows or columns or sorting them) and select specific table options like alternating row colors or whether to print the name or description, if you want."
1475
+ msgstr "Lalu Anda dapat sunting datanya atau ubah struktur tabelnya (cth: dengan menyisipkan atau menghapus baris atau kolom, menukar baris atau kolom, atau mensortir mereka) dan memilih pilihan tabel tertentu seperti warna baris berseling atau bahkan mencetak nama atau deskripsi, jika Anda mau."
1476
 
1477
  # @ wp-table-reloaded
1478
  #: views/view-about.php:14
1479
  msgid "To easily add a link or an image to a cell, use the provided buttons. Those will ask you for the URL and a title. Then you can click into a cell and the corresponding HTML will be added to it for you."
1480
+ msgstr "Untuk menambahkan sebuah taut atau gambar ke dalam satu sel dengan mudah, gunakan tombol-tombol yang telah disediakan. Mereka akan meminta URL dan judulnya. Lalu Anda klik pada sel dan HTML terkait akan ditambahkan di sana untuk Anda."
1481
 
1482
  # @ wp-table-reloaded
1483
  #: views/view-about.php:14
1484
  msgid "You can also select the desired table from a list (after clicking the button &quot;%s&quot; in the editor toolbar) and the corresponding shortcode will be added for you."
1485
+ msgstr "Anda juga dapat memilih tabel yang diinginkan dari daftar (setelah klik tombol &quot;%s&quot; pada batang perkakas penyunting) lalu kode-singkat ybs akan ditambahkan secara otomatis untuk Anda."
1486
 
1487
  # @ wp-table-reloaded
1488
  #: views/view-about.php:14
1507
  # @ wp-table-reloaded
1508
  #: views/view-about.php:19
1509
  msgid "More Information and Documentation"
1510
+ msgstr "Informasi lebih lanjut dan Dokumentasi"
 
 
 
 
 
 
 
 
 
 
 
 
1511
 
1512
  # @ wp-table-reloaded
1513
  #: views/view-about.php:26
1514
  msgid "Help and Support"
1515
  msgstr "Bantuan dan Dukungan"
1516
 
 
 
 
 
 
 
 
 
 
 
 
 
1517
  # @ wp-table-reloaded
1518
  #: views/view-about.php:28
1519
  msgid "If you do not find an answer there, please <a href=\"%s\">open a new thread</a> in the WordPress Support Forums with the tag &quot;wp-table-reloaded&quot;."
1520
+ msgstr "Bila Anda tidak menemukan jawaban yang Anda cari di sana, silahkan <a href=\"%s\">buka rangkai-alur baru</a> di Forum Dukungan WordPress dengan tag &quot;wp-table-reloaded&quot;."
1521
 
1522
  # @ wp-table-reloaded
1523
  #: views/view-about.php:33
1532
  # @ wp-table-reloaded
1533
  #: views/view-about.php:35
1534
  msgid "It is licensed as Free Software under GPL 2."
1535
+ msgstr "Dilisensikan sebagai Piranti Lunak Gratis di bawah naungan GPL 2 (\"Free Software under GPL 2\")."
 
 
 
 
 
 
1536
 
1537
  # @ wp-table-reloaded
1538
  #: views/view-about.php:35
1542
  # @ wp-table-reloaded
1543
  #: views/view-about.php:35
1544
  msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
1545
+ msgstr "Donasi dan nilai yang bagus akan mendorong saya untuk terus mengembangkan plugin ini dan memberikan berjam-jam dukungan. Berapapun jumlah dan nilainya akan tetap saya hargai! Terima kasih!"
1546
 
1547
  # @ wp-table-reloaded
1548
  #: views/view-about.php:40
1549
  msgid "Credits and Thanks"
1550
+ msgstr "Penghargaan dan Terima Kasih"
1551
 
1552
  # @ wp-table-reloaded
1553
  #: views/view-about.php:43
1572
  # @ wp-table-reloaded
1573
  #: views/view-about.php:47
1574
  msgid "the submitters of translations:"
1575
+ msgstr "para pengirim terjemahan:"
1576
 
1577
  # @ wp-table-reloaded
1578
+ #: views/view-about.php:78
1579
  msgid "%s (thanks to %s)"
1580
  msgstr "%s (terima kasih kepada %s)"
1581
 
1582
  # @ wp-table-reloaded
1583
+ #: views/view-about.php:81
1584
  msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
1585
  msgstr "dan kepada semua donatur, kontributor, pendukung, pengulas dan pengguna plugin ini!"
1586
 
1587
  # @ wp-table-reloaded
1588
+ #: views/view-about.php:87
1589
  msgid "Debug and Version Information"
1590
  msgstr "Debug dan Informasi Versi"
1591
 
1592
  # @ wp-table-reloaded
1593
+ #: views/view-about.php:90
1594
  msgid "You are using the following versions of the software."
1595
  msgstr "Anda menggunakan piranti lunak dengan versi berikut ini."
1596
 
1597
  # @ wp-table-reloaded
1598
+ #: views/view-about.php:90
1599
  msgid "Please provide this information in bug reports."
1600
+ msgstr "Silahkan sertakan informasi ini pada laporan kerusakan (<em>bug</em>)."
1601
 
1602
  # @ wp-table-reloaded
1603
+ #: views/view-about.php:93
1604
  msgid "Plugin installed"
1605
  msgstr "Plugin terpasang"
1606
 
1607
  # @ wp-table-reloaded
1608
+ #: views/view-export.php:10
1609
+ msgid "It is recommended to export and backup the data of important tables regularly."
1610
+ msgstr "Disarankan untuk mengekspor dan mencadangkan data-data penting pada tabel secara berkala."
1611
 
1612
  # @ wp-table-reloaded
1613
+ #: views/view-export.php:10
1614
+ msgid "Select the table, the desired export format and (for CSV only) a delimiter."
1615
+ msgstr "Pilih tabel, format ekspor yang diinginkan dan (untuk CSV saja) karakter pembatas."
1616
 
1617
  # @ wp-table-reloaded
1618
+ #: views/view-export.php:10
1619
+ msgid "You may choose to download the export file. Otherwise it will be shown on this page."
1620
+ msgstr "Anda dapat memilih untuk mengunduh berkas ekspor. Jika tidak, akan dimunculkan di halaman ini."
1621
+
1622
+ # @ wp-table-reloaded
1623
+ #: views/view-export.php:10
1624
+ msgid "Be aware that only the table data, but no options or settings are exported."
1625
+ msgstr "Mohon dicatat, hanya data tabel saja, tanpa pilihan atau pengaturan yang akan diekspor."
1626
+
1627
+ # @ wp-table-reloaded
1628
+ #: views/view-export.php:10
1629
+ msgid "To backup all tables, including their settings, at once use the &quot;%s&quot; button in the &quot;%s&quot;."
1630
+ msgstr "Untuk mencadangkan seluruh tabel termasuk pengaturan mereka sekaligus, silahkan gunakan tombol &quot;%s&quot; pada &quot;%s&quot;."
1631
+
1632
+ # @ wp-table-reloaded
1633
+ #: views/view-export.php:18
1634
+ msgid "Select Table to Export"
1635
+ msgstr "Pilih Tabel untuk Diekspor"
1636
+
1637
+ # @ wp-table-reloaded
1638
+ #: views/view-export.php:34
1639
+ msgid "Select Export Format"
1640
+ msgstr "Pilih Format Ekspor"
1641
+
1642
+ # @ wp-table-reloaded
1643
+ #: views/view-export.php:44
1644
+ msgid "Select Delimiter to use"
1645
+ msgstr "Pilih Karakter Pembatas yang ingin digunakan"
1646
+
1647
+ # @ wp-table-reloaded
1648
+ #: views/view-export.php:51
1649
+ msgid "Only needed for CSV export."
1650
+ msgstr "Hanya dibutuhkan ketika mengekspor CSV."
1651
+
1652
+ # @ wp-table-reloaded
1653
+ #: views/view-export.php:54
1654
+ msgid "Download file"
1655
+ msgstr "Unduh berkas"
1656
+
1657
+ # @ wp-table-reloaded
1658
+ #: views/view-export.php:55
1659
+ msgid "Yes, I want to download the export file."
1660
+ msgstr "Ya, saya ingin mengunduh berkas ekspor tersebut."
1661
+
1662
+ # @ wp-table-reloaded
1663
+ #: views/view-add.php:4
1664
+ msgid "To add a new table, enter its name, a description (optional) and the number of rows and columns."
1665
+ msgstr "Untuk menambahkan sebuah tabel baru, masukkan namanya, deskripsi (opsional) serta beberapa baris dan kolom."
1666
+
1667
+ # @ wp-table-reloaded
1668
+ #: views/view-add.php:4
1669
+ msgid "You may also add, insert or delete rows and columns later."
1670
+ msgstr "Anda juga dapat menambahkan, menyisipkan atau menghapus baris dan kolom kemudian."
1671
+
1672
+ # @ wp-table-reloaded
1673
+ #: views/view-add.php:14
1674
+ msgid "Enter Table Name"
1675
+ msgstr "Masukkan Nama Tabel"
1676
+
1677
+ # @ wp-table-reloaded
1678
+ #: views/view-add.php:18
1679
+ msgid "Enter Description"
1680
+ msgstr "Masukkan Deskripsi"
1681
+
1682
+ # @ wp-table-reloaded
1683
+ #: views/view-add.php:21
1684
+ msgid "Number of Rows"
1685
+ msgstr "Jumlah Baris"
1686
+
1687
+ # @ wp-table-reloaded
1688
+ #: views/view-add.php:25
1689
+ msgid "Number of Columns"
1690
+ msgstr "Jumlah Kolom"
1691
+
1692
+ # @ wp-table-reloaded
1693
+ #: views/view-add.php:32
1694
+ msgid "Add Table"
1695
+ msgstr "Tambah Tabel"
1696
+
1697
+ # @ wp-table-reloaded
1698
+ #: views/view-ajax_list.php:3
1699
+ msgid "You may insert a table into a post or page here."
1700
+ msgstr "Anda dapat menyisipkan sebuah tabel ke dalam tulisan atau halaman di sini."
1701
+
1702
+ # @ wp-table-reloaded
1703
+ #: views/view-ajax_list.php:4
1704
+ msgid "Click the &quot;%s&quot; link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=&lt;ID&gt; /]</strong>)."
1705
+ msgstr "Klik taut &quot;%s&quot; sesudah tabel yang diinginkan maka kode-singkat ybs akan disisipkan ke dalam penyunting (<strong>[table id=&lt;ID&gt; /]</strong>)."
1706
+
1707
+ # @ wp-table-reloaded
1708
+ #: views/view-ajax_list.php:4
1709
+ #: views/view-ajax_list.php:44
1710
+ msgid "Insert"
1711
+ msgstr "Sisipkan"
1712
+
1713
+ # @ wp-table-reloaded
1714
+ #: views/view-uninstall.php:3
1715
+ msgid "Plugin deactivated successfully."
1716
+ msgstr "Plugin berhasil dinonaktifkan."
1717
+
1718
+ # @ wp-table-reloaded
1719
+ #: views/view-uninstall.php:4
1720
+ msgid "All tables, data and options were deleted. You may now manually remove the plugin's subfolder from your WordPress plugin folder or use the \"Delete\" link on the Plugins page."
1721
+ msgstr "Semua tabel, data dan pilihan telah dihapus. Anda sekarang dapat secara manual menghapus subfolder plugin dari folder plugin WordPress Anda atau gunakan taut \"Hapus\" pada laman Plugin."
1722
 
1723
  #: controllers/controller-admin.php:255
1724
  msgid "Arabic"
1763
  msgid "Hindi"
1764
  msgstr "Hindi"
1765
 
 
1766
  #: controllers/controller-admin.php:264
1767
+ msgid "Indonesian"
1768
+ msgstr "Bahasa Indonesia"
1769
+
1770
+ # @ wp-table-reloaded
1771
+ #: controllers/controller-admin.php:265
1772
  msgid "Italian"
1773
  msgstr "Itali"
1774
 
1775
  # @ wp-table-reloaded
1776
+ #: controllers/controller-admin.php:266
1777
  msgid "Japanese"
1778
  msgstr "Jepang"
1779
 
1780
+ #: controllers/controller-admin.php:267
1781
  msgid "Dutch"
1782
  msgstr "Belanda"
1783
 
1784
  # @ wp-table-reloaded
1785
+ #: controllers/controller-admin.php:268
1786
  msgid "Polish"
1787
  msgstr "Polandia"
1788
 
1789
  # @ wp-table-reloaded
1790
+ #: controllers/controller-admin.php:269
1791
  msgid "Brazilian Portuguese"
1792
  msgstr "Portugis Brazil"
1793
 
1794
  # @ wp-table-reloaded
1795
+ #: controllers/controller-admin.php:270
1796
  msgid "Russian"
1797
  msgstr "Rusia"
1798
 
1799
  # @ wp-table-reloaded
1800
+ #: controllers/controller-admin.php:271
1801
  msgid "Slovak"
1802
  msgstr "Slovakia"
1803
 
1804
  # @ wp-table-reloaded
1805
+ #: controllers/controller-admin.php:272
1806
  msgid "Swedish"
1807
  msgstr "Swedia"
1808
 
1809
  # @ wp-table-reloaded
1810
+ #: controllers/controller-admin.php:273
1811
  msgid "Ukrainian"
1812
  msgstr "Ukraina"
1813
 
1814
  # @ wp-table-reloaded
1815
+ #: controllers/controller-admin.php:274
1816
  msgid "Chinese (Simplified)"
1817
  msgstr "China (Sederhana)"
1818
 
 
 
 
 
 
 
 
 
1819
  # @ wp-table-reloaded
1820
+ #: controllers/controller-admin.php:303
1821
  msgid "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s\">documentation</a>, and the <a href=\"%s\">support</a> section."
1822
  msgstr "Selamat datang di WP-Table Reloaded %s. Jika Anda mengalami kesulitan atau memiliki pertanyaan, silahkan merujuk ke <a href=\"%s\">FAQ</a>, <a href=\"%s\">Dokumentasi</a>, dan bagian <a href=\"%s\">Dukungan</a>."
1823
 
1824
  # @ wp-table-reloaded
1825
+ #: controllers/controller-admin.php:304
1826
  msgid "Thank you for upgrading to WP-Table Reloaded %s."
1827
  msgstr "Terima kasih telah memutakhirkan WP-Table Reloaded %s."
1828
 
1829
+ #: controllers/controller-admin.php:304
1830
  msgid "This version includes a few new features, like output caching and a custom table CSS class, and several enhancements."
1831
  msgstr "Versi ini mengikutsertakan beberapa fitur baru, seperti tembolok keluaran dan sebuah kelas CSS tabel tersuai, dan beberapa penambahan lainnya."
1832
 
1833
  # @ wp-table-reloaded
1834
+ #: controllers/controller-admin.php:304
1835
  msgid "Please read the <a href=\"%s\">release announcement</a> for more information."
1836
  msgstr "Silahkan baca <a href=\"%s\">pengumuman rilis</a> untuk info lebih lanjut."
1837
 
1838
  # @ wp-table-reloaded
1839
+ #: controllers/controller-admin.php:304
1840
  msgid "If you like the new features and enhancements, I would appreciate a small <a href=\"%s\">donation</a>. Thank you."
1841
  msgstr "Jika Anda ingin tambahan fitur baru dan pengembangan lebih lanjut, saya hargai <a href=\"%s\">donasi</a> suka rela Anda. Terima kasih."
1842
 
1843
  # @ wp-table-reloaded
1844
+ #: controllers/controller-admin.php:309
1845
  msgid "Hide this message"
1846
  msgstr "Sembunyikan pesan ini"
1847
 
1848
  # @ wp-table-reloaded
1849
+ #: controllers/controller-admin.php:317
1850
  msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago."
1851
  msgstr "Terima kasih telah menggunakan plugin ini! Anda telah memasang WP-Table Reloaded lebih dari satu bulan yang lalu."
1852
 
1853
  # @ wp-table-reloaded
1854
+ #: controllers/controller-admin.php:317
1855
  msgid "If it works and you are satisfied with the results of managing your %s table, isn't it worth at least one dollar or euro?"
1856
  msgid_plural "If it works and you are satisfied with the results of managing your %s tables, isn't it worth at least one dollar or euro?"
1857
+ msgstr[0] "Jika plugin ini berfungsi semestinya dan Anda puas akan hasil dari pengaturan %s tabel Anda, bukankah plugin ini setidaknya bernilai sekurang-kurangnya satu dolar atau euro?"
1858
 
1859
  # @ wp-table-reloaded
1860
+ #: controllers/controller-admin.php:318
1861
  msgid "<a href=\"%s\">Donations</a> help me to continue support and development of this <i>free</i> software - things for which I spend countless hours of my free time! Thank you!"
1862
+ msgstr "<a href=\"%s\">Donasi</a> membantu saya untuk terus mendukung dan mengembangkan piranti lunak <i>gratis</i> ini - di mana saya telah meluangkan banyak waktu luang saya untuk plugin ini! Terima kasih!"
1863
 
1864
  # @ wp-table-reloaded
1865
+ #: controllers/controller-admin.php:319
1866
  msgid "Sure, no problem!"
1867
  msgstr "Tentu, tidak masalah!"
1868
 
1869
  # @ wp-table-reloaded
1870
+ #: controllers/controller-admin.php:320
1871
  msgid "I already donated."
1872
  msgstr "Saya sudah memberikan donasi."
1873
 
1874
  # @ wp-table-reloaded
1875
+ #: controllers/controller-admin.php:321
1876
  msgid "No, thanks. Don't ask again."
1877
  msgstr "Tidak, terima kasih. Tolong jangan tanya lagi."
1878
 
1879
  # @ wp-table-reloaded
1880
+ #: controllers/controller-admin.php:349
1881
  msgid "Table &quot;%s&quot; added successfully."
1882
  msgstr "Tabel &quot;%s&quot; berhasil ditambahkan."
1883
 
1884
  # @ wp-table-reloaded
1885
+ #: controllers/controller-admin.php:380
1886
  msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
1887
+ msgstr "Tabel telah berhasil disunting. Tabel ini sekarang ber-ID %s. Anda harus menyesuaikan kode-singkat yang telah ada."
1888
 
1889
  # @ wp-table-reloaded
1890
+ #: controllers/controller-admin.php:382
1891
  msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
1892
+ msgstr "ID tidak dapat diubah dari %s menjadi %s, karena sudah ada Tabel lain dengan ID tersebut."
1893
 
1894
  # @ wp-table-reloaded
1895
+ #: controllers/controller-admin.php:385
1896
  msgid "Table edited successfully."
1897
  msgstr "Tabel berhasil disunting."
1898
 
1899
  # @ wp-table-reloaded
1900
+ #: controllers/controller-admin.php:434
1901
  msgid "Rows swapped successfully."
1902
+ msgstr "Baris-baris tersebut telah berhasil ditukar posisinya."
1903
 
1904
  # @ wp-table-reloaded
1905
+ #: controllers/controller-admin.php:455
1906
  msgid "Columns swapped successfully."
1907
+ msgstr "Kolom-kolom tersebut telah berhasil ditukar posisinya."
1908
 
1909
  # @ wp-table-reloaded
1910
+ #: controllers/controller-admin.php:496
1911
  msgid "Table sorted successfully."
1912
  msgstr "Tabel telah berhasil disortir."
1913
 
1914
  # @ wp-table-reloaded
1915
+ #: controllers/controller-admin.php:517
1916
  msgid "Row moved successfully."
1917
+ msgstr "Baris tersebut telah berhasil dipindahkan."
1918
 
1919
  # @ wp-table-reloaded
1920
+ #: controllers/controller-admin.php:542
1921
  msgid "Column moved successfully."
1922
  msgstr "Kolom telah berhasil dipindahkan."
1923
 
1924
  # @ wp-table-reloaded
1925
+ #: controllers/controller-admin.php:550
1926
  msgid "Row could not be deleted."
1927
  msgid_plural "Rows could not be deleted."
1928
  msgstr[0] "Baris tidak dapat dihapus."
1929
 
1930
  # @ wp-table-reloaded
1931
+ #: controllers/controller-admin.php:559
1932
  msgid "Row deleted successfully."
1933
  msgid_plural "Rows deleted successfully."
1934
  msgstr[0] "Baris telah berhasil dihapus."
1935
 
1936
  # @ wp-table-reloaded
1937
+ #: controllers/controller-admin.php:569
1938
  msgid "Column could not be deleted."
1939
  msgid_plural "Columns could not be deleted."
1940
  msgstr[0] "Kolom tidak dapat dihapus."
1941
 
1942
  # @ wp-table-reloaded
1943
+ #: controllers/controller-admin.php:582
1944
  msgid "Column deleted successfully."
1945
  msgid_plural "Columns deleted successfully."
1946
  msgstr[0] "Kolom telah berhasil dihapus."
1947
 
1948
  # @ wp-table-reloaded
1949
+ #: controllers/controller-admin.php:605
1950
  msgid "Row inserted successfully."
1951
  msgid_plural "Rows inserted successfully."
1952
  msgstr[0] "Baris telah berhasil disisipkan."
1953
 
1954
  # @ wp-table-reloaded
1955
+ #: controllers/controller-admin.php:632
1956
  msgid "Column inserted successfully."
1957
  msgid_plural "Columns inserted successfully."
1958
  msgstr[0] "Kolom telah berhasil disisipkan."
1959
 
1960
  # @ wp-table-reloaded
1961
+ #: controllers/controller-admin.php:647
1962
  msgid "Row added successfully."
1963
  msgid_plural "Rows added successfully."
1964
  msgstr[0] "Baris telah berhasil ditambahkan."
1965
 
1966
  # @ wp-table-reloaded
1967
+ #: controllers/controller-admin.php:661
1968
  msgid "Column added successfully."
1969
  msgid_plural "Columns added successfully."
1970
  msgstr[0] "Kolom telah berhasil ditambahkan."
1971
 
1972
  # @ wp-table-reloaded
1973
+ #: controllers/controller-admin.php:668
1974
  msgid "Could not add Custom Data Field, because you did not enter a name."
1975
+ msgstr "Tidak dapat menambahkan Ruas Data Tersuai, karena Anda belum memasukkan sebuah nama."
1976
 
1977
  # @ wp-table-reloaded
1978
+ #: controllers/controller-admin.php:673
1979
  msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
1980
+ msgstr "Tidak dapat menambah Ruas Data Tersuai, karena nama yang Anda masukkan sudah digunakan tabel data yang lain."
1981
 
1982
  # @ wp-table-reloaded
1983
+ #: controllers/controller-admin.php:679
1984
  msgid "Could not add Custom Data Field, because the name contained illegal characters."
1985
+ msgstr "Tidak dapat menambahkan Ruas Data Tersuai, karena nama berisi karakter tidak sah."
1986
 
1987
  # @ wp-table-reloaded
1988
+ #: controllers/controller-admin.php:683
1989
  msgid "Could not add Custom Data Field, because a Field with that name already exists."
1990
  msgstr "Tidak dapat menambahkan Ruas Data Tersuai, karena sudah ada Ruas dengan nama tersebut."
1991
 
1992
  # @ wp-table-reloaded
1993
+ #: controllers/controller-admin.php:689
1994
  msgid "Custom Data Field added successfully."
1995
  msgstr "Ruas Data Tersuai berhasil ditambahkan."
1996
 
1997
  # @ wp-table-reloaded
1998
+ #: controllers/controller-admin.php:729
1999
+ #: controllers/controller-admin.php:785
2000
  msgid "Copy of"
2001
  msgstr "Salinan dari"
2002
 
2003
  # @ wp-table-reloaded
2004
+ #: controllers/controller-admin.php:733
2005
  msgid "Table copied successfully."
2006
  msgid_plural "Tables copied successfully."
2007
  msgstr[0] "Tabel berhasil disalin."
2008
 
2009
  # @ wp-table-reloaded
2010
+ #: controllers/controller-admin.php:739
2011
  msgid "Table deleted successfully."
2012
  msgid_plural "Tables deleted successfully."
2013
  msgstr[0] "Tabel berhasil dihapus."
2014
 
2015
  # @ wp-table-reloaded
2016
+ #: controllers/controller-admin.php:760
2017
+ #: controllers/controller-admin.php:915
2018
+ #: controllers/controller-admin.php:953
2019
  msgid "Table imported successfully."
2020
  msgid_plural "Tables imported successfully."
2021
  msgstr[0] "Tabel berhasil diimpor."
2022
 
2023
  # @ wp-table-reloaded
2024
+ #: controllers/controller-admin.php:767
2025
  msgid "You did not select any tables!"
2026
  msgstr "Anda belum memilih satu tabel pun!"
2027
 
2028
  # @ wp-table-reloaded
2029
+ #: controllers/controller-admin.php:790
2030
  msgid "Table &quot;%s&quot; copied successfully."
2031
  msgstr "Tabel &quot;%s&quot; berhasil disalin."
2032
 
2033
  # @ wp-table-reloaded
2034
+ #: controllers/controller-admin.php:808
2035
  msgid "Table &quot;%s&quot; deleted successfully."
2036
  msgstr "Tabel &quot;%s&quot; berhasil dihapus."
2037
 
2038
  # @ wp-table-reloaded
2039
+ #: controllers/controller-admin.php:816
2040
  msgid "Custom Data Field deleted successfully."
2041
  msgstr "Ruas Data Tersuai berhasil dihapus."
2042
 
2043
  # @ wp-table-reloaded
2044
+ #: controllers/controller-admin.php:818
2045
  msgid "Custom Data Field could not be deleted."
2046
+ msgstr "Ruas Data Tersuai tidak dapat dihapus."
2047
 
2048
  # @ wp-table-reloaded
2049
+ #: controllers/controller-admin.php:824
2050
  msgid "Delete failed."
2051
  msgstr "Gagal dihapus."
2052
 
2053
  # @ wp-table-reloaded
2054
+ #: controllers/controller-admin.php:856
2055
+ #: controllers/controller-admin.php:866
2056
+ #: controllers/controller-admin.php:877
2057
  msgid "Imported Table"
2058
  msgstr "Tabel yang Diimpor"
2059
 
2060
  # @ wp-table-reloaded
2061
+ #: controllers/controller-admin.php:857
2062
+ #: controllers/controller-admin.php:878
2063
  msgid "from %s"
2064
  msgstr "dari %s"
2065
 
2066
  # @ wp-table-reloaded
2067
+ #: controllers/controller-admin.php:867
2068
  msgid "via form"
2069
  msgstr "lewat formulir"
2070
 
2071
  # @ wp-table-reloaded
2072
+ #: controllers/controller-admin.php:894
2073
+ #: controllers/controller-admin.php:931
2074
  msgid "Table could not be imported."
2075
  msgstr "Tabel tidak dapat diimpor."
2076
 
2077
  # @ wp-table-reloaded
2078
+ #: controllers/controller-admin.php:911
2079
  msgid "Table %s (%s) replaced successfully."
2080
+ msgstr "Tabel %s (%s) berhasil digantikan."
2081
 
2082
  # @ wp-table-reloaded
2083
+ #: controllers/controller-admin.php:961
2084
+ #: controllers/controller-admin.php:1155
2085
  msgid "You do not have sufficient rights to perform this action."
2086
+ msgstr "Anda tidak memiliki hak akses yang cukup untuk melakukan tindakan ini."
2087
 
2088
  # @ wp-table-reloaded
2089
+ #: controllers/controller-admin.php:968
2090
  msgid "You did not upload a WP-Table Reloaded dump file."
2091
  msgstr "Anda tidak mengunggah berkas <em>dump</em> WP-Table Reloaded."
2092
 
2093
  # @ wp-table-reloaded
2094
+ #: controllers/controller-admin.php:977
2095
  msgid "The uploaded dump file is empty. Please upload a valid dump file."
2096
  msgstr "Berkas <em>dump</em> yang diunggah ternyata kosong. Silahkan unggah berkas <em>dump</em> yang valid."
2097
 
2098
  # @ wp-table-reloaded
2099
+ #: controllers/controller-admin.php:1006
2100
  msgid "All Tables, Settings and Options were successfully imported."
2101
  msgstr "Semua Tabel, Pengaturan dan Pilihan berhasil diimpor."
2102
 
2103
  # @ wp-table-reloaded
2104
+ #: controllers/controller-admin.php:1035
2105
  msgid "Table &quot;%s&quot; exported successfully."
2106
  msgstr "Tabel &quot;%s&quot; berhasil diekspor."
2107
 
2108
  # @ wp-table-reloaded
2109
+ #: controllers/controller-admin.php:1136
2110
  msgid "Options saved successfully."
2111
  msgstr "Pilihan berhasil disimpan."
2112
 
2113
  # @ wp-table-reloaded
2114
+ #: controllers/controller-admin.php:1139
2115
  msgid "<a href=\"%s\">Click here to Proceed.</a>"
2116
+ msgstr "<a href=\"%s\">Klik di sini untuk Melanjutkan.</a>"
2117
 
2118
  # @ wp-table-reloaded
2119
+ #: controllers/controller-admin.php:1205
2120
  msgid "There is no table with this ID!"
2121
  msgstr "Tidak ada tabel dengan ID ini!"
2122
 
2123
  # @ wp-table-reloaded
2124
+ #: controllers/controller-admin.php:1242
2125
  msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
2126
+ msgstr "Terima kasih banyak! Donasi Anda amat dihargai. Anda baru saja memberikan kontribusi untuk mendorong pengembangan WP-Table Reloaded lebih lanjut!"
2127
 
2128
  # @ wp-table-reloaded
2129
+ #: controllers/controller-admin.php:1244
2130
  msgid "No problem! I still hope you enjoy the benefits that WP-Table Reloaded brings to you. If you should want to change your mind, you'll always find the &quot;%s&quot; button on the <a href=\"%s\">WP-Table Reloaded website</a>."
2131
+ msgstr "Tak masalah! Saya tetap berharap Anda menikmati fitur-fitur yang ditawarkan WP-Table Reloaded. Jika Anda berubah pikiran, Anda selalu dapat menemukan tombol &quot;%s&quot; di <a href=\"%s\">situs web WP-Table Reloaded</a>."
2132
 
2133
  # @ wp-table-reloaded
2134
+ #: controllers/controller-admin.php:1244
2135
+ #: controllers/controller-admin.php:1678
2136
  msgid "Donate"
2137
  msgstr "Donasi"
2138
 
2139
  # @ wp-table-reloaded
2140
+ #: controllers/controller-admin.php:1267
2141
+ #: controllers/controller-admin.php:1274
2142
  msgid "List of Tables"
2143
  msgstr "Daftar Tabel"
2144
 
2145
  # @ wp-table-reloaded
2146
  #. #-#-#-#-# plugin.pot (WP-Table Reloaded 1.9) #-#-#-#-#
2147
  #. Plugin Name of the plugin/theme
2148
+ #: controllers/controller-admin.php:1267
2149
+ #: controllers/controller-admin.php:1271
2150
+ #: controllers/controller-admin.php:1273
2151
  msgid "WP-Table Reloaded"
2152
  msgstr "WP-Table Reloaded"
2153
 
2154
  # @ wp-table-reloaded
2155
+ #: controllers/controller-admin.php:1268
2156
+ #: controllers/controller-admin.php:1304
2157
  msgid "Add new Table"
2158
  msgstr "Tambah Tabel baru"
2159
 
2160
  # @ wp-table-reloaded
2161
+ #: controllers/controller-admin.php:1269
2162
+ #: controllers/controller-admin.php:1305
2163
  msgid "Import a Table"
2164
  msgstr "Impor Tabel"
2165
 
2166
  # @ wp-table-reloaded
2167
+ #: controllers/controller-admin.php:1270
2168
+ #: controllers/controller-admin.php:1306
2169
  msgid "Export a Table"
2170
  msgstr "Ekspor Tabel"
2171
 
2172
  # @ wp-table-reloaded
2173
+ #: controllers/controller-admin.php:1272
2174
  msgid "About WP-Table Reloaded"
2175
+ msgstr "Perihal WP-Table Reloaded"
2176
 
2177
  # @ wp-table-reloaded
2178
+ #: controllers/controller-admin.php:1280
2179
  msgid "Edit Table &quot;%s&quot; (ID %s)"
2180
  msgstr "Sunting Tabel &quot;%s&quot; (ID %s)"
2181
 
2182
  # @ wp-table-reloaded
2183
+ #: controllers/controller-admin.php:1281
2184
  msgid "Preview of Table &quot;%s&quot; (ID %s)"
2185
+ msgstr "Pratampil Tabel &quot;%s&quot; (ID %s)"
2186
 
2187
  # @ wp-table-reloaded
2188
+ #: controllers/controller-admin.php:1314
2189
  msgid "About the plugin"
2190
+ msgstr "Perihal plugin ini"
2191
 
2192
  # @ wp-table-reloaded
2193
+ #: controllers/controller-admin.php:1674
2194
  msgid "WP-Table Reloaded Plugin Page"
2195
  msgstr "Laman Plugin WP-Table Reloaded"
2196
 
2197
  # @ wp-table-reloaded
2198
+ #: controllers/controller-admin.php:1674
2199
  msgid "Plugin Page"
2200
  msgstr "Laman Plugin"
2201
 
2202
  # @ wp-table-reloaded
2203
+ #: controllers/controller-admin.php:1675
2204
  msgid "Frequently Asked Questions"
2205
  msgstr "FAQ: Pertanyaan yang sering ditanyakan"
2206
 
2207
  # @ wp-table-reloaded
2208
+ #: controllers/controller-admin.php:1675
2209
  msgid "FAQ"
2210
  msgstr "FAQ"
2211
 
2212
  # @ wp-table-reloaded
2213
+ #: controllers/controller-admin.php:1676
2214
  msgid "Support"
2215
  msgstr "Dukungan"
2216
 
2217
  # @ wp-table-reloaded
2218
+ #: controllers/controller-admin.php:1677
2219
  msgid "Plugin Documentation"
2220
  msgstr "Dokumentasi Plugin"
2221
 
2222
  # @ wp-table-reloaded
2223
+ #: controllers/controller-admin.php:1677
2224
  msgid "Documentation"
2225
  msgstr "Dokumentasi"
2226
 
2227
  # @ wp-table-reloaded
2228
+ #: controllers/controller-admin.php:1678
2229
  msgid "Support WP-Table Reloaded with your donation!"
2230
  msgstr "Dukung WP-Table Reloaded dengan donasi Anda!"
2231
 
2232
  # @ wp-table-reloaded
2233
+ #: controllers/controller-admin.php:1717
2234
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
2235
  msgstr "Anda yakin ingin mengaktifkan ini? Anda hanya ingin melakukan ini sebelum pencabutan plugin!"
2236
 
2237
  # @ wp-table-reloaded
2238
+ #: controllers/controller-admin.php:1718
2239
  msgid "URL of link to insert"
2240
  msgstr "URL dari taut yang ingin disisipkan"
2241
 
2242
  # @ wp-table-reloaded
2243
+ #: controllers/controller-admin.php:1719
2244
  msgid "Text of link"
2245
  msgstr "Teks dari taut"
2246
 
2247
  # @ wp-table-reloaded
2248
+ #: controllers/controller-admin.php:1720
2249
  msgid "To insert the following HTML code for a link into a cell, just click the cell after closing this dialog."
2250
  msgstr "Untuk menyisipkan kode HTML untuk tautan ke dalam sebuah sel, cukup klik sel tersebut sesudah menutup dialog ini."
2251
 
2252
  # @ wp-table-reloaded
2253
+ #: controllers/controller-admin.php:1721
2254
  msgid "To insert an image, click &quot;OK&quot; and then click into the cell into which you want to insert the image."
2255
  msgstr "Untuk menyisipkan sebuah gambar, klik &quot;OK&quot; lalu klik ke dalam sel yang Anda maksud."
2256
 
2257
  # @ wp-table-reloaded
2258
+ #: controllers/controller-admin.php:1721
2259
  msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
2260
  msgstr "Pustaka Media akan dibuka, dari situ Anda dapat memilih gambar atau URL gambar ybs."
2261
 
2262
  # @ wp-table-reloaded
2263
+ #: controllers/controller-admin.php:1721
2264
  msgid "Click the &quot;%s&quot; button to insert the image."
2265
  msgstr "Klik tombol &quot;%s&quot; untuk menyisipkan gambar."
2266
 
2267
  # @ default
2268
+ #: controllers/controller-admin.php:1721
2269
  msgid "Insert into Post"
2270
  msgstr "Sisipkan ke dalam Tulisan"
2271
 
2272
  # @ wp-table-reloaded
2273
+ #: controllers/controller-admin.php:1722
2274
  msgid "To combine cells within a row, click into the cell to the right of the cell that has the content the combined cells shall have."
2275
  msgstr "Untuk menggabungkan sel di dalam satu baris, klik pada sel di sebelah kanan sel yang memiliki konten yang ingin digabungkan."
2276
 
2277
  # @ wp-table-reloaded
2278
+ #: controllers/controller-admin.php:1723
2279
  msgid "To combine cells within a column, click into the cell below the cell that has the content the combined cells shall have."
2280
+ msgstr "Untuk menggabungkan sel di dalam satu kolom, klik pada sel di sebelah bawah sel yang memiliki konten yang ingin digabungkan."
2281
 
2282
  # @ wp-table-reloaded
2283
+ #: controllers/controller-admin.php:1724
2284
  msgid "Do you want to copy the selected tables?"
2285
+ msgstr "Apakah Anda ingin menyalin tabel yang dipilih?"
2286
 
2287
  # @ wp-table-reloaded
2288
+ #: controllers/controller-admin.php:1725
2289
  msgid "The selected tables and all content will be erased. Do you really want to delete them?"
2290
+ msgstr "Tabel yang dipilih beserta seluruh isinya akan dihapus. Anda yakin ingin menghapusnya?"
2291
 
2292
  # @ wp-table-reloaded
2293
+ #: controllers/controller-admin.php:1726
2294
  msgid "Do you really want to import the selected tables from the wp-Table plugin?"
2295
+ msgstr "Anda yakin ingin mengimpor tabel yang dipilih dari plugin wp-Table?"
2296
 
2297
  # @ wp-table-reloaded
2298
+ #: controllers/controller-admin.php:1727
2299
  msgid "Do you want to copy this table?"
2300
  msgstr "Anda ingin menyalin tabel ini?"
2301
 
2302
  # @ wp-table-reloaded
2303
+ #: controllers/controller-admin.php:1728
2304
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
2305
  msgstr "Tabel dan seluruh isinya akan dihapus. Anda yakin ingin menghapusnya?"
2306
 
2307
  # @ wp-table-reloaded
2308
+ #: controllers/controller-admin.php:1729
2309
  msgid "Do you really want to delete the selected rows?"
2310
  msgstr "Apakah Anda yakin ingin menghapus baris yang dipilih?"
2311
 
2312
  # @ wp-table-reloaded
2313
+ #: controllers/controller-admin.php:1730
2314
  msgid "Do you really want to delete the selected columns?"
2315
  msgstr "Apakah Anda yakin ingin menghapus kolom yang dipilih?"
2316
 
2317
  # @ wp-table-reloaded
2318
+ #: controllers/controller-admin.php:1731
2319
+ #: controllers/controller-admin.php:1735
2320
+ #: controllers/controller-admin.php:1737
2321
  msgid "You have not selected any rows."
2322
  msgstr "Anda belum memilih satu baris pun."
2323
 
2324
  # @ wp-table-reloaded
2325
+ #: controllers/controller-admin.php:1732
2326
+ #: controllers/controller-admin.php:1736
2327
+ #: controllers/controller-admin.php:1738
2328
  msgid "You have not selected any columns."
2329
  msgstr "Anda belum memilih satu kolom pun."
2330
 
2331
  # @ wp-table-reloaded
2332
+ #: controllers/controller-admin.php:1733
2333
  msgid "You can not delete all rows of the table at once!"
2334
  msgstr "Anda tidak dapat menghapus seluruh baris pada satu tabel sekaligus!"
2335
 
2336
  # @ wp-table-reloaded
2337
+ #: controllers/controller-admin.php:1734
2338
  msgid "You can not delete all columns of the table at once!"
2339
  msgstr "Anda tidak dapat menghapus seluruh kolom pada satu tabel sekaligus!"
2340
 
2341
  # @ wp-table-reloaded
2342
+ #: controllers/controller-admin.php:1739
2343
  msgid "Do you really want to import this table from the wp-Table plugin?"
2344
+ msgstr "Anda yakin ingin mengimpor tabel ini dari plugin wp-Table?"
2345
 
2346
  # @ wp-table-reloaded
2347
+ #: controllers/controller-admin.php:1740
2348
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
2349
  msgstr "Anda yakin ingin mencabut plugin dan menghapus SEMUA data?"
2350
 
2351
  # @ wp-table-reloaded
2352
+ #: controllers/controller-admin.php:1741
2353
  msgid "Are you really sure?"
2354
  msgstr "Apakah Anda yakin?"
2355
 
2356
  # @ wp-table-reloaded
2357
+ #: controllers/controller-admin.php:1742
2358
  msgid "Do you really want to change the ID of the table?"
2359
  msgstr "Apakah Anda yakin ingin mengubah ID tabel ini?"
2360
 
2361
  # @ wp-table-reloaded
2362
+ #: controllers/controller-admin.php:1743
2363
  msgid "To show this Custom Data Field, use this shortcode:"
2364
  msgstr "Untuk menampilkan Ruas Data Tersuai, gunakan kode-singkat ini:"
2365
 
2366
  # @ wp-table-reloaded
2367
+ #: controllers/controller-admin.php:1744
2368
  msgid "To show this table, use this shortcode:"
2369
  msgstr "Untuk menampilkan tabel ini, gunakan kode-singkat ini:"
2370
 
2371
  # @ wp-table-reloaded
2372
+ #: controllers/controller-admin.php:1745
2373
  msgid "Warning: You will lose all current Tables and Settings! You should create a backup first. Be warned!"
2374
+ msgstr "Perhatian: Anda akan kehilangan seluruh Tabel dan Pengaturannya! Anda sebaiknya membuat cadangan dahulu. Berhati-hatilah!"
2375
 
2376
  # @ wp-table-reloaded
2377
+ #: controllers/controller-admin.php:1746
2378
  msgid "You have made changes to the content of this table and not yet saved them."
2379
  msgstr "Anda telah melakukan perubahan pada konten tabel ini dan belum menyimpannya."
2380
 
2381
  # @ wp-table-reloaded
2382
+ #: controllers/controller-admin.php:1746
2383
  msgid "You should first click &quot;%s&quot; or they will be lost if you navigate away from this page."
2384
+ msgstr "Anda perlu klik &quot;%s&quot; terlebih dahulu atau mereka semua akan hilang bila Anda berpindah dari laman ini."
2385
 
2386
  # @ wp-table-reloaded
2387
+ #: controllers/controller-admin.php:1805
2388
  msgid "Insert a Table"
2389
  msgstr "Sisipkan sebuah Tabel"
2390
 
2391
  # @ wp-table-reloaded
2392
+ #: controllers/controller-admin.php:1866
2393
  msgid "Please wait..."
2394
  msgstr "Silahkan tunggu..."
2395
 
2396
  # @ wp-table-reloaded
2397
+ #: controllers/controller-admin.php:1867
2398
  msgid "Show _MENU_ Tables"
2399
  msgstr "Tampilkan Tabel _MENU_"
2400
 
2401
+ #: controllers/controller-admin.php:1868
2402
  msgid "All"
2403
  msgstr "Semua"
2404
 
2405
  # @ wp-table-reloaded
2406
+ #: controllers/controller-admin.php:1870
2407
  msgid "_START_ to _END_ of _TOTAL_ Tables"
2408
  msgstr "_START_ s/d _END_ dari _TOTAL_ Tabel"
2409
 
2410
  # @ wp-table-reloaded
2411
+ #: controllers/controller-admin.php:1871
2412
  msgid "(filtered from _MAX_ Tables)"
2413
  msgstr "(disaring dari _MAX_ Tabel)"
2414
 
2415
  # @ wp-table-reloaded
2416
+ #: controllers/controller-admin.php:1872
2417
  msgid "Filter:"
2418
  msgstr "Saringan:"
2419
 
2420
  # @ wp-table-reloaded
2421
+ #: controllers/controller-admin.php:1873
2422
  msgid "First"
2423
  msgstr "Pertama"
2424
 
2425
  # @ wp-table-reloaded
2426
+ #: controllers/controller-admin.php:1874
2427
  msgid "Back"
2428
  msgstr "Kembali"
2429
 
2430
  # @ wp-table-reloaded
2431
+ #: controllers/controller-admin.php:1875
2432
  msgid "Next"
2433
  msgstr "Berikut"
2434
 
2435
  # @ wp-table-reloaded
2436
+ #: controllers/controller-admin.php:1876
2437
  msgid "Last"
2438
  msgstr "Terakhir"
2439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2440
  # @ wp-table-reloaded
2441
  #. Plugin URI of the plugin/theme
2442
  msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2457
  msgid "http://tobias.baethge.com/"
2458
  msgstr "http://tobias.baethge.com/"
2459
 
2460
+ #~ msgid "Albanian"
2461
+ #~ msgstr "Albania"
2462
+
2463
+ #~ msgid "Turkish"
2464
+ #~ msgstr "Turki"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://tobias.baethge.com/donate/
4
  Tags: html,table,data,editor,csv,import,export,excel,widget,admin,sidebar
5
  Requires at least: 2.8
6
  Tested up to: 3.1
7
- Stable tag: 1.9
8
 
9
  WP-Table Reloaded lets you manage tables in a comfortable backend in WP's admin area, without any knowledge of HTML, and can add valuable features.
10
 
@@ -104,6 +104,9 @@ I'm also happy about [donations](http://tobias.baethge.com/donate/) or something
104
 
105
  == Changelog ==
106
 
 
 
 
107
  = Version 1.9 =
108
  * feature: option to have the generated table HTML cached in a WordPress transient for faster page generation
109
  * feature: tables can get additional custom CSS classes, e.g. for easier layout and styling, and grouping tables
@@ -240,6 +243,9 @@ I'm also happy about [donations](http://tobias.baethge.com/donate/) or something
240
 
241
  == Upgrade Notice ==
242
 
 
 
 
243
  = 1.9 =
244
  This upgrade includes a few new features, like output caching and a custom table CSS class, and several enhancements.
245
 
4
  Tags: html,table,data,editor,csv,import,export,excel,widget,admin,sidebar
5
  Requires at least: 2.8
6
  Tested up to: 3.1
7
+ Stable tag: 1.9.1
8
 
9
  WP-Table Reloaded lets you manage tables in a comfortable backend in WP's admin area, without any knowledge of HTML, and can add valuable features.
10
 
104
 
105
  == Changelog ==
106
 
107
+ = Version 1.9.1 =
108
+ * bugfix: update handling was broken in 1.9
109
+
110
  = Version 1.9 =
111
  * feature: option to have the generated table HTML cached in a WordPress transient for faster page generation
112
  * feature: tables can get additional custom CSS classes, e.g. for easier layout and styling, and grouping tables
243
 
244
  == Upgrade Notice ==
245
 
246
+ = 1.9.1 =
247
+ This upgrade includes a few new features, like output caching and a custom table CSS class, and several enhancements.
248
+
249
  = 1.9 =
250
  This upgrade includes a few new features, like output caching and a custom table CSS class, and several enhancements.
251
 
wp-table-reloaded.php CHANGED
@@ -4,14 +4,14 @@
4
  *
5
  * @package WP-Table Reloaded
6
  * @author Tobias B&auml;thge
7
- * @version 1.9
8
  */
9
 
10
  /*
11
  Plugin Name: WP-Table Reloaded
12
  Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
13
  Description: This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
14
- Version: 1.9
15
  Author: Tobias B&auml;thge
16
  Author URI: http://tobias.baethge.com/
17
  Author eMail: wordpress@tobias.baethge.com
@@ -47,7 +47,7 @@ if ( !defined( 'WP_TABLE_RELOADED_BASENAME' ) )
47
  if ( !defined( 'WP_TABLE_RELOADED__FILE__' ) )
48
  define( 'WP_TABLE_RELOADED__FILE__', __FILE__ );
49
  if ( !defined( 'WP_TABLE_RELOADED_PLUGIN_VERSION' ) )
50
- define( 'WP_TABLE_RELOADED_PLUGIN_VERSION', '1.9' );
51
 
52
  /**
53
  * Decide whether admin controller or frontend controller is loaded
4
  *
5
  * @package WP-Table Reloaded
6
  * @author Tobias B&auml;thge
7
+ * @version 1.9.1
8
  */
9
 
10
  /*
11
  Plugin Name: WP-Table Reloaded
12
  Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
13
  Description: This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
14
+ Version: 1.9.1
15
  Author: Tobias B&auml;thge
16
  Author URI: http://tobias.baethge.com/
17
  Author eMail: wordpress@tobias.baethge.com
47
  if ( !defined( 'WP_TABLE_RELOADED__FILE__' ) )
48
  define( 'WP_TABLE_RELOADED__FILE__', __FILE__ );
49
  if ( !defined( 'WP_TABLE_RELOADED_PLUGIN_VERSION' ) )
50
+ define( 'WP_TABLE_RELOADED_PLUGIN_VERSION', '1.9.1' );
51
 
52
  /**
53
  * Decide whether admin controller or frontend controller is loaded