Easy Table - Version 1.1

Version Description

  • Removed: .htaccess from plugin directory (Fixed unloaded script on some servers)
  • Use dedicated str_getcsv for Easy Table (Fixed incompatibility issue with AIOSP version 2.0)
  • Removed: align attribute on table (Fixed text wrap issue)
  • Added: new theme "minimal"
Download this release

Release Info

Developer takien
Plugin Icon wp plugin Easy Table
Version 1.1
Comparing to
See all releases

Code changes from version 1.0 to 1.1

easy-table.php CHANGED
@@ -4,11 +4,11 @@ Plugin Name: Easy Table
4
  Plugin URI: http://takien.com/
5
  Description: Create table in post, page, or widget in easy way.
6
  Author: Takien
7
- Version: 1.0
8
  Author URI: http://takien.com/
9
  */
10
 
11
- /* Copyright 2012 takien.com
12
 
13
  This program is free software; you can redistribute it and/or modify
14
  it under the terms of the GNU General Public License as published by
@@ -23,22 +23,6 @@ Author URI: http://takien.com/
23
  For a copy of the GNU General Public License, write to the Free Software
24
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25
  */
26
- /*
27
- Easy Table 1.0 beta2
28
- + Added nl2br if terminator is not \n nor \r
29
- + Added is_search conditional option to load CSS/JS
30
- + Improved admin UI, field description is now using tTooltip
31
-
32
- Easy Table 1.0 beta
33
- Changelog:
34
- + Encoding fix (?)
35
- + Added colalign
36
- + Added colwidth
37
- + Added style param
38
- + Added limit param
39
- + Added trim param
40
- + Added terminator param
41
- */
42
 
43
  if(!defined('ABSPATH')) die();
44
 
@@ -58,7 +42,6 @@ var $settings = Array(
58
  'class' => '',
59
  'caption' => false,
60
  'width' => '100%',
61
- 'align' => 'left',
62
  'th' => true,
63
  'tf' => false,
64
  'border' => 0,
@@ -105,7 +88,7 @@ function __construct(){
105
  private function easy_table_base($return){
106
  $easy_table_base = Array(
107
  'name' => 'Easy Table',
108
- 'version' => '1.0',
109
  'plugin-domain' => 'easy-table'
110
  );
111
  return $easy_table_base[$return];
@@ -116,7 +99,6 @@ function easy_table_short_code($atts, $content="") {
116
  'class' => $this->option('class'),
117
  'caption' => $this->option('caption'),
118
  'width' => $this->option('width'),
119
- 'align' => $this->option('align'),
120
  'th' => $this->option('th'),
121
  'tf' => $this->option('tf'),
122
  'border' => $this->option('border'),
@@ -244,8 +226,8 @@ private function csv_to_table($data,$args){
244
  }
245
 
246
  $output = '<table '.($id ? 'id="'.$id.'"':'');
247
- $output .= ' width="'.$width.'" align="'.$align.'" ';
248
- $output .= ' style="'.((stripos($style,'width') === false) ? ('width:'.$width.';'.(($align=='center') ? 'margin-left:auto;margin-right:auto' : '')) : $style).'" ';
249
  $output .= ' class="easy-table easy-table-'.$theme.' '.($tablesorter ? 'tablesorter __sortlist__ ':'').$class.'" '.
250
  (($border !=='0') ? 'border="'.$border.'"' : '').
251
  '>'."\n";
@@ -408,7 +390,7 @@ $terminator = ($terminator == '\n') ? "\n" : $terminator;
408
  $terminator = ($terminator == '\r') ? "\r" : $terminator;
409
  $terminator = ($terminator == '\t') ? "\t" : $terminator;
410
 
411
- $rows = str_getcsv($csv, $terminator,$enclosure,$escape);
412
  $rows = array_diff($rows,Array(''));
413
  /*
414
  * limit how many rows will be included?
@@ -420,7 +402,7 @@ if($limit > 0) {
420
  }
421
 
422
  foreach($rows as &$row) {
423
- $r[] = str_getcsv($row,$delimiter);
424
  }
425
  return $r;
426
  }
@@ -1169,9 +1151,10 @@ function easy_table_init() {
1169
  /**
1170
  * Create function str_getcsv if not exists in server
1171
  * @since version 0.2
 
1172
  */
1173
- if (!function_exists('str_getcsv')) {
1174
- function str_getcsv($input, $delimiter = ",", $enclosure = '"', $escape = "\\"){
1175
  $fiveMBs = 5 * 1024 * 1024;
1176
  if (($handle = fopen("php://temp/maxmemory:$fiveMBs", 'r+')) !== FALSE) {
1177
  fputs($handle, $input);
4
  Plugin URI: http://takien.com/
5
  Description: Create table in post, page, or widget in easy way.
6
  Author: Takien
7
+ Version: 1.1
8
  Author URI: http://takien.com/
9
  */
10
 
11
+ /* Copyright 2013 takien.com
12
 
13
  This program is free software; you can redistribute it and/or modify
14
  it under the terms of the GNU General Public License as published by
23
  For a copy of the GNU General Public License, write to the Free Software
24
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25
  */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
  if(!defined('ABSPATH')) die();
28
 
42
  'class' => '',
43
  'caption' => false,
44
  'width' => '100%',
 
45
  'th' => true,
46
  'tf' => false,
47
  'border' => 0,
88
  private function easy_table_base($return){
89
  $easy_table_base = Array(
90
  'name' => 'Easy Table',
91
+ 'version' => '1.1',
92
  'plugin-domain' => 'easy-table'
93
  );
94
  return $easy_table_base[$return];
99
  'class' => $this->option('class'),
100
  'caption' => $this->option('caption'),
101
  'width' => $this->option('width'),
 
102
  'th' => $this->option('th'),
103
  'tf' => $this->option('tf'),
104
  'border' => $this->option('border'),
226
  }
227
 
228
  $output = '<table '.($id ? 'id="'.$id.'"':'');
229
+ $output .= ' width="'.$width.'" ';
230
+ $output .= ' style="'.((stripos($style,'width') === false) ? ('width:'.$width.';') : $style).'" ';
231
  $output .= ' class="easy-table easy-table-'.$theme.' '.($tablesorter ? 'tablesorter __sortlist__ ':'').$class.'" '.
232
  (($border !=='0') ? 'border="'.$border.'"' : '').
233
  '>'."\n";
390
  $terminator = ($terminator == '\r') ? "\r" : $terminator;
391
  $terminator = ($terminator == '\t') ? "\t" : $terminator;
392
 
393
+ $rows = easy_table_str_getcsv($csv, $terminator,$enclosure,$escape);
394
  $rows = array_diff($rows,Array(''));
395
  /*
396
  * limit how many rows will be included?
402
  }
403
 
404
  foreach($rows as &$row) {
405
+ $r[] = easy_table_str_getcsv($row,$delimiter);
406
  }
407
  return $r;
408
  }
1151
  /**
1152
  * Create function str_getcsv if not exists in server
1153
  * @since version 0.2
1154
+ * Use dedicated str_getcsv since 1.1
1155
  */
1156
+ if (!function_exists('easy_table_str_getcsv')) {
1157
+ function easy_table_str_getcsv($input, $delimiter = ",", $enclosure = '"', $escape = "\\"){
1158
  $fiveMBs = 5 * 1024 * 1024;
1159
  if (($handle = fopen("php://temp/maxmemory:$fiveMBs", 'r+')) !== FALSE) {
1160
  fputs($handle, $input);
languages/easy-table-id_ID.mo CHANGED
Binary file
languages/easy-table-id_ID.po CHANGED
@@ -1,458 +1,475 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: easy-table 1.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-01-29 08:48+0700\n"
6
- "PO-Revision-Date: 2013-01-29 08:49+0700\n"
7
  "Last-Translator: takien <imissuaja@yahoo.com>\n"
8
  "Language-Team: takien.com <contact@takien.com>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Basepath: ../\n"
14
- "X-Poedit-Language: Indonesian\n"
15
- "X-Poedit-Country: INDONESIA\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: easy-table.php:606
20
  msgid "Settings"
21
  msgstr "Pengaturan"
22
 
23
- #: easy-table.php:618
24
  msgid "Instruction"
25
  msgstr "Petunjuk"
26
 
27
- #: easy-table.php:619
28
- msgid "Once plugin installed, go to plugin options page to configure some options"
 
29
  msgstr "Setelah plugin terpasang, kemudian buka halaman penyetelan plugin"
30
 
31
- #: easy-table.php:620
32
  msgid "You are ready to write a table in post or page."
33
  msgstr "Anda telah siap untuk membuat tabel di post atau halaman."
34
 
35
- #: easy-table.php:621
36
- msgid "To be able write table in widget you have to check <em>Enable render table in widget</em> option in the option page."
 
 
37
  msgstr ""
38
 
39
- #: easy-table.php:640
40
  #, php-format
41
  msgid "%s Option"
42
  msgstr "Pengaturan %s"
43
 
44
- #: easy-table.php:645
45
  msgid "Support"
46
  msgstr "Dukungan"
47
 
48
- #: easy-table.php:646
49
  msgid "About"
50
  msgstr "Tentang"
51
 
52
- #: easy-table.php:656
53
  msgid "Show/hide help button"
54
  msgstr "Tampilkan/Sembunyikan tombol bantuan"
55
 
56
- #: easy-table.php:657
57
  msgid "General options"
58
  msgstr "Pengaturan umum"
59
 
60
- #: easy-table.php:662
61
  msgid "Short code tag"
62
  msgstr ""
63
 
64
- #: easy-table.php:664
65
  msgid "Shortcode tag, type 'table' if you want to use [table] short tag."
66
  msgstr ""
67
 
68
- #: easy-table.php:670
69
- #: easy-table.php:935
70
  msgid "Cell attribute tag"
71
  msgstr ""
72
 
73
- #: easy-table.php:672
74
  msgid "Cell attribute tag, default is attr."
75
  msgstr ""
76
 
77
- #: easy-table.php:677
78
  msgid "Also render table in widget?"
79
  msgstr "Tampilkan tabel di widget?"
80
 
81
- #: easy-table.php:679
82
  msgid "Check this if you want the table could be rendered in widget."
83
  msgstr ""
84
 
85
- #: easy-table.php:684
86
  msgid "Only load JS/CSS when in this condition"
87
  msgstr ""
88
 
89
- #: easy-table.php:685
90
  msgid "Please check in where JavaScript and CSS should be loaded"
91
  msgstr ""
92
 
93
- #: easy-table.php:689
94
  msgid "Single"
95
  msgstr ""
96
 
97
- #: easy-table.php:695
98
  msgid "Page"
99
  msgstr ""
100
 
101
- #: easy-table.php:701
102
  msgid "Front page"
103
  msgstr ""
104
 
105
- #: easy-table.php:707
106
  msgid "Archive page"
107
  msgstr ""
108
 
109
- #: easy-table.php:713
110
  msgid "Search page"
111
  msgstr ""
112
 
113
- #: easy-table.php:721
114
  msgid "Load script on footer?"
115
  msgstr "Muat script di footer?"
116
 
117
- #: easy-table.php:723
118
- msgid "Check this if you want the script to be rendered in footer. Try to check or uncheck this if you experienced conflict with another JavaScript library (not guaranteed though)."
 
 
 
119
  msgstr ""
120
 
121
- #: easy-table.php:734
122
  msgid "Use tablesorter?"
123
  msgstr "Gunakan tablesorter?"
124
 
125
- #: easy-table.php:737
126
  msgid "Check this to use tablesorter jQuery plugin"
127
  msgstr "Ceklist ini jika ingin menggunakan jQuery plugin tablesorter"
128
 
129
- #: easy-table.php:741
130
  msgid "Use TH for the first row?"
131
  msgstr "Gunakan TH untuk baris pertama?"
132
 
133
- #: easy-table.php:744
134
- msgid "Check this if you want to use first row as table head (required by tablesorter)"
 
 
135
  msgstr ""
136
 
137
- #: easy-table.php:748
138
  msgid "Load CSS?"
139
  msgstr "Muat CSS?"
140
 
141
- #: easy-table.php:751
142
- msgid "Check this to use CSS included in this plugin to styling table, you may unceck if you want to write your own style."
 
 
143
  msgstr "Ceklist ini untuk menyertakan CSS untuk penataan tampilan tabel."
144
 
145
- #: easy-table.php:755
146
  msgid "Table class"
147
  msgstr "Class tabel"
148
 
149
- #: easy-table.php:757
150
  msgid "Additional table class attribute."
151
  msgstr ""
152
 
153
- #: easy-table.php:761
154
  msgid "Table width"
155
  msgstr "Lebar tabel"
156
 
157
- #: easy-table.php:763
158
  msgid "Table width, in pixel or percent (may be overriden by CSS)"
159
  msgstr "Lebar tabel, dalam pixel atau persen (kemungkinan ditimpa oleh CSS)"
160
 
161
- #: easy-table.php:767
162
  msgid "Table align"
163
  msgstr "Perataan tabel"
164
 
165
- #: easy-table.php:769
166
  msgid "Table align, left/right/center (may be overriden by CSS)"
167
  msgstr "Perataan tabel, left/right/center (kemungkinan ditimpa oleh CSS)"
168
 
169
- #: easy-table.php:773
170
  msgid "Table border"
171
  msgstr "Garis tabel"
172
 
173
- #: easy-table.php:775
174
  msgid "Table border (may be overriden by CSS)"
175
  msgstr "Garis tabel (kemungkinan ditimpa oleh CSS)"
176
 
177
- #: easy-table.php:780
178
  msgid "Table options"
179
  msgstr "Pengaturan tabel"
180
 
181
- #: easy-table.php:784
182
  msgid "Theme selector"
183
  msgstr "Pemilihan tema"
184
 
185
- #: easy-table.php:789
186
  msgid "Default theme"
187
  msgstr "Tema bawaan"
188
 
189
- #: easy-table.php:793
190
  msgid "Select default theme of the table"
191
  msgstr "Pilih tema untuk tabel"
192
 
193
- #: easy-table.php:799
194
  #, fuzzy
195
  msgid "Data options"
196
  msgstr "Pengaturan tabel"
197
 
198
- #: easy-table.php:804
199
  msgid "Row limit"
200
  msgstr "Batas baris"
201
 
202
- #: easy-table.php:808
203
  msgid "Max row to convert to table, default 0 (unlimited)"
204
  msgstr ""
205
 
206
- #: easy-table.php:812
207
  msgid "Trim cell data?"
208
  msgstr ""
209
 
210
- #: easy-table.php:817
211
  msgid "Trim empty character around cell data"
212
  msgstr ""
213
 
214
- #: easy-table.php:823
215
  #, fuzzy
216
  msgid "Parser options"
217
  msgstr "Pengaturan parser"
218
 
219
- #: easy-table.php:824
220
  msgid "Do not change this unless you know what you're doing"
221
  msgstr "Jangan ganti bagian ini kecuali Anda mengetahuinya"
222
 
223
- #: easy-table.php:830
224
  msgid "New line replacement"
225
  msgstr "Pengganti baris baru"
226
 
227
- #: easy-table.php:833
228
- msgid "Since new line is used by parser, you need specify character as a replacement."
 
 
229
  msgstr ""
230
 
231
- #: easy-table.php:836
232
  msgid "Row terminator"
233
  msgstr "Pembatas baris"
234
 
235
- #: easy-table.php:840
236
  msgid ""
237
- "This caharacter will converted into new row. Default value \\n"
238
- " (this is invisible character when you press Enter). If your new line not converted as new row in the table, try use \\r instead."
 
239
  msgstr ""
240
 
241
- #: easy-table.php:843
242
  msgid "Delimiter"
243
  msgstr "Pemisah"
244
 
245
- #: easy-table.php:846
246
  msgid "CSV delimiter (default is comma)"
247
  msgstr ""
248
 
249
- #: easy-table.php:849
250
  msgid "Enclosure"
251
  msgstr ""
252
 
253
- #: easy-table.php:852
254
  msgid "CSV enclosure (default is double quote)"
255
  msgstr ""
256
 
257
- #: easy-table.php:855
258
  msgid "Escape"
259
  msgstr ""
260
 
261
- #: easy-table.php:858
262
  msgid "CSV escape (default is backslash)"
263
  msgstr ""
264
 
265
- #: easy-table.php:861
266
  msgid "Allow read CSV from file?"
267
  msgstr "Bolehkan membaca CSV dari file?"
268
 
269
- #: easy-table.php:864
270
  msgid "Check this if you also want to convert CSV file to table"
271
  msgstr "Ceklist ini jika Anda juga ingin merubah file CSV ke tabel"
272
 
273
- #: easy-table.php:872
274
  msgid "Save"
275
  msgstr "Simpan"
276
 
277
- #: easy-table.php:896
278
  msgid "Possible parameter"
279
  msgstr "Parameter yang dimungkinkan"
280
 
281
- #: easy-table.php:897
282
- msgid "These parameters commonly can override global options in the left side of this page. Example usage:"
283
- msgstr "Parameter berikut ini secara umum dapat menggantikan setingan global yang ada di sebelah kiri halaman ini. Contoh penggunaan:"
 
 
 
 
284
 
285
- #: easy-table.php:900
286
- #: easy-table.php:901
287
- #: easy-table.php:902
288
- #: easy-table.php:903
289
- #: easy-table.php:904
290
- #: easy-table.php:905
291
- #: easy-table.php:906
292
- #: easy-table.php:907
293
- #: easy-table.php:908
294
- #: easy-table.php:909
295
- #: easy-table.php:910
296
- #: easy-table.php:911
297
- #: easy-table.php:912
298
- #: easy-table.php:913
299
- #: easy-table.php:914
300
- #: easy-table.php:915
301
- #: easy-table.php:916
302
  msgid "default value"
303
  msgstr "nilai bawaan"
304
 
305
- #: easy-table.php:900
306
  msgid "another value"
307
  msgstr "nilai lainnya"
308
 
309
- #: easy-table.php:919
310
- msgid "parameter is for initial sorting order. Value for each column separated by comma. See example below:"
311
- msgstr "parameter untuk penyortiran bawaan. Nilai dari masing masih kolom dipisahkan dengan koma. Lihat contoh berikut:"
 
 
 
 
312
 
313
- #: easy-table.php:921
314
- msgid "Set initial order of first column descending and second column ascending:"
 
315
  msgstr ""
316
 
317
- #: easy-table.php:927
318
  msgid "Set initial order of second column descending:"
319
  msgstr ""
320
 
321
- #: easy-table.php:933
322
- msgid "Additionaly, sort option also can be set via sort attr in a cell. See example below"
 
 
323
  msgstr ""
324
 
325
- #: easy-table.php:937
326
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
327
  msgstr ""
328
 
329
- #: easy-table.php:938
330
  msgid "Example"
331
  msgstr "Contoh"
332
 
333
- #: easy-table.php:947
334
  msgid "To set initial sort order, this is intended to TH (first row) only."
335
  msgstr ""
336
 
337
- #: easy-table.php:948
338
  msgid "Example: sort second column descending "
339
  msgstr ""
340
 
341
- #: easy-table.php:965
342
  msgid "Test area:"
343
  msgstr "Area test:"
344
 
345
- #: easy-table.php:970
346
  msgid "Reset"
347
  msgstr "Reset"
348
 
349
- #: easy-table.php:971
350
  msgid "Update preview"
351
  msgstr "Perbaharui pratinjau"
352
 
353
- #: easy-table.php:973
354
  msgid "Preview"
355
  msgstr "Pratinjau"
356
 
357
- #: easy-table.php:980
358
  msgid "Easy Table theme editor"
359
  msgstr ""
360
 
361
- #: easy-table.php:1010
362
- msgid "I have tried to make this plugin can be used as easy as possible and documentation as complete as possible. However it is also possible that you are still confused. Therefore feel free to ask. I would be happy to answer."
363
- msgstr "Saya telah membuat plugin ini semudah mungkin digunakan dan juga dokumentasi yang selengkap mungkin. Meskipun begitu mungkin Anda masih bingung. Untuk itu jangan sungkan-sungkan untuk bertanya. Saya akan senang menjawabnya."
 
 
 
 
 
 
364
 
365
- #: easy-table.php:1011
366
- msgid "You can use this discussion to get support, request feature or reporting bug."
 
367
  msgstr ""
368
 
369
- #: easy-table.php:1012
370
  msgid "Before you ask something, make sure you have read documentation here!"
371
- msgstr "Sebelum bertanya sesuatu, pastikan Anda telah membaca dokumentasi di sini!"
 
372
 
373
- #: easy-table.php:1071
374
  msgid "Install Now"
375
  msgstr ""
376
 
377
- #: easy-table.php:1075
378
  msgid "Install Update Now"
379
  msgstr ""
380
 
381
- #: easy-table.php:1078
382
  #, php-format
383
  msgid "Newer Version (%s) Installed"
384
  msgstr ""
385
 
386
- #: easy-table.php:1081
387
  msgid "Latest Version Installed"
388
  msgstr ""
389
 
390
- #: easy-table.php:1090
391
  msgid "Latest Version:"
392
  msgstr ""
393
 
394
- #: easy-table.php:1092
395
  msgid "Author:"
396
  msgstr ""
397
 
398
- #: easy-table.php:1094
399
  msgid "Last Updated:"
400
  msgstr ""
401
 
402
- #: easy-table.php:1095
403
  #, php-format
404
  msgid "%s ago"
405
  msgstr ""
406
 
407
- #: easy-table.php:1097
408
  msgid "Requires WordPress Version:"
409
  msgstr ""
410
 
411
- #: easy-table.php:1097
412
  #, php-format
413
  msgid "%s or higher"
414
  msgstr ""
415
 
416
- #: easy-table.php:1099
417
  msgid "Compatible up to:"
418
  msgstr ""
419
 
420
- #: easy-table.php:1101
421
  msgid "Downloaded:"
422
  msgstr ""
423
 
424
- #: easy-table.php:1103
425
  msgid "WordPress.org Plugin Page &#187;"
426
  msgstr ""
427
 
428
- #: easy-table.php:1105
429
  msgid "Plugin Homepage &#187;"
430
  msgstr ""
431
 
432
- #: easy-table.php:1109
433
  msgid "Average Rating"
434
  msgstr "Penilaian rata-rata"
435
 
436
- #: easy-table.php:1127
437
  msgid "Support my work with donation"
438
  msgstr "Dukung karya saya dengan sumbangan"
439
 
440
- #: easy-table.php:1136
441
  msgid "Don't have money? No problem, you can rate my plugin instead."
442
  msgstr "Tidak punya uang? Tidak masalah, Anda cukup memberi rating plugin ini."
443
 
444
- #: easy-table.php:1137
445
  msgid "Click here to rate"
446
  msgstr "Klik di sini untuk memberi nilai"
447
 
448
- #: easy-table.php:1139
449
  msgid "Thanks to"
450
  msgstr "Terimakasih kepada"
451
 
452
- #: easy-table.php:1145
453
- #: easy-table.php:1146
454
- #: easy-table.php:1147
455
- #: easy-table.php:1148
456
  msgid "by"
457
  msgstr "oleh"
458
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: easy-table 1.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-05-13 04:14+0700\n"
6
+ "PO-Revision-Date: 2013-05-13 04:14+0700\n"
7
  "Last-Translator: takien <imissuaja@yahoo.com>\n"
8
  "Language-Team: takien.com <contact@takien.com>\n"
9
+ "Language: id_ID\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.5.5\n"
 
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: easy-table.php:588
20
  msgid "Settings"
21
  msgstr "Pengaturan"
22
 
23
+ #: easy-table.php:600
24
  msgid "Instruction"
25
  msgstr "Petunjuk"
26
 
27
+ #: easy-table.php:601
28
+ msgid ""
29
+ "Once plugin installed, go to plugin options page to configure some options"
30
  msgstr "Setelah plugin terpasang, kemudian buka halaman penyetelan plugin"
31
 
32
+ #: easy-table.php:602
33
  msgid "You are ready to write a table in post or page."
34
  msgstr "Anda telah siap untuk membuat tabel di post atau halaman."
35
 
36
+ #: easy-table.php:603
37
+ msgid ""
38
+ "To be able write table in widget you have to check <em>Enable render table "
39
+ "in widget</em> option in the option page."
40
  msgstr ""
41
 
42
+ #: easy-table.php:622
43
  #, php-format
44
  msgid "%s Option"
45
  msgstr "Pengaturan %s"
46
 
47
+ #: easy-table.php:627
48
  msgid "Support"
49
  msgstr "Dukungan"
50
 
51
+ #: easy-table.php:628
52
  msgid "About"
53
  msgstr "Tentang"
54
 
55
+ #: easy-table.php:638
56
  msgid "Show/hide help button"
57
  msgstr "Tampilkan/Sembunyikan tombol bantuan"
58
 
59
+ #: easy-table.php:639
60
  msgid "General options"
61
  msgstr "Pengaturan umum"
62
 
63
+ #: easy-table.php:644
64
  msgid "Short code tag"
65
  msgstr ""
66
 
67
+ #: easy-table.php:646
68
  msgid "Shortcode tag, type 'table' if you want to use [table] short tag."
69
  msgstr ""
70
 
71
+ #: easy-table.php:652 easy-table.php:917
 
72
  msgid "Cell attribute tag"
73
  msgstr ""
74
 
75
+ #: easy-table.php:654
76
  msgid "Cell attribute tag, default is attr."
77
  msgstr ""
78
 
79
+ #: easy-table.php:659
80
  msgid "Also render table in widget?"
81
  msgstr "Tampilkan tabel di widget?"
82
 
83
+ #: easy-table.php:661
84
  msgid "Check this if you want the table could be rendered in widget."
85
  msgstr ""
86
 
87
+ #: easy-table.php:666
88
  msgid "Only load JS/CSS when in this condition"
89
  msgstr ""
90
 
91
+ #: easy-table.php:667
92
  msgid "Please check in where JavaScript and CSS should be loaded"
93
  msgstr ""
94
 
95
+ #: easy-table.php:671
96
  msgid "Single"
97
  msgstr ""
98
 
99
+ #: easy-table.php:677
100
  msgid "Page"
101
  msgstr ""
102
 
103
+ #: easy-table.php:683
104
  msgid "Front page"
105
  msgstr ""
106
 
107
+ #: easy-table.php:689
108
  msgid "Archive page"
109
  msgstr ""
110
 
111
+ #: easy-table.php:695
112
  msgid "Search page"
113
  msgstr ""
114
 
115
+ #: easy-table.php:703
116
  msgid "Load script on footer?"
117
  msgstr "Muat script di footer?"
118
 
119
+ #: easy-table.php:705
120
+ msgid ""
121
+ "Check this if you want the script to be rendered in footer. Try to check or "
122
+ "uncheck this if you experienced conflict with another JavaScript library "
123
+ "(not guaranteed though)."
124
  msgstr ""
125
 
126
+ #: easy-table.php:716
127
  msgid "Use tablesorter?"
128
  msgstr "Gunakan tablesorter?"
129
 
130
+ #: easy-table.php:719
131
  msgid "Check this to use tablesorter jQuery plugin"
132
  msgstr "Ceklist ini jika ingin menggunakan jQuery plugin tablesorter"
133
 
134
+ #: easy-table.php:723
135
  msgid "Use TH for the first row?"
136
  msgstr "Gunakan TH untuk baris pertama?"
137
 
138
+ #: easy-table.php:726
139
+ msgid ""
140
+ "Check this if you want to use first row as table head (required by "
141
+ "tablesorter)"
142
  msgstr ""
143
 
144
+ #: easy-table.php:730
145
  msgid "Load CSS?"
146
  msgstr "Muat CSS?"
147
 
148
+ #: easy-table.php:733
149
+ msgid ""
150
+ "Check this to use CSS included in this plugin to styling table, you may "
151
+ "unceck if you want to write your own style."
152
  msgstr "Ceklist ini untuk menyertakan CSS untuk penataan tampilan tabel."
153
 
154
+ #: easy-table.php:737
155
  msgid "Table class"
156
  msgstr "Class tabel"
157
 
158
+ #: easy-table.php:739
159
  msgid "Additional table class attribute."
160
  msgstr ""
161
 
162
+ #: easy-table.php:743
163
  msgid "Table width"
164
  msgstr "Lebar tabel"
165
 
166
+ #: easy-table.php:745
167
  msgid "Table width, in pixel or percent (may be overriden by CSS)"
168
  msgstr "Lebar tabel, dalam pixel atau persen (kemungkinan ditimpa oleh CSS)"
169
 
170
+ #: easy-table.php:749
171
  msgid "Table align"
172
  msgstr "Perataan tabel"
173
 
174
+ #: easy-table.php:751
175
  msgid "Table align, left/right/center (may be overriden by CSS)"
176
  msgstr "Perataan tabel, left/right/center (kemungkinan ditimpa oleh CSS)"
177
 
178
+ #: easy-table.php:755
179
  msgid "Table border"
180
  msgstr "Garis tabel"
181
 
182
+ #: easy-table.php:757
183
  msgid "Table border (may be overriden by CSS)"
184
  msgstr "Garis tabel (kemungkinan ditimpa oleh CSS)"
185
 
186
+ #: easy-table.php:762
187
  msgid "Table options"
188
  msgstr "Pengaturan tabel"
189
 
190
+ #: easy-table.php:766
191
  msgid "Theme selector"
192
  msgstr "Pemilihan tema"
193
 
194
+ #: easy-table.php:771
195
  msgid "Default theme"
196
  msgstr "Tema bawaan"
197
 
198
+ #: easy-table.php:775
199
  msgid "Select default theme of the table"
200
  msgstr "Pilih tema untuk tabel"
201
 
202
+ #: easy-table.php:781
203
  #, fuzzy
204
  msgid "Data options"
205
  msgstr "Pengaturan tabel"
206
 
207
+ #: easy-table.php:786
208
  msgid "Row limit"
209
  msgstr "Batas baris"
210
 
211
+ #: easy-table.php:790
212
  msgid "Max row to convert to table, default 0 (unlimited)"
213
  msgstr ""
214
 
215
+ #: easy-table.php:794
216
  msgid "Trim cell data?"
217
  msgstr ""
218
 
219
+ #: easy-table.php:799
220
  msgid "Trim empty character around cell data"
221
  msgstr ""
222
 
223
+ #: easy-table.php:805
224
  #, fuzzy
225
  msgid "Parser options"
226
  msgstr "Pengaturan parser"
227
 
228
+ #: easy-table.php:806
229
  msgid "Do not change this unless you know what you're doing"
230
  msgstr "Jangan ganti bagian ini kecuali Anda mengetahuinya"
231
 
232
+ #: easy-table.php:812
233
  msgid "New line replacement"
234
  msgstr "Pengganti baris baru"
235
 
236
+ #: easy-table.php:815
237
+ msgid ""
238
+ "Since new line is used by parser, you need specify character as a "
239
+ "replacement."
240
  msgstr ""
241
 
242
+ #: easy-table.php:818
243
  msgid "Row terminator"
244
  msgstr "Pembatas baris"
245
 
246
+ #: easy-table.php:822
247
  msgid ""
248
+ "This caharacter will converted into new row. Default value \\n (this is "
249
+ "invisible character when you press Enter). If your new line not converted as "
250
+ "new row in the table, try use \\r instead."
251
  msgstr ""
252
 
253
+ #: easy-table.php:825
254
  msgid "Delimiter"
255
  msgstr "Pemisah"
256
 
257
+ #: easy-table.php:828
258
  msgid "CSV delimiter (default is comma)"
259
  msgstr ""
260
 
261
+ #: easy-table.php:831
262
  msgid "Enclosure"
263
  msgstr ""
264
 
265
+ #: easy-table.php:834
266
  msgid "CSV enclosure (default is double quote)"
267
  msgstr ""
268
 
269
+ #: easy-table.php:837
270
  msgid "Escape"
271
  msgstr ""
272
 
273
+ #: easy-table.php:840
274
  msgid "CSV escape (default is backslash)"
275
  msgstr ""
276
 
277
+ #: easy-table.php:843
278
  msgid "Allow read CSV from file?"
279
  msgstr "Bolehkan membaca CSV dari file?"
280
 
281
+ #: easy-table.php:846
282
  msgid "Check this if you also want to convert CSV file to table"
283
  msgstr "Ceklist ini jika Anda juga ingin merubah file CSV ke tabel"
284
 
285
+ #: easy-table.php:854
286
  msgid "Save"
287
  msgstr "Simpan"
288
 
289
+ #: easy-table.php:878
290
  msgid "Possible parameter"
291
  msgstr "Parameter yang dimungkinkan"
292
 
293
+ #: easy-table.php:879
294
+ msgid ""
295
+ "These parameters commonly can override global options in the left side of "
296
+ "this page. Example usage:"
297
+ msgstr ""
298
+ "Parameter berikut ini secara umum dapat menggantikan setingan global yang "
299
+ "ada di sebelah kiri halaman ini. Contoh penggunaan:"
300
 
301
+ #: easy-table.php:882 easy-table.php:883 easy-table.php:884 easy-table.php:885
302
+ #: easy-table.php:886 easy-table.php:887 easy-table.php:888 easy-table.php:889
303
+ #: easy-table.php:890 easy-table.php:891 easy-table.php:892 easy-table.php:893
304
+ #: easy-table.php:894 easy-table.php:895 easy-table.php:896 easy-table.php:897
305
+ #: easy-table.php:898
 
 
 
 
 
 
 
 
 
 
 
 
306
  msgid "default value"
307
  msgstr "nilai bawaan"
308
 
309
+ #: easy-table.php:882
310
  msgid "another value"
311
  msgstr "nilai lainnya"
312
 
313
+ #: easy-table.php:901
314
+ msgid ""
315
+ "parameter is for initial sorting order. Value for each column separated by "
316
+ "comma. See example below:"
317
+ msgstr ""
318
+ "parameter untuk penyortiran bawaan. Nilai dari masing masih kolom dipisahkan "
319
+ "dengan koma. Lihat contoh berikut:"
320
 
321
+ #: easy-table.php:903
322
+ msgid ""
323
+ "Set initial order of first column descending and second column ascending:"
324
  msgstr ""
325
 
326
+ #: easy-table.php:909
327
  msgid "Set initial order of second column descending:"
328
  msgstr ""
329
 
330
+ #: easy-table.php:915
331
+ msgid ""
332
+ "Additionaly, sort option also can be set via sort attr in a cell. See "
333
+ "example below"
334
  msgstr ""
335
 
336
+ #: easy-table.php:919
337
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
338
  msgstr ""
339
 
340
+ #: easy-table.php:920
341
  msgid "Example"
342
  msgstr "Contoh"
343
 
344
+ #: easy-table.php:929
345
  msgid "To set initial sort order, this is intended to TH (first row) only."
346
  msgstr ""
347
 
348
+ #: easy-table.php:930
349
  msgid "Example: sort second column descending "
350
  msgstr ""
351
 
352
+ #: easy-table.php:947
353
  msgid "Test area:"
354
  msgstr "Area test:"
355
 
356
+ #: easy-table.php:952
357
  msgid "Reset"
358
  msgstr "Reset"
359
 
360
+ #: easy-table.php:953
361
  msgid "Update preview"
362
  msgstr "Perbaharui pratinjau"
363
 
364
+ #: easy-table.php:955
365
  msgid "Preview"
366
  msgstr "Pratinjau"
367
 
368
+ #: easy-table.php:962
369
  msgid "Easy Table theme editor"
370
  msgstr ""
371
 
372
+ #: easy-table.php:992
373
+ msgid ""
374
+ "I have tried to make this plugin can be used as easy as possible and "
375
+ "documentation as complete as possible. However it is also possible that you "
376
+ "are still confused. Therefore feel free to ask. I would be happy to answer."
377
+ msgstr ""
378
+ "Saya telah membuat plugin ini semudah mungkin digunakan dan juga dokumentasi "
379
+ "yang selengkap mungkin. Meskipun begitu mungkin Anda masih bingung. Untuk "
380
+ "itu jangan sungkan-sungkan untuk bertanya. Saya akan senang menjawabnya."
381
 
382
+ #: easy-table.php:993
383
+ msgid ""
384
+ "You can use this discussion to get support, request feature or reporting bug."
385
  msgstr ""
386
 
387
+ #: easy-table.php:994
388
  msgid "Before you ask something, make sure you have read documentation here!"
389
+ msgstr ""
390
+ "Sebelum bertanya sesuatu, pastikan Anda telah membaca dokumentasi di sini!"
391
 
392
+ #: easy-table.php:1053
393
  msgid "Install Now"
394
  msgstr ""
395
 
396
+ #: easy-table.php:1057
397
  msgid "Install Update Now"
398
  msgstr ""
399
 
400
+ #: easy-table.php:1060
401
  #, php-format
402
  msgid "Newer Version (%s) Installed"
403
  msgstr ""
404
 
405
+ #: easy-table.php:1063
406
  msgid "Latest Version Installed"
407
  msgstr ""
408
 
409
+ #: easy-table.php:1072
410
  msgid "Latest Version:"
411
  msgstr ""
412
 
413
+ #: easy-table.php:1074
414
  msgid "Author:"
415
  msgstr ""
416
 
417
+ #: easy-table.php:1076
418
  msgid "Last Updated:"
419
  msgstr ""
420
 
421
+ #: easy-table.php:1077
422
  #, php-format
423
  msgid "%s ago"
424
  msgstr ""
425
 
426
+ #: easy-table.php:1079
427
  msgid "Requires WordPress Version:"
428
  msgstr ""
429
 
430
+ #: easy-table.php:1079
431
  #, php-format
432
  msgid "%s or higher"
433
  msgstr ""
434
 
435
+ #: easy-table.php:1081
436
  msgid "Compatible up to:"
437
  msgstr ""
438
 
439
+ #: easy-table.php:1083
440
  msgid "Downloaded:"
441
  msgstr ""
442
 
443
+ #: easy-table.php:1085
444
  msgid "WordPress.org Plugin Page &#187;"
445
  msgstr ""
446
 
447
+ #: easy-table.php:1087
448
  msgid "Plugin Homepage &#187;"
449
  msgstr ""
450
 
451
+ #: easy-table.php:1091
452
  msgid "Average Rating"
453
  msgstr "Penilaian rata-rata"
454
 
455
+ #: easy-table.php:1109
456
  msgid "Support my work with donation"
457
  msgstr "Dukung karya saya dengan sumbangan"
458
 
459
+ #: easy-table.php:1118
460
  msgid "Don't have money? No problem, you can rate my plugin instead."
461
  msgstr "Tidak punya uang? Tidak masalah, Anda cukup memberi rating plugin ini."
462
 
463
+ #: easy-table.php:1119
464
  msgid "Click here to rate"
465
  msgstr "Klik di sini untuk memberi nilai"
466
 
467
+ #: easy-table.php:1121
468
  msgid "Thanks to"
469
  msgstr "Terimakasih kepada"
470
 
471
+ #: easy-table.php:1127 easy-table.php:1128 easy-table.php:1129
472
+ #: easy-table.php:1130
 
 
473
  msgid "by"
474
  msgstr "oleh"
475
 
languages/english.mo CHANGED
Binary file
languages/english.po CHANGED
@@ -1,456 +1,464 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: easy-table 1.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-01-29 08:47+0700\n"
6
- "PO-Revision-Date: 2013-01-29 08:48+0700\n"
7
  "Last-Translator: takien <imissuaja@yahoo.com>\n"
8
  "Language-Team: takien.com <contact@takien.com>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Basepath: ../\n"
14
- "X-Poedit-Language: English\n"
15
- "X-Poedit-Country: UNITED STATES\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: easy-table.php:606
20
  msgid "Settings"
21
  msgstr ""
22
 
23
- #: easy-table.php:618
24
  msgid "Instruction"
25
  msgstr ""
26
 
27
- #: easy-table.php:619
28
- msgid "Once plugin installed, go to plugin options page to configure some options"
 
29
  msgstr ""
30
 
31
- #: easy-table.php:620
32
  msgid "You are ready to write a table in post or page."
33
  msgstr ""
34
 
35
- #: easy-table.php:621
36
- msgid "To be able write table in widget you have to check <em>Enable render table in widget</em> option in the option page."
 
 
37
  msgstr ""
38
 
39
- #: easy-table.php:640
40
  #, php-format
41
  msgid "%s Option"
42
  msgstr ""
43
 
44
- #: easy-table.php:645
45
  msgid "Support"
46
  msgstr ""
47
 
48
- #: easy-table.php:646
49
  msgid "About"
50
  msgstr ""
51
 
52
- #: easy-table.php:656
53
  msgid "Show/hide help button"
54
  msgstr ""
55
 
56
- #: easy-table.php:657
57
  msgid "General options"
58
  msgstr ""
59
 
60
- #: easy-table.php:662
61
  msgid "Short code tag"
62
  msgstr ""
63
 
64
- #: easy-table.php:664
65
  msgid "Shortcode tag, type 'table' if you want to use [table] short tag."
66
  msgstr ""
67
 
68
- #: easy-table.php:670
69
- #: easy-table.php:935
70
  msgid "Cell attribute tag"
71
  msgstr ""
72
 
73
- #: easy-table.php:672
74
  msgid "Cell attribute tag, default is attr."
75
  msgstr ""
76
 
77
- #: easy-table.php:677
78
  msgid "Also render table in widget?"
79
  msgstr ""
80
 
81
- #: easy-table.php:679
82
  msgid "Check this if you want the table could be rendered in widget."
83
  msgstr ""
84
 
85
- #: easy-table.php:684
86
  msgid "Only load JS/CSS when in this condition"
87
  msgstr ""
88
 
89
- #: easy-table.php:685
90
  msgid "Please check in where JavaScript and CSS should be loaded"
91
  msgstr ""
92
 
93
- #: easy-table.php:689
94
  msgid "Single"
95
  msgstr ""
96
 
97
- #: easy-table.php:695
98
  msgid "Page"
99
  msgstr ""
100
 
101
- #: easy-table.php:701
102
  msgid "Front page"
103
  msgstr ""
104
 
105
- #: easy-table.php:707
106
  msgid "Archive page"
107
  msgstr ""
108
 
109
- #: easy-table.php:713
110
  msgid "Search page"
111
  msgstr ""
112
 
113
- #: easy-table.php:721
114
  msgid "Load script on footer?"
115
  msgstr ""
116
 
117
- #: easy-table.php:723
118
- msgid "Check this if you want the script to be rendered in footer. Try to check or uncheck this if you experienced conflict with another JavaScript library (not guaranteed though)."
 
 
 
119
  msgstr ""
120
 
121
- #: easy-table.php:734
122
  msgid "Use tablesorter?"
123
  msgstr ""
124
 
125
- #: easy-table.php:737
126
  msgid "Check this to use tablesorter jQuery plugin"
127
  msgstr ""
128
 
129
- #: easy-table.php:741
130
  msgid "Use TH for the first row?"
131
  msgstr ""
132
 
133
- #: easy-table.php:744
134
- msgid "Check this if you want to use first row as table head (required by tablesorter)"
 
 
135
  msgstr ""
136
 
137
- #: easy-table.php:748
138
  msgid "Load CSS?"
139
  msgstr ""
140
 
141
- #: easy-table.php:751
142
- msgid "Check this to use CSS included in this plugin to styling table, you may unceck if you want to write your own style."
 
 
143
  msgstr ""
144
 
145
- #: easy-table.php:755
146
  msgid "Table class"
147
  msgstr ""
148
 
149
- #: easy-table.php:757
150
  msgid "Additional table class attribute."
151
  msgstr ""
152
 
153
- #: easy-table.php:761
154
  msgid "Table width"
155
  msgstr ""
156
 
157
- #: easy-table.php:763
158
  msgid "Table width, in pixel or percent (may be overriden by CSS)"
159
  msgstr ""
160
 
161
- #: easy-table.php:767
162
  msgid "Table align"
163
  msgstr ""
164
 
165
- #: easy-table.php:769
166
  msgid "Table align, left/right/center (may be overriden by CSS)"
167
  msgstr ""
168
 
169
- #: easy-table.php:773
170
  msgid "Table border"
171
  msgstr ""
172
 
173
- #: easy-table.php:775
174
  msgid "Table border (may be overriden by CSS)"
175
  msgstr ""
176
 
177
- #: easy-table.php:780
178
  msgid "Table options"
179
  msgstr ""
180
 
181
- #: easy-table.php:784
182
  msgid "Theme selector"
183
  msgstr ""
184
 
185
- #: easy-table.php:789
186
  msgid "Default theme"
187
  msgstr ""
188
 
189
- #: easy-table.php:793
190
  msgid "Select default theme of the table"
191
  msgstr ""
192
 
193
- #: easy-table.php:799
194
  msgid "Data options"
195
  msgstr ""
196
 
197
- #: easy-table.php:804
198
  msgid "Row limit"
199
  msgstr ""
200
 
201
- #: easy-table.php:808
202
  msgid "Max row to convert to table, default 0 (unlimited)"
203
  msgstr ""
204
 
205
- #: easy-table.php:812
206
  msgid "Trim cell data?"
207
  msgstr ""
208
 
209
- #: easy-table.php:817
210
  msgid "Trim empty character around cell data"
211
  msgstr ""
212
 
213
- #: easy-table.php:823
214
  msgid "Parser options"
215
  msgstr ""
216
 
217
- #: easy-table.php:824
218
  msgid "Do not change this unless you know what you're doing"
219
  msgstr ""
220
 
221
- #: easy-table.php:830
222
  msgid "New line replacement"
223
  msgstr ""
224
 
225
- #: easy-table.php:833
226
- msgid "Since new line is used by parser, you need specify character as a replacement."
 
 
227
  msgstr ""
228
 
229
- #: easy-table.php:836
230
  msgid "Row terminator"
231
  msgstr ""
232
 
233
- #: easy-table.php:840
234
  msgid ""
235
- "This caharacter will converted into new row. Default value \\n"
236
- " (this is invisible character when you press Enter). If your new line not converted as new row in the table, try use \\r instead."
 
237
  msgstr ""
238
 
239
- #: easy-table.php:843
240
  msgid "Delimiter"
241
  msgstr ""
242
 
243
- #: easy-table.php:846
244
  msgid "CSV delimiter (default is comma)"
245
  msgstr ""
246
 
247
- #: easy-table.php:849
248
  msgid "Enclosure"
249
  msgstr ""
250
 
251
- #: easy-table.php:852
252
  msgid "CSV enclosure (default is double quote)"
253
  msgstr ""
254
 
255
- #: easy-table.php:855
256
  msgid "Escape"
257
  msgstr ""
258
 
259
- #: easy-table.php:858
260
  msgid "CSV escape (default is backslash)"
261
  msgstr ""
262
 
263
- #: easy-table.php:861
264
  msgid "Allow read CSV from file?"
265
  msgstr ""
266
 
267
- #: easy-table.php:864
268
  msgid "Check this if you also want to convert CSV file to table"
269
  msgstr ""
270
 
271
- #: easy-table.php:872
272
  msgid "Save"
273
  msgstr ""
274
 
275
- #: easy-table.php:896
276
  msgid "Possible parameter"
277
  msgstr ""
278
 
279
- #: easy-table.php:897
280
- msgid "These parameters commonly can override global options in the left side of this page. Example usage:"
 
 
281
  msgstr ""
282
 
283
- #: easy-table.php:900
284
- #: easy-table.php:901
285
- #: easy-table.php:902
286
- #: easy-table.php:903
287
- #: easy-table.php:904
288
- #: easy-table.php:905
289
- #: easy-table.php:906
290
- #: easy-table.php:907
291
- #: easy-table.php:908
292
- #: easy-table.php:909
293
- #: easy-table.php:910
294
- #: easy-table.php:911
295
- #: easy-table.php:912
296
- #: easy-table.php:913
297
- #: easy-table.php:914
298
- #: easy-table.php:915
299
- #: easy-table.php:916
300
  msgid "default value"
301
  msgstr ""
302
 
303
- #: easy-table.php:900
304
  msgid "another value"
305
  msgstr ""
306
 
307
- #: easy-table.php:919
308
- msgid "parameter is for initial sorting order. Value for each column separated by comma. See example below:"
 
 
309
  msgstr ""
310
 
311
- #: easy-table.php:921
312
- msgid "Set initial order of first column descending and second column ascending:"
 
313
  msgstr ""
314
 
315
- #: easy-table.php:927
316
  msgid "Set initial order of second column descending:"
317
  msgstr ""
318
 
319
- #: easy-table.php:933
320
- msgid "Additionaly, sort option also can be set via sort attr in a cell. See example below"
 
 
321
  msgstr ""
322
 
323
- #: easy-table.php:937
324
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
325
  msgstr ""
326
 
327
- #: easy-table.php:938
328
  msgid "Example"
329
  msgstr ""
330
 
331
- #: easy-table.php:947
332
  msgid "To set initial sort order, this is intended to TH (first row) only."
333
  msgstr ""
334
 
335
- #: easy-table.php:948
336
  msgid "Example: sort second column descending "
337
  msgstr ""
338
 
339
- #: easy-table.php:965
340
  msgid "Test area:"
341
  msgstr ""
342
 
343
- #: easy-table.php:970
344
  msgid "Reset"
345
  msgstr ""
346
 
347
- #: easy-table.php:971
348
  msgid "Update preview"
349
  msgstr ""
350
 
351
- #: easy-table.php:973
352
  msgid "Preview"
353
  msgstr ""
354
 
355
- #: easy-table.php:980
356
  msgid "Easy Table theme editor"
357
  msgstr ""
358
 
359
- #: easy-table.php:1010
360
- msgid "I have tried to make this plugin can be used as easy as possible and documentation as complete as possible. However it is also possible that you are still confused. Therefore feel free to ask. I would be happy to answer."
 
 
 
361
  msgstr ""
362
 
363
- #: easy-table.php:1011
364
- msgid "You can use this discussion to get support, request feature or reporting bug."
 
365
  msgstr ""
366
 
367
- #: easy-table.php:1012
368
  msgid "Before you ask something, make sure you have read documentation here!"
369
  msgstr ""
370
 
371
- #: easy-table.php:1071
372
  msgid "Install Now"
373
  msgstr ""
374
 
375
- #: easy-table.php:1075
376
  msgid "Install Update Now"
377
  msgstr ""
378
 
379
- #: easy-table.php:1078
380
  #, php-format
381
  msgid "Newer Version (%s) Installed"
382
  msgstr ""
383
 
384
- #: easy-table.php:1081
385
  msgid "Latest Version Installed"
386
  msgstr ""
387
 
388
- #: easy-table.php:1090
389
  msgid "Latest Version:"
390
  msgstr ""
391
 
392
- #: easy-table.php:1092
393
  msgid "Author:"
394
  msgstr ""
395
 
396
- #: easy-table.php:1094
397
  msgid "Last Updated:"
398
  msgstr ""
399
 
400
- #: easy-table.php:1095
401
  #, php-format
402
  msgid "%s ago"
403
  msgstr ""
404
 
405
- #: easy-table.php:1097
406
  msgid "Requires WordPress Version:"
407
  msgstr ""
408
 
409
- #: easy-table.php:1097
410
  #, php-format
411
  msgid "%s or higher"
412
  msgstr ""
413
 
414
- #: easy-table.php:1099
415
  msgid "Compatible up to:"
416
  msgstr ""
417
 
418
- #: easy-table.php:1101
419
  msgid "Downloaded:"
420
  msgstr ""
421
 
422
- #: easy-table.php:1103
423
  msgid "WordPress.org Plugin Page &#187;"
424
  msgstr ""
425
 
426
- #: easy-table.php:1105
427
  msgid "Plugin Homepage &#187;"
428
  msgstr ""
429
 
430
- #: easy-table.php:1109
431
  msgid "Average Rating"
432
  msgstr ""
433
 
434
- #: easy-table.php:1127
435
  msgid "Support my work with donation"
436
  msgstr ""
437
 
438
- #: easy-table.php:1136
439
  msgid "Don't have money? No problem, you can rate my plugin instead."
440
  msgstr ""
441
 
442
- #: easy-table.php:1137
443
  msgid "Click here to rate"
444
  msgstr ""
445
 
446
- #: easy-table.php:1139
447
  msgid "Thanks to"
448
  msgstr ""
449
 
450
- #: easy-table.php:1145
451
- #: easy-table.php:1146
452
- #: easy-table.php:1147
453
- #: easy-table.php:1148
454
  msgid "by"
455
  msgstr ""
456
-
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: easy-table 1.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-05-13 04:13+0700\n"
6
+ "PO-Revision-Date: 2013-05-13 04:13+0700\n"
7
  "Last-Translator: takien <imissuaja@yahoo.com>\n"
8
  "Language-Team: takien.com <contact@takien.com>\n"
9
+ "Language: en_US\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.5.5\n"
 
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: easy-table.php:588
20
  msgid "Settings"
21
  msgstr ""
22
 
23
+ #: easy-table.php:600
24
  msgid "Instruction"
25
  msgstr ""
26
 
27
+ #: easy-table.php:601
28
+ msgid ""
29
+ "Once plugin installed, go to plugin options page to configure some options"
30
  msgstr ""
31
 
32
+ #: easy-table.php:602
33
  msgid "You are ready to write a table in post or page."
34
  msgstr ""
35
 
36
+ #: easy-table.php:603
37
+ msgid ""
38
+ "To be able write table in widget you have to check <em>Enable render table "
39
+ "in widget</em> option in the option page."
40
  msgstr ""
41
 
42
+ #: easy-table.php:622
43
  #, php-format
44
  msgid "%s Option"
45
  msgstr ""
46
 
47
+ #: easy-table.php:627
48
  msgid "Support"
49
  msgstr ""
50
 
51
+ #: easy-table.php:628
52
  msgid "About"
53
  msgstr ""
54
 
55
+ #: easy-table.php:638
56
  msgid "Show/hide help button"
57
  msgstr ""
58
 
59
+ #: easy-table.php:639
60
  msgid "General options"
61
  msgstr ""
62
 
63
+ #: easy-table.php:644
64
  msgid "Short code tag"
65
  msgstr ""
66
 
67
+ #: easy-table.php:646
68
  msgid "Shortcode tag, type 'table' if you want to use [table] short tag."
69
  msgstr ""
70
 
71
+ #: easy-table.php:652 easy-table.php:917
 
72
  msgid "Cell attribute tag"
73
  msgstr ""
74
 
75
+ #: easy-table.php:654
76
  msgid "Cell attribute tag, default is attr."
77
  msgstr ""
78
 
79
+ #: easy-table.php:659
80
  msgid "Also render table in widget?"
81
  msgstr ""
82
 
83
+ #: easy-table.php:661
84
  msgid "Check this if you want the table could be rendered in widget."
85
  msgstr ""
86
 
87
+ #: easy-table.php:666
88
  msgid "Only load JS/CSS when in this condition"
89
  msgstr ""
90
 
91
+ #: easy-table.php:667
92
  msgid "Please check in where JavaScript and CSS should be loaded"
93
  msgstr ""
94
 
95
+ #: easy-table.php:671
96
  msgid "Single"
97
  msgstr ""
98
 
99
+ #: easy-table.php:677
100
  msgid "Page"
101
  msgstr ""
102
 
103
+ #: easy-table.php:683
104
  msgid "Front page"
105
  msgstr ""
106
 
107
+ #: easy-table.php:689
108
  msgid "Archive page"
109
  msgstr ""
110
 
111
+ #: easy-table.php:695
112
  msgid "Search page"
113
  msgstr ""
114
 
115
+ #: easy-table.php:703
116
  msgid "Load script on footer?"
117
  msgstr ""
118
 
119
+ #: easy-table.php:705
120
+ msgid ""
121
+ "Check this if you want the script to be rendered in footer. Try to check or "
122
+ "uncheck this if you experienced conflict with another JavaScript library "
123
+ "(not guaranteed though)."
124
  msgstr ""
125
 
126
+ #: easy-table.php:716
127
  msgid "Use tablesorter?"
128
  msgstr ""
129
 
130
+ #: easy-table.php:719
131
  msgid "Check this to use tablesorter jQuery plugin"
132
  msgstr ""
133
 
134
+ #: easy-table.php:723
135
  msgid "Use TH for the first row?"
136
  msgstr ""
137
 
138
+ #: easy-table.php:726
139
+ msgid ""
140
+ "Check this if you want to use first row as table head (required by "
141
+ "tablesorter)"
142
  msgstr ""
143
 
144
+ #: easy-table.php:730
145
  msgid "Load CSS?"
146
  msgstr ""
147
 
148
+ #: easy-table.php:733
149
+ msgid ""
150
+ "Check this to use CSS included in this plugin to styling table, you may "
151
+ "unceck if you want to write your own style."
152
  msgstr ""
153
 
154
+ #: easy-table.php:737
155
  msgid "Table class"
156
  msgstr ""
157
 
158
+ #: easy-table.php:739
159
  msgid "Additional table class attribute."
160
  msgstr ""
161
 
162
+ #: easy-table.php:743
163
  msgid "Table width"
164
  msgstr ""
165
 
166
+ #: easy-table.php:745
167
  msgid "Table width, in pixel or percent (may be overriden by CSS)"
168
  msgstr ""
169
 
170
+ #: easy-table.php:749
171
  msgid "Table align"
172
  msgstr ""
173
 
174
+ #: easy-table.php:751
175
  msgid "Table align, left/right/center (may be overriden by CSS)"
176
  msgstr ""
177
 
178
+ #: easy-table.php:755
179
  msgid "Table border"
180
  msgstr ""
181
 
182
+ #: easy-table.php:757
183
  msgid "Table border (may be overriden by CSS)"
184
  msgstr ""
185
 
186
+ #: easy-table.php:762
187
  msgid "Table options"
188
  msgstr ""
189
 
190
+ #: easy-table.php:766
191
  msgid "Theme selector"
192
  msgstr ""
193
 
194
+ #: easy-table.php:771
195
  msgid "Default theme"
196
  msgstr ""
197
 
198
+ #: easy-table.php:775
199
  msgid "Select default theme of the table"
200
  msgstr ""
201
 
202
+ #: easy-table.php:781
203
  msgid "Data options"
204
  msgstr ""
205
 
206
+ #: easy-table.php:786
207
  msgid "Row limit"
208
  msgstr ""
209
 
210
+ #: easy-table.php:790
211
  msgid "Max row to convert to table, default 0 (unlimited)"
212
  msgstr ""
213
 
214
+ #: easy-table.php:794
215
  msgid "Trim cell data?"
216
  msgstr ""
217
 
218
+ #: easy-table.php:799
219
  msgid "Trim empty character around cell data"
220
  msgstr ""
221
 
222
+ #: easy-table.php:805
223
  msgid "Parser options"
224
  msgstr ""
225
 
226
+ #: easy-table.php:806
227
  msgid "Do not change this unless you know what you're doing"
228
  msgstr ""
229
 
230
+ #: easy-table.php:812
231
  msgid "New line replacement"
232
  msgstr ""
233
 
234
+ #: easy-table.php:815
235
+ msgid ""
236
+ "Since new line is used by parser, you need specify character as a "
237
+ "replacement."
238
  msgstr ""
239
 
240
+ #: easy-table.php:818
241
  msgid "Row terminator"
242
  msgstr ""
243
 
244
+ #: easy-table.php:822
245
  msgid ""
246
+ "This caharacter will converted into new row. Default value \\n (this is "
247
+ "invisible character when you press Enter). If your new line not converted as "
248
+ "new row in the table, try use \\r instead."
249
  msgstr ""
250
 
251
+ #: easy-table.php:825
252
  msgid "Delimiter"
253
  msgstr ""
254
 
255
+ #: easy-table.php:828
256
  msgid "CSV delimiter (default is comma)"
257
  msgstr ""
258
 
259
+ #: easy-table.php:831
260
  msgid "Enclosure"
261
  msgstr ""
262
 
263
+ #: easy-table.php:834
264
  msgid "CSV enclosure (default is double quote)"
265
  msgstr ""
266
 
267
+ #: easy-table.php:837
268
  msgid "Escape"
269
  msgstr ""
270
 
271
+ #: easy-table.php:840
272
  msgid "CSV escape (default is backslash)"
273
  msgstr ""
274
 
275
+ #: easy-table.php:843
276
  msgid "Allow read CSV from file?"
277
  msgstr ""
278
 
279
+ #: easy-table.php:846
280
  msgid "Check this if you also want to convert CSV file to table"
281
  msgstr ""
282
 
283
+ #: easy-table.php:854
284
  msgid "Save"
285
  msgstr ""
286
 
287
+ #: easy-table.php:878
288
  msgid "Possible parameter"
289
  msgstr ""
290
 
291
+ #: easy-table.php:879
292
+ msgid ""
293
+ "These parameters commonly can override global options in the left side of "
294
+ "this page. Example usage:"
295
  msgstr ""
296
 
297
+ #: easy-table.php:882 easy-table.php:883 easy-table.php:884 easy-table.php:885
298
+ #: easy-table.php:886 easy-table.php:887 easy-table.php:888 easy-table.php:889
299
+ #: easy-table.php:890 easy-table.php:891 easy-table.php:892 easy-table.php:893
300
+ #: easy-table.php:894 easy-table.php:895 easy-table.php:896 easy-table.php:897
301
+ #: easy-table.php:898
 
 
 
 
 
 
 
 
 
 
 
 
302
  msgid "default value"
303
  msgstr ""
304
 
305
+ #: easy-table.php:882
306
  msgid "another value"
307
  msgstr ""
308
 
309
+ #: easy-table.php:901
310
+ msgid ""
311
+ "parameter is for initial sorting order. Value for each column separated by "
312
+ "comma. See example below:"
313
  msgstr ""
314
 
315
+ #: easy-table.php:903
316
+ msgid ""
317
+ "Set initial order of first column descending and second column ascending:"
318
  msgstr ""
319
 
320
+ #: easy-table.php:909
321
  msgid "Set initial order of second column descending:"
322
  msgstr ""
323
 
324
+ #: easy-table.php:915
325
+ msgid ""
326
+ "Additionaly, sort option also can be set via sort attr in a cell. See "
327
+ "example below"
328
  msgstr ""
329
 
330
+ #: easy-table.php:919
331
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
332
  msgstr ""
333
 
334
+ #: easy-table.php:920
335
  msgid "Example"
336
  msgstr ""
337
 
338
+ #: easy-table.php:929
339
  msgid "To set initial sort order, this is intended to TH (first row) only."
340
  msgstr ""
341
 
342
+ #: easy-table.php:930
343
  msgid "Example: sort second column descending "
344
  msgstr ""
345
 
346
+ #: easy-table.php:947
347
  msgid "Test area:"
348
  msgstr ""
349
 
350
+ #: easy-table.php:952
351
  msgid "Reset"
352
  msgstr ""
353
 
354
+ #: easy-table.php:953
355
  msgid "Update preview"
356
  msgstr ""
357
 
358
+ #: easy-table.php:955
359
  msgid "Preview"
360
  msgstr ""
361
 
362
+ #: easy-table.php:962
363
  msgid "Easy Table theme editor"
364
  msgstr ""
365
 
366
+ #: easy-table.php:992
367
+ msgid ""
368
+ "I have tried to make this plugin can be used as easy as possible and "
369
+ "documentation as complete as possible. However it is also possible that you "
370
+ "are still confused. Therefore feel free to ask. I would be happy to answer."
371
  msgstr ""
372
 
373
+ #: easy-table.php:993
374
+ msgid ""
375
+ "You can use this discussion to get support, request feature or reporting bug."
376
  msgstr ""
377
 
378
+ #: easy-table.php:994
379
  msgid "Before you ask something, make sure you have read documentation here!"
380
  msgstr ""
381
 
382
+ #: easy-table.php:1053
383
  msgid "Install Now"
384
  msgstr ""
385
 
386
+ #: easy-table.php:1057
387
  msgid "Install Update Now"
388
  msgstr ""
389
 
390
+ #: easy-table.php:1060
391
  #, php-format
392
  msgid "Newer Version (%s) Installed"
393
  msgstr ""
394
 
395
+ #: easy-table.php:1063
396
  msgid "Latest Version Installed"
397
  msgstr ""
398
 
399
+ #: easy-table.php:1072
400
  msgid "Latest Version:"
401
  msgstr ""
402
 
403
+ #: easy-table.php:1074
404
  msgid "Author:"
405
  msgstr ""
406
 
407
+ #: easy-table.php:1076
408
  msgid "Last Updated:"
409
  msgstr ""
410
 
411
+ #: easy-table.php:1077
412
  #, php-format
413
  msgid "%s ago"
414
  msgstr ""
415
 
416
+ #: easy-table.php:1079
417
  msgid "Requires WordPress Version:"
418
  msgstr ""
419
 
420
+ #: easy-table.php:1079
421
  #, php-format
422
  msgid "%s or higher"
423
  msgstr ""
424
 
425
+ #: easy-table.php:1081
426
  msgid "Compatible up to:"
427
  msgstr ""
428
 
429
+ #: easy-table.php:1083
430
  msgid "Downloaded:"
431
  msgstr ""
432
 
433
+ #: easy-table.php:1085
434
  msgid "WordPress.org Plugin Page &#187;"
435
  msgstr ""
436
 
437
+ #: easy-table.php:1087
438
  msgid "Plugin Homepage &#187;"
439
  msgstr ""
440
 
441
+ #: easy-table.php:1091
442
  msgid "Average Rating"
443
  msgstr ""
444
 
445
+ #: easy-table.php:1109
446
  msgid "Support my work with donation"
447
  msgstr ""
448
 
449
+ #: easy-table.php:1118
450
  msgid "Don't have money? No problem, you can rate my plugin instead."
451
  msgstr ""
452
 
453
+ #: easy-table.php:1119
454
  msgid "Click here to rate"
455
  msgstr ""
456
 
457
+ #: easy-table.php:1121
458
  msgid "Thanks to"
459
  msgstr ""
460
 
461
+ #: easy-table.php:1127 easy-table.php:1128 easy-table.php:1129
462
+ #: easy-table.php:1130
 
 
463
  msgid "by"
464
  msgstr ""
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://takien.com/donate
4
  Tags: table,csv,csv-to-table,post,excel,csv file,widget,tablesorter
5
  Requires at least: 3.0
6
  Tested up to: 3.5.1
7
- Stable tag: 1.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -215,6 +215,12 @@ No
215
 
216
  == Changelog ==
217
 
 
 
 
 
 
 
218
  = 1.0 =
219
  + Encoding fix
220
  * Added colalign param
4
  Tags: table,csv,csv-to-table,post,excel,csv file,widget,tablesorter
5
  Requires at least: 3.0
6
  Tested up to: 3.5.1
7
+ Stable tag: 1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
215
 
216
  == Changelog ==
217
 
218
+ = 1.1 =
219
+ * Removed: .htaccess from plugin directory (Fixed unloaded script on some servers)
220
+ * Use dedicated str_getcsv for Easy Table (Fixed incompatibility issue with AIOSP version 2.0)
221
+ * Removed: align attribute on table (Fixed text wrap issue)
222
+ * Added: new theme "minimal"
223
+
224
  = 1.0 =
225
  + Encoding fix
226
  * Added colalign param
themes/minimal/style.css ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ /*
2
+ * always include base css to get basic styling for header etc.
3
+ */
4
+ @import url(../../css/easy-table.css);
5
+
6
+ table.easy-table {max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;}