Easy Table - Version 0.6

Version Description

  • Fixed: Missing tbody opening tag on some condition
  • Fixed: Duplicate unit of width attribute
Download this release

Release Info

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

Code changes from version 0.5 to 0.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: 0.5
8
  Author URI: http://takien.com/
9
  */
10
 
@@ -85,7 +85,7 @@ function __construct(){
85
  private function easy_table_base($return){
86
  $easy_table_base = Array(
87
  'name' => 'Easy Table',
88
- 'version' => '0.5',
89
  'plugin-domain' => 'easy-table'
90
  );
91
  return $easy_table_base[$return];
@@ -150,15 +150,23 @@ private function csv_to_table($data,$args){
150
  * tfoot position
151
  * @since 0.4
152
  */
153
- $tfpos = ($tf == 'last') ? count($data)-1 : 2;
154
- $output = '<table '.($id ? 'id="'.$id.'"':'').' style="width:'.$width.'px" width="'.$width.'" align="'.$align.'" class="table '.($tablesorter ? 'tablesorter ':'').$class.'" '.(($border !=='0') ? 'border="'.$border.'"' : '').'>';
155
- $output .= $caption ? '<caption>'.$caption.'</caption>' : '';
156
- $output .= $th ? '<thead>' : ($tf ? '' : '<tbody>');
 
 
 
 
 
 
 
 
157
 
158
  foreach($data as $k=>$cols){ $i++;
159
  //$cols = array_pad($cols,$max_cols,'');
160
 
161
- $output .= (($i==$tfpos) AND $tf) ? '<tfoot>': '';
162
  $output .= "\r\n".'<tr>';
163
 
164
  $thtd = ((($i==1) AND $th) OR (($i==$tfpos) AND $tf)) ? 'th' : 'td';
@@ -174,15 +182,15 @@ private function csv_to_table($data,$args){
174
  $colspan = shortcode_parse_atts($attr);
175
  $colspan = $colspan['colspan'];
176
  */
177
- $output .= "<$thtd $attr>".do_shortcode($col)."</$thtd>";
178
  }
179
 
180
- $output .= '</tr>';
181
- $output .= (($i==1) AND $th) ? '</thead>' : '';
182
- $output .= (($i==$tfpos) AND $tf) ? '</tfoot>': '';
183
 
184
  }
185
- $output .= '</tbody></table>';
186
  return $output;
187
  }
188
 
@@ -283,6 +291,7 @@ function easy_table_style() {
283
  {
284
  if($this->get_easy_table_option('loadcss')) {
285
  wp_register_style('easy_table_style', plugins_url('easy-table-style.css', __FILE__),false,$this->easy_table_base('version'));
 
286
  wp_enqueue_style( 'easy_table_style');
287
  }
288
  }
4
  Plugin URI: http://takien.com/
5
  Description: Create table in post, page, or widget in easy way.
6
  Author: Takien
7
+ Version: 0.6
8
  Author URI: http://takien.com/
9
  */
10
 
85
  private function easy_table_base($return){
86
  $easy_table_base = Array(
87
  'name' => 'Easy Table',
88
+ 'version' => '0.6',
89
  'plugin-domain' => 'easy-table'
90
  );
91
  return $easy_table_base[$return];
150
  * tfoot position
151
  * @since 0.4
152
  */
153
+ $tfpos = ($tf == 'last') ? count($data) : ($th?2:1);
154
+
155
+ $pos = strpos($width,'px');
156
+ if ($pos === false) {
157
+ $width = (int)$width.'%';
158
+ } else {
159
+ $width = (int)$width.'px';
160
+ }
161
+ $output .= $width.'<table '.($id ? 'id="'.$id.'"':'').' style="width:'.$width.';'.(($align=='center') ? 'margin-left:auto;margin-right:auto' : '').'" width="'.(int)$width.'" align="'.$align.'" class="table clearfix '.($tablesorter ? 'tablesorter ':'').$class.'" '.(($border !=='0') ? 'border="'.$border.'"' : '').'>'."\n";
162
+ $output .= $caption ? '<caption>'.$caption.'</caption>'."\n" : '';
163
+ $output .= $th ? '<thead>' : (($tf !== 'last') ? '' : '<tbody>');
164
+ $output .= (!$th AND !$tf) ? '<tbody>':'';
165
 
166
  foreach($data as $k=>$cols){ $i++;
167
  //$cols = array_pad($cols,$max_cols,'');
168
 
169
+ $output .= (($i==$tfpos) AND $tf) ? (($tf=='last')?'</tbody>':'').'<tfoot>': '';
170
  $output .= "\r\n".'<tr>';
171
 
172
  $thtd = ((($i==1) AND $th) OR (($i==$tfpos) AND $tf)) ? 'th' : 'td';
182
  $colspan = shortcode_parse_atts($attr);
183
  $colspan = $colspan['colspan'];
184
  */
185
+ $output .= "<$thtd $attr>".do_shortcode($col)."</$thtd>\n";
186
  }
187
 
188
+ $output .= '</tr>'."\n";
189
+ $output .= (($i==1) AND $th) ? '</thead>'."\n".'<tbody>' : '';
190
+ $output .= (($i==$tfpos) AND $tf) ? '</tfoot>'.((($tf==1) AND !$th) ? '<tbody>':''): '';
191
 
192
  }
193
+ $output .= (($tf!=='last')?'</tbody>':'').'</table>';
194
  return $output;
195
  }
196
 
291
  {
292
  if($this->get_easy_table_option('loadcss')) {
293
  wp_register_style('easy_table_style', plugins_url('easy-table-style.css', __FILE__),false,$this->easy_table_base('version'));
294
+ //wp_register_style('easy_table_style', plugins_url('/themes/aucity/style.css', __FILE__),false,$this->easy_table_base('version'));
295
  wp_enqueue_style( 'easy_table_style');
296
  }
297
  }
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 0.5\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-01 00:18+0700\n"
6
- "PO-Revision-Date: 2012-06-01 00:18+0700\n"
7
  "Last-Translator: takien <contact@takien.com>\n"
8
  "Language-Team: takien.com <contact@takien.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,333 +16,333 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: easy-table.php:367
20
  msgid "Settings"
21
  msgstr "Pengaturan"
22
 
23
- #: easy-table.php:379
24
  msgid "Instruction"
25
  msgstr "Petunjuk"
26
 
27
- #: easy-table.php:380
28
  msgid "Once plugin installed, go to plugin options page to configure some options"
29
  msgstr ""
30
 
31
- #: easy-table.php:381
32
  msgid "You are ready to write a table in post or page."
33
  msgstr ""
34
 
35
- #: easy-table.php:382
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:402
40
  #, php-format
41
  msgid "%s Option"
42
  msgstr "Pengaturan %s"
43
 
44
- #: easy-table.php:403
45
  msgid "Support"
46
  msgstr ""
47
 
48
- #: easy-table.php:404
49
  msgid "About"
50
  msgstr ""
51
 
52
- #: easy-table.php:414
53
  msgid "Show/hide description"
54
  msgstr ""
55
 
56
- #: easy-table.php:415
57
  msgid "General options"
58
  msgstr "Pengaturan umum"
59
 
60
- #: easy-table.php:420
61
  msgid "Short code tag"
62
  msgstr ""
63
 
64
- #: easy-table.php:422
65
  msgid "Shortcode tag, type \"table\" if you want to use [table] short tag."
66
  msgstr ""
67
 
68
- #: easy-table.php:428
69
- #: easy-table.php:601
70
  msgid "Cell attribute tag"
71
  msgstr ""
72
 
73
- #: easy-table.php:430
74
  msgid "Cell attribute tag, default is attr."
75
  msgstr ""
76
 
77
- #: easy-table.php:435
78
  msgid "Also render table in widget?"
79
  msgstr ""
80
 
81
- #: easy-table.php:437
82
  msgid "Check this if you want the table could be rendered in widget."
83
  msgstr ""
84
 
85
- #: easy-table.php:442
86
  msgid "Only load JS/CSS when in this condition"
87
  msgstr ""
88
 
89
- #: easy-table.php:443
90
  msgid "Please check in where JavaScript and CSS should be loaded"
91
  msgstr ""
92
 
93
- #: easy-table.php:447
94
  msgid "Single"
95
  msgstr ""
96
 
97
- #: easy-table.php:453
98
  msgid "Page"
99
  msgstr ""
100
 
101
- #: easy-table.php:459
102
  msgid "Front page"
103
  msgstr ""
104
 
105
- #: easy-table.php:465
106
  msgid "Archive page"
107
  msgstr ""
108
 
109
- #: easy-table.php:477
110
  msgid "Use tablesorter?"
111
  msgstr "Gunakan tablesorter?"
112
 
113
- #: easy-table.php:480
114
  msgid "Check this to use tablesorter jQuery plugin"
115
  msgstr "Ceklist ini jika ingin menggunakan jQuery plugin tablesorter"
116
 
117
- #: easy-table.php:484
118
  msgid "Use TH for the first row?"
119
  msgstr "Gunakan TH untuk baris pertama?"
120
 
121
- #: easy-table.php:487
122
  msgid "Check this if you want to use first row as table head (required by tablesorter)"
123
  msgstr ""
124
 
125
- #: easy-table.php:491
126
  msgid "Load CSS?"
127
  msgstr "Muat CSS?"
128
 
129
- #: easy-table.php:494
130
  msgid "Check this to use CSS included in this plugin to styling table, you may unceck if you want to write your own style."
131
  msgstr "Ceklist ini untuk menyertakan CSS untuk penataan tampilan tabel."
132
 
133
- #: easy-table.php:498
134
  msgid "Table class"
135
  msgstr "Class tabel"
136
 
137
- #: easy-table.php:500
138
  msgid "Table class attribute, if you use bootstrap CSS, you should add at least \"table\" class."
139
  msgstr "Atribut class pada tabel, jika Anda menggunakan CSS bootstrap, setidaknya harus menambahkan class \"table\""
140
 
141
- #: easy-table.php:504
142
  msgid "Table width"
143
  msgstr "Lebar tabel"
144
 
145
- #: easy-table.php:506
146
  msgid "Table width, in pixel or percent (may be overriden by CSS)"
147
  msgstr "Lebar tabel, dalam pixel atau persen (kemungkinan ditimpa oleh CSS)"
148
 
149
- #: easy-table.php:510
150
  msgid "Table align"
151
  msgstr "Perataan tabel"
152
 
153
- #: easy-table.php:512
154
  msgid "Table align, left/right/center (may be overriden by CSS)"
155
  msgstr "Perataan tabel, left/right/center (kemungkinan ditimpa oleh CSS)"
156
 
157
- #: easy-table.php:516
158
  msgid "Table border"
159
  msgstr "Garis tabel"
160
 
161
- #: easy-table.php:518
162
  msgid "Table border (may be overriden by CSS)"
163
  msgstr "Garis tabel (kemungkinan ditimpa oleh CSS)"
164
 
165
- #: easy-table.php:523
166
  msgid "Table options"
167
  msgstr "Pengaturan tabel"
168
 
169
- #: easy-table.php:528
170
  msgid "Parser Option"
171
  msgstr "Pengaturan parser"
172
 
173
- #: easy-table.php:529
174
  msgid "Do not change this unless you know what you're doing"
175
  msgstr "Jangan ganti bagian ini kecuali Anda mengetahuinya"
176
 
177
- #: easy-table.php:535
178
  msgid "Delimiter"
179
  msgstr "Pemisah"
180
 
181
- #: easy-table.php:538
182
  msgid "CSV delimiter (default is comma)"
183
  msgstr ""
184
 
185
- #: easy-table.php:541
186
  msgid "Enclosure"
187
  msgstr ""
188
 
189
- #: easy-table.php:544
190
  msgid "CSV enclosure (default is double quote)"
191
  msgstr ""
192
 
193
- #: easy-table.php:547
194
  msgid "Escape"
195
  msgstr ""
196
 
197
- #: easy-table.php:550
198
  msgid "CSV escape (default is backslash)"
199
  msgstr ""
200
 
201
- #: easy-table.php:553
202
  msgid "Allow read CSV from file?"
203
  msgstr "Bolehkan membaca CSV dari file?"
204
 
205
- #: easy-table.php:556
206
  msgid "Check this if you also want to convert CSV file to table"
207
  msgstr "Ceklist ini jika Anda juga ingin merubah file CSV ke tabel"
208
 
209
- #: easy-table.php:564
210
  msgid "Save"
211
  msgstr "Simpan"
212
 
213
- #: easy-table.php:586
214
  msgid "Possible parameter"
215
  msgstr "Parameter yang dimungkinkan"
216
 
217
- #: easy-table.php:587
218
  msgid "These parameters commonly can override global options in the left side of this page. Example usage:"
219
  msgstr "Parameter berikut ini secara umum dapat menggantikan setingan global yang ada di sebelah kiri halaman ini. Contoh penggunaan:"
220
 
221
- #: easy-table.php:590
222
- #: easy-table.php:591
223
- #: easy-table.php:592
224
- #: easy-table.php:593
225
- #: easy-table.php:594
226
- #: easy-table.php:595
227
- #: easy-table.php:596
228
- #: easy-table.php:597
229
- #: easy-table.php:598
230
  #: easy-table.php:599
 
 
 
 
 
 
 
 
 
231
  msgid "default value"
232
  msgstr "nilai bawaan"
233
 
234
- #: easy-table.php:590
235
  msgid "another value"
236
  msgstr "nilai lainnya"
237
 
238
- #: easy-table.php:603
239
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
240
  msgstr ""
241
 
242
- #: easy-table.php:604
243
  msgid "Usage"
244
  msgstr ""
245
 
246
- #: easy-table.php:615
247
  msgid "Test area:"
248
  msgstr "Area test:"
249
 
250
- #: easy-table.php:620
251
  msgid "Reset"
252
  msgstr "Reset"
253
 
254
- #: easy-table.php:621
255
  msgid "Update preview"
256
  msgstr "Perbaharui pratinjau"
257
 
258
- #: easy-table.php:623
259
  msgid "Preview"
260
  msgstr "Pratinjau"
261
 
262
- #: easy-table.php:631
263
  msgid "Full documentation, see here!"
264
  msgstr ""
265
 
266
- #: easy-table.php:632
267
  msgid "Or you can use this discussion to get support, request feature or reporting bug."
268
  msgstr ""
269
 
270
- #: easy-table.php:690
271
  msgid "Install Now"
272
  msgstr ""
273
 
274
- #: easy-table.php:694
275
  msgid "Install Update Now"
276
  msgstr ""
277
 
278
- #: easy-table.php:697
279
  #, php-format
280
  msgid "Newer Version (%s) Installed"
281
  msgstr ""
282
 
283
- #: easy-table.php:700
284
  msgid "Latest Version Installed"
285
  msgstr ""
286
 
287
- #: easy-table.php:709
288
  msgid "Latest Version:"
289
  msgstr ""
290
 
291
- #: easy-table.php:711
292
  msgid "Author:"
293
  msgstr ""
294
 
295
- #: easy-table.php:713
296
  msgid "Last Updated:"
297
  msgstr ""
298
 
299
- #: easy-table.php:714
300
  #, php-format
301
  msgid "%s ago"
302
  msgstr ""
303
 
304
- #: easy-table.php:716
305
  msgid "Requires WordPress Version:"
306
  msgstr ""
307
 
308
- #: easy-table.php:716
309
  #, php-format
310
  msgid "%s or higher"
311
  msgstr ""
312
 
313
- #: easy-table.php:718
314
  msgid "Compatible up to:"
315
  msgstr ""
316
 
317
- #: easy-table.php:720
318
  msgid "Downloaded:"
319
  msgstr ""
320
 
321
- #: easy-table.php:722
322
  msgid "WordPress.org Plugin Page &#187;"
323
  msgstr ""
324
 
325
- #: easy-table.php:724
326
  msgid "Plugin Homepage &#187;"
327
  msgstr ""
328
 
329
- #: easy-table.php:728
330
  msgid "Average Rating"
331
  msgstr ""
332
 
333
- #: easy-table.php:738
334
  msgid "Click here to rate"
335
  msgstr ""
336
 
337
- #: easy-table.php:739
338
  msgid "Credit"
339
  msgstr "Kredit"
340
 
341
- #: easy-table.php:740
342
  msgid "Tablesorter by"
343
  msgstr "Tablesorter oleh"
344
 
345
- #: easy-table.php:740
346
  msgid "CSS by"
347
  msgstr "CSS oleh"
348
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: easy-table 0.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-10 22:48+0700\n"
6
+ "PO-Revision-Date: 2012-06-10 22:48+0700\n"
7
  "Last-Translator: takien <contact@takien.com>\n"
8
  "Language-Team: takien.com <contact@takien.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: easy-table.php:376
20
  msgid "Settings"
21
  msgstr "Pengaturan"
22
 
23
+ #: easy-table.php:388
24
  msgid "Instruction"
25
  msgstr "Petunjuk"
26
 
27
+ #: easy-table.php:389
28
  msgid "Once plugin installed, go to plugin options page to configure some options"
29
  msgstr ""
30
 
31
+ #: easy-table.php:390
32
  msgid "You are ready to write a table in post or page."
33
  msgstr ""
34
 
35
+ #: easy-table.php:391
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:411
40
  #, php-format
41
  msgid "%s Option"
42
  msgstr "Pengaturan %s"
43
 
44
+ #: easy-table.php:412
45
  msgid "Support"
46
  msgstr ""
47
 
48
+ #: easy-table.php:413
49
  msgid "About"
50
  msgstr ""
51
 
52
+ #: easy-table.php:423
53
  msgid "Show/hide description"
54
  msgstr ""
55
 
56
+ #: easy-table.php:424
57
  msgid "General options"
58
  msgstr "Pengaturan umum"
59
 
60
+ #: easy-table.php:429
61
  msgid "Short code tag"
62
  msgstr ""
63
 
64
+ #: easy-table.php:431
65
  msgid "Shortcode tag, type \"table\" if you want to use [table] short tag."
66
  msgstr ""
67
 
68
+ #: easy-table.php:437
69
+ #: easy-table.php:610
70
  msgid "Cell attribute tag"
71
  msgstr ""
72
 
73
+ #: easy-table.php:439
74
  msgid "Cell attribute tag, default is attr."
75
  msgstr ""
76
 
77
+ #: easy-table.php:444
78
  msgid "Also render table in widget?"
79
  msgstr ""
80
 
81
+ #: easy-table.php:446
82
  msgid "Check this if you want the table could be rendered in widget."
83
  msgstr ""
84
 
85
+ #: easy-table.php:451
86
  msgid "Only load JS/CSS when in this condition"
87
  msgstr ""
88
 
89
+ #: easy-table.php:452
90
  msgid "Please check in where JavaScript and CSS should be loaded"
91
  msgstr ""
92
 
93
+ #: easy-table.php:456
94
  msgid "Single"
95
  msgstr ""
96
 
97
+ #: easy-table.php:462
98
  msgid "Page"
99
  msgstr ""
100
 
101
+ #: easy-table.php:468
102
  msgid "Front page"
103
  msgstr ""
104
 
105
+ #: easy-table.php:474
106
  msgid "Archive page"
107
  msgstr ""
108
 
109
+ #: easy-table.php:486
110
  msgid "Use tablesorter?"
111
  msgstr "Gunakan tablesorter?"
112
 
113
+ #: easy-table.php:489
114
  msgid "Check this to use tablesorter jQuery plugin"
115
  msgstr "Ceklist ini jika ingin menggunakan jQuery plugin tablesorter"
116
 
117
+ #: easy-table.php:493
118
  msgid "Use TH for the first row?"
119
  msgstr "Gunakan TH untuk baris pertama?"
120
 
121
+ #: easy-table.php:496
122
  msgid "Check this if you want to use first row as table head (required by tablesorter)"
123
  msgstr ""
124
 
125
+ #: easy-table.php:500
126
  msgid "Load CSS?"
127
  msgstr "Muat CSS?"
128
 
129
+ #: easy-table.php:503
130
  msgid "Check this to use CSS included in this plugin to styling table, you may unceck if you want to write your own style."
131
  msgstr "Ceklist ini untuk menyertakan CSS untuk penataan tampilan tabel."
132
 
133
+ #: easy-table.php:507
134
  msgid "Table class"
135
  msgstr "Class tabel"
136
 
137
+ #: easy-table.php:509
138
  msgid "Table class attribute, if you use bootstrap CSS, you should add at least \"table\" class."
139
  msgstr "Atribut class pada tabel, jika Anda menggunakan CSS bootstrap, setidaknya harus menambahkan class \"table\""
140
 
141
+ #: easy-table.php:513
142
  msgid "Table width"
143
  msgstr "Lebar tabel"
144
 
145
+ #: easy-table.php:515
146
  msgid "Table width, in pixel or percent (may be overriden by CSS)"
147
  msgstr "Lebar tabel, dalam pixel atau persen (kemungkinan ditimpa oleh CSS)"
148
 
149
+ #: easy-table.php:519
150
  msgid "Table align"
151
  msgstr "Perataan tabel"
152
 
153
+ #: easy-table.php:521
154
  msgid "Table align, left/right/center (may be overriden by CSS)"
155
  msgstr "Perataan tabel, left/right/center (kemungkinan ditimpa oleh CSS)"
156
 
157
+ #: easy-table.php:525
158
  msgid "Table border"
159
  msgstr "Garis tabel"
160
 
161
+ #: easy-table.php:527
162
  msgid "Table border (may be overriden by CSS)"
163
  msgstr "Garis tabel (kemungkinan ditimpa oleh CSS)"
164
 
165
+ #: easy-table.php:532
166
  msgid "Table options"
167
  msgstr "Pengaturan tabel"
168
 
169
+ #: easy-table.php:537
170
  msgid "Parser Option"
171
  msgstr "Pengaturan parser"
172
 
173
+ #: easy-table.php:538
174
  msgid "Do not change this unless you know what you're doing"
175
  msgstr "Jangan ganti bagian ini kecuali Anda mengetahuinya"
176
 
177
+ #: easy-table.php:544
178
  msgid "Delimiter"
179
  msgstr "Pemisah"
180
 
181
+ #: easy-table.php:547
182
  msgid "CSV delimiter (default is comma)"
183
  msgstr ""
184
 
185
+ #: easy-table.php:550
186
  msgid "Enclosure"
187
  msgstr ""
188
 
189
+ #: easy-table.php:553
190
  msgid "CSV enclosure (default is double quote)"
191
  msgstr ""
192
 
193
+ #: easy-table.php:556
194
  msgid "Escape"
195
  msgstr ""
196
 
197
+ #: easy-table.php:559
198
  msgid "CSV escape (default is backslash)"
199
  msgstr ""
200
 
201
+ #: easy-table.php:562
202
  msgid "Allow read CSV from file?"
203
  msgstr "Bolehkan membaca CSV dari file?"
204
 
205
+ #: easy-table.php:565
206
  msgid "Check this if you also want to convert CSV file to table"
207
  msgstr "Ceklist ini jika Anda juga ingin merubah file CSV ke tabel"
208
 
209
+ #: easy-table.php:573
210
  msgid "Save"
211
  msgstr "Simpan"
212
 
213
+ #: easy-table.php:595
214
  msgid "Possible parameter"
215
  msgstr "Parameter yang dimungkinkan"
216
 
217
+ #: easy-table.php:596
218
  msgid "These parameters commonly can override global options in the left side of this page. Example usage:"
219
  msgstr "Parameter berikut ini secara umum dapat menggantikan setingan global yang ada di sebelah kiri halaman ini. Contoh penggunaan:"
220
 
 
 
 
 
 
 
 
 
 
221
  #: easy-table.php:599
222
+ #: easy-table.php:600
223
+ #: easy-table.php:601
224
+ #: easy-table.php:602
225
+ #: easy-table.php:603
226
+ #: easy-table.php:604
227
+ #: easy-table.php:605
228
+ #: easy-table.php:606
229
+ #: easy-table.php:607
230
+ #: easy-table.php:608
231
  msgid "default value"
232
  msgstr "nilai bawaan"
233
 
234
+ #: easy-table.php:599
235
  msgid "another value"
236
  msgstr "nilai lainnya"
237
 
238
+ #: easy-table.php:612
239
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
240
  msgstr ""
241
 
242
+ #: easy-table.php:613
243
  msgid "Usage"
244
  msgstr ""
245
 
246
+ #: easy-table.php:624
247
  msgid "Test area:"
248
  msgstr "Area test:"
249
 
250
+ #: easy-table.php:629
251
  msgid "Reset"
252
  msgstr "Reset"
253
 
254
+ #: easy-table.php:630
255
  msgid "Update preview"
256
  msgstr "Perbaharui pratinjau"
257
 
258
+ #: easy-table.php:632
259
  msgid "Preview"
260
  msgstr "Pratinjau"
261
 
262
+ #: easy-table.php:640
263
  msgid "Full documentation, see here!"
264
  msgstr ""
265
 
266
+ #: easy-table.php:641
267
  msgid "Or you can use this discussion to get support, request feature or reporting bug."
268
  msgstr ""
269
 
270
+ #: easy-table.php:699
271
  msgid "Install Now"
272
  msgstr ""
273
 
274
+ #: easy-table.php:703
275
  msgid "Install Update Now"
276
  msgstr ""
277
 
278
+ #: easy-table.php:706
279
  #, php-format
280
  msgid "Newer Version (%s) Installed"
281
  msgstr ""
282
 
283
+ #: easy-table.php:709
284
  msgid "Latest Version Installed"
285
  msgstr ""
286
 
287
+ #: easy-table.php:718
288
  msgid "Latest Version:"
289
  msgstr ""
290
 
291
+ #: easy-table.php:720
292
  msgid "Author:"
293
  msgstr ""
294
 
295
+ #: easy-table.php:722
296
  msgid "Last Updated:"
297
  msgstr ""
298
 
299
+ #: easy-table.php:723
300
  #, php-format
301
  msgid "%s ago"
302
  msgstr ""
303
 
304
+ #: easy-table.php:725
305
  msgid "Requires WordPress Version:"
306
  msgstr ""
307
 
308
+ #: easy-table.php:725
309
  #, php-format
310
  msgid "%s or higher"
311
  msgstr ""
312
 
313
+ #: easy-table.php:727
314
  msgid "Compatible up to:"
315
  msgstr ""
316
 
317
+ #: easy-table.php:729
318
  msgid "Downloaded:"
319
  msgstr ""
320
 
321
+ #: easy-table.php:731
322
  msgid "WordPress.org Plugin Page &#187;"
323
  msgstr ""
324
 
325
+ #: easy-table.php:733
326
  msgid "Plugin Homepage &#187;"
327
  msgstr ""
328
 
329
+ #: easy-table.php:737
330
  msgid "Average Rating"
331
  msgstr ""
332
 
333
+ #: easy-table.php:747
334
  msgid "Click here to rate"
335
  msgstr ""
336
 
337
+ #: easy-table.php:748
338
  msgid "Credit"
339
  msgstr "Kredit"
340
 
341
+ #: easy-table.php:749
342
  msgid "Tablesorter by"
343
  msgstr "Tablesorter oleh"
344
 
345
+ #: easy-table.php:749
346
  msgid "CSS by"
347
  msgstr "CSS oleh"
348
 
languages/english.mo CHANGED
Binary file
languages/english.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: easy-table 0.5\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-01 00:18+0700\n"
6
- "PO-Revision-Date: 2012-06-01 00:18+0700\n"
7
  "Last-Translator: takien <contact@takien.com>\n"
8
  "Language-Team: takien.com <contact@takien.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,333 +16,333 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: easy-table.php:367
20
  msgid "Settings"
21
  msgstr ""
22
 
23
- #: easy-table.php:379
24
  msgid "Instruction"
25
  msgstr ""
26
 
27
- #: easy-table.php:380
28
  msgid "Once plugin installed, go to plugin options page to configure some options"
29
  msgstr ""
30
 
31
- #: easy-table.php:381
32
  msgid "You are ready to write a table in post or page."
33
  msgstr ""
34
 
35
- #: easy-table.php:382
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:402
40
  #, php-format
41
  msgid "%s Option"
42
  msgstr ""
43
 
44
- #: easy-table.php:403
45
  msgid "Support"
46
  msgstr ""
47
 
48
- #: easy-table.php:404
49
  msgid "About"
50
  msgstr ""
51
 
52
- #: easy-table.php:414
53
  msgid "Show/hide description"
54
  msgstr ""
55
 
56
- #: easy-table.php:415
57
  msgid "General options"
58
  msgstr ""
59
 
60
- #: easy-table.php:420
61
  msgid "Short code tag"
62
  msgstr ""
63
 
64
- #: easy-table.php:422
65
  msgid "Shortcode tag, type \"table\" if you want to use [table] short tag."
66
  msgstr ""
67
 
68
- #: easy-table.php:428
69
- #: easy-table.php:601
70
  msgid "Cell attribute tag"
71
  msgstr ""
72
 
73
- #: easy-table.php:430
74
  msgid "Cell attribute tag, default is attr."
75
  msgstr ""
76
 
77
- #: easy-table.php:435
78
  msgid "Also render table in widget?"
79
  msgstr ""
80
 
81
- #: easy-table.php:437
82
  msgid "Check this if you want the table could be rendered in widget."
83
  msgstr ""
84
 
85
- #: easy-table.php:442
86
  msgid "Only load JS/CSS when in this condition"
87
  msgstr ""
88
 
89
- #: easy-table.php:443
90
  msgid "Please check in where JavaScript and CSS should be loaded"
91
  msgstr ""
92
 
93
- #: easy-table.php:447
94
  msgid "Single"
95
  msgstr ""
96
 
97
- #: easy-table.php:453
98
  msgid "Page"
99
  msgstr ""
100
 
101
- #: easy-table.php:459
102
  msgid "Front page"
103
  msgstr ""
104
 
105
- #: easy-table.php:465
106
  msgid "Archive page"
107
  msgstr ""
108
 
109
- #: easy-table.php:477
110
  msgid "Use tablesorter?"
111
  msgstr ""
112
 
113
- #: easy-table.php:480
114
  msgid "Check this to use tablesorter jQuery plugin"
115
  msgstr ""
116
 
117
- #: easy-table.php:484
118
  msgid "Use TH for the first row?"
119
  msgstr ""
120
 
121
- #: easy-table.php:487
122
  msgid "Check this if you want to use first row as table head (required by tablesorter)"
123
  msgstr ""
124
 
125
- #: easy-table.php:491
126
  msgid "Load CSS?"
127
  msgstr ""
128
 
129
- #: easy-table.php:494
130
  msgid "Check this to use CSS included in this plugin to styling table, you may unceck if you want to write your own style."
131
  msgstr ""
132
 
133
- #: easy-table.php:498
134
  msgid "Table class"
135
  msgstr ""
136
 
137
- #: easy-table.php:500
138
  msgid "Table class attribute, if you use bootstrap CSS, you should add at least \"table\" class."
139
  msgstr ""
140
 
141
- #: easy-table.php:504
142
  msgid "Table width"
143
  msgstr ""
144
 
145
- #: easy-table.php:506
146
  msgid "Table width, in pixel or percent (may be overriden by CSS)"
147
  msgstr ""
148
 
149
- #: easy-table.php:510
150
  msgid "Table align"
151
  msgstr ""
152
 
153
- #: easy-table.php:512
154
  msgid "Table align, left/right/center (may be overriden by CSS)"
155
  msgstr ""
156
 
157
- #: easy-table.php:516
158
  msgid "Table border"
159
  msgstr ""
160
 
161
- #: easy-table.php:518
162
  msgid "Table border (may be overriden by CSS)"
163
  msgstr ""
164
 
165
- #: easy-table.php:523
166
  msgid "Table options"
167
  msgstr ""
168
 
169
- #: easy-table.php:528
170
  msgid "Parser Option"
171
  msgstr ""
172
 
173
- #: easy-table.php:529
174
  msgid "Do not change this unless you know what you're doing"
175
  msgstr ""
176
 
177
- #: easy-table.php:535
178
  msgid "Delimiter"
179
  msgstr ""
180
 
181
- #: easy-table.php:538
182
  msgid "CSV delimiter (default is comma)"
183
  msgstr ""
184
 
185
- #: easy-table.php:541
186
  msgid "Enclosure"
187
  msgstr ""
188
 
189
- #: easy-table.php:544
190
  msgid "CSV enclosure (default is double quote)"
191
  msgstr ""
192
 
193
- #: easy-table.php:547
194
  msgid "Escape"
195
  msgstr ""
196
 
197
- #: easy-table.php:550
198
  msgid "CSV escape (default is backslash)"
199
  msgstr ""
200
 
201
- #: easy-table.php:553
202
  msgid "Allow read CSV from file?"
203
  msgstr ""
204
 
205
- #: easy-table.php:556
206
  msgid "Check this if you also want to convert CSV file to table"
207
  msgstr ""
208
 
209
- #: easy-table.php:564
210
  msgid "Save"
211
  msgstr ""
212
 
213
- #: easy-table.php:586
214
  msgid "Possible parameter"
215
  msgstr ""
216
 
217
- #: easy-table.php:587
218
  msgid "These parameters commonly can override global options in the left side of this page. Example usage:"
219
  msgstr ""
220
 
221
- #: easy-table.php:590
222
- #: easy-table.php:591
223
- #: easy-table.php:592
224
- #: easy-table.php:593
225
- #: easy-table.php:594
226
- #: easy-table.php:595
227
- #: easy-table.php:596
228
- #: easy-table.php:597
229
- #: easy-table.php:598
230
  #: easy-table.php:599
 
 
 
 
 
 
 
 
 
231
  msgid "default value"
232
  msgstr ""
233
 
234
- #: easy-table.php:590
235
  msgid "another value"
236
  msgstr ""
237
 
238
- #: easy-table.php:603
239
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
240
  msgstr ""
241
 
242
- #: easy-table.php:604
243
  msgid "Usage"
244
  msgstr ""
245
 
246
- #: easy-table.php:615
247
  msgid "Test area:"
248
  msgstr ""
249
 
250
- #: easy-table.php:620
251
  msgid "Reset"
252
  msgstr ""
253
 
254
- #: easy-table.php:621
255
  msgid "Update preview"
256
  msgstr ""
257
 
258
- #: easy-table.php:623
259
  msgid "Preview"
260
  msgstr ""
261
 
262
- #: easy-table.php:631
263
  msgid "Full documentation, see here!"
264
  msgstr ""
265
 
266
- #: easy-table.php:632
267
  msgid "Or you can use this discussion to get support, request feature or reporting bug."
268
  msgstr ""
269
 
270
- #: easy-table.php:690
271
  msgid "Install Now"
272
  msgstr ""
273
 
274
- #: easy-table.php:694
275
  msgid "Install Update Now"
276
  msgstr ""
277
 
278
- #: easy-table.php:697
279
  #, php-format
280
  msgid "Newer Version (%s) Installed"
281
  msgstr ""
282
 
283
- #: easy-table.php:700
284
  msgid "Latest Version Installed"
285
  msgstr ""
286
 
287
- #: easy-table.php:709
288
  msgid "Latest Version:"
289
  msgstr ""
290
 
291
- #: easy-table.php:711
292
  msgid "Author:"
293
  msgstr ""
294
 
295
- #: easy-table.php:713
296
  msgid "Last Updated:"
297
  msgstr ""
298
 
299
- #: easy-table.php:714
300
  #, php-format
301
  msgid "%s ago"
302
  msgstr ""
303
 
304
- #: easy-table.php:716
305
  msgid "Requires WordPress Version:"
306
  msgstr ""
307
 
308
- #: easy-table.php:716
309
  #, php-format
310
  msgid "%s or higher"
311
  msgstr ""
312
 
313
- #: easy-table.php:718
314
  msgid "Compatible up to:"
315
  msgstr ""
316
 
317
- #: easy-table.php:720
318
  msgid "Downloaded:"
319
  msgstr ""
320
 
321
- #: easy-table.php:722
322
  msgid "WordPress.org Plugin Page &#187;"
323
  msgstr ""
324
 
325
- #: easy-table.php:724
326
  msgid "Plugin Homepage &#187;"
327
  msgstr ""
328
 
329
- #: easy-table.php:728
330
  msgid "Average Rating"
331
  msgstr ""
332
 
333
- #: easy-table.php:738
334
  msgid "Click here to rate"
335
  msgstr ""
336
 
337
- #: easy-table.php:739
338
  msgid "Credit"
339
  msgstr ""
340
 
341
- #: easy-table.php:740
342
  msgid "Tablesorter by"
343
  msgstr ""
344
 
345
- #: easy-table.php:740
346
  msgid "CSS by"
347
  msgstr ""
348
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: easy-table 0.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-10 22:48+0700\n"
6
+ "PO-Revision-Date: 2012-06-10 22:48+0700\n"
7
  "Last-Translator: takien <contact@takien.com>\n"
8
  "Language-Team: takien.com <contact@takien.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: easy-table.php:376
20
  msgid "Settings"
21
  msgstr ""
22
 
23
+ #: easy-table.php:388
24
  msgid "Instruction"
25
  msgstr ""
26
 
27
+ #: easy-table.php:389
28
  msgid "Once plugin installed, go to plugin options page to configure some options"
29
  msgstr ""
30
 
31
+ #: easy-table.php:390
32
  msgid "You are ready to write a table in post or page."
33
  msgstr ""
34
 
35
+ #: easy-table.php:391
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:411
40
  #, php-format
41
  msgid "%s Option"
42
  msgstr ""
43
 
44
+ #: easy-table.php:412
45
  msgid "Support"
46
  msgstr ""
47
 
48
+ #: easy-table.php:413
49
  msgid "About"
50
  msgstr ""
51
 
52
+ #: easy-table.php:423
53
  msgid "Show/hide description"
54
  msgstr ""
55
 
56
+ #: easy-table.php:424
57
  msgid "General options"
58
  msgstr ""
59
 
60
+ #: easy-table.php:429
61
  msgid "Short code tag"
62
  msgstr ""
63
 
64
+ #: easy-table.php:431
65
  msgid "Shortcode tag, type \"table\" if you want to use [table] short tag."
66
  msgstr ""
67
 
68
+ #: easy-table.php:437
69
+ #: easy-table.php:610
70
  msgid "Cell attribute tag"
71
  msgstr ""
72
 
73
+ #: easy-table.php:439
74
  msgid "Cell attribute tag, default is attr."
75
  msgstr ""
76
 
77
+ #: easy-table.php:444
78
  msgid "Also render table in widget?"
79
  msgstr ""
80
 
81
+ #: easy-table.php:446
82
  msgid "Check this if you want the table could be rendered in widget."
83
  msgstr ""
84
 
85
+ #: easy-table.php:451
86
  msgid "Only load JS/CSS when in this condition"
87
  msgstr ""
88
 
89
+ #: easy-table.php:452
90
  msgid "Please check in where JavaScript and CSS should be loaded"
91
  msgstr ""
92
 
93
+ #: easy-table.php:456
94
  msgid "Single"
95
  msgstr ""
96
 
97
+ #: easy-table.php:462
98
  msgid "Page"
99
  msgstr ""
100
 
101
+ #: easy-table.php:468
102
  msgid "Front page"
103
  msgstr ""
104
 
105
+ #: easy-table.php:474
106
  msgid "Archive page"
107
  msgstr ""
108
 
109
+ #: easy-table.php:486
110
  msgid "Use tablesorter?"
111
  msgstr ""
112
 
113
+ #: easy-table.php:489
114
  msgid "Check this to use tablesorter jQuery plugin"
115
  msgstr ""
116
 
117
+ #: easy-table.php:493
118
  msgid "Use TH for the first row?"
119
  msgstr ""
120
 
121
+ #: easy-table.php:496
122
  msgid "Check this if you want to use first row as table head (required by tablesorter)"
123
  msgstr ""
124
 
125
+ #: easy-table.php:500
126
  msgid "Load CSS?"
127
  msgstr ""
128
 
129
+ #: easy-table.php:503
130
  msgid "Check this to use CSS included in this plugin to styling table, you may unceck if you want to write your own style."
131
  msgstr ""
132
 
133
+ #: easy-table.php:507
134
  msgid "Table class"
135
  msgstr ""
136
 
137
+ #: easy-table.php:509
138
  msgid "Table class attribute, if you use bootstrap CSS, you should add at least \"table\" class."
139
  msgstr ""
140
 
141
+ #: easy-table.php:513
142
  msgid "Table width"
143
  msgstr ""
144
 
145
+ #: easy-table.php:515
146
  msgid "Table width, in pixel or percent (may be overriden by CSS)"
147
  msgstr ""
148
 
149
+ #: easy-table.php:519
150
  msgid "Table align"
151
  msgstr ""
152
 
153
+ #: easy-table.php:521
154
  msgid "Table align, left/right/center (may be overriden by CSS)"
155
  msgstr ""
156
 
157
+ #: easy-table.php:525
158
  msgid "Table border"
159
  msgstr ""
160
 
161
+ #: easy-table.php:527
162
  msgid "Table border (may be overriden by CSS)"
163
  msgstr ""
164
 
165
+ #: easy-table.php:532
166
  msgid "Table options"
167
  msgstr ""
168
 
169
+ #: easy-table.php:537
170
  msgid "Parser Option"
171
  msgstr ""
172
 
173
+ #: easy-table.php:538
174
  msgid "Do not change this unless you know what you're doing"
175
  msgstr ""
176
 
177
+ #: easy-table.php:544
178
  msgid "Delimiter"
179
  msgstr ""
180
 
181
+ #: easy-table.php:547
182
  msgid "CSV delimiter (default is comma)"
183
  msgstr ""
184
 
185
+ #: easy-table.php:550
186
  msgid "Enclosure"
187
  msgstr ""
188
 
189
+ #: easy-table.php:553
190
  msgid "CSV enclosure (default is double quote)"
191
  msgstr ""
192
 
193
+ #: easy-table.php:556
194
  msgid "Escape"
195
  msgstr ""
196
 
197
+ #: easy-table.php:559
198
  msgid "CSV escape (default is backslash)"
199
  msgstr ""
200
 
201
+ #: easy-table.php:562
202
  msgid "Allow read CSV from file?"
203
  msgstr ""
204
 
205
+ #: easy-table.php:565
206
  msgid "Check this if you also want to convert CSV file to table"
207
  msgstr ""
208
 
209
+ #: easy-table.php:573
210
  msgid "Save"
211
  msgstr ""
212
 
213
+ #: easy-table.php:595
214
  msgid "Possible parameter"
215
  msgstr ""
216
 
217
+ #: easy-table.php:596
218
  msgid "These parameters commonly can override global options in the left side of this page. Example usage:"
219
  msgstr ""
220
 
 
 
 
 
 
 
 
 
 
221
  #: easy-table.php:599
222
+ #: easy-table.php:600
223
+ #: easy-table.php:601
224
+ #: easy-table.php:602
225
+ #: easy-table.php:603
226
+ #: easy-table.php:604
227
+ #: easy-table.php:605
228
+ #: easy-table.php:606
229
+ #: easy-table.php:607
230
+ #: easy-table.php:608
231
  msgid "default value"
232
  msgstr ""
233
 
234
+ #: easy-table.php:599
235
  msgid "another value"
236
  msgstr ""
237
 
238
+ #: easy-table.php:612
239
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
240
  msgstr ""
241
 
242
+ #: easy-table.php:613
243
  msgid "Usage"
244
  msgstr ""
245
 
246
+ #: easy-table.php:624
247
  msgid "Test area:"
248
  msgstr ""
249
 
250
+ #: easy-table.php:629
251
  msgid "Reset"
252
  msgstr ""
253
 
254
+ #: easy-table.php:630
255
  msgid "Update preview"
256
  msgstr ""
257
 
258
+ #: easy-table.php:632
259
  msgid "Preview"
260
  msgstr ""
261
 
262
+ #: easy-table.php:640
263
  msgid "Full documentation, see here!"
264
  msgstr ""
265
 
266
+ #: easy-table.php:641
267
  msgid "Or you can use this discussion to get support, request feature or reporting bug."
268
  msgstr ""
269
 
270
+ #: easy-table.php:699
271
  msgid "Install Now"
272
  msgstr ""
273
 
274
+ #: easy-table.php:703
275
  msgid "Install Update Now"
276
  msgstr ""
277
 
278
+ #: easy-table.php:706
279
  #, php-format
280
  msgid "Newer Version (%s) Installed"
281
  msgstr ""
282
 
283
+ #: easy-table.php:709
284
  msgid "Latest Version Installed"
285
  msgstr ""
286
 
287
+ #: easy-table.php:718
288
  msgid "Latest Version:"
289
  msgstr ""
290
 
291
+ #: easy-table.php:720
292
  msgid "Author:"
293
  msgstr ""
294
 
295
+ #: easy-table.php:722
296
  msgid "Last Updated:"
297
  msgstr ""
298
 
299
+ #: easy-table.php:723
300
  #, php-format
301
  msgid "%s ago"
302
  msgstr ""
303
 
304
+ #: easy-table.php:725
305
  msgid "Requires WordPress Version:"
306
  msgstr ""
307
 
308
+ #: easy-table.php:725
309
  #, php-format
310
  msgid "%s or higher"
311
  msgstr ""
312
 
313
+ #: easy-table.php:727
314
  msgid "Compatible up to:"
315
  msgstr ""
316
 
317
+ #: easy-table.php:729
318
  msgid "Downloaded:"
319
  msgstr ""
320
 
321
+ #: easy-table.php:731
322
  msgid "WordPress.org Plugin Page &#187;"
323
  msgstr ""
324
 
325
+ #: easy-table.php:733
326
  msgid "Plugin Homepage &#187;"
327
  msgstr ""
328
 
329
+ #: easy-table.php:737
330
  msgid "Average Rating"
331
  msgstr ""
332
 
333
+ #: easy-table.php:747
334
  msgid "Click here to rate"
335
  msgstr ""
336
 
337
+ #: easy-table.php:748
338
  msgid "Credit"
339
  msgstr ""
340
 
341
+ #: easy-table.php:749
342
  msgid "Tablesorter by"
343
  msgstr ""
344
 
345
+ #: easy-table.php:749
346
  msgid "CSS by"
347
  msgstr ""
348
 
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.3.2
7
- Stable tag: 0.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -92,6 +92,10 @@ No
92
 
93
  == Changelog ==
94
 
 
 
 
 
95
  = 0.5 =
96
  * Added: Ability to set attribute for each cell.
97
  * Added: Support and About tab in plugin options page.
4
  Tags: table,csv,csv-to-table,post,excel,csv file,widget,tablesorter
5
  Requires at least: 3.0
6
  Tested up to: 3.3.2
7
+ Stable tag: 0.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
92
 
93
  == Changelog ==
94
 
95
+ = 0.6 =
96
+ * Fixed: Missing tbody opening tag on some condition
97
+ * Fixed: Duplicate unit of width attribute
98
+
99
  = 0.5 =
100
  * Added: Ability to set attribute for each cell.
101
  * Added: Support and About tab in plugin options page.