Easy Table - Version 0.7

Version Description

  • Fixed: Enclosure in the first column does not work.
  • Added: Compatibility with WordPress 3.4
  • Fixed: Missing enclosure parameter in PHP < 5.3.0
Download this release

Release Info

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

Code changes from version 0.6.1 to 0.7

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.6.1
8
  Author URI: http://takien.com/
9
  */
10
 
@@ -81,11 +81,10 @@ function __construct(){
81
  }
82
  }
83
 
84
-
85
  private function easy_table_base($return){
86
  $easy_table_base = Array(
87
  'name' => 'Easy Table',
88
- 'version' => '0.6.1',
89
  'plugin-domain' => 'easy-table'
90
  );
91
  return $easy_table_base[$return];
@@ -108,14 +107,20 @@ function easy_table_short_code($atts, $content="") {
108
  'escape' => $this->get_easy_table_option('escape'),
109
  'file' => $this->get_easy_table_option('file')
110
  ), $atts);
111
-
112
- $content = clean_pre($content);
 
 
 
 
 
 
113
  $content = str_replace('&nbsp;','',$content);
114
  $char_codes = array( '&#8216;', '&#8217;', '&#8220;', '&#8221;', '&#8242;', '&#8243;' );
115
  $replacements = array( "'", "'", '"', '"', "'", '"' );
116
  $content = str_replace( $char_codes, $replacements, $content );
117
 
118
- return $this->csv_to_table($content,$shortcode_atts);
119
  }
120
 
121
  /**
@@ -138,13 +143,15 @@ private function csv_to_table($data,$args){
138
  if($file){
139
  $data = @file_get_contents($file);
140
  }
 
 
 
141
 
142
  if(empty($data)) return false;
143
-
144
  if(!is_array($data)){
145
- $data = $this->csv_to_array(trim($data), $delimiter, html_entity_decode($enclosure), $escape);
146
  }
147
- $max_cols = count(max($data));
148
  $i=0;
149
  /**
150
  * tfoot position
@@ -199,13 +206,11 @@ private function csv_to_table($data,$args){
199
  */
200
  private function csv_to_array($csv, $delimiter = ',', $enclosure = '"', $escape = '\\', $terminator = "\n") {
201
  $r = array();
202
-
203
  $rows = str_getcsv($csv, $terminator,$enclosure,$escape);
204
  $rows = array_diff($rows,Array(''));
205
 
206
  foreach($rows as &$row) {
207
- $row = str_getcsv($row, $delimiter,$enclosure,$escape);
208
- $r[] = $row;
209
  }
210
  return $r;
211
  }
@@ -291,7 +296,6 @@ function easy_table_style() {
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
  }
@@ -330,6 +334,7 @@ if($this->get_easy_table_option('loadcss')) { ?>
330
  font-size:1.3em;
331
  display: inline-block;
332
  text-shadow: 0 -1px 1px rgba(19,65,88,.8);
 
333
  }
334
  .action-button a.green{
335
  background:#48b826;
@@ -736,12 +741,18 @@ $api = plugins_api('plugin_information', array('slug' => 'easy-table' ));
736
  <?php if ( ! empty($api->rating) ) : ?>
737
  <h2><?php _e('Average Rating') ?></h2>
738
  <div class="star-holder" title="<?php printf(_n('(based on %s rating)', '(based on %s ratings)', $api->num_ratings), number_format_i18n($api->num_ratings)); ?>">
 
739
  <div class="star star-rating" style="width: <?php echo esc_attr($api->rating) ?>px"></div>
740
  <div class="star star5"><img src="<?php echo admin_url('images/star.png?v=20110615'); ?>" alt="<?php esc_attr_e('5 stars') ?>" /></div>
741
  <div class="star star4"><img src="<?php echo admin_url('images/star.png?v=20110615'); ?>" alt="<?php esc_attr_e('4 stars') ?>" /></div>
742
  <div class="star star3"><img src="<?php echo admin_url('images/star.png?v=20110615'); ?>" alt="<?php esc_attr_e('3 stars') ?>" /></div>
743
  <div class="star star2"><img src="<?php echo admin_url('images/star.png?v=20110615'); ?>" alt="<?php esc_attr_e('2 stars') ?>" /></div>
744
  <div class="star star1"><img src="<?php echo admin_url('images/star.png?v=20110615'); ?>" alt="<?php esc_attr_e('1 star') ?>" /></div>
 
 
 
 
 
745
  </div>
746
  <small><?php printf(_n('(based on %s rating)', '(based on %s ratings)', $api->num_ratings), number_format_i18n($api->num_ratings)); ?></small>
747
  <p><a target="_blank" href="http://wordpress.org/extend/plugins/easy-table/"><?php _e('Click here to rate','easy-table');?></a></p>
@@ -777,7 +788,8 @@ if (!function_exists('str_getcsv')) {
777
  rewind($handle);
778
  $line = -1;
779
  $return = Array();
780
- while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE) {
 
781
  $num = count($data);
782
  for ($c=0; $c < $num; $c++) {
783
  if(!empty($data[$c])){
4
  Plugin URI: http://takien.com/
5
  Description: Create table in post, page, or widget in easy way.
6
  Author: Takien
7
+ Version: 0.7
8
  Author URI: http://takien.com/
9
  */
10
 
81
  }
82
  }
83
 
 
84
  private function easy_table_base($return){
85
  $easy_table_base = Array(
86
  'name' => 'Easy Table',
87
+ 'version' => '0.7',
88
  'plugin-domain' => 'easy-table'
89
  );
90
  return $easy_table_base[$return];
107
  'escape' => $this->get_easy_table_option('escape'),
108
  'file' => $this->get_easy_table_option('file')
109
  ), $atts);
110
+ /**
111
+ * because clean_pre is deprecated since WordPress 3.4, then replace it manually
112
+ $content = clean_pre($content);*/
113
+
114
+ $content = str_replace(array('<br />', '<br/>', '<br>'), array('', '', ''), $content);
115
+ $content = str_replace('<p>', "\n", $content);
116
+ $content = str_replace('</p>', '', $content);
117
+
118
  $content = str_replace('&nbsp;','',$content);
119
  $char_codes = array( '&#8216;', '&#8217;', '&#8220;', '&#8221;', '&#8242;', '&#8243;' );
120
  $replacements = array( "'", "'", '"', '"', "'", '"' );
121
  $content = str_replace( $char_codes, $replacements, $content );
122
 
123
+ return $this->csv_to_table($content,$shortcode_atts);
124
  }
125
 
126
  /**
143
  if($file){
144
  $data = @file_get_contents($file);
145
  }
146
+ /**
147
+ * @todo check if $file url has special character that need to be urlencoded.
148
+ */
149
 
150
  if(empty($data)) return false;
 
151
  if(!is_array($data)){
152
+ $data = $this->csv_to_array(trim($data), $delimiter, $enclosure, $escape);
153
  }
154
+ /* $max_cols = count(max($data));*/
155
  $i=0;
156
  /**
157
  * tfoot position
206
  */
207
  private function csv_to_array($csv, $delimiter = ',', $enclosure = '"', $escape = '\\', $terminator = "\n") {
208
  $r = array();
 
209
  $rows = str_getcsv($csv, $terminator,$enclosure,$escape);
210
  $rows = array_diff($rows,Array(''));
211
 
212
  foreach($rows as &$row) {
213
+ $r[] = str_getcsv($row,$delimiter);
 
214
  }
215
  return $r;
216
  }
296
  {
297
  if($this->get_easy_table_option('loadcss')) {
298
  wp_register_style('easy_table_style', plugins_url('easy-table-style.css', __FILE__),false,$this->easy_table_base('version'));
 
299
  wp_enqueue_style( 'easy_table_style');
300
  }
301
  }
334
  font-size:1.3em;
335
  display: inline-block;
336
  text-shadow: 0 -1px 1px rgba(19,65,88,.8);
337
+ text-decoration:none;
338
  }
339
  .action-button a.green{
340
  background:#48b826;
741
  <?php if ( ! empty($api->rating) ) : ?>
742
  <h2><?php _e('Average Rating') ?></h2>
743
  <div class="star-holder" title="<?php printf(_n('(based on %s rating)', '(based on %s ratings)', $api->num_ratings), number_format_i18n($api->num_ratings)); ?>">
744
+ <?php if ( version_compare( $GLOBALS['wp_version'], 3.4, '<') ) { ?>
745
  <div class="star star-rating" style="width: <?php echo esc_attr($api->rating) ?>px"></div>
746
  <div class="star star5"><img src="<?php echo admin_url('images/star.png?v=20110615'); ?>" alt="<?php esc_attr_e('5 stars') ?>" /></div>
747
  <div class="star star4"><img src="<?php echo admin_url('images/star.png?v=20110615'); ?>" alt="<?php esc_attr_e('4 stars') ?>" /></div>
748
  <div class="star star3"><img src="<?php echo admin_url('images/star.png?v=20110615'); ?>" alt="<?php esc_attr_e('3 stars') ?>" /></div>
749
  <div class="star star2"><img src="<?php echo admin_url('images/star.png?v=20110615'); ?>" alt="<?php esc_attr_e('2 stars') ?>" /></div>
750
  <div class="star star1"><img src="<?php echo admin_url('images/star.png?v=20110615'); ?>" alt="<?php esc_attr_e('1 star') ?>" /></div>
751
+ <?php
752
+ }
753
+ else { ?>
754
+ <div class="star star-rating" style="width: <?php echo esc_attr( str_replace( ',', '.', $api->rating ) ); ?>px"></div>
755
+ <?php } ?>
756
  </div>
757
  <small><?php printf(_n('(based on %s rating)', '(based on %s ratings)', $api->num_ratings), number_format_i18n($api->num_ratings)); ?></small>
758
  <p><a target="_blank" href="http://wordpress.org/extend/plugins/easy-table/"><?php _e('Click here to rate','easy-table');?></a></p>
788
  rewind($handle);
789
  $line = -1;
790
  $return = Array();
791
+
792
+ while (($data = @fgetcsv($handle, 1000, $delimiter, $enclosure)) !== FALSE) {
793
  $num = count($data);
794
  for ($c=0; $c < $num; $c++) {
795
  if(!empty($data[$c])){
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.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,333 +16,333 @@ msgstr ""
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
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: easy-table 0.7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-16 02:27+0700\n"
6
+ "PO-Revision-Date: 2012-06-16 02:28+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:381
20
  msgid "Settings"
21
  msgstr "Pengaturan"
22
 
23
+ #: easy-table.php:393
24
  msgid "Instruction"
25
  msgstr "Petunjuk"
26
 
27
+ #: easy-table.php:394
28
  msgid "Once plugin installed, go to plugin options page to configure some options"
29
  msgstr ""
30
 
31
+ #: easy-table.php:395
32
  msgid "You are ready to write a table in post or page."
33
  msgstr ""
34
 
35
+ #: easy-table.php:396
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:416
40
  #, php-format
41
  msgid "%s Option"
42
  msgstr "Pengaturan %s"
43
 
44
+ #: easy-table.php:417
45
  msgid "Support"
46
  msgstr ""
47
 
48
+ #: easy-table.php:418
49
  msgid "About"
50
  msgstr ""
51
 
52
+ #: easy-table.php:428
53
  msgid "Show/hide description"
54
  msgstr ""
55
 
56
+ #: easy-table.php:429
57
  msgid "General options"
58
  msgstr "Pengaturan umum"
59
 
60
+ #: easy-table.php:434
61
  msgid "Short code tag"
62
  msgstr ""
63
 
64
+ #: easy-table.php:436
65
  msgid "Shortcode tag, type \"table\" if you want to use [table] short tag."
66
  msgstr ""
67
 
68
+ #: easy-table.php:442
69
+ #: easy-table.php:615
70
  msgid "Cell attribute tag"
71
  msgstr ""
72
 
73
+ #: easy-table.php:444
74
  msgid "Cell attribute tag, default is attr."
75
  msgstr ""
76
 
77
+ #: easy-table.php:449
78
  msgid "Also render table in widget?"
79
  msgstr ""
80
 
81
+ #: easy-table.php:451
82
  msgid "Check this if you want the table could be rendered in widget."
83
  msgstr ""
84
 
85
+ #: easy-table.php:456
86
  msgid "Only load JS/CSS when in this condition"
87
  msgstr ""
88
 
89
+ #: easy-table.php:457
90
  msgid "Please check in where JavaScript and CSS should be loaded"
91
  msgstr ""
92
 
93
+ #: easy-table.php:461
94
  msgid "Single"
95
  msgstr ""
96
 
97
+ #: easy-table.php:467
98
  msgid "Page"
99
  msgstr ""
100
 
101
+ #: easy-table.php:473
102
  msgid "Front page"
103
  msgstr ""
104
 
105
+ #: easy-table.php:479
106
  msgid "Archive page"
107
  msgstr ""
108
 
109
+ #: easy-table.php:491
110
  msgid "Use tablesorter?"
111
  msgstr "Gunakan tablesorter?"
112
 
113
+ #: easy-table.php:494
114
  msgid "Check this to use tablesorter jQuery plugin"
115
  msgstr "Ceklist ini jika ingin menggunakan jQuery plugin tablesorter"
116
 
117
+ #: easy-table.php:498
118
  msgid "Use TH for the first row?"
119
  msgstr "Gunakan TH untuk baris pertama?"
120
 
121
+ #: easy-table.php:501
122
  msgid "Check this if you want to use first row as table head (required by tablesorter)"
123
  msgstr ""
124
 
125
+ #: easy-table.php:505
126
  msgid "Load CSS?"
127
  msgstr "Muat CSS?"
128
 
129
+ #: easy-table.php:508
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:512
134
  msgid "Table class"
135
  msgstr "Class tabel"
136
 
137
+ #: easy-table.php:514
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:518
142
  msgid "Table width"
143
  msgstr "Lebar tabel"
144
 
145
+ #: easy-table.php:520
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:524
150
  msgid "Table align"
151
  msgstr "Perataan tabel"
152
 
153
+ #: easy-table.php:526
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:530
158
  msgid "Table border"
159
  msgstr "Garis tabel"
160
 
161
+ #: easy-table.php:532
162
  msgid "Table border (may be overriden by CSS)"
163
  msgstr "Garis tabel (kemungkinan ditimpa oleh CSS)"
164
 
165
+ #: easy-table.php:537
166
  msgid "Table options"
167
  msgstr "Pengaturan tabel"
168
 
169
+ #: easy-table.php:542
170
  msgid "Parser Option"
171
  msgstr "Pengaturan parser"
172
 
173
+ #: easy-table.php:543
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:549
178
  msgid "Delimiter"
179
  msgstr "Pemisah"
180
 
181
+ #: easy-table.php:552
182
  msgid "CSV delimiter (default is comma)"
183
  msgstr ""
184
 
185
+ #: easy-table.php:555
186
  msgid "Enclosure"
187
  msgstr ""
188
 
189
+ #: easy-table.php:558
190
  msgid "CSV enclosure (default is double quote)"
191
  msgstr ""
192
 
193
+ #: easy-table.php:561
194
  msgid "Escape"
195
  msgstr ""
196
 
197
+ #: easy-table.php:564
198
  msgid "CSV escape (default is backslash)"
199
  msgstr ""
200
 
201
+ #: easy-table.php:567
202
  msgid "Allow read CSV from file?"
203
  msgstr "Bolehkan membaca CSV dari file?"
204
 
205
+ #: easy-table.php:570
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:578
210
  msgid "Save"
211
  msgstr "Simpan"
212
 
213
+ #: easy-table.php:600
214
  msgid "Possible parameter"
215
  msgstr "Parameter yang dimungkinkan"
216
 
217
+ #: easy-table.php:601
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:604
222
  #: easy-table.php:605
223
  #: easy-table.php:606
224
  #: easy-table.php:607
225
  #: easy-table.php:608
226
+ #: easy-table.php:609
227
+ #: easy-table.php:610
228
+ #: easy-table.php:611
229
+ #: easy-table.php:612
230
+ #: easy-table.php:613
231
  msgid "default value"
232
  msgstr "nilai bawaan"
233
 
234
+ #: easy-table.php:604
235
  msgid "another value"
236
  msgstr "nilai lainnya"
237
 
238
+ #: easy-table.php:617
239
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
240
  msgstr ""
241
 
242
+ #: easy-table.php:618
243
  msgid "Usage"
244
  msgstr ""
245
 
246
+ #: easy-table.php:629
247
  msgid "Test area:"
248
  msgstr "Area test:"
249
 
250
+ #: easy-table.php:634
251
  msgid "Reset"
252
  msgstr "Reset"
253
 
254
+ #: easy-table.php:635
255
  msgid "Update preview"
256
  msgstr "Perbaharui pratinjau"
257
 
258
+ #: easy-table.php:637
259
  msgid "Preview"
260
  msgstr "Pratinjau"
261
 
262
+ #: easy-table.php:645
263
  msgid "Full documentation, see here!"
264
  msgstr ""
265
 
266
+ #: easy-table.php:646
267
  msgid "Or you can use this discussion to get support, request feature or reporting bug."
268
  msgstr ""
269
 
270
+ #: easy-table.php:704
271
  msgid "Install Now"
272
  msgstr ""
273
 
274
+ #: easy-table.php:708
275
  msgid "Install Update Now"
276
  msgstr ""
277
 
278
+ #: easy-table.php:711
279
  #, php-format
280
  msgid "Newer Version (%s) Installed"
281
  msgstr ""
282
 
283
+ #: easy-table.php:714
284
  msgid "Latest Version Installed"
285
  msgstr ""
286
 
287
+ #: easy-table.php:723
288
  msgid "Latest Version:"
289
  msgstr ""
290
 
291
+ #: easy-table.php:725
292
  msgid "Author:"
293
  msgstr ""
294
 
295
+ #: easy-table.php:727
296
  msgid "Last Updated:"
297
  msgstr ""
298
 
299
+ #: easy-table.php:728
300
  #, php-format
301
  msgid "%s ago"
302
  msgstr ""
303
 
304
+ #: easy-table.php:730
305
  msgid "Requires WordPress Version:"
306
  msgstr ""
307
 
308
+ #: easy-table.php:730
309
  #, php-format
310
  msgid "%s or higher"
311
  msgstr ""
312
 
313
+ #: easy-table.php:732
314
  msgid "Compatible up to:"
315
  msgstr ""
316
 
317
+ #: easy-table.php:734
318
  msgid "Downloaded:"
319
  msgstr ""
320
 
321
+ #: easy-table.php:736
322
  msgid "WordPress.org Plugin Page &#187;"
323
  msgstr ""
324
 
325
+ #: easy-table.php:738
326
  msgid "Plugin Homepage &#187;"
327
  msgstr ""
328
 
329
+ #: easy-table.php:742
330
  msgid "Average Rating"
331
  msgstr ""
332
 
333
+ #: easy-table.php:758
334
  msgid "Click here to rate"
335
  msgstr ""
336
 
337
+ #: easy-table.php:759
338
  msgid "Credit"
339
  msgstr "Kredit"
340
 
341
+ #: easy-table.php:760
342
  msgid "Tablesorter by"
343
  msgstr "Tablesorter oleh"
344
 
345
+ #: easy-table.php:760
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.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,333 +16,333 @@ msgstr ""
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
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: easy-table 0.7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-16 02:28+0700\n"
6
+ "PO-Revision-Date: 2012-06-16 02:28+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:381
20
  msgid "Settings"
21
  msgstr ""
22
 
23
+ #: easy-table.php:393
24
  msgid "Instruction"
25
  msgstr ""
26
 
27
+ #: easy-table.php:394
28
  msgid "Once plugin installed, go to plugin options page to configure some options"
29
  msgstr ""
30
 
31
+ #: easy-table.php:395
32
  msgid "You are ready to write a table in post or page."
33
  msgstr ""
34
 
35
+ #: easy-table.php:396
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:416
40
  #, php-format
41
  msgid "%s Option"
42
  msgstr ""
43
 
44
+ #: easy-table.php:417
45
  msgid "Support"
46
  msgstr ""
47
 
48
+ #: easy-table.php:418
49
  msgid "About"
50
  msgstr ""
51
 
52
+ #: easy-table.php:428
53
  msgid "Show/hide description"
54
  msgstr ""
55
 
56
+ #: easy-table.php:429
57
  msgid "General options"
58
  msgstr ""
59
 
60
+ #: easy-table.php:434
61
  msgid "Short code tag"
62
  msgstr ""
63
 
64
+ #: easy-table.php:436
65
  msgid "Shortcode tag, type \"table\" if you want to use [table] short tag."
66
  msgstr ""
67
 
68
+ #: easy-table.php:442
69
+ #: easy-table.php:615
70
  msgid "Cell attribute tag"
71
  msgstr ""
72
 
73
+ #: easy-table.php:444
74
  msgid "Cell attribute tag, default is attr."
75
  msgstr ""
76
 
77
+ #: easy-table.php:449
78
  msgid "Also render table in widget?"
79
  msgstr ""
80
 
81
+ #: easy-table.php:451
82
  msgid "Check this if you want the table could be rendered in widget."
83
  msgstr ""
84
 
85
+ #: easy-table.php:456
86
  msgid "Only load JS/CSS when in this condition"
87
  msgstr ""
88
 
89
+ #: easy-table.php:457
90
  msgid "Please check in where JavaScript and CSS should be loaded"
91
  msgstr ""
92
 
93
+ #: easy-table.php:461
94
  msgid "Single"
95
  msgstr ""
96
 
97
+ #: easy-table.php:467
98
  msgid "Page"
99
  msgstr ""
100
 
101
+ #: easy-table.php:473
102
  msgid "Front page"
103
  msgstr ""
104
 
105
+ #: easy-table.php:479
106
  msgid "Archive page"
107
  msgstr ""
108
 
109
+ #: easy-table.php:491
110
  msgid "Use tablesorter?"
111
  msgstr ""
112
 
113
+ #: easy-table.php:494
114
  msgid "Check this to use tablesorter jQuery plugin"
115
  msgstr ""
116
 
117
+ #: easy-table.php:498
118
  msgid "Use TH for the first row?"
119
  msgstr ""
120
 
121
+ #: easy-table.php:501
122
  msgid "Check this if you want to use first row as table head (required by tablesorter)"
123
  msgstr ""
124
 
125
+ #: easy-table.php:505
126
  msgid "Load CSS?"
127
  msgstr ""
128
 
129
+ #: easy-table.php:508
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:512
134
  msgid "Table class"
135
  msgstr ""
136
 
137
+ #: easy-table.php:514
138
  msgid "Table class attribute, if you use bootstrap CSS, you should add at least \"table\" class."
139
  msgstr ""
140
 
141
+ #: easy-table.php:518
142
  msgid "Table width"
143
  msgstr ""
144
 
145
+ #: easy-table.php:520
146
  msgid "Table width, in pixel or percent (may be overriden by CSS)"
147
  msgstr ""
148
 
149
+ #: easy-table.php:524
150
  msgid "Table align"
151
  msgstr ""
152
 
153
+ #: easy-table.php:526
154
  msgid "Table align, left/right/center (may be overriden by CSS)"
155
  msgstr ""
156
 
157
+ #: easy-table.php:530
158
  msgid "Table border"
159
  msgstr ""
160
 
161
+ #: easy-table.php:532
162
  msgid "Table border (may be overriden by CSS)"
163
  msgstr ""
164
 
165
+ #: easy-table.php:537
166
  msgid "Table options"
167
  msgstr ""
168
 
169
+ #: easy-table.php:542
170
  msgid "Parser Option"
171
  msgstr ""
172
 
173
+ #: easy-table.php:543
174
  msgid "Do not change this unless you know what you're doing"
175
  msgstr ""
176
 
177
+ #: easy-table.php:549
178
  msgid "Delimiter"
179
  msgstr ""
180
 
181
+ #: easy-table.php:552
182
  msgid "CSV delimiter (default is comma)"
183
  msgstr ""
184
 
185
+ #: easy-table.php:555
186
  msgid "Enclosure"
187
  msgstr ""
188
 
189
+ #: easy-table.php:558
190
  msgid "CSV enclosure (default is double quote)"
191
  msgstr ""
192
 
193
+ #: easy-table.php:561
194
  msgid "Escape"
195
  msgstr ""
196
 
197
+ #: easy-table.php:564
198
  msgid "CSV escape (default is backslash)"
199
  msgstr ""
200
 
201
+ #: easy-table.php:567
202
  msgid "Allow read CSV from file?"
203
  msgstr ""
204
 
205
+ #: easy-table.php:570
206
  msgid "Check this if you also want to convert CSV file to table"
207
  msgstr ""
208
 
209
+ #: easy-table.php:578
210
  msgid "Save"
211
  msgstr ""
212
 
213
+ #: easy-table.php:600
214
  msgid "Possible parameter"
215
  msgstr ""
216
 
217
+ #: easy-table.php:601
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:604
222
  #: easy-table.php:605
223
  #: easy-table.php:606
224
  #: easy-table.php:607
225
  #: easy-table.php:608
226
+ #: easy-table.php:609
227
+ #: easy-table.php:610
228
+ #: easy-table.php:611
229
+ #: easy-table.php:612
230
+ #: easy-table.php:613
231
  msgid "default value"
232
  msgstr ""
233
 
234
+ #: easy-table.php:604
235
  msgid "another value"
236
  msgstr ""
237
 
238
+ #: easy-table.php:617
239
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
240
  msgstr ""
241
 
242
+ #: easy-table.php:618
243
  msgid "Usage"
244
  msgstr ""
245
 
246
+ #: easy-table.php:629
247
  msgid "Test area:"
248
  msgstr ""
249
 
250
+ #: easy-table.php:634
251
  msgid "Reset"
252
  msgstr ""
253
 
254
+ #: easy-table.php:635
255
  msgid "Update preview"
256
  msgstr ""
257
 
258
+ #: easy-table.php:637
259
  msgid "Preview"
260
  msgstr ""
261
 
262
+ #: easy-table.php:645
263
  msgid "Full documentation, see here!"
264
  msgstr ""
265
 
266
+ #: easy-table.php:646
267
  msgid "Or you can use this discussion to get support, request feature or reporting bug."
268
  msgstr ""
269
 
270
+ #: easy-table.php:704
271
  msgid "Install Now"
272
  msgstr ""
273
 
274
+ #: easy-table.php:708
275
  msgid "Install Update Now"
276
  msgstr ""
277
 
278
+ #: easy-table.php:711
279
  #, php-format
280
  msgid "Newer Version (%s) Installed"
281
  msgstr ""
282
 
283
+ #: easy-table.php:714
284
  msgid "Latest Version Installed"
285
  msgstr ""
286
 
287
+ #: easy-table.php:723
288
  msgid "Latest Version:"
289
  msgstr ""
290
 
291
+ #: easy-table.php:725
292
  msgid "Author:"
293
  msgstr ""
294
 
295
+ #: easy-table.php:727
296
  msgid "Last Updated:"
297
  msgstr ""
298
 
299
+ #: easy-table.php:728
300
  #, php-format
301
  msgid "%s ago"
302
  msgstr ""
303
 
304
+ #: easy-table.php:730
305
  msgid "Requires WordPress Version:"
306
  msgstr ""
307
 
308
+ #: easy-table.php:730
309
  #, php-format
310
  msgid "%s or higher"
311
  msgstr ""
312
 
313
+ #: easy-table.php:732
314
  msgid "Compatible up to:"
315
  msgstr ""
316
 
317
+ #: easy-table.php:734
318
  msgid "Downloaded:"
319
  msgstr ""
320
 
321
+ #: easy-table.php:736
322
  msgid "WordPress.org Plugin Page &#187;"
323
  msgstr ""
324
 
325
+ #: easy-table.php:738
326
  msgid "Plugin Homepage &#187;"
327
  msgstr ""
328
 
329
+ #: easy-table.php:742
330
  msgid "Average Rating"
331
  msgstr ""
332
 
333
+ #: easy-table.php:758
334
  msgid "Click here to rate"
335
  msgstr ""
336
 
337
+ #: easy-table.php:759
338
  msgid "Credit"
339
  msgstr ""
340
 
341
+ #: easy-table.php:760
342
  msgid "Tablesorter by"
343
  msgstr ""
344
 
345
+ #: easy-table.php:760
346
  msgid "CSS by"
347
  msgstr ""
348
 
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: 3.3.2
7
- Stable tag: 0.6.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -65,7 +65,8 @@ no[attr width="20"],head1,head2,head3
65
  `[table file="example.com/blog/wp-content/uploads/pricelist.csv"][/table]`
66
 
67
  = Other notes =
68
- * In PHP version lower than 5.3, data in each cell must not have line break, otherwise it will be detected as new row.
 
69
 
70
  == Installation ==
71
 
@@ -92,8 +93,12 @@ No
92
 
93
  == Changelog ==
94
 
95
- = 0.6.1 =
 
 
 
96
 
 
97
  * Fixed: Accidentally add unused character to the table
98
 
99
  = 0.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: 3.4
7
+ Stable tag: 0.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
65
  `[table file="example.com/blog/wp-content/uploads/pricelist.csv"][/table]`
66
 
67
  = Other notes =
68
+ * Data in each cell must not have line break, otherwise it will be detected as new row.
69
+ * If read from file, the file URL must not contain space.
70
 
71
  == Installation ==
72
 
93
 
94
  == Changelog ==
95
 
96
+ = 0.7 =
97
+ * Fixed: Enclosure in the first column does not work.
98
+ * Added: Compatibility with WordPress 3.4
99
+ * Fixed: Missing enclosure parameter in PHP < 5.3.0
100
 
101
+ = 0.6.1 =
102
  * Fixed: Accidentally add unused character to the table
103
 
104
  = 0.6 =