Easy Table - Version 0.9

Version Description

  • Fixed: Allow empty cell (was stripped on PHP prior to 5.3)
  • Fixed: wp_remote_get() error if file URL was not found.
  • Fixed: wrong application of wp_enqueue_script()
  • Added: Allow script to be loaded in footer
  • Removed: Redundant line on wp_enqueue_style
  • Added: CSS for tfoot on cuscosky theme
  • Added: New table parameter "nl", new line. eg. [table nl="~~"] See example here http://wordpress.org/extend/plugins/easy-table/
  • Added: New table parameter "ai", auto index. add auto numbering in the begining of each row. See example here http://wordpress.org/extend/plugins/easy-table/
Download this release

Release Info

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

Code changes from version 0.8 to 0.9

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.8
8
  Author URI: http://takien.com/
9
  */
10
 
@@ -50,10 +50,12 @@ var $settings = Array(
50
  'theme' => 'default',
51
  'tablesorter' => false,
52
  'loadcss' => true,
 
53
  'delimiter' => ',',
54
  'file' => false,
55
  'enclosure' => '"',
56
  'escape' => '\\',
 
57
  'csvfile' => false
58
  );
59
 
@@ -84,7 +86,7 @@ function __construct(){
84
  private function easy_table_base($return){
85
  $easy_table_base = Array(
86
  'name' => 'Easy Table',
87
- 'version' => '0.8',
88
  'plugin-domain' => 'easy-table'
89
  );
90
  return $easy_table_base[$return];
@@ -106,7 +108,9 @@ function easy_table_short_code($atts, $content="") {
106
  'enclosure' => $this->option('enclosure'),
107
  'escape' => $this->option('escape'),
108
  'file' => $this->option('file'),
109
- 'sort' => ''
 
 
110
  ), $atts);
111
  /**
112
  * because clean_pre is deprecated since WordPress 3.4, then replace it manually
@@ -147,13 +151,28 @@ private function csv_to_table($data,$args){
147
  */
148
  $data = '';
149
  $response = wp_remote_get($file);
150
- if( $response['response']['code'] == 200 ) {
 
 
 
 
 
 
151
  $data = $response['body'];
152
  }
153
  }
154
 
155
  if(empty($data)) return false;
156
  if(!is_array($data)){
 
 
 
 
 
 
 
 
 
157
  $data = $this->csv_to_array(trim($data), $delimiter, $enclosure, $escape);
158
  }
159
  $max_cols = count(max($data));
@@ -196,6 +215,29 @@ private function csv_to_table($data,$args){
196
  $output .= "\r\n".'<tr>';
197
 
198
  $thtd = ((($r==1) AND $th) OR (($r==$tfpos) AND $tf)) ? 'th' : 'td';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
199
  foreach($cols as $c=>$col){
200
  /**
201
  * Add attribute for each cell
@@ -234,6 +276,11 @@ private function csv_to_table($data,$args){
234
  }
235
  }
236
  }
 
 
 
 
 
237
  $output .= "<$thtd $attr>".do_shortcode($col)."</$thtd>\n";
238
  }
239
 
@@ -388,9 +435,7 @@ function easy_table_script() {
388
  is_archive() AND in_array('is_archive',$this->option('scriptloadin')))
389
  {
390
  if($this->option('tablesorter')) {
391
- wp_enqueue_script('jquery');
392
- wp_register_script('easy_table_script',plugins_url( 'js/easy-table-script.js' , __FILE__ ),'jquery');
393
- wp_enqueue_script('easy_table_script');
394
  }
395
  }
396
  }
@@ -405,9 +450,7 @@ function easy_table_style() {
405
  is_archive() AND in_array('is_archive',$this->option('scriptloadin')))
406
  {
407
  if($this->option('loadcss')) {
408
- //wp_register_style('easy_table_style', plugins_url('themes/aucity/style.css', __FILE__),false,$this->easy_table_base('version'));
409
- wp_register_style('easy_table_style', plugins_url('themes/'.$this->option('theme').'/style.css', __FILE__),false,$this->easy_table_base('version'));
410
- wp_enqueue_style( 'easy_table_style');
411
  }
412
  }
413
  }
@@ -545,6 +588,15 @@ settings_fields('easy_table_option_field');
545
  )
546
  )
547
  )
 
 
 
 
 
 
 
 
 
548
  );
549
  echo $this->render_form($fields);
550
 
@@ -622,6 +674,12 @@ settings_fields('easy_table_option_field');
622
  <?php
623
  $fields = Array(
624
  Array(
 
 
 
 
 
 
625
  'name' => 'easy_table_plugin_option[delimiter]',
626
  'label' => __('Delimiter','easy-table'),
627
  'type' => 'text',
@@ -928,11 +986,9 @@ if (!function_exists('str_getcsv')) {
928
  while (($data = @fgetcsv($handle, 1000, $delimiter, $enclosure)) !== FALSE) {
929
  $num = count($data);
930
  for ($c=0; $c < $num; $c++) {
931
- if(!empty($data[$c])){
932
  $line++;
933
  $return[$line] = $data[$c];
934
  }
935
- }
936
  }
937
  fclose($handle);
938
  return $return;
4
  Plugin URI: http://takien.com/
5
  Description: Create table in post, page, or widget in easy way.
6
  Author: Takien
7
+ Version: 0.9
8
  Author URI: http://takien.com/
9
  */
10
 
50
  'theme' => 'default',
51
  'tablesorter' => false,
52
  'loadcss' => true,
53
+ 'scriptinfooter'=> false,
54
  'delimiter' => ',',
55
  'file' => false,
56
  'enclosure' => '&quot;',
57
  'escape' => '\\',
58
+ 'nl' => '~~',
59
  'csvfile' => false
60
  );
61
 
86
  private function easy_table_base($return){
87
  $easy_table_base = Array(
88
  'name' => 'Easy Table',
89
+ 'version' => '0.9',
90
  'plugin-domain' => 'easy-table'
91
  );
92
  return $easy_table_base[$return];
108
  'enclosure' => $this->option('enclosure'),
109
  'escape' => $this->option('escape'),
110
  'file' => $this->option('file'),
111
+ 'sort' => '',
112
+ 'nl' => $this->option('nl'),
113
+ 'ai' => false
114
  ), $atts);
115
  /**
116
  * because clean_pre is deprecated since WordPress 3.4, then replace it manually
151
  */
152
  $data = '';
153
  $response = wp_remote_get($file);
154
+ /**
155
+ notify if error reading file.
156
+ @since 0.9
157
+ */
158
+ if( is_wp_error( $response ) ) {
159
+ return '<div style="color:red">Error reading file/URL.</div>';
160
+ } else if( $response['response']['code'] == 200 ) {
161
  $data = $response['body'];
162
  }
163
  }
164
 
165
  if(empty($data)) return false;
166
  if(!is_array($data)){
167
+ /**
168
+ normalize nl, since it may contains new line.
169
+ @since 0.9
170
+ */
171
+ $data = preg_replace('/'.preg_quote($nl).'([\s\r\n\t]+)?/i',$nl,$data);
172
+
173
+ /*
174
+ convert csv to array.
175
+ */
176
  $data = $this->csv_to_array(trim($data), $delimiter, $enclosure, $escape);
177
  }
178
  $max_cols = count(max($data));
215
  $output .= "\r\n".'<tr>';
216
 
217
  $thtd = ((($r==1) AND $th) OR (($r==$tfpos) AND $tf)) ? 'th' : 'td';
218
+ /**
219
+ ai is auto index
220
+ @since 0.9
221
+ add auto numbering in the begining of each row
222
+ ai="true" or ai="1" number will start from 1,
223
+ ai="n", n = any number, number will start from that.
224
+
225
+ Another possible value.
226
+ ai="n/head/width"
227
+ n = index start
228
+ head = head text, default is No.
229
+ width = column width, in pixel. Default is 20px
230
+ ai head, text to shown in the table head row, default is No.
231
+
232
+ */
233
+ $index = explode('/',$ai);
234
+ $indexnum = ((int)$index[0])+$r;
235
+ $indexnum = $th ? $indexnum-2 : $indexnum-1;
236
+ $indexnum = ($tf AND ($tf !== 'last')) ? $indexnum-1 : $indexnum;
237
+ $indexhead = isset($index[1]) ? $index[1] : 'No.';
238
+ $indexwidth = isset($index[2]) ? (int)$index[2] : 30;
239
+ $output .= ($ai AND ($thtd == 'td')) ? '<'.$thtd.' style="width:'.$indexwidth.'px">'.$indexnum."</$thtd>" : ($ai ? "<$thtd>".$indexhead."</$thtd>" : '');
240
+
241
  foreach($cols as $c=>$col){
242
  /**
243
  * Add attribute for each cell
276
  }
277
  }
278
  }
279
+ /**
280
+ nl, replace nl with new line
281
+ @since 0.9
282
+ */
283
+ $col = str_replace($nl,'<br />',$col);
284
  $output .= "<$thtd $attr>".do_shortcode($col)."</$thtd>\n";
285
  }
286
 
435
  is_archive() AND in_array('is_archive',$this->option('scriptloadin')))
436
  {
437
  if($this->option('tablesorter')) {
438
+ wp_enqueue_script('easy_table_script',plugins_url( 'js/easy-table-script.js' , __FILE__ ),array('jquery'),$this->easy_table_base('version'),$this->option('scriptinfooter'));
 
 
439
  }
440
  }
441
  }
450
  is_archive() AND in_array('is_archive',$this->option('scriptloadin')))
451
  {
452
  if($this->option('loadcss')) {
453
+ wp_enqueue_style('easy_table_style', plugins_url('themes/'.$this->option('theme').'/style.css', __FILE__),false,$this->easy_table_base('version'));
 
 
454
  }
455
  }
456
  }
588
  )
589
  )
590
  )
591
+ ,Array(
592
+ 'name' => 'easy_table_plugin_option[scriptinfooter]',
593
+ 'label' => __('Load script on footer?','easy-table'),
594
+ 'type' => 'checkbox',
595
+ 'description' => __('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).','easy-table'),
596
+ 'value' => 1,
597
+ 'attr' => $this->option('scriptinfooter') ? 'checked="checked"' : ''
598
+ )
599
+
600
  );
601
  echo $this->render_form($fields);
602
 
674
  <?php
675
  $fields = Array(
676
  Array(
677
+ 'name' => 'easy_table_plugin_option[nl]',
678
+ 'label' => __('New line replacement','easy-table'),
679
+ 'type' => 'text',
680
+ 'value' => $this->option('nl'),
681
+ 'description' => __('Since new line is used by parser, you need specify character as a replacement.','easy-table'))
682
+ ,Array(
683
  'name' => 'easy_table_plugin_option[delimiter]',
684
  'label' => __('Delimiter','easy-table'),
685
  'type' => 'text',
986
  while (($data = @fgetcsv($handle, 1000, $delimiter, $enclosure)) !== FALSE) {
987
  $num = count($data);
988
  for ($c=0; $c < $num; $c++) {
 
989
  $line++;
990
  $return[$line] = $data[$c];
991
  }
 
992
  }
993
  fclose($handle);
994
  return $return;
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.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-01 11:29+0700\n"
6
- "PO-Revision-Date: 2012-07-01 11:35+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,381 +16,502 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: easy-table.php:445
 
20
  msgid "Settings"
21
  msgstr "Pengaturan"
22
 
23
- #: easy-table.php:457
 
24
  msgid "Instruction"
25
  msgstr "Petunjuk"
26
 
27
- #: easy-table.php:458
 
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:459
 
32
  msgid "You are ready to write a table in post or page."
33
  msgstr "Anda telah siap untuk membuat tabel di post atau halaman."
34
 
35
- #: easy-table.php:460
 
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:479
 
40
  #, php-format
41
  msgid "%s Option"
42
  msgstr "Pengaturan %s"
43
 
44
- #: easy-table.php:480
 
45
  msgid "Support"
46
  msgstr "Dukungan"
47
 
48
- #: easy-table.php:481
 
49
  msgid "About"
50
  msgstr "Tentang"
51
 
52
- #: easy-table.php:491
 
53
  msgid "Show/hide description"
54
  msgstr "Tampilkan/Sembunyikan keterangan"
55
 
56
- #: easy-table.php:492
 
57
  msgid "General options"
58
  msgstr "Pengaturan umum"
59
 
60
- #: easy-table.php:497
 
61
  msgid "Short code tag"
62
  msgstr ""
63
 
64
- #: easy-table.php:499
 
65
  msgid "Shortcode tag, type \"table\" if you want to use [table] short tag."
66
  msgstr ""
67
 
68
- #: easy-table.php:505
69
- #: easy-table.php:710
 
 
70
  msgid "Cell attribute tag"
71
  msgstr ""
72
 
73
- #: easy-table.php:507
 
74
  msgid "Cell attribute tag, default is attr."
75
  msgstr ""
76
 
77
- #: easy-table.php:512
 
78
  msgid "Also render table in widget?"
79
  msgstr "Tampilkan tabel di widget?"
80
 
81
- #: easy-table.php:514
 
82
  msgid "Check this if you want the table could be rendered in widget."
83
  msgstr ""
84
 
85
- #: easy-table.php:519
 
86
  msgid "Only load JS/CSS when in this condition"
87
  msgstr ""
88
 
89
- #: easy-table.php:520
 
90
  msgid "Please check in where JavaScript and CSS should be loaded"
91
  msgstr ""
92
 
93
- #: easy-table.php:524
 
94
  msgid "Single"
95
  msgstr ""
96
 
97
- #: easy-table.php:530
 
98
  msgid "Page"
99
  msgstr ""
100
 
101
- #: easy-table.php:536
 
102
  msgid "Front page"
103
  msgstr ""
104
 
105
- #: easy-table.php:542
 
106
  msgid "Archive page"
107
  msgstr ""
108
 
109
- #: easy-table.php:554
 
 
 
 
 
 
 
 
 
110
  msgid "Use tablesorter?"
111
  msgstr "Gunakan tablesorter?"
112
 
113
- #: easy-table.php:557
 
114
  msgid "Check this to use tablesorter jQuery plugin"
115
  msgstr "Ceklist ini jika ingin menggunakan jQuery plugin tablesorter"
116
 
117
- #: easy-table.php:561
 
118
  msgid "Use TH for the first row?"
119
  msgstr "Gunakan TH untuk baris pertama?"
120
 
121
- #: easy-table.php:564
 
122
  msgid "Check this if you want to use first row as table head (required by tablesorter)"
123
  msgstr ""
124
 
125
- #: easy-table.php:568
 
126
  msgid "Load CSS?"
127
  msgstr "Muat CSS?"
128
 
129
- #: easy-table.php:571
 
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:575
 
134
  msgid "Table class"
135
  msgstr "Class tabel"
136
 
137
- #: easy-table.php:577
 
138
  msgid "Additional table class attribute."
139
  msgstr ""
140
 
141
- #: easy-table.php:581
 
142
  msgid "Table width"
143
  msgstr "Lebar tabel"
144
 
145
- #: easy-table.php:583
 
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:587
 
150
  msgid "Table align"
151
  msgstr "Perataan tabel"
152
 
153
- #: easy-table.php:589
 
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:593
 
158
  msgid "Table border"
159
  msgstr "Garis tabel"
160
 
161
- #: easy-table.php:595
 
162
  msgid "Table border (may be overriden by CSS)"
163
  msgstr "Garis tabel (kemungkinan ditimpa oleh CSS)"
164
 
165
- #: easy-table.php:600
 
166
  msgid "Table options"
167
  msgstr "Pengaturan tabel"
168
 
169
- #: easy-table.php:604
 
170
  msgid "Theme selector"
171
  msgstr "Pemilihan tema"
172
 
173
- #: easy-table.php:609
 
174
  msgid "Default theme"
175
  msgstr "Tema bawaan"
176
 
177
- #: easy-table.php:613
 
178
  msgid "Select default theme of the table"
179
- msgstr ""
180
 
181
- #: easy-table.php:619
 
182
  msgid "Parser Option"
183
  msgstr "Pengaturan parser"
184
 
185
- #: easy-table.php:620
 
186
  msgid "Do not change this unless you know what you're doing"
187
  msgstr "Jangan ganti bagian ini kecuali Anda mengetahuinya"
188
 
189
- #: easy-table.php:626
 
 
 
 
 
 
 
 
 
190
  msgid "Delimiter"
191
  msgstr "Pemisah"
192
 
193
- #: easy-table.php:629
 
194
  msgid "CSV delimiter (default is comma)"
195
  msgstr ""
196
 
197
- #: easy-table.php:632
 
198
  msgid "Enclosure"
199
  msgstr ""
200
 
201
- #: easy-table.php:635
 
202
  msgid "CSV enclosure (default is double quote)"
203
  msgstr ""
204
 
205
- #: easy-table.php:638
 
206
  msgid "Escape"
207
  msgstr ""
208
 
209
- #: easy-table.php:641
 
210
  msgid "CSV escape (default is backslash)"
211
  msgstr ""
212
 
213
- #: easy-table.php:644
 
214
  msgid "Allow read CSV from file?"
215
  msgstr "Bolehkan membaca CSV dari file?"
216
 
217
- #: easy-table.php:647
 
218
  msgid "Check this if you also want to convert CSV file to table"
219
  msgstr "Ceklist ini jika Anda juga ingin merubah file CSV ke tabel"
220
 
221
- #: easy-table.php:655
 
222
  msgid "Save"
223
  msgstr "Simpan"
224
 
225
- #: easy-table.php:677
 
226
  msgid "Possible parameter"
227
  msgstr "Parameter yang dimungkinkan"
228
 
229
- #: easy-table.php:678
 
230
  msgid "These parameters commonly can override global options in the left side of this page. Example usage:"
231
  msgstr "Parameter berikut ini secara umum dapat menggantikan setingan global yang ada di sebelah kiri halaman ini. Contoh penggunaan:"
232
 
233
- #: easy-table.php:681
234
- #: easy-table.php:682
235
- #: easy-table.php:683
236
- #: easy-table.php:684
237
- #: easy-table.php:685
238
- #: easy-table.php:686
239
- #: easy-table.php:687
240
- #: easy-table.php:688
241
- #: easy-table.php:689
242
- #: easy-table.php:690
243
- #: easy-table.php:691
 
 
 
 
 
 
 
 
 
 
 
 
244
  msgid "default value"
245
  msgstr "nilai bawaan"
246
 
247
- #: easy-table.php:681
 
248
  msgid "another value"
249
  msgstr "nilai lainnya"
250
 
251
- #: easy-table.php:694
 
252
  msgid "parameter is for initial sorting order. Value for each column separated by comma. See example below:"
253
  msgstr "parameter untuk penyortiran bawaan. Nilai dari masing masih kolom dipisahkan dengan koma. Lihat contoh berikut:"
254
 
255
- #: easy-table.php:696
 
256
  msgid "Set initial order of first column descending and second column ascending:"
257
  msgstr ""
258
 
259
- #: easy-table.php:702
 
260
  msgid "Set initial order of second column descending:"
261
  msgstr ""
262
 
263
- #: easy-table.php:708
 
264
  msgid "Additionaly, sort option also can be set via sort attr in a cell. See example below"
265
  msgstr ""
266
 
267
- #: easy-table.php:712
 
268
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
269
  msgstr ""
270
 
271
- #: easy-table.php:713
 
272
  msgid "Example"
273
  msgstr "Contoh"
274
 
275
- #: easy-table.php:722
 
276
  msgid "To set initial sort order, this is intended to TH (first row) only."
277
  msgstr ""
278
 
279
- #: easy-table.php:723
 
280
  msgid "Example: sort second column descending "
281
  msgstr ""
282
 
283
- #: easy-table.php:740
 
284
  msgid "Test area:"
285
  msgstr "Area test:"
286
 
287
- #: easy-table.php:745
 
288
  msgid "Reset"
289
  msgstr "Reset"
290
 
291
- #: easy-table.php:746
 
292
  msgid "Update preview"
293
  msgstr "Perbaharui pratinjau"
294
 
295
- #: easy-table.php:748
 
296
  msgid "Preview"
297
  msgstr "Pratinjau"
298
 
299
- #: easy-table.php:756
 
300
  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."
301
  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."
302
 
303
- #: easy-table.php:757
 
304
  msgid "You can use this discussion to get support, request feature or reporting bug."
305
  msgstr ""
306
 
307
- #: easy-table.php:758
 
308
  msgid "Before you ask something, make sure you have read documentation here!"
309
  msgstr "Sebelum bertanya sesuatu, pastikan Anda telah membaca dokumentasi di sini!"
310
 
311
- #: easy-table.php:817
 
312
  msgid "Install Now"
313
  msgstr ""
314
 
315
- #: easy-table.php:821
 
316
  msgid "Install Update Now"
317
  msgstr ""
318
 
319
- #: easy-table.php:824
 
320
  #, php-format
321
  msgid "Newer Version (%s) Installed"
322
  msgstr ""
323
 
324
- #: easy-table.php:827
 
325
  msgid "Latest Version Installed"
326
  msgstr ""
327
 
328
- #: easy-table.php:836
 
329
  msgid "Latest Version:"
330
  msgstr ""
331
 
332
- #: easy-table.php:838
 
333
  msgid "Author:"
334
  msgstr ""
335
 
336
- #: easy-table.php:840
 
337
  msgid "Last Updated:"
338
  msgstr ""
339
 
340
- #: easy-table.php:841
 
341
  #, php-format
342
  msgid "%s ago"
343
  msgstr ""
344
 
345
- #: easy-table.php:843
 
346
  msgid "Requires WordPress Version:"
347
  msgstr ""
348
 
349
- #: easy-table.php:843
 
350
  #, php-format
351
  msgid "%s or higher"
352
  msgstr ""
353
 
354
- #: easy-table.php:845
 
355
  msgid "Compatible up to:"
356
  msgstr ""
357
 
358
- #: easy-table.php:847
 
359
  msgid "Downloaded:"
360
  msgstr ""
361
 
362
- #: easy-table.php:849
 
363
  msgid "WordPress.org Plugin Page &#187;"
364
  msgstr ""
365
 
366
- #: easy-table.php:851
 
367
  msgid "Plugin Homepage &#187;"
368
  msgstr ""
369
 
370
- #: easy-table.php:855
 
371
  msgid "Average Rating"
372
  msgstr "Penilaian rata-rata"
373
 
374
- #: easy-table.php:873
 
375
  msgid "Support my work with donation"
376
  msgstr "Dukung karya saya dengan sumbangan"
377
 
378
- #: easy-table.php:882
 
379
  msgid "Don't have money? No problem, you can rate my plugin instead."
380
  msgstr "Tidak punya uang? Tidak masalah, Anda cukup memberi rating plugin ini."
381
 
382
- #: easy-table.php:883
 
383
  msgid "Click here to rate"
384
  msgstr "Klik di sini untuk memberi nilai"
385
 
386
- #: easy-table.php:885
 
387
  msgid "Thanks to"
388
  msgstr "Terimakasih kepada"
389
 
390
- #: easy-table.php:891
391
- #: easy-table.php:892
392
- #: easy-table.php:893
393
- #: easy-table.php:894
 
 
 
 
394
  msgid "by"
395
  msgstr "oleh"
396
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: easy-table 0.9\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-19 01:57+0700\n"
6
+ "PO-Revision-Date: 2012-08-19 01:58+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:488
20
+ #: New folder/easy-table.php:453
21
  msgid "Settings"
22
  msgstr "Pengaturan"
23
 
24
+ #: easy-table.php:500
25
+ #: New folder/easy-table.php:465
26
  msgid "Instruction"
27
  msgstr "Petunjuk"
28
 
29
+ #: easy-table.php:501
30
+ #: New folder/easy-table.php:466
31
  msgid "Once plugin installed, go to plugin options page to configure some options"
32
  msgstr "Setelah plugin terpasang, kemudian buka halaman penyetelan plugin"
33
 
34
+ #: easy-table.php:502
35
+ #: New folder/easy-table.php:467
36
  msgid "You are ready to write a table in post or page."
37
  msgstr "Anda telah siap untuk membuat tabel di post atau halaman."
38
 
39
+ #: easy-table.php:503
40
+ #: New folder/easy-table.php:468
41
  msgid "To be able write table in widget you have to check <em>Enable render table in widget</em> option in the option page."
42
  msgstr ""
43
 
44
+ #: easy-table.php:522
45
+ #: New folder/easy-table.php:487
46
  #, php-format
47
  msgid "%s Option"
48
  msgstr "Pengaturan %s"
49
 
50
+ #: easy-table.php:523
51
+ #: New folder/easy-table.php:488
52
  msgid "Support"
53
  msgstr "Dukungan"
54
 
55
+ #: easy-table.php:524
56
+ #: New folder/easy-table.php:489
57
  msgid "About"
58
  msgstr "Tentang"
59
 
60
+ #: easy-table.php:534
61
+ #: New folder/easy-table.php:499
62
  msgid "Show/hide description"
63
  msgstr "Tampilkan/Sembunyikan keterangan"
64
 
65
+ #: easy-table.php:535
66
+ #: New folder/easy-table.php:500
67
  msgid "General options"
68
  msgstr "Pengaturan umum"
69
 
70
+ #: easy-table.php:540
71
+ #: New folder/easy-table.php:505
72
  msgid "Short code tag"
73
  msgstr ""
74
 
75
+ #: easy-table.php:542
76
+ #: New folder/easy-table.php:507
77
  msgid "Shortcode tag, type \"table\" if you want to use [table] short tag."
78
  msgstr ""
79
 
80
+ #: easy-table.php:548
81
+ #: easy-table.php:768
82
+ #: New folder/easy-table.php:513
83
+ #: folder/easy-table.php:718
84
  msgid "Cell attribute tag"
85
  msgstr ""
86
 
87
+ #: easy-table.php:550
88
+ #: New folder/easy-table.php:515
89
  msgid "Cell attribute tag, default is attr."
90
  msgstr ""
91
 
92
+ #: easy-table.php:555
93
+ #: New folder/easy-table.php:520
94
  msgid "Also render table in widget?"
95
  msgstr "Tampilkan tabel di widget?"
96
 
97
+ #: easy-table.php:557
98
+ #: New folder/easy-table.php:522
99
  msgid "Check this if you want the table could be rendered in widget."
100
  msgstr ""
101
 
102
+ #: easy-table.php:562
103
+ #: New folder/easy-table.php:527
104
  msgid "Only load JS/CSS when in this condition"
105
  msgstr ""
106
 
107
+ #: easy-table.php:563
108
+ #: New folder/easy-table.php:528
109
  msgid "Please check in where JavaScript and CSS should be loaded"
110
  msgstr ""
111
 
112
+ #: easy-table.php:567
113
+ #: New folder/easy-table.php:532
114
  msgid "Single"
115
  msgstr ""
116
 
117
+ #: easy-table.php:573
118
+ #: New folder/easy-table.php:538
119
  msgid "Page"
120
  msgstr ""
121
 
122
+ #: easy-table.php:579
123
+ #: New folder/easy-table.php:544
124
  msgid "Front page"
125
  msgstr ""
126
 
127
+ #: easy-table.php:585
128
+ #: New folder/easy-table.php:550
129
  msgid "Archive page"
130
  msgstr ""
131
 
132
+ #: easy-table.php:593
133
+ msgid "Load script on footer?"
134
+ msgstr "Muat script di footer?"
135
+
136
+ #: easy-table.php:595
137
+ 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)."
138
+ msgstr ""
139
+
140
+ #: easy-table.php:606
141
+ #: New folder/easy-table.php:562
142
  msgid "Use tablesorter?"
143
  msgstr "Gunakan tablesorter?"
144
 
145
+ #: easy-table.php:609
146
+ #: New folder/easy-table.php:565
147
  msgid "Check this to use tablesorter jQuery plugin"
148
  msgstr "Ceklist ini jika ingin menggunakan jQuery plugin tablesorter"
149
 
150
+ #: easy-table.php:613
151
+ #: New folder/easy-table.php:569
152
  msgid "Use TH for the first row?"
153
  msgstr "Gunakan TH untuk baris pertama?"
154
 
155
+ #: easy-table.php:616
156
+ #: New folder/easy-table.php:572
157
  msgid "Check this if you want to use first row as table head (required by tablesorter)"
158
  msgstr ""
159
 
160
+ #: easy-table.php:620
161
+ #: New folder/easy-table.php:576
162
  msgid "Load CSS?"
163
  msgstr "Muat CSS?"
164
 
165
+ #: easy-table.php:623
166
+ #: New folder/easy-table.php:579
167
  msgid "Check this to use CSS included in this plugin to styling table, you may unceck if you want to write your own style."
168
  msgstr "Ceklist ini untuk menyertakan CSS untuk penataan tampilan tabel."
169
 
170
+ #: easy-table.php:627
171
+ #: New folder/easy-table.php:583
172
  msgid "Table class"
173
  msgstr "Class tabel"
174
 
175
+ #: easy-table.php:629
176
+ #: New folder/easy-table.php:585
177
  msgid "Additional table class attribute."
178
  msgstr ""
179
 
180
+ #: easy-table.php:633
181
+ #: New folder/easy-table.php:589
182
  msgid "Table width"
183
  msgstr "Lebar tabel"
184
 
185
+ #: easy-table.php:635
186
+ #: New folder/easy-table.php:591
187
  msgid "Table width, in pixel or percent (may be overriden by CSS)"
188
  msgstr "Lebar tabel, dalam pixel atau persen (kemungkinan ditimpa oleh CSS)"
189
 
190
+ #: easy-table.php:639
191
+ #: New folder/easy-table.php:595
192
  msgid "Table align"
193
  msgstr "Perataan tabel"
194
 
195
+ #: easy-table.php:641
196
+ #: New folder/easy-table.php:597
197
  msgid "Table align, left/right/center (may be overriden by CSS)"
198
  msgstr "Perataan tabel, left/right/center (kemungkinan ditimpa oleh CSS)"
199
 
200
+ #: easy-table.php:645
201
+ #: New folder/easy-table.php:601
202
  msgid "Table border"
203
  msgstr "Garis tabel"
204
 
205
+ #: easy-table.php:647
206
+ #: New folder/easy-table.php:603
207
  msgid "Table border (may be overriden by CSS)"
208
  msgstr "Garis tabel (kemungkinan ditimpa oleh CSS)"
209
 
210
+ #: easy-table.php:652
211
+ #: New folder/easy-table.php:608
212
  msgid "Table options"
213
  msgstr "Pengaturan tabel"
214
 
215
+ #: easy-table.php:656
216
+ #: New folder/easy-table.php:612
217
  msgid "Theme selector"
218
  msgstr "Pemilihan tema"
219
 
220
+ #: easy-table.php:661
221
+ #: New folder/easy-table.php:617
222
  msgid "Default theme"
223
  msgstr "Tema bawaan"
224
 
225
+ #: easy-table.php:665
226
+ #: New folder/easy-table.php:621
227
  msgid "Select default theme of the table"
228
+ msgstr "Pilih tema untuk tabel"
229
 
230
+ #: easy-table.php:671
231
+ #: New folder/easy-table.php:627
232
  msgid "Parser Option"
233
  msgstr "Pengaturan parser"
234
 
235
+ #: easy-table.php:672
236
+ #: New folder/easy-table.php:628
237
  msgid "Do not change this unless you know what you're doing"
238
  msgstr "Jangan ganti bagian ini kecuali Anda mengetahuinya"
239
 
240
+ #: easy-table.php:678
241
+ msgid "New line replacement"
242
+ msgstr "Pengganti baris baru"
243
+
244
+ #: easy-table.php:681
245
+ msgid "Since new line is used by parser, you need specify character as a replacement."
246
+ msgstr ""
247
+
248
+ #: easy-table.php:684
249
+ #: New folder/easy-table.php:634
250
  msgid "Delimiter"
251
  msgstr "Pemisah"
252
 
253
+ #: easy-table.php:687
254
+ #: New folder/easy-table.php:637
255
  msgid "CSV delimiter (default is comma)"
256
  msgstr ""
257
 
258
+ #: easy-table.php:690
259
+ #: New folder/easy-table.php:640
260
  msgid "Enclosure"
261
  msgstr ""
262
 
263
+ #: easy-table.php:693
264
+ #: New folder/easy-table.php:643
265
  msgid "CSV enclosure (default is double quote)"
266
  msgstr ""
267
 
268
+ #: easy-table.php:696
269
+ #: New folder/easy-table.php:646
270
  msgid "Escape"
271
  msgstr ""
272
 
273
+ #: easy-table.php:699
274
+ #: New folder/easy-table.php:649
275
  msgid "CSV escape (default is backslash)"
276
  msgstr ""
277
 
278
+ #: easy-table.php:702
279
+ #: New folder/easy-table.php:652
280
  msgid "Allow read CSV from file?"
281
  msgstr "Bolehkan membaca CSV dari file?"
282
 
283
+ #: easy-table.php:705
284
+ #: New folder/easy-table.php:655
285
  msgid "Check this if you also want to convert CSV file to table"
286
  msgstr "Ceklist ini jika Anda juga ingin merubah file CSV ke tabel"
287
 
288
+ #: easy-table.php:713
289
+ #: New folder/easy-table.php:663
290
  msgid "Save"
291
  msgstr "Simpan"
292
 
293
+ #: easy-table.php:735
294
+ #: New folder/easy-table.php:685
295
  msgid "Possible parameter"
296
  msgstr "Parameter yang dimungkinkan"
297
 
298
+ #: easy-table.php:736
299
+ #: New folder/easy-table.php:686
300
  msgid "These parameters commonly can override global options in the left side of this page. Example usage:"
301
  msgstr "Parameter berikut ini secara umum dapat menggantikan setingan global yang ada di sebelah kiri halaman ini. Contoh penggunaan:"
302
 
303
+ #: easy-table.php:739
304
+ #: easy-table.php:740
305
+ #: easy-table.php:741
306
+ #: easy-table.php:742
307
+ #: easy-table.php:743
308
+ #: easy-table.php:744
309
+ #: easy-table.php:745
310
+ #: easy-table.php:746
311
+ #: easy-table.php:747
312
+ #: easy-table.php:748
313
+ #: easy-table.php:749
314
+ #: New
315
+ #: folder/easy-table.php:689
316
+ #: folder/easy-table.php:690
317
+ #: folder/easy-table.php:691
318
+ #: folder/easy-table.php:692
319
+ #: folder/easy-table.php:693
320
+ #: folder/easy-table.php:694
321
+ #: folder/easy-table.php:695
322
+ #: folder/easy-table.php:696
323
+ #: folder/easy-table.php:697
324
+ #: folder/easy-table.php:698
325
+ #: folder/easy-table.php:699
326
  msgid "default value"
327
  msgstr "nilai bawaan"
328
 
329
+ #: easy-table.php:739
330
+ #: New folder/easy-table.php:689
331
  msgid "another value"
332
  msgstr "nilai lainnya"
333
 
334
+ #: easy-table.php:752
335
+ #: New folder/easy-table.php:702
336
  msgid "parameter is for initial sorting order. Value for each column separated by comma. See example below:"
337
  msgstr "parameter untuk penyortiran bawaan. Nilai dari masing masih kolom dipisahkan dengan koma. Lihat contoh berikut:"
338
 
339
+ #: easy-table.php:754
340
+ #: New folder/easy-table.php:704
341
  msgid "Set initial order of first column descending and second column ascending:"
342
  msgstr ""
343
 
344
+ #: easy-table.php:760
345
+ #: New folder/easy-table.php:710
346
  msgid "Set initial order of second column descending:"
347
  msgstr ""
348
 
349
+ #: easy-table.php:766
350
+ #: New folder/easy-table.php:716
351
  msgid "Additionaly, sort option also can be set via sort attr in a cell. See example below"
352
  msgstr ""
353
 
354
+ #: easy-table.php:770
355
+ #: New folder/easy-table.php:720
356
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
357
  msgstr ""
358
 
359
+ #: easy-table.php:771
360
+ #: New folder/easy-table.php:721
361
  msgid "Example"
362
  msgstr "Contoh"
363
 
364
+ #: easy-table.php:780
365
+ #: New folder/easy-table.php:730
366
  msgid "To set initial sort order, this is intended to TH (first row) only."
367
  msgstr ""
368
 
369
+ #: easy-table.php:781
370
+ #: New folder/easy-table.php:731
371
  msgid "Example: sort second column descending "
372
  msgstr ""
373
 
374
+ #: easy-table.php:798
375
+ #: New folder/easy-table.php:748
376
  msgid "Test area:"
377
  msgstr "Area test:"
378
 
379
+ #: easy-table.php:803
380
+ #: New folder/easy-table.php:753
381
  msgid "Reset"
382
  msgstr "Reset"
383
 
384
+ #: easy-table.php:804
385
+ #: New folder/easy-table.php:754
386
  msgid "Update preview"
387
  msgstr "Perbaharui pratinjau"
388
 
389
+ #: easy-table.php:806
390
+ #: New folder/easy-table.php:756
391
  msgid "Preview"
392
  msgstr "Pratinjau"
393
 
394
+ #: easy-table.php:814
395
+ #: New folder/easy-table.php:764
396
  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."
397
  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."
398
 
399
+ #: easy-table.php:815
400
+ #: New folder/easy-table.php:765
401
  msgid "You can use this discussion to get support, request feature or reporting bug."
402
  msgstr ""
403
 
404
+ #: easy-table.php:816
405
+ #: New folder/easy-table.php:766
406
  msgid "Before you ask something, make sure you have read documentation here!"
407
  msgstr "Sebelum bertanya sesuatu, pastikan Anda telah membaca dokumentasi di sini!"
408
 
409
+ #: easy-table.php:875
410
+ #: New folder/easy-table.php:825
411
  msgid "Install Now"
412
  msgstr ""
413
 
414
+ #: easy-table.php:879
415
+ #: New folder/easy-table.php:829
416
  msgid "Install Update Now"
417
  msgstr ""
418
 
419
+ #: easy-table.php:882
420
+ #: New folder/easy-table.php:832
421
  #, php-format
422
  msgid "Newer Version (%s) Installed"
423
  msgstr ""
424
 
425
+ #: easy-table.php:885
426
+ #: New folder/easy-table.php:835
427
  msgid "Latest Version Installed"
428
  msgstr ""
429
 
430
+ #: easy-table.php:894
431
+ #: New folder/easy-table.php:844
432
  msgid "Latest Version:"
433
  msgstr ""
434
 
435
+ #: easy-table.php:896
436
+ #: New folder/easy-table.php:846
437
  msgid "Author:"
438
  msgstr ""
439
 
440
+ #: easy-table.php:898
441
+ #: New folder/easy-table.php:848
442
  msgid "Last Updated:"
443
  msgstr ""
444
 
445
+ #: easy-table.php:899
446
+ #: New folder/easy-table.php:849
447
  #, php-format
448
  msgid "%s ago"
449
  msgstr ""
450
 
451
+ #: easy-table.php:901
452
+ #: New folder/easy-table.php:851
453
  msgid "Requires WordPress Version:"
454
  msgstr ""
455
 
456
+ #: easy-table.php:901
457
+ #: New folder/easy-table.php:851
458
  #, php-format
459
  msgid "%s or higher"
460
  msgstr ""
461
 
462
+ #: easy-table.php:903
463
+ #: New folder/easy-table.php:853
464
  msgid "Compatible up to:"
465
  msgstr ""
466
 
467
+ #: easy-table.php:905
468
+ #: New folder/easy-table.php:855
469
  msgid "Downloaded:"
470
  msgstr ""
471
 
472
+ #: easy-table.php:907
473
+ #: New folder/easy-table.php:857
474
  msgid "WordPress.org Plugin Page &#187;"
475
  msgstr ""
476
 
477
+ #: easy-table.php:909
478
+ #: New folder/easy-table.php:859
479
  msgid "Plugin Homepage &#187;"
480
  msgstr ""
481
 
482
+ #: easy-table.php:913
483
+ #: New folder/easy-table.php:863
484
  msgid "Average Rating"
485
  msgstr "Penilaian rata-rata"
486
 
487
+ #: easy-table.php:931
488
+ #: New folder/easy-table.php:881
489
  msgid "Support my work with donation"
490
  msgstr "Dukung karya saya dengan sumbangan"
491
 
492
+ #: easy-table.php:940
493
+ #: New folder/easy-table.php:890
494
  msgid "Don't have money? No problem, you can rate my plugin instead."
495
  msgstr "Tidak punya uang? Tidak masalah, Anda cukup memberi rating plugin ini."
496
 
497
+ #: easy-table.php:941
498
+ #: New folder/easy-table.php:891
499
  msgid "Click here to rate"
500
  msgstr "Klik di sini untuk memberi nilai"
501
 
502
+ #: easy-table.php:943
503
+ #: New folder/easy-table.php:893
504
  msgid "Thanks to"
505
  msgstr "Terimakasih kepada"
506
 
507
+ #: easy-table.php:949
508
+ #: easy-table.php:950
509
+ #: easy-table.php:951
510
+ #: easy-table.php:952
511
+ #: New folder/easy-table.php:899
512
+ #: folder/easy-table.php:900
513
+ #: folder/easy-table.php:901
514
+ #: folder/easy-table.php:902
515
  msgid "by"
516
  msgstr "oleh"
517
 
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.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-01 11:29+0700\n"
6
- "PO-Revision-Date: 2012-07-01 11:29+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,381 +16,502 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: easy-table.php:445
 
20
  msgid "Settings"
21
  msgstr ""
22
 
23
- #: easy-table.php:457
 
24
  msgid "Instruction"
25
  msgstr ""
26
 
27
- #: easy-table.php:458
 
28
  msgid "Once plugin installed, go to plugin options page to configure some options"
29
  msgstr ""
30
 
31
- #: easy-table.php:459
 
32
  msgid "You are ready to write a table in post or page."
33
  msgstr ""
34
 
35
- #: easy-table.php:460
 
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:479
 
40
  #, php-format
41
  msgid "%s Option"
42
  msgstr ""
43
 
44
- #: easy-table.php:480
 
45
  msgid "Support"
46
  msgstr ""
47
 
48
- #: easy-table.php:481
 
49
  msgid "About"
50
  msgstr ""
51
 
52
- #: easy-table.php:491
 
53
  msgid "Show/hide description"
54
  msgstr ""
55
 
56
- #: easy-table.php:492
 
57
  msgid "General options"
58
  msgstr ""
59
 
60
- #: easy-table.php:497
 
61
  msgid "Short code tag"
62
  msgstr ""
63
 
64
- #: easy-table.php:499
 
65
  msgid "Shortcode tag, type \"table\" if you want to use [table] short tag."
66
  msgstr ""
67
 
68
- #: easy-table.php:505
69
- #: easy-table.php:710
 
 
70
  msgid "Cell attribute tag"
71
  msgstr ""
72
 
73
- #: easy-table.php:507
 
74
  msgid "Cell attribute tag, default is attr."
75
  msgstr ""
76
 
77
- #: easy-table.php:512
 
78
  msgid "Also render table in widget?"
79
  msgstr ""
80
 
81
- #: easy-table.php:514
 
82
  msgid "Check this if you want the table could be rendered in widget."
83
  msgstr ""
84
 
85
- #: easy-table.php:519
 
86
  msgid "Only load JS/CSS when in this condition"
87
  msgstr ""
88
 
89
- #: easy-table.php:520
 
90
  msgid "Please check in where JavaScript and CSS should be loaded"
91
  msgstr ""
92
 
93
- #: easy-table.php:524
 
94
  msgid "Single"
95
  msgstr ""
96
 
97
- #: easy-table.php:530
 
98
  msgid "Page"
99
  msgstr ""
100
 
101
- #: easy-table.php:536
 
102
  msgid "Front page"
103
  msgstr ""
104
 
105
- #: easy-table.php:542
 
106
  msgid "Archive page"
107
  msgstr ""
108
 
109
- #: easy-table.php:554
 
 
 
 
 
 
 
 
 
110
  msgid "Use tablesorter?"
111
  msgstr ""
112
 
113
- #: easy-table.php:557
 
114
  msgid "Check this to use tablesorter jQuery plugin"
115
  msgstr ""
116
 
117
- #: easy-table.php:561
 
118
  msgid "Use TH for the first row?"
119
  msgstr ""
120
 
121
- #: easy-table.php:564
 
122
  msgid "Check this if you want to use first row as table head (required by tablesorter)"
123
  msgstr ""
124
 
125
- #: easy-table.php:568
 
126
  msgid "Load CSS?"
127
  msgstr ""
128
 
129
- #: easy-table.php:571
 
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:575
 
134
  msgid "Table class"
135
  msgstr ""
136
 
137
- #: easy-table.php:577
 
138
  msgid "Additional table class attribute."
139
  msgstr ""
140
 
141
- #: easy-table.php:581
 
142
  msgid "Table width"
143
  msgstr ""
144
 
145
- #: easy-table.php:583
 
146
  msgid "Table width, in pixel or percent (may be overriden by CSS)"
147
  msgstr ""
148
 
149
- #: easy-table.php:587
 
150
  msgid "Table align"
151
  msgstr ""
152
 
153
- #: easy-table.php:589
 
154
  msgid "Table align, left/right/center (may be overriden by CSS)"
155
  msgstr ""
156
 
157
- #: easy-table.php:593
 
158
  msgid "Table border"
159
  msgstr ""
160
 
161
- #: easy-table.php:595
 
162
  msgid "Table border (may be overriden by CSS)"
163
  msgstr ""
164
 
165
- #: easy-table.php:600
 
166
  msgid "Table options"
167
  msgstr ""
168
 
169
- #: easy-table.php:604
 
170
  msgid "Theme selector"
171
  msgstr ""
172
 
173
- #: easy-table.php:609
 
174
  msgid "Default theme"
175
  msgstr ""
176
 
177
- #: easy-table.php:613
 
178
  msgid "Select default theme of the table"
179
  msgstr ""
180
 
181
- #: easy-table.php:619
 
182
  msgid "Parser Option"
183
  msgstr ""
184
 
185
- #: easy-table.php:620
 
186
  msgid "Do not change this unless you know what you're doing"
187
  msgstr ""
188
 
189
- #: easy-table.php:626
 
 
 
 
 
 
 
 
 
190
  msgid "Delimiter"
191
  msgstr ""
192
 
193
- #: easy-table.php:629
 
194
  msgid "CSV delimiter (default is comma)"
195
  msgstr ""
196
 
197
- #: easy-table.php:632
 
198
  msgid "Enclosure"
199
  msgstr ""
200
 
201
- #: easy-table.php:635
 
202
  msgid "CSV enclosure (default is double quote)"
203
  msgstr ""
204
 
205
- #: easy-table.php:638
 
206
  msgid "Escape"
207
  msgstr ""
208
 
209
- #: easy-table.php:641
 
210
  msgid "CSV escape (default is backslash)"
211
  msgstr ""
212
 
213
- #: easy-table.php:644
 
214
  msgid "Allow read CSV from file?"
215
  msgstr ""
216
 
217
- #: easy-table.php:647
 
218
  msgid "Check this if you also want to convert CSV file to table"
219
  msgstr ""
220
 
221
- #: easy-table.php:655
 
222
  msgid "Save"
223
  msgstr ""
224
 
225
- #: easy-table.php:677
 
226
  msgid "Possible parameter"
227
  msgstr ""
228
 
229
- #: easy-table.php:678
 
230
  msgid "These parameters commonly can override global options in the left side of this page. Example usage:"
231
  msgstr ""
232
 
233
- #: easy-table.php:681
234
- #: easy-table.php:682
235
- #: easy-table.php:683
236
- #: easy-table.php:684
237
- #: easy-table.php:685
238
- #: easy-table.php:686
239
- #: easy-table.php:687
240
- #: easy-table.php:688
241
- #: easy-table.php:689
242
- #: easy-table.php:690
243
- #: easy-table.php:691
 
 
 
 
 
 
 
 
 
 
 
 
244
  msgid "default value"
245
  msgstr ""
246
 
247
- #: easy-table.php:681
 
248
  msgid "another value"
249
  msgstr ""
250
 
251
- #: easy-table.php:694
 
252
  msgid "parameter is for initial sorting order. Value for each column separated by comma. See example below:"
253
  msgstr ""
254
 
255
- #: easy-table.php:696
 
256
  msgid "Set initial order of first column descending and second column ascending:"
257
  msgstr ""
258
 
259
- #: easy-table.php:702
 
260
  msgid "Set initial order of second column descending:"
261
  msgstr ""
262
 
263
- #: easy-table.php:708
 
264
  msgid "Additionaly, sort option also can be set via sort attr in a cell. See example below"
265
  msgstr ""
266
 
267
- #: easy-table.php:712
 
268
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
269
  msgstr ""
270
 
271
- #: easy-table.php:713
 
272
  msgid "Example"
273
  msgstr ""
274
 
275
- #: easy-table.php:722
 
276
  msgid "To set initial sort order, this is intended to TH (first row) only."
277
  msgstr ""
278
 
279
- #: easy-table.php:723
 
280
  msgid "Example: sort second column descending "
281
  msgstr ""
282
 
283
- #: easy-table.php:740
 
284
  msgid "Test area:"
285
  msgstr ""
286
 
287
- #: easy-table.php:745
 
288
  msgid "Reset"
289
  msgstr ""
290
 
291
- #: easy-table.php:746
 
292
  msgid "Update preview"
293
  msgstr ""
294
 
295
- #: easy-table.php:748
 
296
  msgid "Preview"
297
  msgstr ""
298
 
299
- #: easy-table.php:756
 
300
  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."
301
  msgstr ""
302
 
303
- #: easy-table.php:757
 
304
  msgid "You can use this discussion to get support, request feature or reporting bug."
305
  msgstr ""
306
 
307
- #: easy-table.php:758
 
308
  msgid "Before you ask something, make sure you have read documentation here!"
309
  msgstr ""
310
 
311
- #: easy-table.php:817
 
312
  msgid "Install Now"
313
  msgstr ""
314
 
315
- #: easy-table.php:821
 
316
  msgid "Install Update Now"
317
  msgstr ""
318
 
319
- #: easy-table.php:824
 
320
  #, php-format
321
  msgid "Newer Version (%s) Installed"
322
  msgstr ""
323
 
324
- #: easy-table.php:827
 
325
  msgid "Latest Version Installed"
326
  msgstr ""
327
 
328
- #: easy-table.php:836
 
329
  msgid "Latest Version:"
330
  msgstr ""
331
 
332
- #: easy-table.php:838
 
333
  msgid "Author:"
334
  msgstr ""
335
 
336
- #: easy-table.php:840
 
337
  msgid "Last Updated:"
338
  msgstr ""
339
 
340
- #: easy-table.php:841
 
341
  #, php-format
342
  msgid "%s ago"
343
  msgstr ""
344
 
345
- #: easy-table.php:843
 
346
  msgid "Requires WordPress Version:"
347
  msgstr ""
348
 
349
- #: easy-table.php:843
 
350
  #, php-format
351
  msgid "%s or higher"
352
  msgstr ""
353
 
354
- #: easy-table.php:845
 
355
  msgid "Compatible up to:"
356
  msgstr ""
357
 
358
- #: easy-table.php:847
 
359
  msgid "Downloaded:"
360
  msgstr ""
361
 
362
- #: easy-table.php:849
 
363
  msgid "WordPress.org Plugin Page &#187;"
364
  msgstr ""
365
 
366
- #: easy-table.php:851
 
367
  msgid "Plugin Homepage &#187;"
368
  msgstr ""
369
 
370
- #: easy-table.php:855
 
371
  msgid "Average Rating"
372
  msgstr ""
373
 
374
- #: easy-table.php:873
 
375
  msgid "Support my work with donation"
376
  msgstr ""
377
 
378
- #: easy-table.php:882
 
379
  msgid "Don't have money? No problem, you can rate my plugin instead."
380
  msgstr ""
381
 
382
- #: easy-table.php:883
 
383
  msgid "Click here to rate"
384
  msgstr ""
385
 
386
- #: easy-table.php:885
 
387
  msgid "Thanks to"
388
  msgstr ""
389
 
390
- #: easy-table.php:891
391
- #: easy-table.php:892
392
- #: easy-table.php:893
393
- #: easy-table.php:894
 
 
 
 
394
  msgid "by"
395
  msgstr ""
396
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: easy-table 0.9\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-19 01:56+0700\n"
6
+ "PO-Revision-Date: 2012-08-19 01:57+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:488
20
+ #: New folder/easy-table.php:453
21
  msgid "Settings"
22
  msgstr ""
23
 
24
+ #: easy-table.php:500
25
+ #: New folder/easy-table.php:465
26
  msgid "Instruction"
27
  msgstr ""
28
 
29
+ #: easy-table.php:501
30
+ #: New folder/easy-table.php:466
31
  msgid "Once plugin installed, go to plugin options page to configure some options"
32
  msgstr ""
33
 
34
+ #: easy-table.php:502
35
+ #: New folder/easy-table.php:467
36
  msgid "You are ready to write a table in post or page."
37
  msgstr ""
38
 
39
+ #: easy-table.php:503
40
+ #: New folder/easy-table.php:468
41
  msgid "To be able write table in widget you have to check <em>Enable render table in widget</em> option in the option page."
42
  msgstr ""
43
 
44
+ #: easy-table.php:522
45
+ #: New folder/easy-table.php:487
46
  #, php-format
47
  msgid "%s Option"
48
  msgstr ""
49
 
50
+ #: easy-table.php:523
51
+ #: New folder/easy-table.php:488
52
  msgid "Support"
53
  msgstr ""
54
 
55
+ #: easy-table.php:524
56
+ #: New folder/easy-table.php:489
57
  msgid "About"
58
  msgstr ""
59
 
60
+ #: easy-table.php:534
61
+ #: New folder/easy-table.php:499
62
  msgid "Show/hide description"
63
  msgstr ""
64
 
65
+ #: easy-table.php:535
66
+ #: New folder/easy-table.php:500
67
  msgid "General options"
68
  msgstr ""
69
 
70
+ #: easy-table.php:540
71
+ #: New folder/easy-table.php:505
72
  msgid "Short code tag"
73
  msgstr ""
74
 
75
+ #: easy-table.php:542
76
+ #: New folder/easy-table.php:507
77
  msgid "Shortcode tag, type \"table\" if you want to use [table] short tag."
78
  msgstr ""
79
 
80
+ #: easy-table.php:548
81
+ #: easy-table.php:768
82
+ #: New folder/easy-table.php:513
83
+ #: folder/easy-table.php:718
84
  msgid "Cell attribute tag"
85
  msgstr ""
86
 
87
+ #: easy-table.php:550
88
+ #: New folder/easy-table.php:515
89
  msgid "Cell attribute tag, default is attr."
90
  msgstr ""
91
 
92
+ #: easy-table.php:555
93
+ #: New folder/easy-table.php:520
94
  msgid "Also render table in widget?"
95
  msgstr ""
96
 
97
+ #: easy-table.php:557
98
+ #: New folder/easy-table.php:522
99
  msgid "Check this if you want the table could be rendered in widget."
100
  msgstr ""
101
 
102
+ #: easy-table.php:562
103
+ #: New folder/easy-table.php:527
104
  msgid "Only load JS/CSS when in this condition"
105
  msgstr ""
106
 
107
+ #: easy-table.php:563
108
+ #: New folder/easy-table.php:528
109
  msgid "Please check in where JavaScript and CSS should be loaded"
110
  msgstr ""
111
 
112
+ #: easy-table.php:567
113
+ #: New folder/easy-table.php:532
114
  msgid "Single"
115
  msgstr ""
116
 
117
+ #: easy-table.php:573
118
+ #: New folder/easy-table.php:538
119
  msgid "Page"
120
  msgstr ""
121
 
122
+ #: easy-table.php:579
123
+ #: New folder/easy-table.php:544
124
  msgid "Front page"
125
  msgstr ""
126
 
127
+ #: easy-table.php:585
128
+ #: New folder/easy-table.php:550
129
  msgid "Archive page"
130
  msgstr ""
131
 
132
+ #: easy-table.php:593
133
+ msgid "Load script on footer?"
134
+ msgstr ""
135
+
136
+ #: easy-table.php:595
137
+ 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)."
138
+ msgstr ""
139
+
140
+ #: easy-table.php:606
141
+ #: New folder/easy-table.php:562
142
  msgid "Use tablesorter?"
143
  msgstr ""
144
 
145
+ #: easy-table.php:609
146
+ #: New folder/easy-table.php:565
147
  msgid "Check this to use tablesorter jQuery plugin"
148
  msgstr ""
149
 
150
+ #: easy-table.php:613
151
+ #: New folder/easy-table.php:569
152
  msgid "Use TH for the first row?"
153
  msgstr ""
154
 
155
+ #: easy-table.php:616
156
+ #: New folder/easy-table.php:572
157
  msgid "Check this if you want to use first row as table head (required by tablesorter)"
158
  msgstr ""
159
 
160
+ #: easy-table.php:620
161
+ #: New folder/easy-table.php:576
162
  msgid "Load CSS?"
163
  msgstr ""
164
 
165
+ #: easy-table.php:623
166
+ #: New folder/easy-table.php:579
167
  msgid "Check this to use CSS included in this plugin to styling table, you may unceck if you want to write your own style."
168
  msgstr ""
169
 
170
+ #: easy-table.php:627
171
+ #: New folder/easy-table.php:583
172
  msgid "Table class"
173
  msgstr ""
174
 
175
+ #: easy-table.php:629
176
+ #: New folder/easy-table.php:585
177
  msgid "Additional table class attribute."
178
  msgstr ""
179
 
180
+ #: easy-table.php:633
181
+ #: New folder/easy-table.php:589
182
  msgid "Table width"
183
  msgstr ""
184
 
185
+ #: easy-table.php:635
186
+ #: New folder/easy-table.php:591
187
  msgid "Table width, in pixel or percent (may be overriden by CSS)"
188
  msgstr ""
189
 
190
+ #: easy-table.php:639
191
+ #: New folder/easy-table.php:595
192
  msgid "Table align"
193
  msgstr ""
194
 
195
+ #: easy-table.php:641
196
+ #: New folder/easy-table.php:597
197
  msgid "Table align, left/right/center (may be overriden by CSS)"
198
  msgstr ""
199
 
200
+ #: easy-table.php:645
201
+ #: New folder/easy-table.php:601
202
  msgid "Table border"
203
  msgstr ""
204
 
205
+ #: easy-table.php:647
206
+ #: New folder/easy-table.php:603
207
  msgid "Table border (may be overriden by CSS)"
208
  msgstr ""
209
 
210
+ #: easy-table.php:652
211
+ #: New folder/easy-table.php:608
212
  msgid "Table options"
213
  msgstr ""
214
 
215
+ #: easy-table.php:656
216
+ #: New folder/easy-table.php:612
217
  msgid "Theme selector"
218
  msgstr ""
219
 
220
+ #: easy-table.php:661
221
+ #: New folder/easy-table.php:617
222
  msgid "Default theme"
223
  msgstr ""
224
 
225
+ #: easy-table.php:665
226
+ #: New folder/easy-table.php:621
227
  msgid "Select default theme of the table"
228
  msgstr ""
229
 
230
+ #: easy-table.php:671
231
+ #: New folder/easy-table.php:627
232
  msgid "Parser Option"
233
  msgstr ""
234
 
235
+ #: easy-table.php:672
236
+ #: New folder/easy-table.php:628
237
  msgid "Do not change this unless you know what you're doing"
238
  msgstr ""
239
 
240
+ #: easy-table.php:678
241
+ msgid "New line replacement"
242
+ msgstr ""
243
+
244
+ #: easy-table.php:681
245
+ msgid "Since new line is used by parser, you need specify character as a replacement."
246
+ msgstr ""
247
+
248
+ #: easy-table.php:684
249
+ #: New folder/easy-table.php:634
250
  msgid "Delimiter"
251
  msgstr ""
252
 
253
+ #: easy-table.php:687
254
+ #: New folder/easy-table.php:637
255
  msgid "CSV delimiter (default is comma)"
256
  msgstr ""
257
 
258
+ #: easy-table.php:690
259
+ #: New folder/easy-table.php:640
260
  msgid "Enclosure"
261
  msgstr ""
262
 
263
+ #: easy-table.php:693
264
+ #: New folder/easy-table.php:643
265
  msgid "CSV enclosure (default is double quote)"
266
  msgstr ""
267
 
268
+ #: easy-table.php:696
269
+ #: New folder/easy-table.php:646
270
  msgid "Escape"
271
  msgstr ""
272
 
273
+ #: easy-table.php:699
274
+ #: New folder/easy-table.php:649
275
  msgid "CSV escape (default is backslash)"
276
  msgstr ""
277
 
278
+ #: easy-table.php:702
279
+ #: New folder/easy-table.php:652
280
  msgid "Allow read CSV from file?"
281
  msgstr ""
282
 
283
+ #: easy-table.php:705
284
+ #: New folder/easy-table.php:655
285
  msgid "Check this if you also want to convert CSV file to table"
286
  msgstr ""
287
 
288
+ #: easy-table.php:713
289
+ #: New folder/easy-table.php:663
290
  msgid "Save"
291
  msgstr ""
292
 
293
+ #: easy-table.php:735
294
+ #: New folder/easy-table.php:685
295
  msgid "Possible parameter"
296
  msgstr ""
297
 
298
+ #: easy-table.php:736
299
+ #: New folder/easy-table.php:686
300
  msgid "These parameters commonly can override global options in the left side of this page. Example usage:"
301
  msgstr ""
302
 
303
+ #: easy-table.php:739
304
+ #: easy-table.php:740
305
+ #: easy-table.php:741
306
+ #: easy-table.php:742
307
+ #: easy-table.php:743
308
+ #: easy-table.php:744
309
+ #: easy-table.php:745
310
+ #: easy-table.php:746
311
+ #: easy-table.php:747
312
+ #: easy-table.php:748
313
+ #: easy-table.php:749
314
+ #: New
315
+ #: folder/easy-table.php:689
316
+ #: folder/easy-table.php:690
317
+ #: folder/easy-table.php:691
318
+ #: folder/easy-table.php:692
319
+ #: folder/easy-table.php:693
320
+ #: folder/easy-table.php:694
321
+ #: folder/easy-table.php:695
322
+ #: folder/easy-table.php:696
323
+ #: folder/easy-table.php:697
324
+ #: folder/easy-table.php:698
325
+ #: folder/easy-table.php:699
326
  msgid "default value"
327
  msgstr ""
328
 
329
+ #: easy-table.php:739
330
+ #: New folder/easy-table.php:689
331
  msgid "another value"
332
  msgstr ""
333
 
334
+ #: easy-table.php:752
335
+ #: New folder/easy-table.php:702
336
  msgid "parameter is for initial sorting order. Value for each column separated by comma. See example below:"
337
  msgstr ""
338
 
339
+ #: easy-table.php:754
340
+ #: New folder/easy-table.php:704
341
  msgid "Set initial order of first column descending and second column ascending:"
342
  msgstr ""
343
 
344
+ #: easy-table.php:760
345
+ #: New folder/easy-table.php:710
346
  msgid "Set initial order of second column descending:"
347
  msgstr ""
348
 
349
+ #: easy-table.php:766
350
+ #: New folder/easy-table.php:716
351
  msgid "Additionaly, sort option also can be set via sort attr in a cell. See example below"
352
  msgstr ""
353
 
354
+ #: easy-table.php:770
355
+ #: New folder/easy-table.php:720
356
  msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
357
  msgstr ""
358
 
359
+ #: easy-table.php:771
360
+ #: New folder/easy-table.php:721
361
  msgid "Example"
362
  msgstr ""
363
 
364
+ #: easy-table.php:780
365
+ #: New folder/easy-table.php:730
366
  msgid "To set initial sort order, this is intended to TH (first row) only."
367
  msgstr ""
368
 
369
+ #: easy-table.php:781
370
+ #: New folder/easy-table.php:731
371
  msgid "Example: sort second column descending "
372
  msgstr ""
373
 
374
+ #: easy-table.php:798
375
+ #: New folder/easy-table.php:748
376
  msgid "Test area:"
377
  msgstr ""
378
 
379
+ #: easy-table.php:803
380
+ #: New folder/easy-table.php:753
381
  msgid "Reset"
382
  msgstr ""
383
 
384
+ #: easy-table.php:804
385
+ #: New folder/easy-table.php:754
386
  msgid "Update preview"
387
  msgstr ""
388
 
389
+ #: easy-table.php:806
390
+ #: New folder/easy-table.php:756
391
  msgid "Preview"
392
  msgstr ""
393
 
394
+ #: easy-table.php:814
395
+ #: New folder/easy-table.php:764
396
  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."
397
  msgstr ""
398
 
399
+ #: easy-table.php:815
400
+ #: New folder/easy-table.php:765
401
  msgid "You can use this discussion to get support, request feature or reporting bug."
402
  msgstr ""
403
 
404
+ #: easy-table.php:816
405
+ #: New folder/easy-table.php:766
406
  msgid "Before you ask something, make sure you have read documentation here!"
407
  msgstr ""
408
 
409
+ #: easy-table.php:875
410
+ #: New folder/easy-table.php:825
411
  msgid "Install Now"
412
  msgstr ""
413
 
414
+ #: easy-table.php:879
415
+ #: New folder/easy-table.php:829
416
  msgid "Install Update Now"
417
  msgstr ""
418
 
419
+ #: easy-table.php:882
420
+ #: New folder/easy-table.php:832
421
  #, php-format
422
  msgid "Newer Version (%s) Installed"
423
  msgstr ""
424
 
425
+ #: easy-table.php:885
426
+ #: New folder/easy-table.php:835
427
  msgid "Latest Version Installed"
428
  msgstr ""
429
 
430
+ #: easy-table.php:894
431
+ #: New folder/easy-table.php:844
432
  msgid "Latest Version:"
433
  msgstr ""
434
 
435
+ #: easy-table.php:896
436
+ #: New folder/easy-table.php:846
437
  msgid "Author:"
438
  msgstr ""
439
 
440
+ #: easy-table.php:898
441
+ #: New folder/easy-table.php:848
442
  msgid "Last Updated:"
443
  msgstr ""
444
 
445
+ #: easy-table.php:899
446
+ #: New folder/easy-table.php:849
447
  #, php-format
448
  msgid "%s ago"
449
  msgstr ""
450
 
451
+ #: easy-table.php:901
452
+ #: New folder/easy-table.php:851
453
  msgid "Requires WordPress Version:"
454
  msgstr ""
455
 
456
+ #: easy-table.php:901
457
+ #: New folder/easy-table.php:851
458
  #, php-format
459
  msgid "%s or higher"
460
  msgstr ""
461
 
462
+ #: easy-table.php:903
463
+ #: New folder/easy-table.php:853
464
  msgid "Compatible up to:"
465
  msgstr ""
466
 
467
+ #: easy-table.php:905
468
+ #: New folder/easy-table.php:855
469
  msgid "Downloaded:"
470
  msgstr ""
471
 
472
+ #: easy-table.php:907
473
+ #: New folder/easy-table.php:857
474
  msgid "WordPress.org Plugin Page &#187;"
475
  msgstr ""
476
 
477
+ #: easy-table.php:909
478
+ #: New folder/easy-table.php:859
479
  msgid "Plugin Homepage &#187;"
480
  msgstr ""
481
 
482
+ #: easy-table.php:913
483
+ #: New folder/easy-table.php:863
484
  msgid "Average Rating"
485
  msgstr ""
486
 
487
+ #: easy-table.php:931
488
+ #: New folder/easy-table.php:881
489
  msgid "Support my work with donation"
490
  msgstr ""
491
 
492
+ #: easy-table.php:940
493
+ #: New folder/easy-table.php:890
494
  msgid "Don't have money? No problem, you can rate my plugin instead."
495
  msgstr ""
496
 
497
+ #: easy-table.php:941
498
+ #: New folder/easy-table.php:891
499
  msgid "Click here to rate"
500
  msgstr ""
501
 
502
+ #: easy-table.php:943
503
+ #: New folder/easy-table.php:893
504
  msgid "Thanks to"
505
  msgstr ""
506
 
507
+ #: easy-table.php:949
508
+ #: easy-table.php:950
509
+ #: easy-table.php:951
510
+ #: easy-table.php:952
511
+ #: New folder/easy-table.php:899
512
+ #: folder/easy-table.php:900
513
+ #: folder/easy-table.php:901
514
+ #: folder/easy-table.php:902
515
  msgid "by"
516
  msgstr ""
517
 
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.4.1
7
- Stable tag: 0.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -52,7 +52,7 @@ no[attr width="20"],head1,head2,head3
52
  * Table with initial sort order using table parameter, sort by first column descending
53
  `[table sort="desc"]
54
  no,head1,head2,head3
55
- 1,row1col1,row1col2,row1col3]
56
  2,row2col1,row2col2,row2col3
57
  3,row3col1,row3col2,row3col3
58
  4,row4col1,row4col2,row4col3
@@ -61,7 +61,7 @@ no,head1,head2,head3
61
  * Table with initial sort order using table parameter, sort by first column descending, and second column ascending
62
  `[table sort="desc,asc"]
63
  no,head1,head2,head3
64
- 1,row1col1,row1col2,row1col3]
65
  2,row2col1,row2col2,row2col3
66
  3,row3col1,row3col2,row3col3
67
  4,row4col1,row4col2,row4col3
@@ -70,7 +70,7 @@ no,head1,head2,head3
70
  * Table with initial sort order using cell attr, sort by second column descending
71
  `[table]
72
  no,head1[attr sort="desc"],head2,head3
73
- 1,row1col1,row1col2,row1col3]
74
  2,row2col1,row2col2,row2col3
75
  3,row3col1,row3col2,row3col3
76
  4,row4col1,row4col2,row4col3
@@ -79,7 +79,7 @@ no,head1[attr sort="desc"],head2,head3
79
  * Disable sort for third column using cell attr
80
  `[table]
81
  no,head1,head2[attr sort="false"],head3
82
- 1,row1col1,row1col2,row1col3]
83
  2,row2col1,row2col2,row2col3
84
  3,row3col1,row3col2,row3col3
85
  4,row4col1,row4col2,row4col3
@@ -88,12 +88,66 @@ no,head1,head2[attr sort="false"],head3
88
  * Disable sort for third column using table parameter
89
  `[table sort=",,false"]
90
  no,head1,head2,head3
91
- 1,row1col1,row1col2,row1col3]
92
  2,row2col1,row2col2,row2col3
93
  3,row3col1,row3col2,row3col3
94
  4,row4col1,row4col2,row4col3
95
  [/table]`
96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  * Table with no heading
98
  `[table th="0"]some data here[/table]`
99
 
@@ -140,6 +194,16 @@ No
140
 
141
  == Changelog ==
142
 
 
 
 
 
 
 
 
 
 
 
143
  = 0.8 =
144
  * Fixed: Csvfile option
145
  * Fixed: Broken caption in Responsive theme
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.1
7
+ Stable tag: 0.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
52
  * Table with initial sort order using table parameter, sort by first column descending
53
  `[table sort="desc"]
54
  no,head1,head2,head3
55
+ 1,row1col1,row1col2,row1col3
56
  2,row2col1,row2col2,row2col3
57
  3,row3col1,row3col2,row3col3
58
  4,row4col1,row4col2,row4col3
61
  * Table with initial sort order using table parameter, sort by first column descending, and second column ascending
62
  `[table sort="desc,asc"]
63
  no,head1,head2,head3
64
+ 1,row1col1,row1col2,row1col3
65
  2,row2col1,row2col2,row2col3
66
  3,row3col1,row3col2,row3col3
67
  4,row4col1,row4col2,row4col3
70
  * Table with initial sort order using cell attr, sort by second column descending
71
  `[table]
72
  no,head1[attr sort="desc"],head2,head3
73
+ 1,row1col1,row1col2,row1col3
74
  2,row2col1,row2col2,row2col3
75
  3,row3col1,row3col2,row3col3
76
  4,row4col1,row4col2,row4col3
79
  * Disable sort for third column using cell attr
80
  `[table]
81
  no,head1,head2[attr sort="false"],head3
82
+ 1,row1col1,row1col2,row1col3
83
  2,row2col1,row2col2,row2col3
84
  3,row3col1,row3col2,row3col3
85
  4,row4col1,row4col2,row4col3
88
  * Disable sort for third column using table parameter
89
  `[table sort=",,false"]
90
  no,head1,head2,head3
91
+ 1,row1col1,row1col2,row1col3
92
  2,row2col1,row2col2,row2col3
93
  3,row3col1,row3col2,row3col3
94
  4,row4col1,row4col2,row4col3
95
  [/table]`
96
 
97
+ * Table with auto index, start from number 1 (since 0.9)
98
+ `[table ai="1"]
99
+ head1,head2,head3
100
+ row1col1,row1col2,row1col3
101
+ row2col1,row2col2,row2col3
102
+ row3col1,row3col2,row3col3
103
+ row4col1,row4col2,row4col3
104
+ [/table]`
105
+
106
+ * Table with auto index, start from number 2 (since 0.9)
107
+ `[table ai="2"]
108
+ head1,head2,head3
109
+ row1col1,row1col2,row1col3
110
+ row2col1,row2col2,row2col3
111
+ row3col1,row3col2,row3col3
112
+ row4col1,row4col2,row4col3
113
+ [/table]`
114
+
115
+ * Table with auto index, start from number 1, and titled No. (since 0.9)
116
+ `[table ai="1/No."]
117
+ head1,head2,head3
118
+ row1col1,row1col2,row1col3
119
+ row2col1,row2col2,row2col3
120
+ row3col1,row3col2,row3col3
121
+ row4col1,row4col2,row4col3
122
+ [/table]`
123
+
124
+ * Table with auto index, start from number 1, titled No., and column width 50px (since 0.9)
125
+ `[table ai="1/No./50"]
126
+ head1,head2,head3
127
+ row1col1,row1col2,row1col3
128
+ row2col1,row2col2,row2col3
129
+ row3col1,row3col2,row3col3
130
+ row4col1,row4col2,row4col3
131
+ [/table]`
132
+
133
+ * Table with new line in a cell (since 0.9)
134
+ any nl value would be replaced with new line while rendered.
135
+ nl could be one character or more. Be wise to use character here, make sure it's not very common character that may used in your data.
136
+
137
+ `[table nl="~~"]
138
+ head1,head2,head3
139
+ row1col1,row1col2,this~~should~~be~~in~~one cell
140
+ row2col1,row2col2,this~~
141
+ also~~
142
+ should~~
143
+ be~~
144
+ in~~
145
+ one~~
146
+ cell
147
+ row3col1,row3col2,row3col3
148
+ row4col1,row4col2,row4col3
149
+ [/table]`
150
+
151
  * Table with no heading
152
  `[table th="0"]some data here[/table]`
153
 
194
 
195
  == Changelog ==
196
 
197
+ = 0.9 =
198
+ * Fixed: Allow empty cell (was stripped on PHP prior to 5.3)
199
+ * Fixed: wp_remote_get() error if file URL was not found.
200
+ * Fixed: wrong application of wp_enqueue_script()
201
+ * Added: Allow script to be loaded in footer
202
+ * Removed: Redundant line on wp_enqueue_style
203
+ * Added: CSS for tfoot on cuscosky theme
204
+ * Added: New table parameter "nl", new line. eg. [table nl="~~"] See example here http://wordpress.org/extend/plugins/easy-table/
205
+ * Added: New table parameter "ai", auto index. add auto numbering in the begining of each row. See example here http://wordpress.org/extend/plugins/easy-table/
206
+
207
  = 0.8 =
208
  * Fixed: Csvfile option
209
  * Fixed: Broken caption in Responsive theme
themes/cuscosky/style.css CHANGED
@@ -25,7 +25,8 @@ table.easy-table-cuscosky, .easy-table-cuscosky th, .easy-table-cuscosky td {
25
  padding: 4px;
26
  }
27
 
28
- .easy-table-cuscosky thead th {
 
29
  text-align: center;
30
  background: #E6EDF5;
31
  color: #4F76A3;
25
  padding: 4px;
26
  }
27
 
28
+ .easy-table-cuscosky thead th,
29
+ .easy-table-cuscosky tfoot th {
30
  text-align: center;
31
  background: #E6EDF5;
32
  color: #4F76A3;