Easy Table - Version 1.6

Version Description

  • Added: exclude_row, exclude_col argument. Useful to hide sort of rows or columns from your data.
  • Added: sslverify=false to wp_remote_get $args
  • Fixed: boolean param value.
Download this release

Release Info

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

Code changes from version 1.5.3 to 1.6

easy-table.php CHANGED
@@ -4,7 +4,7 @@ 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.5.3
8
  Author URI: http://takien.com/
9
  */
10
 
@@ -106,7 +106,7 @@ function __construct(){
106
  private function easy_table_base($return){
107
  $easy_table_base = Array(
108
  'name' => 'Easy Table',
109
- 'version' => '1.5.3',
110
  'plugin-domain' => 'easy-table'
111
  );
112
  return $easy_table_base[$return];
@@ -163,7 +163,9 @@ function easy_table_short_code($atts, $content="") {
163
  'style' => '', /*table inline style, since 1.0*/
164
  'colalign' => '', /*column align, ex: [table colalign="left|right|center"], @since 1.0*/
165
  'colwidth' => '', /*column width, ex: [table colwidth="100|200|300"], @since 1.0*/
166
- 'fixlinebreak' => $this->option('fixlinebreak') /* fix linebreak on cell if terminator is not \n or \r @since 1.1.4 */
 
 
167
  ), $atts);
168
  /**
169
  * because clean_pre is deprecated since WordPress 3.4, then replace it manually
@@ -197,13 +199,23 @@ function easy_table_short_code_attr($atts){
197
  */
198
  private function csv_to_table($data,$args){
199
  extract($args);
 
 
 
 
 
 
 
 
 
 
200
  if( $this->option('csvfile') AND $file ){
201
  /*$data = @file_get_contents($file);*/
202
  /** use wp_remote_get
203
  * @since 0.8
204
  */
205
  $data = '';
206
- $response = wp_remote_get($file);
207
  /**
208
  notify if error reading file.
209
  @since 0.9
@@ -238,6 +250,24 @@ private function csv_to_table($data,$args){
238
 
239
  if(empty($data)) return false;
240
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
  $max_cols = count(max($data));
242
 
243
  $r=0;
@@ -313,6 +343,15 @@ private function csv_to_table($data,$args){
313
  foreach($data as $k=>$cols){ $r++;
314
  //$cols = array_pad($cols,$max_cols,'');
315
 
 
 
 
 
 
 
 
 
 
316
  $output .= (($r==$tfpos) AND $tf) ? (($tf=='last')?'</tbody>':'').'<tfoot>': '';
317
  $output .= "\r\n".'<tr>';
318
 
@@ -976,12 +1015,14 @@ if(isset($_POST['test-easy-table-reset'])){
976
  <li><strong>tablesorter</strong>, <?php _e('default value','easy-table');?> <em>'false'</em></li>
977
  <li><strong>file</strong>, <?php _e('default value','easy-table');?> <em>'false'</em></li>
978
  <li><strong>sort</strong>, <?php _e('default value','easy-table');?> <em>''</em></li>
979
- <li class="new"><strong>trim</strong>, <?php _e('default value','easy-table');?> <em>false</em></li>
980
- <li class="new"><strong>style</strong>, <?php _e('default value','easy-table');?> <em>''</em></li>
981
- <li class="new"><strong>limit</strong>, <?php _e('default value','easy-table');?> <em>0</em></li>
982
- <li class="new"><strong>terminator</strong>, <?php _e('default value','easy-table');?> <em>\n</em></li>
983
- <li class="new"><strong>colalign</strong>, <?php _e('default value','easy-table');?> <em>''</em>, see example on the test area</li>
984
- <li class="new"><strong>colwidth</strong>, <?php _e('default value','easy-table');?> <em>''</em>, see example on the test area</li>
 
 
985
  </ol>
986
  <h3><?php printf('Example usage of %s parameter','sort','easy-table');?></h3>
987
  <p><em>sort</em> <?php _e('parameter is for initial sorting order. Value for each column separated by comma. See example below:','easy-table');?></p>
4
  Plugin URI: http://takien.com/
5
  Description: Create table in post, page, or widget in easy way.
6
  Author: Takien
7
+ Version: 1.6
8
  Author URI: http://takien.com/
9
  */
10
 
106
  private function easy_table_base($return){
107
  $easy_table_base = Array(
108
  'name' => 'Easy Table',
109
+ 'version' => '1.6',
110
  'plugin-domain' => 'easy-table'
111
  );
112
  return $easy_table_base[$return];
163
  'style' => '', /*table inline style, since 1.0*/
164
  'colalign' => '', /*column align, ex: [table colalign="left|right|center"], @since 1.0*/
165
  'colwidth' => '', /*column width, ex: [table colwidth="100|200|300"], @since 1.0*/
166
+ 'fixlinebreak' => $this->option('fixlinebreak'), /* fix linebreak on cell if terminator is not \n or \r @since 1.1.4 */
167
+ 'exclude_row' => '',
168
+ 'exclude_col' => '',
169
  ), $atts);
170
  /**
171
  * because clean_pre is deprecated since WordPress 3.4, then replace it manually
199
  */
200
  private function csv_to_table($data,$args){
201
  extract($args);
202
+
203
+ /** check param value if it is expected to be boolean
204
+ * @since: 1.6
205
+ **/
206
+ $th = filter_var($th, FILTER_VALIDATE_BOOLEAN);
207
+ $trim = filter_var($trim, FILTER_VALIDATE_BOOLEAN);
208
+ if($tf !== 'last') {
209
+ $tf = filter_var($tf, FILTER_VALIDATE_BOOLEAN);
210
+ }
211
+
212
  if( $this->option('csvfile') AND $file ){
213
  /*$data = @file_get_contents($file);*/
214
  /** use wp_remote_get
215
  * @since 0.8
216
  */
217
  $data = '';
218
+ $response = wp_remote_get( $file, array('sslverify'=>false) );
219
  /**
220
  notify if error reading file.
221
  @since 0.9
250
 
251
  if(empty($data)) return false;
252
 
253
+ /** exclude row or col
254
+ * @since: 1.6
255
+ **/
256
+
257
+ if( $exclude_row ) {
258
+ $exclude_row = explode(',',$exclude_row);
259
+ foreach( $exclude_row as $x_row ) {
260
+ if(isset($data[$x_row-1])) {
261
+ unset($data[$x_row-1]);
262
+ }
263
+ }
264
+ }
265
+
266
+ if( $exclude_col ) {
267
+ $exclude_col = explode(',',$exclude_col);
268
+ }
269
+
270
+
271
  $max_cols = count(max($data));
272
 
273
  $r=0;
343
  foreach($data as $k=>$cols){ $r++;
344
  //$cols = array_pad($cols,$max_cols,'');
345
 
346
+ // exclude cols, @since: 1.6
347
+ if(is_array($exclude_col)) {
348
+ foreach( $exclude_col as $x_col ) {
349
+ if(isset($cols[$x_col-1])) {
350
+ unset($cols[$x_col-1]);
351
+ }
352
+ }
353
+ }
354
+
355
  $output .= (($r==$tfpos) AND $tf) ? (($tf=='last')?'</tbody>':'').'<tfoot>': '';
356
  $output .= "\r\n".'<tr>';
357
 
1015
  <li><strong>tablesorter</strong>, <?php _e('default value','easy-table');?> <em>'false'</em></li>
1016
  <li><strong>file</strong>, <?php _e('default value','easy-table');?> <em>'false'</em></li>
1017
  <li><strong>sort</strong>, <?php _e('default value','easy-table');?> <em>''</em></li>
1018
+ <li><strong>trim</strong>, <?php _e('default value','easy-table');?> <em>false</em></li>
1019
+ <li><strong>style</strong>, <?php _e('default value','easy-table');?> <em>''</em></li>
1020
+ <li><strong>limit</strong>, <?php _e('default value','easy-table');?> <em>0</em></li>
1021
+ <li><strong>terminator</strong>, <?php _e('default value','easy-table');?> <em>\n</em></li>
1022
+ <li><strong>colalign</strong>, <?php _e('default value','easy-table');?> <em>''</em>, see example on the test area</li>
1023
+ <li><strong>colwidth</strong>, <?php _e('default value','easy-table');?> <em>''</em>, see example on the test area</li>
1024
+ <li><strong>exclude_row</strong>, <?php _e('default value','easy-table');?> <em>''</em>, comma separated value, ex: exclude_row="1,3,5"</li>
1025
+ <li><strong>exclude_col</strong>, <?php _e('default value','easy-table');?> <em>''</em>, comma separated value, ex: exclude_col="1,3,5"</li>
1026
  </ol>
1027
  <h3><?php printf('Example usage of %s parameter','sort','easy-table');?></h3>
1028
  <p><em>sort</em> <?php _e('parameter is for initial sorting order. Value for each column separated by comma. See example below:','easy-table');?></p>
languages/easy-table-id_ID.mo CHANGED
Binary file
languages/easy-table-id_ID.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: easy-table 1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-07-18 23:23+0700\n"
6
- "PO-Revision-Date: 2014-07-18 23:23+0700\n"
7
  "Last-Translator: takien <contact@takien.com>\n"
8
  "Language-Team: takien.com <contact@takien.com>\n"
9
  "Language: id_ID\n"
@@ -11,12 +11,12 @@ msgstr ""
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.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: easy-table.php:119 easy-table.php:127 easy-table.php:135
20
  #, php-format
21
  msgid ""
22
  "It seems that %1$s shortcode already used by another plugin and potentially "
@@ -24,291 +24,291 @@ msgid ""
24
  "%4$s. <a href=\"%5$s\">Click here to fix it.</a>"
25
  msgstr ""
26
 
27
- #: easy-table.php:665
28
  msgid "Settings"
29
  msgstr "Pengaturan"
30
 
31
- #: easy-table.php:677
32
  msgid "Instruction"
33
  msgstr "Petunjuk"
34
 
35
- #: easy-table.php:678
36
  msgid ""
37
  "Once plugin installed, go to plugin options page to configure some options"
38
  msgstr "Setelah plugin terpasang, kemudian buka halaman penyetelan plugin"
39
 
40
- #: easy-table.php:679
41
  msgid "You are ready to write a table in post or page."
42
  msgstr "Anda telah siap untuk membuat tabel di post atau halaman."
43
 
44
- #: easy-table.php:680
45
  msgid ""
46
  "To be able write table in widget you have to check <em>Enable render table "
47
  "in widget</em> option in the option page."
48
  msgstr ""
49
 
50
- #: easy-table.php:699
51
  #, php-format
52
  msgid "%s Option"
53
  msgstr "Pengaturan %s"
54
 
55
- #: easy-table.php:704
56
  msgid "Support"
57
  msgstr "Dukungan"
58
 
59
- #: easy-table.php:705
60
  msgid "About"
61
  msgstr "Tentang"
62
 
63
- #: easy-table.php:715
64
  msgid "Show/hide help button"
65
  msgstr "Tampilkan/Sembunyikan tombol bantuan"
66
 
67
- #: easy-table.php:716
68
  msgid "General options"
69
  msgstr "Pengaturan umum"
70
 
71
- #: easy-table.php:721
72
  msgid "Short code tag"
73
  msgstr ""
74
 
75
- #: easy-table.php:723
76
  msgid "Shortcode tag, type 'table' if you want to use [table] short tag."
77
  msgstr ""
78
 
79
- #: easy-table.php:729 easy-table.php:1001
80
  msgid "Cell attribute tag"
81
  msgstr ""
82
 
83
- #: easy-table.php:731
84
  msgid "Cell attribute tag, default is attr."
85
  msgstr ""
86
 
87
- #: easy-table.php:736
88
  msgid "Also render table in widget?"
89
  msgstr "Tampilkan tabel di widget?"
90
 
91
- #: easy-table.php:738
92
  msgid "Check this if you want the table could be rendered in widget."
93
  msgstr ""
94
 
95
- #: easy-table.php:743
96
  msgid "Only load JS/CSS when in this condition"
97
  msgstr ""
98
 
99
- #: easy-table.php:744
100
  msgid "Please check in where JavaScript and CSS should be loaded"
101
  msgstr ""
102
 
103
- #: easy-table.php:748
104
  msgid "Single"
105
  msgstr ""
106
 
107
- #: easy-table.php:754
108
  msgid "Page"
109
  msgstr ""
110
 
111
- #: easy-table.php:760
112
  msgid "Front page"
113
  msgstr ""
114
 
115
- #: easy-table.php:766
116
  msgid "Archive page"
117
  msgstr ""
118
 
119
- #: easy-table.php:772
120
  msgid "Search page"
121
  msgstr ""
122
 
123
- #: easy-table.php:780
124
  msgid "Load script on footer?"
125
  msgstr "Muat script di footer?"
126
 
127
- #: easy-table.php:782
128
  msgid ""
129
  "Check this if you want the script to be rendered in footer. Try to check or "
130
  "uncheck this if you experienced conflict with another JavaScript library "
131
  "(not guaranteed though)."
132
  msgstr ""
133
 
134
- #: easy-table.php:793
135
  msgid "Use tablesorter?"
136
  msgstr "Gunakan tablesorter?"
137
 
138
- #: easy-table.php:796
139
  msgid "Check this to use tablesorter jQuery plugin"
140
  msgstr "Ceklist ini jika ingin menggunakan jQuery plugin tablesorter"
141
 
142
- #: easy-table.php:800
143
  msgid "Use TH for the first row?"
144
  msgstr "Gunakan TH untuk baris pertama?"
145
 
146
- #: easy-table.php:803
147
  msgid ""
148
  "Check this if you want to use first row as table head (required by "
149
  "tablesorter)"
150
  msgstr ""
151
 
152
- #: easy-table.php:807
153
  msgid "Load CSS?"
154
  msgstr "Muat CSS?"
155
 
156
- #: easy-table.php:810
157
  msgid ""
158
  "Check this to use CSS included in this plugin to styling table, you may "
159
  "unceck if you want to write your own style."
160
  msgstr "Ceklist ini untuk menyertakan CSS untuk penataan tampilan tabel."
161
 
162
- #: easy-table.php:814
163
  msgid "Table class"
164
  msgstr "Class tabel"
165
 
166
- #: easy-table.php:816
167
  msgid "Additional table class attribute."
168
  msgstr ""
169
 
170
- #: easy-table.php:820
171
  msgid "Table width"
172
  msgstr "Lebar tabel"
173
 
174
- #: easy-table.php:822
175
  msgid "Table width, in pixel or percent (may be overriden by CSS)"
176
  msgstr "Lebar tabel, dalam pixel atau persen (kemungkinan ditimpa oleh CSS)"
177
 
178
- #: easy-table.php:826
179
  msgid "Table border"
180
  msgstr "Garis tabel"
181
 
182
- #: easy-table.php:828
183
  msgid "Table border (may be overriden by CSS)"
184
  msgstr "Garis tabel (kemungkinan ditimpa oleh CSS)"
185
 
186
- #: easy-table.php:832
187
  msgid "Table align"
188
  msgstr "Perataan tabel"
189
 
190
- #: easy-table.php:834
191
  msgid "Table align (left, center, right)"
192
  msgstr ""
193
 
194
- #: easy-table.php:839
195
  msgid "Table options"
196
  msgstr "Pengaturan tabel"
197
 
198
- #: easy-table.php:843
199
  msgid "Theme selector"
200
  msgstr "Pemilihan tema"
201
 
202
- #: easy-table.php:848
203
  msgid "Default theme"
204
  msgstr "Tema bawaan"
205
 
206
- #: easy-table.php:852
207
  msgid "Select default theme of the table"
208
  msgstr "Pilih tema untuk tabel"
209
 
210
- #: easy-table.php:858
211
  #, fuzzy
212
  msgid "Data options"
213
  msgstr "Pengaturan tabel"
214
 
215
- #: easy-table.php:863
216
  msgid "Row limit"
217
  msgstr "Batas baris"
218
 
219
- #: easy-table.php:867
220
  msgid "Max row to convert to table, default 0 (unlimited)"
221
  msgstr ""
222
 
223
- #: easy-table.php:871
224
  msgid "Trim cell data?"
225
  msgstr ""
226
 
227
- #: easy-table.php:876
228
  msgid "Trim empty character around cell data"
229
  msgstr ""
230
 
231
- #: easy-table.php:882
232
  #, fuzzy
233
  msgid "Parser options"
234
  msgstr "Pengaturan parser"
235
 
236
- #: easy-table.php:883
237
  msgid "Do not change this unless you know what you're doing"
238
  msgstr "Jangan ganti bagian ini kecuali Anda mengetahuinya"
239
 
240
- #: easy-table.php:889
241
  msgid "New line replacement"
242
  msgstr "Pengganti baris baru"
243
 
244
- #: easy-table.php:892
245
  msgid ""
246
  "Since new line is used by parser, you need specify character as a "
247
  "replacement."
248
  msgstr ""
249
 
250
- #: easy-table.php:895
251
  msgid "Row terminator"
252
  msgstr "Pembatas baris"
253
 
254
- #: easy-table.php:899
255
  msgid ""
256
  "This caharacter will converted into new row. Default value \\n (this is "
257
  "invisible character when you press Enter). If your new line not converted as "
258
  "new row in the table, try use \\r instead."
259
  msgstr ""
260
 
261
- #: easy-table.php:902
262
  msgid "Delimiter"
263
  msgstr "Pemisah"
264
 
265
- #: easy-table.php:905
266
  msgid "CSV delimiter (default is comma)"
267
  msgstr ""
268
 
269
- #: easy-table.php:908
270
  msgid "Enclosure"
271
  msgstr ""
272
 
273
- #: easy-table.php:911
274
  msgid "CSV enclosure (default is double quote)"
275
  msgstr ""
276
 
277
- #: easy-table.php:914
278
  msgid "Escape"
279
  msgstr ""
280
 
281
- #: easy-table.php:917
282
  msgid "CSV escape (default is backslash)"
283
  msgstr ""
284
 
285
- #: easy-table.php:920
286
  msgid "Fix linebreak"
287
  msgstr ""
288
 
289
- #: easy-table.php:923
290
  msgid ""
291
  "If terminator is not default (linebreak), you may encounter some issue with "
292
  "linebreak inside cell, try to check or uncheck this to resolve"
293
  msgstr ""
294
 
295
- #: easy-table.php:927
296
  msgid "Allow read CSV from file?"
297
  msgstr "Bolehkan membaca CSV dari file?"
298
 
299
- #: easy-table.php:930
300
  msgid "Check this if you also want to convert CSV file to table"
301
  msgstr "Ceklist ini jika Anda juga ingin merubah file CSV ke tabel"
302
 
303
- #: easy-table.php:938
304
  msgid "Save"
305
  msgstr "Simpan"
306
 
307
- #: easy-table.php:962
308
  msgid "Possible parameter"
309
  msgstr "Parameter yang dimungkinkan"
310
 
311
- #: easy-table.php:963
312
  msgid ""
313
  "These parameters commonly can override global options in the left side of "
314
  "this page. Example usage:"
@@ -316,19 +316,21 @@ msgstr ""
316
  "Parameter berikut ini secara umum dapat menggantikan setingan global yang "
317
  "ada di sebelah kiri halaman ini. Contoh penggunaan:"
318
 
319
- #: easy-table.php:966 easy-table.php:967 easy-table.php:968 easy-table.php:969
320
- #: easy-table.php:970 easy-table.php:971 easy-table.php:972 easy-table.php:973
321
- #: easy-table.php:974 easy-table.php:975 easy-table.php:976 easy-table.php:977
322
- #: easy-table.php:978 easy-table.php:979 easy-table.php:980 easy-table.php:981
323
- #: easy-table.php:982
 
 
324
  msgid "default value"
325
  msgstr "nilai bawaan"
326
 
327
- #: easy-table.php:966
328
  msgid "another value"
329
  msgstr "nilai lainnya"
330
 
331
- #: easy-table.php:985
332
  msgid ""
333
  "parameter is for initial sorting order. Value for each column separated by "
334
  "comma. See example below:"
@@ -336,161 +338,157 @@ msgstr ""
336
  "parameter untuk penyortiran bawaan. Nilai dari masing masih kolom dipisahkan "
337
  "dengan koma. Lihat contoh berikut:"
338
 
339
- #: easy-table.php:987
340
  msgid ""
341
  "Set initial order of first column descending and second column ascending:"
342
  msgstr ""
343
 
344
- #: easy-table.php:993
345
  msgid "Set initial order of second column descending:"
346
  msgstr ""
347
 
348
- #: easy-table.php:999
349
  msgid ""
350
  "Additionaly, sort option also can be set via sort attr in a cell. See "
351
  "example below"
352
  msgstr ""
353
 
354
- #: easy-table.php:1003
355
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
356
  msgstr ""
357
 
358
- #: easy-table.php:1004
359
  msgid "Example"
360
  msgstr "Contoh"
361
 
362
- #: easy-table.php:1013
363
  msgid "To set initial sort order, this is intended to TH (first row) only."
364
  msgstr ""
365
 
366
- #: easy-table.php:1014
367
  msgid "Example: sort second column descending "
368
  msgstr ""
369
 
370
- #: easy-table.php:1031
371
  msgid "Test area:"
372
  msgstr "Area test:"
373
 
374
- #: easy-table.php:1036
375
  msgid "Reset"
376
  msgstr "Reset"
377
 
378
- #: easy-table.php:1037
379
  msgid "Update preview"
380
  msgstr "Perbaharui pratinjau"
381
 
382
- #: easy-table.php:1039
383
  msgid "Preview"
384
  msgstr "Pratinjau"
385
 
386
- #: easy-table.php:1046
387
  msgid "Easy Table theme editor"
388
  msgstr ""
389
 
390
- #: easy-table.php:1076
391
- msgid ""
392
- "I have tried to make this plugin can be used as easy as possible and "
393
- "documentation as complete as possible. However it is also possible that you "
394
- "are still confused. Therefore feel free to ask. I would be happy to answer."
395
- msgstr ""
396
- "Saya telah membuat plugin ini semudah mungkin digunakan dan juga dokumentasi "
397
- "yang selengkap mungkin. Meskipun begitu mungkin Anda masih bingung. Untuk "
398
- "itu jangan sungkan-sungkan untuk bertanya. Saya akan senang menjawabnya."
399
-
400
- #: easy-table.php:1077
401
- msgid ""
402
- "You can use this discussion to get support, request feature or reporting bug."
403
- msgstr ""
404
-
405
- #: easy-table.php:1078
406
- msgid "Before you ask something, make sure you have read documentation here!"
407
- msgstr ""
408
- "Sebelum bertanya sesuatu, pastikan Anda telah membaca dokumentasi di sini!"
409
-
410
- #: easy-table.php:1137
411
  msgid "Install Now"
412
  msgstr ""
413
 
414
- #: easy-table.php:1141
415
  msgid "Install Update Now"
416
  msgstr ""
417
 
418
- #: easy-table.php:1144
419
  #, php-format
420
  msgid "Newer Version (%s) Installed"
421
  msgstr ""
422
 
423
- #: easy-table.php:1147
424
  msgid "Latest Version Installed"
425
  msgstr ""
426
 
427
- #: easy-table.php:1156
428
  msgid "Latest Version:"
429
  msgstr ""
430
 
431
- #: easy-table.php:1158
432
  msgid "Author:"
433
  msgstr ""
434
 
435
- #: easy-table.php:1160
436
  msgid "Last Updated:"
437
  msgstr ""
438
 
439
- #: easy-table.php:1161
440
  #, php-format
441
  msgid "%s ago"
442
  msgstr ""
443
 
444
- #: easy-table.php:1163
445
  msgid "Requires WordPress Version:"
446
  msgstr ""
447
 
448
- #: easy-table.php:1163
449
  #, php-format
450
  msgid "%s or higher"
451
  msgstr ""
452
 
453
- #: easy-table.php:1165
454
  msgid "Compatible up to:"
455
  msgstr ""
456
 
457
- #: easy-table.php:1167
458
  msgid "Downloaded:"
459
  msgstr ""
460
 
461
- #: easy-table.php:1169
462
  msgid "WordPress.org Plugin Page &#187;"
463
  msgstr ""
464
 
465
- #: easy-table.php:1171
466
  msgid "Plugin Homepage &#187;"
467
  msgstr ""
468
 
469
- #: easy-table.php:1175
470
  msgid "Average Rating"
471
  msgstr "Penilaian rata-rata"
472
 
473
- #: easy-table.php:1193
474
  msgid "Support my work with donation"
475
  msgstr "Dukung karya saya dengan sumbangan"
476
 
477
- #: easy-table.php:1202
478
  msgid "Don't have money? No problem, you can rate my plugin instead."
479
  msgstr "Tidak punya uang? Tidak masalah, Anda cukup memberi rating plugin ini."
480
 
481
- #: easy-table.php:1203
482
  msgid "Click here to rate"
483
  msgstr "Klik di sini untuk memberi nilai"
484
 
485
- #: easy-table.php:1205
486
  msgid "Thanks to"
487
  msgstr "Terimakasih kepada"
488
 
489
- #: easy-table.php:1211 easy-table.php:1212 easy-table.php:1213
490
- #: easy-table.php:1214 easy-table.php:1215
491
  msgid "by"
492
  msgstr "oleh"
493
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
494
  #~ msgid "Table align, left/right/center (may be overriden by CSS)"
495
  #~ msgstr "Perataan tabel, left/right/center (kemungkinan ditimpa oleh CSS)"
496
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: easy-table 1.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-23 19:17+0700\n"
6
+ "PO-Revision-Date: 2016-01-23 19:18+0700\n"
7
  "Last-Translator: takien <contact@takien.com>\n"
8
  "Language-Team: takien.com <contact@takien.com>\n"
9
  "Language: id_ID\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.8.6\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: easy-table.php:120 easy-table.php:128 easy-table.php:136
20
  #, php-format
21
  msgid ""
22
  "It seems that %1$s shortcode already used by another plugin and potentially "
24
  "%4$s. <a href=\"%5$s\">Click here to fix it.</a>"
25
  msgstr ""
26
 
27
+ #: easy-table.php:706
28
  msgid "Settings"
29
  msgstr "Pengaturan"
30
 
31
+ #: easy-table.php:718
32
  msgid "Instruction"
33
  msgstr "Petunjuk"
34
 
35
+ #: easy-table.php:719
36
  msgid ""
37
  "Once plugin installed, go to plugin options page to configure some options"
38
  msgstr "Setelah plugin terpasang, kemudian buka halaman penyetelan plugin"
39
 
40
+ #: easy-table.php:720
41
  msgid "You are ready to write a table in post or page."
42
  msgstr "Anda telah siap untuk membuat tabel di post atau halaman."
43
 
44
+ #: easy-table.php:721
45
  msgid ""
46
  "To be able write table in widget you have to check <em>Enable render table "
47
  "in widget</em> option in the option page."
48
  msgstr ""
49
 
50
+ #: easy-table.php:740
51
  #, php-format
52
  msgid "%s Option"
53
  msgstr "Pengaturan %s"
54
 
55
+ #: easy-table.php:745
56
  msgid "Support"
57
  msgstr "Dukungan"
58
 
59
+ #: easy-table.php:746
60
  msgid "About"
61
  msgstr "Tentang"
62
 
63
+ #: easy-table.php:756
64
  msgid "Show/hide help button"
65
  msgstr "Tampilkan/Sembunyikan tombol bantuan"
66
 
67
+ #: easy-table.php:757
68
  msgid "General options"
69
  msgstr "Pengaturan umum"
70
 
71
+ #: easy-table.php:762
72
  msgid "Short code tag"
73
  msgstr ""
74
 
75
+ #: easy-table.php:764
76
  msgid "Shortcode tag, type 'table' if you want to use [table] short tag."
77
  msgstr ""
78
 
79
+ #: easy-table.php:770 easy-table.php:1044
80
  msgid "Cell attribute tag"
81
  msgstr ""
82
 
83
+ #: easy-table.php:772
84
  msgid "Cell attribute tag, default is attr."
85
  msgstr ""
86
 
87
+ #: easy-table.php:777
88
  msgid "Also render table in widget?"
89
  msgstr "Tampilkan tabel di widget?"
90
 
91
+ #: easy-table.php:779
92
  msgid "Check this if you want the table could be rendered in widget."
93
  msgstr ""
94
 
95
+ #: easy-table.php:784
96
  msgid "Only load JS/CSS when in this condition"
97
  msgstr ""
98
 
99
+ #: easy-table.php:785
100
  msgid "Please check in where JavaScript and CSS should be loaded"
101
  msgstr ""
102
 
103
+ #: easy-table.php:789
104
  msgid "Single"
105
  msgstr ""
106
 
107
+ #: easy-table.php:795
108
  msgid "Page"
109
  msgstr ""
110
 
111
+ #: easy-table.php:801
112
  msgid "Front page"
113
  msgstr ""
114
 
115
+ #: easy-table.php:807
116
  msgid "Archive page"
117
  msgstr ""
118
 
119
+ #: easy-table.php:813
120
  msgid "Search page"
121
  msgstr ""
122
 
123
+ #: easy-table.php:821
124
  msgid "Load script on footer?"
125
  msgstr "Muat script di footer?"
126
 
127
+ #: easy-table.php:823
128
  msgid ""
129
  "Check this if you want the script to be rendered in footer. Try to check or "
130
  "uncheck this if you experienced conflict with another JavaScript library "
131
  "(not guaranteed though)."
132
  msgstr ""
133
 
134
+ #: easy-table.php:834
135
  msgid "Use tablesorter?"
136
  msgstr "Gunakan tablesorter?"
137
 
138
+ #: easy-table.php:837
139
  msgid "Check this to use tablesorter jQuery plugin"
140
  msgstr "Ceklist ini jika ingin menggunakan jQuery plugin tablesorter"
141
 
142
+ #: easy-table.php:841
143
  msgid "Use TH for the first row?"
144
  msgstr "Gunakan TH untuk baris pertama?"
145
 
146
+ #: easy-table.php:844
147
  msgid ""
148
  "Check this if you want to use first row as table head (required by "
149
  "tablesorter)"
150
  msgstr ""
151
 
152
+ #: easy-table.php:848
153
  msgid "Load CSS?"
154
  msgstr "Muat CSS?"
155
 
156
+ #: easy-table.php:851
157
  msgid ""
158
  "Check this to use CSS included in this plugin to styling table, you may "
159
  "unceck if you want to write your own style."
160
  msgstr "Ceklist ini untuk menyertakan CSS untuk penataan tampilan tabel."
161
 
162
+ #: easy-table.php:855
163
  msgid "Table class"
164
  msgstr "Class tabel"
165
 
166
+ #: easy-table.php:857
167
  msgid "Additional table class attribute."
168
  msgstr ""
169
 
170
+ #: easy-table.php:861
171
  msgid "Table width"
172
  msgstr "Lebar tabel"
173
 
174
+ #: easy-table.php:863
175
  msgid "Table width, in pixel or percent (may be overriden by CSS)"
176
  msgstr "Lebar tabel, dalam pixel atau persen (kemungkinan ditimpa oleh CSS)"
177
 
178
+ #: easy-table.php:867
179
  msgid "Table border"
180
  msgstr "Garis tabel"
181
 
182
+ #: easy-table.php:869
183
  msgid "Table border (may be overriden by CSS)"
184
  msgstr "Garis tabel (kemungkinan ditimpa oleh CSS)"
185
 
186
+ #: easy-table.php:873
187
  msgid "Table align"
188
  msgstr "Perataan tabel"
189
 
190
+ #: easy-table.php:875
191
  msgid "Table align (left, center, right)"
192
  msgstr ""
193
 
194
+ #: easy-table.php:880
195
  msgid "Table options"
196
  msgstr "Pengaturan tabel"
197
 
198
+ #: easy-table.php:884
199
  msgid "Theme selector"
200
  msgstr "Pemilihan tema"
201
 
202
+ #: easy-table.php:889
203
  msgid "Default theme"
204
  msgstr "Tema bawaan"
205
 
206
+ #: easy-table.php:893
207
  msgid "Select default theme of the table"
208
  msgstr "Pilih tema untuk tabel"
209
 
210
+ #: easy-table.php:899
211
  #, fuzzy
212
  msgid "Data options"
213
  msgstr "Pengaturan tabel"
214
 
215
+ #: easy-table.php:904
216
  msgid "Row limit"
217
  msgstr "Batas baris"
218
 
219
+ #: easy-table.php:908
220
  msgid "Max row to convert to table, default 0 (unlimited)"
221
  msgstr ""
222
 
223
+ #: easy-table.php:912
224
  msgid "Trim cell data?"
225
  msgstr ""
226
 
227
+ #: easy-table.php:917
228
  msgid "Trim empty character around cell data"
229
  msgstr ""
230
 
231
+ #: easy-table.php:923
232
  #, fuzzy
233
  msgid "Parser options"
234
  msgstr "Pengaturan parser"
235
 
236
+ #: easy-table.php:924
237
  msgid "Do not change this unless you know what you're doing"
238
  msgstr "Jangan ganti bagian ini kecuali Anda mengetahuinya"
239
 
240
+ #: easy-table.php:930
241
  msgid "New line replacement"
242
  msgstr "Pengganti baris baru"
243
 
244
+ #: easy-table.php:933
245
  msgid ""
246
  "Since new line is used by parser, you need specify character as a "
247
  "replacement."
248
  msgstr ""
249
 
250
+ #: easy-table.php:936
251
  msgid "Row terminator"
252
  msgstr "Pembatas baris"
253
 
254
+ #: easy-table.php:940
255
  msgid ""
256
  "This caharacter will converted into new row. Default value \\n (this is "
257
  "invisible character when you press Enter). If your new line not converted as "
258
  "new row in the table, try use \\r instead."
259
  msgstr ""
260
 
261
+ #: easy-table.php:943
262
  msgid "Delimiter"
263
  msgstr "Pemisah"
264
 
265
+ #: easy-table.php:946
266
  msgid "CSV delimiter (default is comma)"
267
  msgstr ""
268
 
269
+ #: easy-table.php:949
270
  msgid "Enclosure"
271
  msgstr ""
272
 
273
+ #: easy-table.php:952
274
  msgid "CSV enclosure (default is double quote)"
275
  msgstr ""
276
 
277
+ #: easy-table.php:955
278
  msgid "Escape"
279
  msgstr ""
280
 
281
+ #: easy-table.php:958
282
  msgid "CSV escape (default is backslash)"
283
  msgstr ""
284
 
285
+ #: easy-table.php:961
286
  msgid "Fix linebreak"
287
  msgstr ""
288
 
289
+ #: easy-table.php:964
290
  msgid ""
291
  "If terminator is not default (linebreak), you may encounter some issue with "
292
  "linebreak inside cell, try to check or uncheck this to resolve"
293
  msgstr ""
294
 
295
+ #: easy-table.php:968
296
  msgid "Allow read CSV from file?"
297
  msgstr "Bolehkan membaca CSV dari file?"
298
 
299
+ #: easy-table.php:971
300
  msgid "Check this if you also want to convert CSV file to table"
301
  msgstr "Ceklist ini jika Anda juga ingin merubah file CSV ke tabel"
302
 
303
+ #: easy-table.php:979
304
  msgid "Save"
305
  msgstr "Simpan"
306
 
307
+ #: easy-table.php:1003
308
  msgid "Possible parameter"
309
  msgstr "Parameter yang dimungkinkan"
310
 
311
+ #: easy-table.php:1004
312
  msgid ""
313
  "These parameters commonly can override global options in the left side of "
314
  "this page. Example usage:"
316
  "Parameter berikut ini secara umum dapat menggantikan setingan global yang "
317
  "ada di sebelah kiri halaman ini. Contoh penggunaan:"
318
 
319
+ #: easy-table.php:1007 easy-table.php:1008 easy-table.php:1009
320
+ #: easy-table.php:1010 easy-table.php:1011 easy-table.php:1012
321
+ #: easy-table.php:1013 easy-table.php:1014 easy-table.php:1015
322
+ #: easy-table.php:1016 easy-table.php:1017 easy-table.php:1018
323
+ #: easy-table.php:1019 easy-table.php:1020 easy-table.php:1021
324
+ #: easy-table.php:1022 easy-table.php:1023 easy-table.php:1024
325
+ #: easy-table.php:1025
326
  msgid "default value"
327
  msgstr "nilai bawaan"
328
 
329
+ #: easy-table.php:1007
330
  msgid "another value"
331
  msgstr "nilai lainnya"
332
 
333
+ #: easy-table.php:1028
334
  msgid ""
335
  "parameter is for initial sorting order. Value for each column separated by "
336
  "comma. See example below:"
338
  "parameter untuk penyortiran bawaan. Nilai dari masing masih kolom dipisahkan "
339
  "dengan koma. Lihat contoh berikut:"
340
 
341
+ #: easy-table.php:1030
342
  msgid ""
343
  "Set initial order of first column descending and second column ascending:"
344
  msgstr ""
345
 
346
+ #: easy-table.php:1036
347
  msgid "Set initial order of second column descending:"
348
  msgstr ""
349
 
350
+ #: easy-table.php:1042
351
  msgid ""
352
  "Additionaly, sort option also can be set via sort attr in a cell. See "
353
  "example below"
354
  msgstr ""
355
 
356
+ #: easy-table.php:1046
357
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
358
  msgstr ""
359
 
360
+ #: easy-table.php:1047
361
  msgid "Example"
362
  msgstr "Contoh"
363
 
364
+ #: easy-table.php:1056
365
  msgid "To set initial sort order, this is intended to TH (first row) only."
366
  msgstr ""
367
 
368
+ #: easy-table.php:1057
369
  msgid "Example: sort second column descending "
370
  msgstr ""
371
 
372
+ #: easy-table.php:1074
373
  msgid "Test area:"
374
  msgstr "Area test:"
375
 
376
+ #: easy-table.php:1079
377
  msgid "Reset"
378
  msgstr "Reset"
379
 
380
+ #: easy-table.php:1080
381
  msgid "Update preview"
382
  msgstr "Perbaharui pratinjau"
383
 
384
+ #: easy-table.php:1082
385
  msgid "Preview"
386
  msgstr "Pratinjau"
387
 
388
+ #: easy-table.php:1089
389
  msgid "Easy Table theme editor"
390
  msgstr ""
391
 
392
+ #: easy-table.php:1134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
393
  msgid "Install Now"
394
  msgstr ""
395
 
396
+ #: easy-table.php:1138
397
  msgid "Install Update Now"
398
  msgstr ""
399
 
400
+ #: easy-table.php:1141
401
  #, php-format
402
  msgid "Newer Version (%s) Installed"
403
  msgstr ""
404
 
405
+ #: easy-table.php:1144
406
  msgid "Latest Version Installed"
407
  msgstr ""
408
 
409
+ #: easy-table.php:1153
410
  msgid "Latest Version:"
411
  msgstr ""
412
 
413
+ #: easy-table.php:1155
414
  msgid "Author:"
415
  msgstr ""
416
 
417
+ #: easy-table.php:1157
418
  msgid "Last Updated:"
419
  msgstr ""
420
 
421
+ #: easy-table.php:1158
422
  #, php-format
423
  msgid "%s ago"
424
  msgstr ""
425
 
426
+ #: easy-table.php:1160
427
  msgid "Requires WordPress Version:"
428
  msgstr ""
429
 
430
+ #: easy-table.php:1160
431
  #, php-format
432
  msgid "%s or higher"
433
  msgstr ""
434
 
435
+ #: easy-table.php:1162
436
  msgid "Compatible up to:"
437
  msgstr ""
438
 
439
+ #: easy-table.php:1164
440
  msgid "Downloaded:"
441
  msgstr ""
442
 
443
+ #: easy-table.php:1166
444
  msgid "WordPress.org Plugin Page &#187;"
445
  msgstr ""
446
 
447
+ #: easy-table.php:1168
448
  msgid "Plugin Homepage &#187;"
449
  msgstr ""
450
 
451
+ #: easy-table.php:1172
452
  msgid "Average Rating"
453
  msgstr "Penilaian rata-rata"
454
 
455
+ #: easy-table.php:1190
456
  msgid "Support my work with donation"
457
  msgstr "Dukung karya saya dengan sumbangan"
458
 
459
+ #: easy-table.php:1199
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:1200
464
  msgid "Click here to rate"
465
  msgstr "Klik di sini untuk memberi nilai"
466
 
467
+ #: easy-table.php:1202
468
  msgid "Thanks to"
469
  msgstr "Terimakasih kepada"
470
 
471
+ #: easy-table.php:1208 easy-table.php:1209 easy-table.php:1210
472
+ #: easy-table.php:1211 easy-table.php:1212
473
  msgid "by"
474
  msgstr "oleh"
475
 
476
+ #~ msgid ""
477
+ #~ "I have tried to make this plugin can be used as easy as possible and "
478
+ #~ "documentation as complete as possible. However it is also possible that "
479
+ #~ "you are still confused. Therefore feel free to ask. I would be happy to "
480
+ #~ "answer."
481
+ #~ msgstr ""
482
+ #~ "Saya telah membuat plugin ini semudah mungkin digunakan dan juga "
483
+ #~ "dokumentasi yang selengkap mungkin. Meskipun begitu mungkin Anda masih "
484
+ #~ "bingung. Untuk itu jangan sungkan-sungkan untuk bertanya. Saya akan "
485
+ #~ "senang menjawabnya."
486
+
487
+ #~ msgid ""
488
+ #~ "Before you ask something, make sure you have read documentation here!"
489
+ #~ msgstr ""
490
+ #~ "Sebelum bertanya sesuatu, pastikan Anda telah membaca dokumentasi di sini!"
491
+
492
  #~ msgid "Table align, left/right/center (may be overriden by CSS)"
493
  #~ msgstr "Perataan tabel, left/right/center (kemungkinan ditimpa oleh CSS)"
494
 
languages/english.mo CHANGED
Binary file
languages/english.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: easy-table 1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-07-18 23:23+0700\n"
6
- "PO-Revision-Date: 2014-07-18 23:24+0700\n"
7
  "Last-Translator: takien <contact@takien.com>\n"
8
  "Language-Team: takien.com <contact@takien.com>\n"
9
  "Language: en_US\n"
@@ -11,12 +11,12 @@ msgstr ""
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.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: easy-table.php:119 easy-table.php:127 easy-table.php:135
20
  #, php-format
21
  msgid ""
22
  "It seems that %1$s shortcode already used by another plugin and potentially "
@@ -24,459 +24,445 @@ msgid ""
24
  "%4$s. <a href=\"%5$s\">Click here to fix it.</a>"
25
  msgstr ""
26
 
27
- #: easy-table.php:665
28
  msgid "Settings"
29
  msgstr ""
30
 
31
- #: easy-table.php:677
32
  msgid "Instruction"
33
  msgstr ""
34
 
35
- #: easy-table.php:678
36
  msgid ""
37
  "Once plugin installed, go to plugin options page to configure some options"
38
  msgstr ""
39
 
40
- #: easy-table.php:679
41
  msgid "You are ready to write a table in post or page."
42
  msgstr ""
43
 
44
- #: easy-table.php:680
45
  msgid ""
46
  "To be able write table in widget you have to check <em>Enable render table "
47
  "in widget</em> option in the option page."
48
  msgstr ""
49
 
50
- #: easy-table.php:699
51
  #, php-format
52
  msgid "%s Option"
53
  msgstr ""
54
 
55
- #: easy-table.php:704
56
  msgid "Support"
57
  msgstr ""
58
 
59
- #: easy-table.php:705
60
  msgid "About"
61
  msgstr ""
62
 
63
- #: easy-table.php:715
64
  msgid "Show/hide help button"
65
  msgstr ""
66
 
67
- #: easy-table.php:716
68
  msgid "General options"
69
  msgstr ""
70
 
71
- #: easy-table.php:721
72
  msgid "Short code tag"
73
  msgstr ""
74
 
75
- #: easy-table.php:723
76
  msgid "Shortcode tag, type 'table' if you want to use [table] short tag."
77
  msgstr ""
78
 
79
- #: easy-table.php:729 easy-table.php:1001
80
  msgid "Cell attribute tag"
81
  msgstr ""
82
 
83
- #: easy-table.php:731
84
  msgid "Cell attribute tag, default is attr."
85
  msgstr ""
86
 
87
- #: easy-table.php:736
88
  msgid "Also render table in widget?"
89
  msgstr ""
90
 
91
- #: easy-table.php:738
92
  msgid "Check this if you want the table could be rendered in widget."
93
  msgstr ""
94
 
95
- #: easy-table.php:743
96
  msgid "Only load JS/CSS when in this condition"
97
  msgstr ""
98
 
99
- #: easy-table.php:744
100
  msgid "Please check in where JavaScript and CSS should be loaded"
101
  msgstr ""
102
 
103
- #: easy-table.php:748
104
  msgid "Single"
105
  msgstr ""
106
 
107
- #: easy-table.php:754
108
  msgid "Page"
109
  msgstr ""
110
 
111
- #: easy-table.php:760
112
  msgid "Front page"
113
  msgstr ""
114
 
115
- #: easy-table.php:766
116
  msgid "Archive page"
117
  msgstr ""
118
 
119
- #: easy-table.php:772
120
  msgid "Search page"
121
  msgstr ""
122
 
123
- #: easy-table.php:780
124
  msgid "Load script on footer?"
125
  msgstr ""
126
 
127
- #: easy-table.php:782
128
  msgid ""
129
  "Check this if you want the script to be rendered in footer. Try to check or "
130
  "uncheck this if you experienced conflict with another JavaScript library "
131
  "(not guaranteed though)."
132
  msgstr ""
133
 
134
- #: easy-table.php:793
135
  msgid "Use tablesorter?"
136
  msgstr ""
137
 
138
- #: easy-table.php:796
139
  msgid "Check this to use tablesorter jQuery plugin"
140
  msgstr ""
141
 
142
- #: easy-table.php:800
143
  msgid "Use TH for the first row?"
144
  msgstr ""
145
 
146
- #: easy-table.php:803
147
  msgid ""
148
  "Check this if you want to use first row as table head (required by "
149
  "tablesorter)"
150
  msgstr ""
151
 
152
- #: easy-table.php:807
153
  msgid "Load CSS?"
154
  msgstr ""
155
 
156
- #: easy-table.php:810
157
  msgid ""
158
  "Check this to use CSS included in this plugin to styling table, you may "
159
  "unceck if you want to write your own style."
160
  msgstr ""
161
 
162
- #: easy-table.php:814
163
  msgid "Table class"
164
  msgstr ""
165
 
166
- #: easy-table.php:816
167
  msgid "Additional table class attribute."
168
  msgstr ""
169
 
170
- #: easy-table.php:820
171
  msgid "Table width"
172
  msgstr ""
173
 
174
- #: easy-table.php:822
175
  msgid "Table width, in pixel or percent (may be overriden by CSS)"
176
  msgstr ""
177
 
178
- #: easy-table.php:826
179
  msgid "Table border"
180
  msgstr ""
181
 
182
- #: easy-table.php:828
183
  msgid "Table border (may be overriden by CSS)"
184
  msgstr ""
185
 
186
- #: easy-table.php:832
187
  msgid "Table align"
188
  msgstr ""
189
 
190
- #: easy-table.php:834
191
  msgid "Table align (left, center, right)"
192
  msgstr ""
193
 
194
- #: easy-table.php:839
195
  msgid "Table options"
196
  msgstr ""
197
 
198
- #: easy-table.php:843
199
  msgid "Theme selector"
200
  msgstr ""
201
 
202
- #: easy-table.php:848
203
  msgid "Default theme"
204
  msgstr ""
205
 
206
- #: easy-table.php:852
207
  msgid "Select default theme of the table"
208
  msgstr ""
209
 
210
- #: easy-table.php:858
211
  msgid "Data options"
212
  msgstr ""
213
 
214
- #: easy-table.php:863
215
  msgid "Row limit"
216
  msgstr ""
217
 
218
- #: easy-table.php:867
219
  msgid "Max row to convert to table, default 0 (unlimited)"
220
  msgstr ""
221
 
222
- #: easy-table.php:871
223
  msgid "Trim cell data?"
224
  msgstr ""
225
 
226
- #: easy-table.php:876
227
  msgid "Trim empty character around cell data"
228
  msgstr ""
229
 
230
- #: easy-table.php:882
231
  msgid "Parser options"
232
  msgstr ""
233
 
234
- #: easy-table.php:883
235
  msgid "Do not change this unless you know what you're doing"
236
  msgstr ""
237
 
238
- #: easy-table.php:889
239
  msgid "New line replacement"
240
  msgstr ""
241
 
242
- #: easy-table.php:892
243
  msgid ""
244
  "Since new line is used by parser, you need specify character as a "
245
  "replacement."
246
  msgstr ""
247
 
248
- #: easy-table.php:895
249
  msgid "Row terminator"
250
  msgstr ""
251
 
252
- #: easy-table.php:899
253
  msgid ""
254
  "This caharacter will converted into new row. Default value \\n (this is "
255
  "invisible character when you press Enter). If your new line not converted as "
256
  "new row in the table, try use \\r instead."
257
  msgstr ""
258
 
259
- #: easy-table.php:902
260
  msgid "Delimiter"
261
  msgstr ""
262
 
263
- #: easy-table.php:905
264
  msgid "CSV delimiter (default is comma)"
265
  msgstr ""
266
 
267
- #: easy-table.php:908
268
  msgid "Enclosure"
269
  msgstr ""
270
 
271
- #: easy-table.php:911
272
  msgid "CSV enclosure (default is double quote)"
273
  msgstr ""
274
 
275
- #: easy-table.php:914
276
  msgid "Escape"
277
  msgstr ""
278
 
279
- #: easy-table.php:917
280
  msgid "CSV escape (default is backslash)"
281
  msgstr ""
282
 
283
- #: easy-table.php:920
284
  msgid "Fix linebreak"
285
  msgstr ""
286
 
287
- #: easy-table.php:923
288
  msgid ""
289
  "If terminator is not default (linebreak), you may encounter some issue with "
290
  "linebreak inside cell, try to check or uncheck this to resolve"
291
  msgstr ""
292
 
293
- #: easy-table.php:927
294
  msgid "Allow read CSV from file?"
295
  msgstr ""
296
 
297
- #: easy-table.php:930
298
  msgid "Check this if you also want to convert CSV file to table"
299
  msgstr ""
300
 
301
- #: easy-table.php:938
302
  msgid "Save"
303
  msgstr ""
304
 
305
- #: easy-table.php:962
306
  msgid "Possible parameter"
307
  msgstr ""
308
 
309
- #: easy-table.php:963
310
  msgid ""
311
  "These parameters commonly can override global options in the left side of "
312
  "this page. Example usage:"
313
  msgstr ""
314
 
315
- #: easy-table.php:966 easy-table.php:967 easy-table.php:968 easy-table.php:969
316
- #: easy-table.php:970 easy-table.php:971 easy-table.php:972 easy-table.php:973
317
- #: easy-table.php:974 easy-table.php:975 easy-table.php:976 easy-table.php:977
318
- #: easy-table.php:978 easy-table.php:979 easy-table.php:980 easy-table.php:981
319
- #: easy-table.php:982
 
 
320
  msgid "default value"
321
  msgstr ""
322
 
323
- #: easy-table.php:966
324
  msgid "another value"
325
  msgstr ""
326
 
327
- #: easy-table.php:985
328
  msgid ""
329
  "parameter is for initial sorting order. Value for each column separated by "
330
  "comma. See example below:"
331
  msgstr ""
332
 
333
- #: easy-table.php:987
334
  msgid ""
335
  "Set initial order of first column descending and second column ascending:"
336
  msgstr ""
337
 
338
- #: easy-table.php:993
339
  msgid "Set initial order of second column descending:"
340
  msgstr ""
341
 
342
- #: easy-table.php:999
343
  msgid ""
344
  "Additionaly, sort option also can be set via sort attr in a cell. See "
345
  "example below"
346
  msgstr ""
347
 
348
- #: easy-table.php:1003
349
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
350
  msgstr ""
351
 
352
- #: easy-table.php:1004
353
  msgid "Example"
354
  msgstr ""
355
 
356
- #: easy-table.php:1013
357
  msgid "To set initial sort order, this is intended to TH (first row) only."
358
  msgstr ""
359
 
360
- #: easy-table.php:1014
361
  msgid "Example: sort second column descending "
362
  msgstr ""
363
 
364
- #: easy-table.php:1031
365
  msgid "Test area:"
366
  msgstr ""
367
 
368
- #: easy-table.php:1036
369
  msgid "Reset"
370
  msgstr ""
371
 
372
- #: easy-table.php:1037
373
  msgid "Update preview"
374
  msgstr ""
375
 
376
- #: easy-table.php:1039
377
  msgid "Preview"
378
  msgstr ""
379
 
380
- #: easy-table.php:1046
381
  msgid "Easy Table theme editor"
382
  msgstr ""
383
 
384
- #: easy-table.php:1076
385
- msgid ""
386
- "I have tried to make this plugin can be used as easy as possible and "
387
- "documentation as complete as possible. However it is also possible that you "
388
- "are still confused. Therefore feel free to ask. I would be happy to answer."
389
- msgstr ""
390
-
391
- #: easy-table.php:1077
392
- msgid ""
393
- "You can use this discussion to get support, request feature or reporting bug."
394
- msgstr ""
395
-
396
- #: easy-table.php:1078
397
- msgid "Before you ask something, make sure you have read documentation here!"
398
- msgstr ""
399
-
400
- #: easy-table.php:1137
401
  msgid "Install Now"
402
  msgstr ""
403
 
404
- #: easy-table.php:1141
405
  msgid "Install Update Now"
406
  msgstr ""
407
 
408
- #: easy-table.php:1144
409
  #, php-format
410
  msgid "Newer Version (%s) Installed"
411
  msgstr ""
412
 
413
- #: easy-table.php:1147
414
  msgid "Latest Version Installed"
415
  msgstr ""
416
 
417
- #: easy-table.php:1156
418
  msgid "Latest Version:"
419
  msgstr ""
420
 
421
- #: easy-table.php:1158
422
  msgid "Author:"
423
  msgstr ""
424
 
425
- #: easy-table.php:1160
426
  msgid "Last Updated:"
427
  msgstr ""
428
 
429
- #: easy-table.php:1161
430
  #, php-format
431
  msgid "%s ago"
432
  msgstr ""
433
 
434
- #: easy-table.php:1163
435
  msgid "Requires WordPress Version:"
436
  msgstr ""
437
 
438
- #: easy-table.php:1163
439
  #, php-format
440
  msgid "%s or higher"
441
  msgstr ""
442
 
443
- #: easy-table.php:1165
444
  msgid "Compatible up to:"
445
  msgstr ""
446
 
447
- #: easy-table.php:1167
448
  msgid "Downloaded:"
449
  msgstr ""
450
 
451
- #: easy-table.php:1169
452
  msgid "WordPress.org Plugin Page &#187;"
453
  msgstr ""
454
 
455
- #: easy-table.php:1171
456
  msgid "Plugin Homepage &#187;"
457
  msgstr ""
458
 
459
- #: easy-table.php:1175
460
  msgid "Average Rating"
461
  msgstr ""
462
 
463
- #: easy-table.php:1193
464
  msgid "Support my work with donation"
465
  msgstr ""
466
 
467
- #: easy-table.php:1202
468
  msgid "Don't have money? No problem, you can rate my plugin instead."
469
  msgstr ""
470
 
471
- #: easy-table.php:1203
472
  msgid "Click here to rate"
473
  msgstr ""
474
 
475
- #: easy-table.php:1205
476
  msgid "Thanks to"
477
  msgstr ""
478
 
479
- #: easy-table.php:1211 easy-table.php:1212 easy-table.php:1213
480
- #: easy-table.php:1214 easy-table.php:1215
481
  msgid "by"
482
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: easy-table 1.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-23 19:18+0700\n"
6
+ "PO-Revision-Date: 2016-01-23 19:18+0700\n"
7
  "Last-Translator: takien <contact@takien.com>\n"
8
  "Language-Team: takien.com <contact@takien.com>\n"
9
  "Language: en_US\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.8.6\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: easy-table.php:120 easy-table.php:128 easy-table.php:136
20
  #, php-format
21
  msgid ""
22
  "It seems that %1$s shortcode already used by another plugin and potentially "
24
  "%4$s. <a href=\"%5$s\">Click here to fix it.</a>"
25
  msgstr ""
26
 
27
+ #: easy-table.php:706
28
  msgid "Settings"
29
  msgstr ""
30
 
31
+ #: easy-table.php:718
32
  msgid "Instruction"
33
  msgstr ""
34
 
35
+ #: easy-table.php:719
36
  msgid ""
37
  "Once plugin installed, go to plugin options page to configure some options"
38
  msgstr ""
39
 
40
+ #: easy-table.php:720
41
  msgid "You are ready to write a table in post or page."
42
  msgstr ""
43
 
44
+ #: easy-table.php:721
45
  msgid ""
46
  "To be able write table in widget you have to check <em>Enable render table "
47
  "in widget</em> option in the option page."
48
  msgstr ""
49
 
50
+ #: easy-table.php:740
51
  #, php-format
52
  msgid "%s Option"
53
  msgstr ""
54
 
55
+ #: easy-table.php:745
56
  msgid "Support"
57
  msgstr ""
58
 
59
+ #: easy-table.php:746
60
  msgid "About"
61
  msgstr ""
62
 
63
+ #: easy-table.php:756
64
  msgid "Show/hide help button"
65
  msgstr ""
66
 
67
+ #: easy-table.php:757
68
  msgid "General options"
69
  msgstr ""
70
 
71
+ #: easy-table.php:762
72
  msgid "Short code tag"
73
  msgstr ""
74
 
75
+ #: easy-table.php:764
76
  msgid "Shortcode tag, type 'table' if you want to use [table] short tag."
77
  msgstr ""
78
 
79
+ #: easy-table.php:770 easy-table.php:1044
80
  msgid "Cell attribute tag"
81
  msgstr ""
82
 
83
+ #: easy-table.php:772
84
  msgid "Cell attribute tag, default is attr."
85
  msgstr ""
86
 
87
+ #: easy-table.php:777
88
  msgid "Also render table in widget?"
89
  msgstr ""
90
 
91
+ #: easy-table.php:779
92
  msgid "Check this if you want the table could be rendered in widget."
93
  msgstr ""
94
 
95
+ #: easy-table.php:784
96
  msgid "Only load JS/CSS when in this condition"
97
  msgstr ""
98
 
99
+ #: easy-table.php:785
100
  msgid "Please check in where JavaScript and CSS should be loaded"
101
  msgstr ""
102
 
103
+ #: easy-table.php:789
104
  msgid "Single"
105
  msgstr ""
106
 
107
+ #: easy-table.php:795
108
  msgid "Page"
109
  msgstr ""
110
 
111
+ #: easy-table.php:801
112
  msgid "Front page"
113
  msgstr ""
114
 
115
+ #: easy-table.php:807
116
  msgid "Archive page"
117
  msgstr ""
118
 
119
+ #: easy-table.php:813
120
  msgid "Search page"
121
  msgstr ""
122
 
123
+ #: easy-table.php:821
124
  msgid "Load script on footer?"
125
  msgstr ""
126
 
127
+ #: easy-table.php:823
128
  msgid ""
129
  "Check this if you want the script to be rendered in footer. Try to check or "
130
  "uncheck this if you experienced conflict with another JavaScript library "
131
  "(not guaranteed though)."
132
  msgstr ""
133
 
134
+ #: easy-table.php:834
135
  msgid "Use tablesorter?"
136
  msgstr ""
137
 
138
+ #: easy-table.php:837
139
  msgid "Check this to use tablesorter jQuery plugin"
140
  msgstr ""
141
 
142
+ #: easy-table.php:841
143
  msgid "Use TH for the first row?"
144
  msgstr ""
145
 
146
+ #: easy-table.php:844
147
  msgid ""
148
  "Check this if you want to use first row as table head (required by "
149
  "tablesorter)"
150
  msgstr ""
151
 
152
+ #: easy-table.php:848
153
  msgid "Load CSS?"
154
  msgstr ""
155
 
156
+ #: easy-table.php:851
157
  msgid ""
158
  "Check this to use CSS included in this plugin to styling table, you may "
159
  "unceck if you want to write your own style."
160
  msgstr ""
161
 
162
+ #: easy-table.php:855
163
  msgid "Table class"
164
  msgstr ""
165
 
166
+ #: easy-table.php:857
167
  msgid "Additional table class attribute."
168
  msgstr ""
169
 
170
+ #: easy-table.php:861
171
  msgid "Table width"
172
  msgstr ""
173
 
174
+ #: easy-table.php:863
175
  msgid "Table width, in pixel or percent (may be overriden by CSS)"
176
  msgstr ""
177
 
178
+ #: easy-table.php:867
179
  msgid "Table border"
180
  msgstr ""
181
 
182
+ #: easy-table.php:869
183
  msgid "Table border (may be overriden by CSS)"
184
  msgstr ""
185
 
186
+ #: easy-table.php:873
187
  msgid "Table align"
188
  msgstr ""
189
 
190
+ #: easy-table.php:875
191
  msgid "Table align (left, center, right)"
192
  msgstr ""
193
 
194
+ #: easy-table.php:880
195
  msgid "Table options"
196
  msgstr ""
197
 
198
+ #: easy-table.php:884
199
  msgid "Theme selector"
200
  msgstr ""
201
 
202
+ #: easy-table.php:889
203
  msgid "Default theme"
204
  msgstr ""
205
 
206
+ #: easy-table.php:893
207
  msgid "Select default theme of the table"
208
  msgstr ""
209
 
210
+ #: easy-table.php:899
211
  msgid "Data options"
212
  msgstr ""
213
 
214
+ #: easy-table.php:904
215
  msgid "Row limit"
216
  msgstr ""
217
 
218
+ #: easy-table.php:908
219
  msgid "Max row to convert to table, default 0 (unlimited)"
220
  msgstr ""
221
 
222
+ #: easy-table.php:912
223
  msgid "Trim cell data?"
224
  msgstr ""
225
 
226
+ #: easy-table.php:917
227
  msgid "Trim empty character around cell data"
228
  msgstr ""
229
 
230
+ #: easy-table.php:923
231
  msgid "Parser options"
232
  msgstr ""
233
 
234
+ #: easy-table.php:924
235
  msgid "Do not change this unless you know what you're doing"
236
  msgstr ""
237
 
238
+ #: easy-table.php:930
239
  msgid "New line replacement"
240
  msgstr ""
241
 
242
+ #: easy-table.php:933
243
  msgid ""
244
  "Since new line is used by parser, you need specify character as a "
245
  "replacement."
246
  msgstr ""
247
 
248
+ #: easy-table.php:936
249
  msgid "Row terminator"
250
  msgstr ""
251
 
252
+ #: easy-table.php:940
253
  msgid ""
254
  "This caharacter will converted into new row. Default value \\n (this is "
255
  "invisible character when you press Enter). If your new line not converted as "
256
  "new row in the table, try use \\r instead."
257
  msgstr ""
258
 
259
+ #: easy-table.php:943
260
  msgid "Delimiter"
261
  msgstr ""
262
 
263
+ #: easy-table.php:946
264
  msgid "CSV delimiter (default is comma)"
265
  msgstr ""
266
 
267
+ #: easy-table.php:949
268
  msgid "Enclosure"
269
  msgstr ""
270
 
271
+ #: easy-table.php:952
272
  msgid "CSV enclosure (default is double quote)"
273
  msgstr ""
274
 
275
+ #: easy-table.php:955
276
  msgid "Escape"
277
  msgstr ""
278
 
279
+ #: easy-table.php:958
280
  msgid "CSV escape (default is backslash)"
281
  msgstr ""
282
 
283
+ #: easy-table.php:961
284
  msgid "Fix linebreak"
285
  msgstr ""
286
 
287
+ #: easy-table.php:964
288
  msgid ""
289
  "If terminator is not default (linebreak), you may encounter some issue with "
290
  "linebreak inside cell, try to check or uncheck this to resolve"
291
  msgstr ""
292
 
293
+ #: easy-table.php:968
294
  msgid "Allow read CSV from file?"
295
  msgstr ""
296
 
297
+ #: easy-table.php:971
298
  msgid "Check this if you also want to convert CSV file to table"
299
  msgstr ""
300
 
301
+ #: easy-table.php:979
302
  msgid "Save"
303
  msgstr ""
304
 
305
+ #: easy-table.php:1003
306
  msgid "Possible parameter"
307
  msgstr ""
308
 
309
+ #: easy-table.php:1004
310
  msgid ""
311
  "These parameters commonly can override global options in the left side of "
312
  "this page. Example usage:"
313
  msgstr ""
314
 
315
+ #: easy-table.php:1007 easy-table.php:1008 easy-table.php:1009
316
+ #: easy-table.php:1010 easy-table.php:1011 easy-table.php:1012
317
+ #: easy-table.php:1013 easy-table.php:1014 easy-table.php:1015
318
+ #: easy-table.php:1016 easy-table.php:1017 easy-table.php:1018
319
+ #: easy-table.php:1019 easy-table.php:1020 easy-table.php:1021
320
+ #: easy-table.php:1022 easy-table.php:1023 easy-table.php:1024
321
+ #: easy-table.php:1025
322
  msgid "default value"
323
  msgstr ""
324
 
325
+ #: easy-table.php:1007
326
  msgid "another value"
327
  msgstr ""
328
 
329
+ #: easy-table.php:1028
330
  msgid ""
331
  "parameter is for initial sorting order. Value for each column separated by "
332
  "comma. See example below:"
333
  msgstr ""
334
 
335
+ #: easy-table.php:1030
336
  msgid ""
337
  "Set initial order of first column descending and second column ascending:"
338
  msgstr ""
339
 
340
+ #: easy-table.php:1036
341
  msgid "Set initial order of second column descending:"
342
  msgstr ""
343
 
344
+ #: easy-table.php:1042
345
  msgid ""
346
  "Additionaly, sort option also can be set via sort attr in a cell. See "
347
  "example below"
348
  msgstr ""
349
 
350
+ #: easy-table.php:1046
351
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
352
  msgstr ""
353
 
354
+ #: easy-table.php:1047
355
  msgid "Example"
356
  msgstr ""
357
 
358
+ #: easy-table.php:1056
359
  msgid "To set initial sort order, this is intended to TH (first row) only."
360
  msgstr ""
361
 
362
+ #: easy-table.php:1057
363
  msgid "Example: sort second column descending "
364
  msgstr ""
365
 
366
+ #: easy-table.php:1074
367
  msgid "Test area:"
368
  msgstr ""
369
 
370
+ #: easy-table.php:1079
371
  msgid "Reset"
372
  msgstr ""
373
 
374
+ #: easy-table.php:1080
375
  msgid "Update preview"
376
  msgstr ""
377
 
378
+ #: easy-table.php:1082
379
  msgid "Preview"
380
  msgstr ""
381
 
382
+ #: easy-table.php:1089
383
  msgid "Easy Table theme editor"
384
  msgstr ""
385
 
386
+ #: easy-table.php:1134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
387
  msgid "Install Now"
388
  msgstr ""
389
 
390
+ #: easy-table.php:1138
391
  msgid "Install Update Now"
392
  msgstr ""
393
 
394
+ #: easy-table.php:1141
395
  #, php-format
396
  msgid "Newer Version (%s) Installed"
397
  msgstr ""
398
 
399
+ #: easy-table.php:1144
400
  msgid "Latest Version Installed"
401
  msgstr ""
402
 
403
+ #: easy-table.php:1153
404
  msgid "Latest Version:"
405
  msgstr ""
406
 
407
+ #: easy-table.php:1155
408
  msgid "Author:"
409
  msgstr ""
410
 
411
+ #: easy-table.php:1157
412
  msgid "Last Updated:"
413
  msgstr ""
414
 
415
+ #: easy-table.php:1158
416
  #, php-format
417
  msgid "%s ago"
418
  msgstr ""
419
 
420
+ #: easy-table.php:1160
421
  msgid "Requires WordPress Version:"
422
  msgstr ""
423
 
424
+ #: easy-table.php:1160
425
  #, php-format
426
  msgid "%s or higher"
427
  msgstr ""
428
 
429
+ #: easy-table.php:1162
430
  msgid "Compatible up to:"
431
  msgstr ""
432
 
433
+ #: easy-table.php:1164
434
  msgid "Downloaded:"
435
  msgstr ""
436
 
437
+ #: easy-table.php:1166
438
  msgid "WordPress.org Plugin Page &#187;"
439
  msgstr ""
440
 
441
+ #: easy-table.php:1168
442
  msgid "Plugin Homepage &#187;"
443
  msgstr ""
444
 
445
+ #: easy-table.php:1172
446
  msgid "Average Rating"
447
  msgstr ""
448
 
449
+ #: easy-table.php:1190
450
  msgid "Support my work with donation"
451
  msgstr ""
452
 
453
+ #: easy-table.php:1199
454
  msgid "Don't have money? No problem, you can rate my plugin instead."
455
  msgstr ""
456
 
457
+ #: easy-table.php:1200
458
  msgid "Click here to rate"
459
  msgstr ""
460
 
461
+ #: easy-table.php:1202
462
  msgid "Thanks to"
463
  msgstr ""
464
 
465
+ #: easy-table.php:1208 easy-table.php:1209 easy-table.php:1210
466
+ #: easy-table.php:1211 easy-table.php:1212
467
  msgid "by"
468
  msgstr ""
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: takien
3
  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: 4.2.4
7
- Stable tag: 1.5.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -248,9 +248,14 @@ No
248
 
249
  == Changelog ==
250
 
 
 
 
 
 
251
  = 1.5.2 =
252
- * Fixed security problems
253
- * Removed Disqus comment on support tab
254
 
255
  = 1.5.2 =
256
  * Fixed: Bug on 1.5/1.5.1, Easy Table does not work in WordPress prior to version 3.6
3
  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: 4.4.1
7
+ Stable tag: 1.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
248
 
249
  == Changelog ==
250
 
251
+ = 1.6 =
252
+ * Added: exclude_row, exclude_col argument. Useful to hide sort of rows or columns from your data.
253
+ * Added: sslverify=false to wp_remote_get $args
254
+ * Fixed: boolean param value.
255
+
256
  = 1.5.2 =
257
+ * Fixed: security problems
258
+ * Removed: Disqus comment on support tab
259
 
260
  = 1.5.2 =
261
  * Fixed: Bug on 1.5/1.5.1, Easy Table does not work in WordPress prior to version 3.6