Easy Table - Version 1.1.1

Version Description

  • Fixed bug custom terminator doesn't work on version 1.1
  • Removed align field on Option page
Download this release

Release Info

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

Code changes from version 1.1 to 1.1.1

.htaccess DELETED
@@ -1 +0,0 @@
1
- Options -Indexes
 
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.1
8
  Author URI: http://takien.com/
9
  */
10
 
@@ -88,7 +88,7 @@ function __construct(){
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];
@@ -317,7 +317,7 @@ ai head, text to shown in the table head row, default is No.
317
  /*nl2br? only if terminator is not \n or \r*/
318
  if(( '\n' !== $terminator ) OR ( '\r' !== $terminator )) {
319
  $cell = nl2br($cell);
320
- }
321
  /*colalign
322
  @since 1.0
323
  */
@@ -744,12 +744,6 @@ settings_fields('easy_table_option_field');
744
  'type' => 'text',
745
  'description' => __('Table width, in pixel or percent (may be overriden by CSS)','easy-table'),
746
  'value' => $this->option('width'))
747
- ,Array(
748
- 'name' => 'easy_table_plugin_option[align]',
749
- 'label' => __('Table align','easy-table'),
750
- 'type' => 'text',
751
- 'description' => __('Table align, left/right/center (may be overriden by CSS)','easy-table'),
752
- 'value' => $this->option('align'))
753
  ,Array(
754
  'name' =>'easy_table_plugin_option[border]',
755
  'label' => __('Table border','easy-table'),
@@ -1133,7 +1127,6 @@ $api = plugins_api('plugin_information', array('slug' => 'easy-table' ));
1133
  <?php endif; ?>
1134
  </div>
1135
  <?php endif; ?>
1136
-
1137
  </div><!--wrap-->
1138
 
1139
  <?php
@@ -1155,6 +1148,17 @@ function easy_table_init() {
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);
@@ -1164,13 +1168,15 @@ if (!function_exists('easy_table_str_getcsv')) {
1164
  /* add dynamic row limit,
1165
  * @since: 1.0
1166
  */
 
1167
  $option = get_option('easy_table_plugin_option');
1168
  $limit = !empty($option['limit']) ? (int)$option['limit'] : 2000;
1169
-
1170
  while (($data = @fgetcsv($handle, $limit, $delimiter, $enclosure)) !== FALSE) {
1171
  $num = count($data);
1172
  for ($c=0; $c < $num; $c++) {
1173
  $line++;
 
 
1174
  $return[$line] = $data[$c];
1175
  }
1176
  }
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.1
8
  Author URI: http://takien.com/
9
  */
10
 
88
  private function easy_table_base($return){
89
  $easy_table_base = Array(
90
  'name' => 'Easy Table',
91
+ 'version' => '1.1.1',
92
  'plugin-domain' => 'easy-table'
93
  );
94
  return $easy_table_base[$return];
317
  /*nl2br? only if terminator is not \n or \r*/
318
  if(( '\n' !== $terminator ) OR ( '\r' !== $terminator )) {
319
  $cell = nl2br($cell);
320
+ }
321
  /*colalign
322
  @since 1.0
323
  */
744
  'type' => 'text',
745
  'description' => __('Table width, in pixel or percent (may be overriden by CSS)','easy-table'),
746
  'value' => $this->option('width'))
 
 
 
 
 
 
747
  ,Array(
748
  'name' =>'easy_table_plugin_option[border]',
749
  'label' => __('Table border','easy-table'),
1127
  <?php endif; ?>
1128
  </div>
1129
  <?php endif; ?>
 
1130
  </div><!--wrap-->
1131
 
1132
  <?php
1148
  */
1149
  if (!function_exists('easy_table_str_getcsv')) {
1150
  function easy_table_str_getcsv($input, $delimiter = ",", $enclosure = '"', $escape = "\\"){
1151
+
1152
+ /**
1153
+ * Bug fix, custom terminator wont work
1154
+ * @since version 1.1.1
1155
+ */
1156
+ if( ("\r" === $delimiter) OR ("\n" === $delimiter) ) {
1157
+ }
1158
+ else {
1159
+ $input = str_replace("\n",'NLINEBREAK',$input);
1160
+ $input = str_replace("\r",'RLINEBREAK',$input);
1161
+ }
1162
  $fiveMBs = 5 * 1024 * 1024;
1163
  if (($handle = fopen("php://temp/maxmemory:$fiveMBs", 'r+')) !== FALSE) {
1164
  fputs($handle, $input);
1168
  /* add dynamic row limit,
1169
  * @since: 1.0
1170
  */
1171
+
1172
  $option = get_option('easy_table_plugin_option');
1173
  $limit = !empty($option['limit']) ? (int)$option['limit'] : 2000;
 
1174
  while (($data = @fgetcsv($handle, $limit, $delimiter, $enclosure)) !== FALSE) {
1175
  $num = count($data);
1176
  for ($c=0; $c < $num; $c++) {
1177
  $line++;
1178
+ $data[$c] = str_replace('NLINEBREAK',"\n",$data[$c]);
1179
+ $data[$c] = str_replace('RLINEBREAK',"\r",$data[$c]);
1180
  $return[$line] = $data[$c];
1181
  }
1182
  }
languages/easy-table-id_ID.mo CHANGED
Binary file
languages/easy-table-id_ID.po CHANGED
@@ -1,10 +1,10 @@
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"
@@ -25,8 +25,7 @@ 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
@@ -34,9 +33,7 @@ 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
@@ -68,7 +65,8 @@ msgstr ""
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
 
@@ -117,10 +115,7 @@ 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
@@ -136,9 +131,7 @@ 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
@@ -146,9 +139,7 @@ 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
@@ -234,9 +225,7 @@ 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
@@ -245,9 +234,8 @@ 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
@@ -291,17 +279,25 @@ 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"
@@ -311,16 +307,11 @@ 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
@@ -328,9 +319,7 @@ 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
@@ -370,24 +359,16 @@ 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"
@@ -468,7 +449,9 @@ msgstr "Klik di sini untuk memberi nilai"
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"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: easy-table 1.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 14:24+0700\n"
7
+ "Last-Translator: takien <contact@takien.com>\n"
8
  "Language-Team: takien.com <contact@takien.com>\n"
9
  "Language: id_ID\n"
10
  "MIME-Version: 1.0\n"
25
  msgstr "Petunjuk"
26
 
27
  #: easy-table.php:601
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:602
33
  msgstr "Anda telah siap untuk membuat tabel di post atau halaman."
34
 
35
  #: easy-table.php:603
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:622
65
  msgid "Shortcode tag, type 'table' if you want to use [table] short tag."
66
  msgstr ""
67
 
68
+ #: easy-table.php:652
69
+ #: easy-table.php:917
70
  msgid "Cell attribute tag"
71
  msgstr ""
72
 
115
  msgstr "Muat script di footer?"
116
 
117
  #: easy-table.php:705
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:716
131
  msgstr "Gunakan TH untuk baris pertama?"
132
 
133
  #: easy-table.php:726
134
+ msgid "Check this if you want to use first row as table head (required by tablesorter)"
 
 
135
  msgstr ""
136
 
137
  #: easy-table.php:730
139
  msgstr "Muat CSS?"
140
 
141
  #: easy-table.php:733
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:737
225
  msgstr "Pengganti baris baru"
226
 
227
  #: easy-table.php:815
228
+ msgid "Since new line is used by parser, you need specify character as a replacement."
 
 
229
  msgstr ""
230
 
231
  #: easy-table.php:818
234
 
235
  #: easy-table.php:822
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:825
279
  msgstr "Parameter yang dimungkinkan"
280
 
281
  #: easy-table.php:879
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:882
286
+ #: easy-table.php:883
287
+ #: easy-table.php:884
288
+ #: easy-table.php:885
289
+ #: easy-table.php:886
290
+ #: easy-table.php:887
291
+ #: easy-table.php:888
292
+ #: easy-table.php:889
293
+ #: easy-table.php:890
294
+ #: easy-table.php:891
295
+ #: easy-table.php:892
296
+ #: easy-table.php:893
297
+ #: easy-table.php:894
298
+ #: easy-table.php:895
299
+ #: easy-table.php:896
300
+ #: easy-table.php:897
301
  #: easy-table.php:898
302
  msgid "default value"
303
  msgstr "nilai bawaan"
307
  msgstr "nilai lainnya"
308
 
309
  #: easy-table.php:901
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:903
314
+ msgid "Set initial order of first column descending and second column ascending:"
 
315
  msgstr ""
316
 
317
  #: easy-table.php:909
319
  msgstr ""
320
 
321
  #: easy-table.php:915
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:919
359
  msgstr ""
360
 
361
  #: easy-table.php:992
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:993
366
+ msgid "You can use this discussion to get support, request feature or reporting bug."
 
367
  msgstr ""
368
 
369
  #: easy-table.php:994
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:1053
374
  msgid "Install Now"
449
  msgid "Thanks to"
450
  msgstr "Terimakasih kepada"
451
 
452
+ #: easy-table.php:1127
453
+ #: easy-table.php:1128
454
+ #: easy-table.php:1129
455
  #: easy-table.php:1130
456
  msgid "by"
457
  msgstr "oleh"
languages/english.mo CHANGED
Binary file
languages/english.po CHANGED
@@ -1,10 +1,10 @@
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"
@@ -25,8 +25,7 @@ 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
@@ -34,9 +33,7 @@ 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
@@ -68,7 +65,8 @@ msgstr ""
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
 
@@ -117,10 +115,7 @@ 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
@@ -136,9 +131,7 @@ 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
@@ -146,9 +139,7 @@ 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
@@ -232,9 +223,7 @@ 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
@@ -243,9 +232,8 @@ 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
@@ -289,15 +277,25 @@ 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 ""
@@ -307,14 +305,11 @@ 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
@@ -322,9 +317,7 @@ 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
@@ -364,15 +357,11 @@ 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
@@ -458,7 +447,10 @@ msgstr ""
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 ""
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: easy-table 1.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 14: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"
10
  "MIME-Version: 1.0\n"
25
  msgstr ""
26
 
27
  #: easy-table.php:601
28
+ msgid "Once plugin installed, go to plugin options page to configure some options"
 
29
  msgstr ""
30
 
31
  #: easy-table.php:602
33
  msgstr ""
34
 
35
  #: easy-table.php:603
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:622
65
  msgid "Shortcode tag, type 'table' if you want to use [table] short tag."
66
  msgstr ""
67
 
68
+ #: easy-table.php:652
69
+ #: easy-table.php:917
70
  msgid "Cell attribute tag"
71
  msgstr ""
72
 
115
  msgstr ""
116
 
117
  #: easy-table.php:705
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:716
131
  msgstr ""
132
 
133
  #: easy-table.php:726
134
+ msgid "Check this if you want to use first row as table head (required by tablesorter)"
 
 
135
  msgstr ""
136
 
137
  #: easy-table.php:730
139
  msgstr ""
140
 
141
  #: easy-table.php:733
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:737
223
  msgstr ""
224
 
225
  #: easy-table.php:815
226
+ msgid "Since new line is used by parser, you need specify character as a replacement."
 
 
227
  msgstr ""
228
 
229
  #: easy-table.php:818
232
 
233
  #: easy-table.php:822
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:825
277
  msgstr ""
278
 
279
  #: easy-table.php:879
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:882
284
+ #: easy-table.php:883
285
+ #: easy-table.php:884
286
+ #: easy-table.php:885
287
+ #: easy-table.php:886
288
+ #: easy-table.php:887
289
+ #: easy-table.php:888
290
+ #: easy-table.php:889
291
+ #: easy-table.php:890
292
+ #: easy-table.php:891
293
+ #: easy-table.php:892
294
+ #: easy-table.php:893
295
+ #: easy-table.php:894
296
+ #: easy-table.php:895
297
+ #: easy-table.php:896
298
+ #: easy-table.php:897
299
  #: easy-table.php:898
300
  msgid "default value"
301
  msgstr ""
305
  msgstr ""
306
 
307
  #: easy-table.php:901
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:903
312
+ msgid "Set initial order of first column descending and second column ascending:"
 
313
  msgstr ""
314
 
315
  #: easy-table.php:909
317
  msgstr ""
318
 
319
  #: easy-table.php:915
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:919
357
  msgstr ""
358
 
359
  #: easy-table.php:992
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:993
364
+ msgid "You can use this discussion to get support, request feature or reporting bug."
 
365
  msgstr ""
366
 
367
  #: easy-table.php:994
447
  msgid "Thanks to"
448
  msgstr ""
449
 
450
+ #: easy-table.php:1127
451
+ #: easy-table.php:1128
452
+ #: easy-table.php:1129
453
  #: easy-table.php:1130
454
  msgid "by"
455
  msgstr ""
456
+
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.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -215,6 +215,10 @@ No
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)
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.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.1 =
219
+ * Fixed bug custom terminator doesn't work on version 1.1
220
+ * Removed align field on Option page
221
+
222
  = 1.1 =
223
  * Removed: .htaccess from plugin directory (Fixed unloaded script on some servers)
224
  * Use dedicated str_getcsv for Easy Table (Fixed incompatibility issue with AIOSP version 2.0)
screenshot-1.png DELETED
Binary file
screenshot-2.png DELETED
Binary file
screenshot-3.png DELETED
Binary file
screenshot-4.png DELETED
Binary file