Version Description
- Add table-responsive
div
wrap around table and responsive CSS. - Suppress error message: 'Redefining already defined constructor...' on certain PHP version environment.
- Check against shortcode that may has been registered by another plugin.
- Increase
fgetcsv
limit from 2000 to 2000000 if $limit value not set.
Download this release
Release Info
Developer | takien |
Plugin | ![]() |
Version | 1.5 |
Comparing to | |
See all releases |
Code changes from version 1.4 to 1.5
- css/easy-table.css +48 -0
- easy-table.php +43 -12
- languages/easy-table-id_ID.mo +0 -0
- languages/easy-table-id_ID.po +137 -116
- languages/english.mo +0 -0
- languages/english.po +132 -114
- readme.txt +8 -2
css/easy-table.css
CHANGED
@@ -13,4 +13,52 @@ table.tablesorter thead tr .headerSortDown:hover{
|
|
13 |
table.tablesorter thead tr .headerSortDown,
|
14 |
table.tablesorter thead tr .headerSortUp:hover {
|
15 |
background-image: url(../images/desc.gif);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
}
|
13 |
table.tablesorter thead tr .headerSortDown,
|
14 |
table.tablesorter thead tr .headerSortUp:hover {
|
15 |
background-image: url(../images/desc.gif);
|
16 |
+
}
|
17 |
+
|
18 |
+
@media (max-width: 767px) {
|
19 |
+
.table-responsive {
|
20 |
+
width: 100%;
|
21 |
+
margin-bottom: 15px;
|
22 |
+
overflow-x: scroll;
|
23 |
+
overflow-y: hidden;
|
24 |
+
-webkit-overflow-scrolling: touch;
|
25 |
+
-ms-overflow-style: -ms-autohiding-scrollbar;
|
26 |
+
border: 1px solid #ddd;
|
27 |
+
}
|
28 |
+
.table-responsive > .table {
|
29 |
+
margin-bottom: 0;
|
30 |
+
}
|
31 |
+
.table-responsive > .table > thead > tr > th,
|
32 |
+
.table-responsive > .table > tbody > tr > th,
|
33 |
+
.table-responsive > .table > tfoot > tr > th,
|
34 |
+
.table-responsive > .table > thead > tr > td,
|
35 |
+
.table-responsive > .table > tbody > tr > td,
|
36 |
+
.table-responsive > .table > tfoot > tr > td {
|
37 |
+
white-space: nowrap;
|
38 |
+
}
|
39 |
+
.table-responsive > .table-bordered {
|
40 |
+
border: 0;
|
41 |
+
}
|
42 |
+
.table-responsive > .table-bordered > thead > tr > th:first-child,
|
43 |
+
.table-responsive > .table-bordered > tbody > tr > th:first-child,
|
44 |
+
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
45 |
+
.table-responsive > .table-bordered > thead > tr > td:first-child,
|
46 |
+
.table-responsive > .table-bordered > tbody > tr > td:first-child,
|
47 |
+
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
48 |
+
border-left: 0;
|
49 |
+
}
|
50 |
+
.table-responsive > .table-bordered > thead > tr > th:last-child,
|
51 |
+
.table-responsive > .table-bordered > tbody > tr > th:last-child,
|
52 |
+
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
53 |
+
.table-responsive > .table-bordered > thead > tr > td:last-child,
|
54 |
+
.table-responsive > .table-bordered > tbody > tr > td:last-child,
|
55 |
+
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
56 |
+
border-right: 0;
|
57 |
+
}
|
58 |
+
.table-responsive > .table-bordered > tbody > tr:last-child > th,
|
59 |
+
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
60 |
+
.table-responsive > .table-bordered > tbody > tr:last-child > td,
|
61 |
+
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
62 |
+
border-bottom: 0;
|
63 |
+
}
|
64 |
}
|
easy-table.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Easy Table
|
|
4 |
Plugin URI: http://takien.com/
|
5 |
Description: Create table in post, page, or widget in easy way.
|
6 |
Author: Takien
|
7 |
-
Version: 1.
|
8 |
Author URI: http://takien.com/
|
9 |
*/
|
10 |
|
@@ -60,11 +60,6 @@ var $settings = Array(
|
|
60 |
'fixlinebreak' => false
|
61 |
);
|
62 |
|
63 |
-
|
64 |
-
function EasyTable(){
|
65 |
-
$this->__construct();
|
66 |
-
}
|
67 |
-
|
68 |
function __construct(){
|
69 |
$plugin = plugin_basename(__FILE__);
|
70 |
add_filter("plugin_action_links_$plugin", array(&$this,'easy_table_settings_link' ));
|
@@ -77,22 +72,56 @@ function __construct(){
|
|
77 |
add_action('wp_enqueue_scripts', array(&$this,'easy_table_style'));
|
78 |
add_action('admin_menu', array(&$this,'easy_table_add_page'));
|
79 |
add_action('contextual_help', array(&$this,'easy_table_help'));
|
80 |
-
|
81 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
if($this->option('tablewidget')){
|
83 |
add_filter('widget_text', 'do_shortcode');
|
84 |
}
|
|
|
85 |
}
|
86 |
|
87 |
private function easy_table_base($return){
|
88 |
$easy_table_base = Array(
|
89 |
'name' => 'Easy Table',
|
90 |
-
'version' => '1.
|
91 |
'plugin-domain' => 'easy-table'
|
92 |
);
|
93 |
return $easy_table_base[$return];
|
94 |
}
|
95 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
function easy_table_short_code($atts, $content="") {
|
97 |
$shortcode_atts = shortcode_atts(array(
|
98 |
'class' => $this->option('class'),
|
@@ -251,7 +280,9 @@ private function csv_to_table($data,$args){
|
|
251 |
|
252 |
$style = $style.$alignstyle;
|
253 |
|
254 |
-
|
|
|
|
|
255 |
|
256 |
//$output .= ' width="'.$width.'" '; width attr not used, use style instead (see below) - since 1.1.3
|
257 |
$output .= ' style="'.((stripos($style,'width') === false) ? ('width:'.$width.';') : '').' '.ltrim($style,';').'" ';
|
@@ -382,7 +413,7 @@ ai head, text to shown in the table head row, default is No.
|
|
382 |
$output .= (($r==$tfpos) AND $tf) ? '</tfoot>'.((($tf==1) AND !$th) ? '<tbody>':''): '';
|
383 |
|
384 |
}
|
385 |
-
$output .= (($tf!=='last')?'</tbody>':'').'</table>';
|
386 |
|
387 |
/**
|
388 |
* Build sortlist metadata and append it to the table class
|
@@ -1217,7 +1248,7 @@ if (!function_exists('easy_table_str_getcsv')) {
|
|
1217 |
*/
|
1218 |
|
1219 |
$option = get_option('easy_table_plugin_option');
|
1220 |
-
$limit = !empty($option['limit']) ? (int)$option['limit'] :
|
1221 |
while (($data = @fgetcsv( $handle, $limit, $delimiter, $enclosure )) !== FALSE) {
|
1222 |
$num = count($data);
|
1223 |
for ($c=0; $c < $num; $c++) {
|
4 |
Plugin URI: http://takien.com/
|
5 |
Description: Create table in post, page, or widget in easy way.
|
6 |
Author: Takien
|
7 |
+
Version: 1.5
|
8 |
Author URI: http://takien.com/
|
9 |
*/
|
10 |
|
60 |
'fixlinebreak' => false
|
61 |
);
|
62 |
|
|
|
|
|
|
|
|
|
|
|
63 |
function __construct(){
|
64 |
$plugin = plugin_basename(__FILE__);
|
65 |
add_filter("plugin_action_links_$plugin", array(&$this,'easy_table_settings_link' ));
|
72 |
add_action('wp_enqueue_scripts', array(&$this,'easy_table_style'));
|
73 |
add_action('admin_menu', array(&$this,'easy_table_add_page'));
|
74 |
add_action('contextual_help', array(&$this,'easy_table_help'));
|
75 |
+
|
76 |
+
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
77 |
+
|
78 |
+
if ( shortcode_exists( $this->option('shortcodetag')) OR is_plugin_active('tablepress/tablepress.php') ) {
|
79 |
+
add_action('admin_notices', array(&$this,'easy_table_shortcode_check_notice'));
|
80 |
+
}
|
81 |
+
else {
|
82 |
+
add_shortcode($this->option('shortcodetag'), array(&$this,'easy_table_short_code'));
|
83 |
+
}
|
84 |
+
|
85 |
+
if ( shortcode_exists( $this->option('attrtag') ) ) {
|
86 |
+
add_action('admin_notices', array(&$this,'easy_table_attr_shortcode_check_notice'));
|
87 |
+
}
|
88 |
+
else {
|
89 |
+
add_shortcode($this->option('attrtag'), array(&$this,'easy_table_short_code_attr'));
|
90 |
+
}
|
91 |
+
|
92 |
if($this->option('tablewidget')){
|
93 |
add_filter('widget_text', 'do_shortcode');
|
94 |
}
|
95 |
+
$table_shortcodetag_already_exists = false;
|
96 |
}
|
97 |
|
98 |
private function easy_table_base($return){
|
99 |
$easy_table_base = Array(
|
100 |
'name' => 'Easy Table',
|
101 |
+
'version' => '1.5',
|
102 |
'plugin-domain' => 'easy-table'
|
103 |
);
|
104 |
return $easy_table_base[$return];
|
105 |
}
|
106 |
|
107 |
+
|
108 |
+
function easy_table_shortcode_check_notice() {
|
109 |
+
$shortcode = $this->option('shortcodetag');
|
110 |
+
?>
|
111 |
+
<div class="error">
|
112 |
+
<p><strong>Easy Table</strong>: <?php printf(__('It seems that %1$s shortcode already used by another plugin and potentially cause problem with %2$s. Please change %3$s into another term other than %4$s. <a href="%5$s">Click here to fix it.</a>','easy-table'), '<code>['.$shortcode.']</code>','Easy Table','<em>Easy Table short code tag</em>','<code>'.$shortcode.'</code>','options-general.php?page=easy-table');?></p>
|
113 |
+
</div>
|
114 |
+
<?php
|
115 |
+
}
|
116 |
+
function easy_table_attr_shortcode_check_notice() {
|
117 |
+
$shortcode = $this->option('attrtag');
|
118 |
+
?>
|
119 |
+
<div class="error">
|
120 |
+
<p><strong>Easy Table</strong>: <?php printf(__('It seems that %1$s shortcode already used by another plugin and potentially cause problem with %2$s. Please change %3$s into another term other than %4$s. <a href="%5$s">Click here to fix it.</a>','easy-table'), '<code>['.$shortcode.']</code>','Easy Table','<em>Easy Table cell attribute tag</em>','<code>'.$shortcode.'</code>','options-general.php?page=easy-table');?></p>
|
121 |
+
</div>
|
122 |
+
<?php
|
123 |
+
}
|
124 |
+
|
125 |
function easy_table_short_code($atts, $content="") {
|
126 |
$shortcode_atts = shortcode_atts(array(
|
127 |
'class' => $this->option('class'),
|
280 |
|
281 |
$style = $style.$alignstyle;
|
282 |
|
283 |
+
/* wrap with .table-responsive div, since 1.5 */
|
284 |
+
$output = '<div class="table-responsive">';
|
285 |
+
$output .= '<table '.($id ? 'id="'.$id.'"':'');
|
286 |
|
287 |
//$output .= ' width="'.$width.'" '; width attr not used, use style instead (see below) - since 1.1.3
|
288 |
$output .= ' style="'.((stripos($style,'width') === false) ? ('width:'.$width.';') : '').' '.ltrim($style,';').'" ';
|
413 |
$output .= (($r==$tfpos) AND $tf) ? '</tfoot>'.((($tf==1) AND !$th) ? '<tbody>':''): '';
|
414 |
|
415 |
}
|
416 |
+
$output .= (($tf!=='last')?'</tbody>':'').'</table></div>';
|
417 |
|
418 |
/**
|
419 |
* Build sortlist metadata and append it to the table class
|
1248 |
*/
|
1249 |
|
1250 |
$option = get_option('easy_table_plugin_option');
|
1251 |
+
$limit = !empty($option['limit']) ? (int)$option['limit'] : 2000000;
|
1252 |
while (($data = @fgetcsv( $handle, $limit, $delimiter, $enclosure )) !== FALSE) {
|
1253 |
$num = count($data);
|
1254 |
for ($c=0; $c < $num; $c++) {
|
languages/easy-table-id_ID.mo
CHANGED
Binary file
|
languages/easy-table-id_ID.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: easy-table 1.4\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: takien <contact@takien.com>\n"
|
8 |
"Language-Team: takien.com <contact@takien.com>\n"
|
9 |
"Language: id_ID\n"
|
@@ -16,281 +16,299 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.7\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: easy-table.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "Settings"
|
21 |
msgstr "Pengaturan"
|
22 |
|
23 |
-
#: easy-table.php:
|
24 |
msgid "Instruction"
|
25 |
msgstr "Petunjuk"
|
26 |
|
27 |
-
#: easy-table.php:
|
28 |
msgid ""
|
29 |
"Once plugin installed, go to plugin options page to configure some options"
|
30 |
msgstr "Setelah plugin terpasang, kemudian buka halaman penyetelan plugin"
|
31 |
|
32 |
-
#: easy-table.php:
|
33 |
msgid "You are ready to write a table in post or page."
|
34 |
msgstr "Anda telah siap untuk membuat tabel di post atau halaman."
|
35 |
|
36 |
-
#: easy-table.php:
|
37 |
msgid ""
|
38 |
"To be able write table in widget you have to check <em>Enable render table "
|
39 |
"in widget</em> option in the option page."
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: easy-table.php:
|
43 |
#, php-format
|
44 |
msgid "%s Option"
|
45 |
msgstr "Pengaturan %s"
|
46 |
|
47 |
-
#: easy-table.php:
|
48 |
msgid "Support"
|
49 |
msgstr "Dukungan"
|
50 |
|
51 |
-
#: easy-table.php:
|
52 |
msgid "About"
|
53 |
msgstr "Tentang"
|
54 |
|
55 |
-
#: easy-table.php:
|
56 |
msgid "Show/hide help button"
|
57 |
msgstr "Tampilkan/Sembunyikan tombol bantuan"
|
58 |
|
59 |
-
#: easy-table.php:
|
60 |
msgid "General options"
|
61 |
msgstr "Pengaturan umum"
|
62 |
|
63 |
-
#: easy-table.php:
|
64 |
msgid "Short code tag"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: easy-table.php:
|
68 |
msgid "Shortcode tag, type 'table' if you want to use [table] short tag."
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: easy-table.php:
|
72 |
msgid "Cell attribute tag"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: easy-table.php:
|
76 |
msgid "Cell attribute tag, default is attr."
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: easy-table.php:
|
80 |
msgid "Also render table in widget?"
|
81 |
msgstr "Tampilkan tabel di widget?"
|
82 |
|
83 |
-
#: easy-table.php:
|
84 |
msgid "Check this if you want the table could be rendered in widget."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: easy-table.php:
|
88 |
msgid "Only load JS/CSS when in this condition"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: easy-table.php:
|
92 |
msgid "Please check in where JavaScript and CSS should be loaded"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: easy-table.php:
|
96 |
msgid "Single"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: easy-table.php:
|
100 |
msgid "Page"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: easy-table.php:
|
104 |
msgid "Front page"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: easy-table.php:
|
108 |
msgid "Archive page"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: easy-table.php:
|
112 |
msgid "Search page"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: easy-table.php:
|
116 |
msgid "Load script on footer?"
|
117 |
msgstr "Muat script di footer?"
|
118 |
|
119 |
-
#: easy-table.php:
|
120 |
msgid ""
|
121 |
"Check this if you want the script to be rendered in footer. Try to check or "
|
122 |
"uncheck this if you experienced conflict with another JavaScript library "
|
123 |
"(not guaranteed though)."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: easy-table.php:
|
127 |
msgid "Use tablesorter?"
|
128 |
msgstr "Gunakan tablesorter?"
|
129 |
|
130 |
-
#: easy-table.php:
|
131 |
msgid "Check this to use tablesorter jQuery plugin"
|
132 |
msgstr "Ceklist ini jika ingin menggunakan jQuery plugin tablesorter"
|
133 |
|
134 |
-
#: easy-table.php:
|
135 |
msgid "Use TH for the first row?"
|
136 |
msgstr "Gunakan TH untuk baris pertama?"
|
137 |
|
138 |
-
#: easy-table.php:
|
139 |
msgid ""
|
140 |
"Check this if you want to use first row as table head (required by "
|
141 |
"tablesorter)"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: easy-table.php:
|
145 |
msgid "Load CSS?"
|
146 |
msgstr "Muat CSS?"
|
147 |
|
148 |
-
#: easy-table.php:
|
149 |
msgid ""
|
150 |
"Check this to use CSS included in this plugin to styling table, you may "
|
151 |
"unceck if you want to write your own style."
|
152 |
msgstr "Ceklist ini untuk menyertakan CSS untuk penataan tampilan tabel."
|
153 |
|
154 |
-
#: easy-table.php:
|
155 |
msgid "Table class"
|
156 |
msgstr "Class tabel"
|
157 |
|
158 |
-
#: easy-table.php:
|
159 |
msgid "Additional table class attribute."
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: easy-table.php:
|
163 |
msgid "Table width"
|
164 |
msgstr "Lebar tabel"
|
165 |
|
166 |
-
#: easy-table.php:
|
167 |
msgid "Table width, in pixel or percent (may be overriden by CSS)"
|
168 |
msgstr "Lebar tabel, dalam pixel atau persen (kemungkinan ditimpa oleh CSS)"
|
169 |
|
170 |
-
#: easy-table.php:
|
171 |
-
msgid "Table align"
|
172 |
-
msgstr "Perataan tabel"
|
173 |
-
|
174 |
-
#: easy-table.php:751
|
175 |
-
msgid "Table align, left/right/center (may be overriden by CSS)"
|
176 |
-
msgstr "Perataan tabel, left/right/center (kemungkinan ditimpa oleh CSS)"
|
177 |
-
|
178 |
-
#: easy-table.php:755
|
179 |
msgid "Table border"
|
180 |
msgstr "Garis tabel"
|
181 |
|
182 |
-
#: easy-table.php:
|
183 |
msgid "Table border (may be overriden by CSS)"
|
184 |
msgstr "Garis tabel (kemungkinan ditimpa oleh CSS)"
|
185 |
|
186 |
-
#: easy-table.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
msgid "Table options"
|
188 |
msgstr "Pengaturan tabel"
|
189 |
|
190 |
-
#: easy-table.php:
|
191 |
msgid "Theme selector"
|
192 |
msgstr "Pemilihan tema"
|
193 |
|
194 |
-
#: easy-table.php:
|
195 |
msgid "Default theme"
|
196 |
msgstr "Tema bawaan"
|
197 |
|
198 |
-
#: easy-table.php:
|
199 |
msgid "Select default theme of the table"
|
200 |
msgstr "Pilih tema untuk tabel"
|
201 |
|
202 |
-
#: easy-table.php:
|
203 |
#, fuzzy
|
204 |
msgid "Data options"
|
205 |
msgstr "Pengaturan tabel"
|
206 |
|
207 |
-
#: easy-table.php:
|
208 |
msgid "Row limit"
|
209 |
msgstr "Batas baris"
|
210 |
|
211 |
-
#: easy-table.php:
|
212 |
msgid "Max row to convert to table, default 0 (unlimited)"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: easy-table.php:
|
216 |
msgid "Trim cell data?"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: easy-table.php:
|
220 |
msgid "Trim empty character around cell data"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: easy-table.php:
|
224 |
#, fuzzy
|
225 |
msgid "Parser options"
|
226 |
msgstr "Pengaturan parser"
|
227 |
|
228 |
-
#: easy-table.php:
|
229 |
msgid "Do not change this unless you know what you're doing"
|
230 |
msgstr "Jangan ganti bagian ini kecuali Anda mengetahuinya"
|
231 |
|
232 |
-
#: easy-table.php:
|
233 |
msgid "New line replacement"
|
234 |
msgstr "Pengganti baris baru"
|
235 |
|
236 |
-
#: easy-table.php:
|
237 |
msgid ""
|
238 |
"Since new line is used by parser, you need specify character as a "
|
239 |
"replacement."
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: easy-table.php:
|
243 |
msgid "Row terminator"
|
244 |
msgstr "Pembatas baris"
|
245 |
|
246 |
-
#: easy-table.php:
|
247 |
msgid ""
|
248 |
"This caharacter will converted into new row. Default value \\n (this is "
|
249 |
"invisible character when you press Enter). If your new line not converted as "
|
250 |
"new row in the table, try use \\r instead."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: easy-table.php:
|
254 |
msgid "Delimiter"
|
255 |
msgstr "Pemisah"
|
256 |
|
257 |
-
#: easy-table.php:
|
258 |
msgid "CSV delimiter (default is comma)"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: easy-table.php:
|
262 |
msgid "Enclosure"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: easy-table.php:
|
266 |
msgid "CSV enclosure (default is double quote)"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: easy-table.php:
|
270 |
msgid "Escape"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: easy-table.php:
|
274 |
msgid "CSV escape (default is backslash)"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: easy-table.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
msgid "Allow read CSV from file?"
|
279 |
msgstr "Bolehkan membaca CSV dari file?"
|
280 |
|
281 |
-
#: easy-table.php:
|
282 |
msgid "Check this if you also want to convert CSV file to table"
|
283 |
msgstr "Ceklist ini jika Anda juga ingin merubah file CSV ke tabel"
|
284 |
|
285 |
-
#: easy-table.php:
|
286 |
msgid "Save"
|
287 |
msgstr "Simpan"
|
288 |
|
289 |
-
#: easy-table.php:
|
290 |
msgid "Possible parameter"
|
291 |
msgstr "Parameter yang dimungkinkan"
|
292 |
|
293 |
-
#: easy-table.php:
|
294 |
msgid ""
|
295 |
"These parameters commonly can override global options in the left side of "
|
296 |
"this page. Example usage:"
|
@@ -298,19 +316,19 @@ msgstr ""
|
|
298 |
"Parameter berikut ini secara umum dapat menggantikan setingan global yang "
|
299 |
"ada di sebelah kiri halaman ini. Contoh penggunaan:"
|
300 |
|
301 |
-
#: easy-table.php:
|
302 |
-
#: easy-table.php:
|
303 |
-
#: easy-table.php:
|
304 |
-
#: easy-table.php:
|
305 |
-
#: easy-table.php:
|
306 |
msgid "default value"
|
307 |
msgstr "nilai bawaan"
|
308 |
|
309 |
-
#: easy-table.php:
|
310 |
msgid "another value"
|
311 |
msgstr "nilai lainnya"
|
312 |
|
313 |
-
#: easy-table.php:
|
314 |
msgid ""
|
315 |
"parameter is for initial sorting order. Value for each column separated by "
|
316 |
"comma. See example below:"
|
@@ -318,58 +336,58 @@ msgstr ""
|
|
318 |
"parameter untuk penyortiran bawaan. Nilai dari masing masih kolom dipisahkan "
|
319 |
"dengan koma. Lihat contoh berikut:"
|
320 |
|
321 |
-
#: easy-table.php:
|
322 |
msgid ""
|
323 |
"Set initial order of first column descending and second column ascending:"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: easy-table.php:
|
327 |
msgid "Set initial order of second column descending:"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: easy-table.php:
|
331 |
msgid ""
|
332 |
"Additionaly, sort option also can be set via sort attr in a cell. See "
|
333 |
"example below"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: easy-table.php:
|
337 |
msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: easy-table.php:
|
341 |
msgid "Example"
|
342 |
msgstr "Contoh"
|
343 |
|
344 |
-
#: easy-table.php:
|
345 |
msgid "To set initial sort order, this is intended to TH (first row) only."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: easy-table.php:
|
349 |
msgid "Example: sort second column descending "
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: easy-table.php:
|
353 |
msgid "Test area:"
|
354 |
msgstr "Area test:"
|
355 |
|
356 |
-
#: easy-table.php:
|
357 |
msgid "Reset"
|
358 |
msgstr "Reset"
|
359 |
|
360 |
-
#: easy-table.php:
|
361 |
msgid "Update preview"
|
362 |
msgstr "Perbaharui pratinjau"
|
363 |
|
364 |
-
#: easy-table.php:
|
365 |
msgid "Preview"
|
366 |
msgstr "Pratinjau"
|
367 |
|
368 |
-
#: easy-table.php:
|
369 |
msgid "Easy Table theme editor"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: easy-table.php:
|
373 |
msgid ""
|
374 |
"I have tried to make this plugin can be used as easy as possible and "
|
375 |
"documentation as complete as possible. However it is also possible that you "
|
@@ -379,100 +397,103 @@ msgstr ""
|
|
379 |
"yang selengkap mungkin. Meskipun begitu mungkin Anda masih bingung. Untuk "
|
380 |
"itu jangan sungkan-sungkan untuk bertanya. Saya akan senang menjawabnya."
|
381 |
|
382 |
-
#: easy-table.php:
|
383 |
msgid ""
|
384 |
"You can use this discussion to get support, request feature or reporting bug."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: easy-table.php:
|
388 |
msgid "Before you ask something, make sure you have read documentation here!"
|
389 |
msgstr ""
|
390 |
"Sebelum bertanya sesuatu, pastikan Anda telah membaca dokumentasi di sini!"
|
391 |
|
392 |
-
#: easy-table.php:
|
393 |
msgid "Install Now"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: easy-table.php:
|
397 |
msgid "Install Update Now"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: easy-table.php:
|
401 |
#, php-format
|
402 |
msgid "Newer Version (%s) Installed"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: easy-table.php:
|
406 |
msgid "Latest Version Installed"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: easy-table.php:
|
410 |
msgid "Latest Version:"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: easy-table.php:
|
414 |
msgid "Author:"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: easy-table.php:
|
418 |
msgid "Last Updated:"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: easy-table.php:
|
422 |
#, php-format
|
423 |
msgid "%s ago"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: easy-table.php:
|
427 |
msgid "Requires WordPress Version:"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: easy-table.php:
|
431 |
#, php-format
|
432 |
msgid "%s or higher"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: easy-table.php:
|
436 |
msgid "Compatible up to:"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: easy-table.php:
|
440 |
msgid "Downloaded:"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: easy-table.php:
|
444 |
msgid "WordPress.org Plugin Page »"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: easy-table.php:
|
448 |
msgid "Plugin Homepage »"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: easy-table.php:
|
452 |
msgid "Average Rating"
|
453 |
msgstr "Penilaian rata-rata"
|
454 |
|
455 |
-
#: easy-table.php:
|
456 |
msgid "Support my work with donation"
|
457 |
msgstr "Dukung karya saya dengan sumbangan"
|
458 |
|
459 |
-
#: easy-table.php:
|
460 |
msgid "Don't have money? No problem, you can rate my plugin instead."
|
461 |
msgstr "Tidak punya uang? Tidak masalah, Anda cukup memberi rating plugin ini."
|
462 |
|
463 |
-
#: easy-table.php:
|
464 |
msgid "Click here to rate"
|
465 |
msgstr "Klik di sini untuk memberi nilai"
|
466 |
|
467 |
-
#: easy-table.php:
|
468 |
msgid "Thanks to"
|
469 |
msgstr "Terimakasih kepada"
|
470 |
|
471 |
-
#: easy-table.php:
|
472 |
-
#: easy-table.php:
|
473 |
msgid "by"
|
474 |
msgstr "oleh"
|
475 |
|
|
|
|
|
|
|
476 |
#~ msgid ""
|
477 |
#~ "Table class attribute, if you use bootstrap CSS, you should add at least "
|
478 |
#~ "\"table\" class."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: easy-table 1.4\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-07-16 22:11+0700\n"
|
6 |
+
"PO-Revision-Date: 2014-07-16 22:12+0700\n"
|
7 |
"Last-Translator: takien <contact@takien.com>\n"
|
8 |
"Language-Team: takien.com <contact@takien.com>\n"
|
9 |
"Language: id_ID\n"
|
16 |
"X-Generator: Poedit 1.5.7\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: easy-table.php:97
|
20 |
+
#, php-format
|
21 |
+
msgid ""
|
22 |
+
"It seems %1$s shortcode already used by another plugin and potentially cause "
|
23 |
+
"problem with %2$s. Please change %3$s into another term other than %4$s. <a "
|
24 |
+
"href=\"%5$s\">Click here to fix it.</a>"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: easy-table.php:627
|
28 |
msgid "Settings"
|
29 |
msgstr "Pengaturan"
|
30 |
|
31 |
+
#: easy-table.php:639
|
32 |
msgid "Instruction"
|
33 |
msgstr "Petunjuk"
|
34 |
|
35 |
+
#: easy-table.php:640
|
36 |
msgid ""
|
37 |
"Once plugin installed, go to plugin options page to configure some options"
|
38 |
msgstr "Setelah plugin terpasang, kemudian buka halaman penyetelan plugin"
|
39 |
|
40 |
+
#: easy-table.php:641
|
41 |
msgid "You are ready to write a table in post or page."
|
42 |
msgstr "Anda telah siap untuk membuat tabel di post atau halaman."
|
43 |
|
44 |
+
#: easy-table.php:642
|
45 |
msgid ""
|
46 |
"To be able write table in widget you have to check <em>Enable render table "
|
47 |
"in widget</em> option in the option page."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: easy-table.php:661
|
51 |
#, php-format
|
52 |
msgid "%s Option"
|
53 |
msgstr "Pengaturan %s"
|
54 |
|
55 |
+
#: easy-table.php:666
|
56 |
msgid "Support"
|
57 |
msgstr "Dukungan"
|
58 |
|
59 |
+
#: easy-table.php:667
|
60 |
msgid "About"
|
61 |
msgstr "Tentang"
|
62 |
|
63 |
+
#: easy-table.php:677
|
64 |
msgid "Show/hide help button"
|
65 |
msgstr "Tampilkan/Sembunyikan tombol bantuan"
|
66 |
|
67 |
+
#: easy-table.php:678
|
68 |
msgid "General options"
|
69 |
msgstr "Pengaturan umum"
|
70 |
|
71 |
+
#: easy-table.php:683
|
72 |
msgid "Short code tag"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: easy-table.php:685
|
76 |
msgid "Shortcode tag, type 'table' if you want to use [table] short tag."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: easy-table.php:691 easy-table.php:963
|
80 |
msgid "Cell attribute tag"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: easy-table.php:693
|
84 |
msgid "Cell attribute tag, default is attr."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: easy-table.php:698
|
88 |
msgid "Also render table in widget?"
|
89 |
msgstr "Tampilkan tabel di widget?"
|
90 |
|
91 |
+
#: easy-table.php:700
|
92 |
msgid "Check this if you want the table could be rendered in widget."
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: easy-table.php:705
|
96 |
msgid "Only load JS/CSS when in this condition"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: easy-table.php:706
|
100 |
msgid "Please check in where JavaScript and CSS should be loaded"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: easy-table.php:710
|
104 |
msgid "Single"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: easy-table.php:716
|
108 |
msgid "Page"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: easy-table.php:722
|
112 |
msgid "Front page"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: easy-table.php:728
|
116 |
msgid "Archive page"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: easy-table.php:734
|
120 |
msgid "Search page"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: easy-table.php:742
|
124 |
msgid "Load script on footer?"
|
125 |
msgstr "Muat script di footer?"
|
126 |
|
127 |
+
#: easy-table.php:744
|
128 |
msgid ""
|
129 |
"Check this if you want the script to be rendered in footer. Try to check or "
|
130 |
"uncheck this if you experienced conflict with another JavaScript library "
|
131 |
"(not guaranteed though)."
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: easy-table.php:755
|
135 |
msgid "Use tablesorter?"
|
136 |
msgstr "Gunakan tablesorter?"
|
137 |
|
138 |
+
#: easy-table.php:758
|
139 |
msgid "Check this to use tablesorter jQuery plugin"
|
140 |
msgstr "Ceklist ini jika ingin menggunakan jQuery plugin tablesorter"
|
141 |
|
142 |
+
#: easy-table.php:762
|
143 |
msgid "Use TH for the first row?"
|
144 |
msgstr "Gunakan TH untuk baris pertama?"
|
145 |
|
146 |
+
#: easy-table.php:765
|
147 |
msgid ""
|
148 |
"Check this if you want to use first row as table head (required by "
|
149 |
"tablesorter)"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: easy-table.php:769
|
153 |
msgid "Load CSS?"
|
154 |
msgstr "Muat CSS?"
|
155 |
|
156 |
+
#: easy-table.php:772
|
157 |
msgid ""
|
158 |
"Check this to use CSS included in this plugin to styling table, you may "
|
159 |
"unceck if you want to write your own style."
|
160 |
msgstr "Ceklist ini untuk menyertakan CSS untuk penataan tampilan tabel."
|
161 |
|
162 |
+
#: easy-table.php:776
|
163 |
msgid "Table class"
|
164 |
msgstr "Class tabel"
|
165 |
|
166 |
+
#: easy-table.php:778
|
167 |
msgid "Additional table class attribute."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: easy-table.php:782
|
171 |
msgid "Table width"
|
172 |
msgstr "Lebar tabel"
|
173 |
|
174 |
+
#: easy-table.php:784
|
175 |
msgid "Table width, in pixel or percent (may be overriden by CSS)"
|
176 |
msgstr "Lebar tabel, dalam pixel atau persen (kemungkinan ditimpa oleh CSS)"
|
177 |
|
178 |
+
#: easy-table.php:788
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
msgid "Table border"
|
180 |
msgstr "Garis tabel"
|
181 |
|
182 |
+
#: easy-table.php:790
|
183 |
msgid "Table border (may be overriden by CSS)"
|
184 |
msgstr "Garis tabel (kemungkinan ditimpa oleh CSS)"
|
185 |
|
186 |
+
#: easy-table.php:794
|
187 |
+
msgid "Table align"
|
188 |
+
msgstr "Perataan tabel"
|
189 |
+
|
190 |
+
#: easy-table.php:796
|
191 |
+
msgid "Table align (left, center, right)"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: easy-table.php:801
|
195 |
msgid "Table options"
|
196 |
msgstr "Pengaturan tabel"
|
197 |
|
198 |
+
#: easy-table.php:805
|
199 |
msgid "Theme selector"
|
200 |
msgstr "Pemilihan tema"
|
201 |
|
202 |
+
#: easy-table.php:810
|
203 |
msgid "Default theme"
|
204 |
msgstr "Tema bawaan"
|
205 |
|
206 |
+
#: easy-table.php:814
|
207 |
msgid "Select default theme of the table"
|
208 |
msgstr "Pilih tema untuk tabel"
|
209 |
|
210 |
+
#: easy-table.php:820
|
211 |
#, fuzzy
|
212 |
msgid "Data options"
|
213 |
msgstr "Pengaturan tabel"
|
214 |
|
215 |
+
#: easy-table.php:825
|
216 |
msgid "Row limit"
|
217 |
msgstr "Batas baris"
|
218 |
|
219 |
+
#: easy-table.php:829
|
220 |
msgid "Max row to convert to table, default 0 (unlimited)"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: easy-table.php:833
|
224 |
msgid "Trim cell data?"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: easy-table.php:838
|
228 |
msgid "Trim empty character around cell data"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: easy-table.php:844
|
232 |
#, fuzzy
|
233 |
msgid "Parser options"
|
234 |
msgstr "Pengaturan parser"
|
235 |
|
236 |
+
#: easy-table.php:845
|
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:851
|
241 |
msgid "New line replacement"
|
242 |
msgstr "Pengganti baris baru"
|
243 |
|
244 |
+
#: easy-table.php:854
|
245 |
msgid ""
|
246 |
"Since new line is used by parser, you need specify character as a "
|
247 |
"replacement."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: easy-table.php:857
|
251 |
msgid "Row terminator"
|
252 |
msgstr "Pembatas baris"
|
253 |
|
254 |
+
#: easy-table.php:861
|
255 |
msgid ""
|
256 |
"This caharacter will converted into new row. Default value \\n (this is "
|
257 |
"invisible character when you press Enter). If your new line not converted as "
|
258 |
"new row in the table, try use \\r instead."
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: easy-table.php:864
|
262 |
msgid "Delimiter"
|
263 |
msgstr "Pemisah"
|
264 |
|
265 |
+
#: easy-table.php:867
|
266 |
msgid "CSV delimiter (default is comma)"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: easy-table.php:870
|
270 |
msgid "Enclosure"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: easy-table.php:873
|
274 |
msgid "CSV enclosure (default is double quote)"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: easy-table.php:876
|
278 |
msgid "Escape"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: easy-table.php:879
|
282 |
msgid "CSV escape (default is backslash)"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: easy-table.php:882
|
286 |
+
msgid "Fix linebreak"
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: easy-table.php:885
|
290 |
+
msgid ""
|
291 |
+
"If terminator is not default (linebreak), you may encounter some issue with "
|
292 |
+
"linebreak inside cell, try to check or uncheck this to resolve"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: easy-table.php:889
|
296 |
msgid "Allow read CSV from file?"
|
297 |
msgstr "Bolehkan membaca CSV dari file?"
|
298 |
|
299 |
+
#: easy-table.php:892
|
300 |
msgid "Check this if you also want to convert CSV file to table"
|
301 |
msgstr "Ceklist ini jika Anda juga ingin merubah file CSV ke tabel"
|
302 |
|
303 |
+
#: easy-table.php:900
|
304 |
msgid "Save"
|
305 |
msgstr "Simpan"
|
306 |
|
307 |
+
#: easy-table.php:924
|
308 |
msgid "Possible parameter"
|
309 |
msgstr "Parameter yang dimungkinkan"
|
310 |
|
311 |
+
#: easy-table.php:925
|
312 |
msgid ""
|
313 |
"These parameters commonly can override global options in the left side of "
|
314 |
"this page. Example usage:"
|
316 |
"Parameter berikut ini secara umum dapat menggantikan setingan global yang "
|
317 |
"ada di sebelah kiri halaman ini. Contoh penggunaan:"
|
318 |
|
319 |
+
#: easy-table.php:928 easy-table.php:929 easy-table.php:930 easy-table.php:931
|
320 |
+
#: easy-table.php:932 easy-table.php:933 easy-table.php:934 easy-table.php:935
|
321 |
+
#: easy-table.php:936 easy-table.php:937 easy-table.php:938 easy-table.php:939
|
322 |
+
#: easy-table.php:940 easy-table.php:941 easy-table.php:942 easy-table.php:943
|
323 |
+
#: easy-table.php:944
|
324 |
msgid "default value"
|
325 |
msgstr "nilai bawaan"
|
326 |
|
327 |
+
#: easy-table.php:928
|
328 |
msgid "another value"
|
329 |
msgstr "nilai lainnya"
|
330 |
|
331 |
+
#: easy-table.php:947
|
332 |
msgid ""
|
333 |
"parameter is for initial sorting order. Value for each column separated by "
|
334 |
"comma. See example below:"
|
336 |
"parameter untuk penyortiran bawaan. Nilai dari masing masih kolom dipisahkan "
|
337 |
"dengan koma. Lihat contoh berikut:"
|
338 |
|
339 |
+
#: easy-table.php:949
|
340 |
msgid ""
|
341 |
"Set initial order of first column descending and second column ascending:"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: easy-table.php:955
|
345 |
msgid "Set initial order of second column descending:"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: easy-table.php:961
|
349 |
msgid ""
|
350 |
"Additionaly, sort option also can be set via sort attr in a cell. See "
|
351 |
"example below"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: easy-table.php:965
|
355 |
msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: easy-table.php:966
|
359 |
msgid "Example"
|
360 |
msgstr "Contoh"
|
361 |
|
362 |
+
#: easy-table.php:975
|
363 |
msgid "To set initial sort order, this is intended to TH (first row) only."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: easy-table.php:976
|
367 |
msgid "Example: sort second column descending "
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: easy-table.php:993
|
371 |
msgid "Test area:"
|
372 |
msgstr "Area test:"
|
373 |
|
374 |
+
#: easy-table.php:998
|
375 |
msgid "Reset"
|
376 |
msgstr "Reset"
|
377 |
|
378 |
+
#: easy-table.php:999
|
379 |
msgid "Update preview"
|
380 |
msgstr "Perbaharui pratinjau"
|
381 |
|
382 |
+
#: easy-table.php:1001
|
383 |
msgid "Preview"
|
384 |
msgstr "Pratinjau"
|
385 |
|
386 |
+
#: easy-table.php:1008
|
387 |
msgid "Easy Table theme editor"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: easy-table.php:1038
|
391 |
msgid ""
|
392 |
"I have tried to make this plugin can be used as easy as possible and "
|
393 |
"documentation as complete as possible. However it is also possible that you "
|
397 |
"yang selengkap mungkin. Meskipun begitu mungkin Anda masih bingung. Untuk "
|
398 |
"itu jangan sungkan-sungkan untuk bertanya. Saya akan senang menjawabnya."
|
399 |
|
400 |
+
#: easy-table.php:1039
|
401 |
msgid ""
|
402 |
"You can use this discussion to get support, request feature or reporting bug."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: easy-table.php:1040
|
406 |
msgid "Before you ask something, make sure you have read documentation here!"
|
407 |
msgstr ""
|
408 |
"Sebelum bertanya sesuatu, pastikan Anda telah membaca dokumentasi di sini!"
|
409 |
|
410 |
+
#: easy-table.php:1099
|
411 |
msgid "Install Now"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: easy-table.php:1103
|
415 |
msgid "Install Update Now"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: easy-table.php:1106
|
419 |
#, php-format
|
420 |
msgid "Newer Version (%s) Installed"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: easy-table.php:1109
|
424 |
msgid "Latest Version Installed"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: easy-table.php:1118
|
428 |
msgid "Latest Version:"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: easy-table.php:1120
|
432 |
msgid "Author:"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: easy-table.php:1122
|
436 |
msgid "Last Updated:"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: easy-table.php:1123
|
440 |
#, php-format
|
441 |
msgid "%s ago"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: easy-table.php:1125
|
445 |
msgid "Requires WordPress Version:"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: easy-table.php:1125
|
449 |
#, php-format
|
450 |
msgid "%s or higher"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: easy-table.php:1127
|
454 |
msgid "Compatible up to:"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: easy-table.php:1129
|
458 |
msgid "Downloaded:"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: easy-table.php:1131
|
462 |
msgid "WordPress.org Plugin Page »"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: easy-table.php:1133
|
466 |
msgid "Plugin Homepage »"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: easy-table.php:1137
|
470 |
msgid "Average Rating"
|
471 |
msgstr "Penilaian rata-rata"
|
472 |
|
473 |
+
#: easy-table.php:1155
|
474 |
msgid "Support my work with donation"
|
475 |
msgstr "Dukung karya saya dengan sumbangan"
|
476 |
|
477 |
+
#: easy-table.php:1164
|
478 |
msgid "Don't have money? No problem, you can rate my plugin instead."
|
479 |
msgstr "Tidak punya uang? Tidak masalah, Anda cukup memberi rating plugin ini."
|
480 |
|
481 |
+
#: easy-table.php:1165
|
482 |
msgid "Click here to rate"
|
483 |
msgstr "Klik di sini untuk memberi nilai"
|
484 |
|
485 |
+
#: easy-table.php:1167
|
486 |
msgid "Thanks to"
|
487 |
msgstr "Terimakasih kepada"
|
488 |
|
489 |
+
#: easy-table.php:1173 easy-table.php:1174 easy-table.php:1175
|
490 |
+
#: easy-table.php:1176 easy-table.php:1177
|
491 |
msgid "by"
|
492 |
msgstr "oleh"
|
493 |
|
494 |
+
#~ msgid "Table align, left/right/center (may be overriden by CSS)"
|
495 |
+
#~ msgstr "Perataan tabel, left/right/center (kemungkinan ditimpa oleh CSS)"
|
496 |
+
|
497 |
#~ msgid ""
|
498 |
#~ "Table class attribute, if you use bootstrap CSS, you should add at least "
|
499 |
#~ "\"table\" class."
|
languages/english.mo
CHANGED
Binary file
|
languages/english.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: easy-table 1.4\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: takien <contact@takien.com>\n"
|
8 |
"Language-Team: takien.com <contact@takien.com>\n"
|
9 |
"Language: en_US\n"
|
@@ -16,449 +16,467 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.7\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: easy-table.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "Settings"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: easy-table.php:
|
24 |
msgid "Instruction"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: easy-table.php:
|
28 |
msgid ""
|
29 |
"Once plugin installed, go to plugin options page to configure some options"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: easy-table.php:
|
33 |
msgid "You are ready to write a table in post or page."
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: easy-table.php:
|
37 |
msgid ""
|
38 |
"To be able write table in widget you have to check <em>Enable render table "
|
39 |
"in widget</em> option in the option page."
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: easy-table.php:
|
43 |
#, php-format
|
44 |
msgid "%s Option"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: easy-table.php:
|
48 |
msgid "Support"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: easy-table.php:
|
52 |
msgid "About"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: easy-table.php:
|
56 |
msgid "Show/hide help button"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: easy-table.php:
|
60 |
msgid "General options"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: easy-table.php:
|
64 |
msgid "Short code tag"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: easy-table.php:
|
68 |
msgid "Shortcode tag, type 'table' if you want to use [table] short tag."
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: easy-table.php:
|
72 |
msgid "Cell attribute tag"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: easy-table.php:
|
76 |
msgid "Cell attribute tag, default is attr."
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: easy-table.php:
|
80 |
msgid "Also render table in widget?"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: easy-table.php:
|
84 |
msgid "Check this if you want the table could be rendered in widget."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: easy-table.php:
|
88 |
msgid "Only load JS/CSS when in this condition"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: easy-table.php:
|
92 |
msgid "Please check in where JavaScript and CSS should be loaded"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: easy-table.php:
|
96 |
msgid "Single"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: easy-table.php:
|
100 |
msgid "Page"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: easy-table.php:
|
104 |
msgid "Front page"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: easy-table.php:
|
108 |
msgid "Archive page"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: easy-table.php:
|
112 |
msgid "Search page"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: easy-table.php:
|
116 |
msgid "Load script on footer?"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: easy-table.php:
|
120 |
msgid ""
|
121 |
"Check this if you want the script to be rendered in footer. Try to check or "
|
122 |
"uncheck this if you experienced conflict with another JavaScript library "
|
123 |
"(not guaranteed though)."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: easy-table.php:
|
127 |
msgid "Use tablesorter?"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: easy-table.php:
|
131 |
msgid "Check this to use tablesorter jQuery plugin"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: easy-table.php:
|
135 |
msgid "Use TH for the first row?"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: easy-table.php:
|
139 |
msgid ""
|
140 |
"Check this if you want to use first row as table head (required by "
|
141 |
"tablesorter)"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: easy-table.php:
|
145 |
msgid "Load CSS?"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: easy-table.php:
|
149 |
msgid ""
|
150 |
"Check this to use CSS included in this plugin to styling table, you may "
|
151 |
"unceck if you want to write your own style."
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: easy-table.php:
|
155 |
msgid "Table class"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: easy-table.php:
|
159 |
msgid "Additional table class attribute."
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: easy-table.php:
|
163 |
msgid "Table width"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: easy-table.php:
|
167 |
msgid "Table width, in pixel or percent (may be overriden by CSS)"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: easy-table.php:
|
171 |
-
msgid "Table
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: easy-table.php:
|
175 |
-
msgid "Table
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: easy-table.php:
|
179 |
-
msgid "Table
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: easy-table.php:
|
183 |
-
msgid "Table
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: easy-table.php:
|
187 |
msgid "Table options"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: easy-table.php:
|
191 |
msgid "Theme selector"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: easy-table.php:
|
195 |
msgid "Default theme"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: easy-table.php:
|
199 |
msgid "Select default theme of the table"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: easy-table.php:
|
203 |
msgid "Data options"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: easy-table.php:
|
207 |
msgid "Row limit"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: easy-table.php:
|
211 |
msgid "Max row to convert to table, default 0 (unlimited)"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: easy-table.php:
|
215 |
msgid "Trim cell data?"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: easy-table.php:
|
219 |
msgid "Trim empty character around cell data"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: easy-table.php:
|
223 |
msgid "Parser options"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: easy-table.php:
|
227 |
msgid "Do not change this unless you know what you're doing"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: easy-table.php:
|
231 |
msgid "New line replacement"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: easy-table.php:
|
235 |
msgid ""
|
236 |
"Since new line is used by parser, you need specify character as a "
|
237 |
"replacement."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: easy-table.php:
|
241 |
msgid "Row terminator"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: easy-table.php:
|
245 |
msgid ""
|
246 |
"This caharacter will converted into new row. Default value \\n (this is "
|
247 |
"invisible character when you press Enter). If your new line not converted as "
|
248 |
"new row in the table, try use \\r instead."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: easy-table.php:
|
252 |
msgid "Delimiter"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: easy-table.php:
|
256 |
msgid "CSV delimiter (default is comma)"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: easy-table.php:
|
260 |
msgid "Enclosure"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: easy-table.php:
|
264 |
msgid "CSV enclosure (default is double quote)"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: easy-table.php:
|
268 |
msgid "Escape"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: easy-table.php:
|
272 |
msgid "CSV escape (default is backslash)"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: easy-table.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
276 |
msgid "Allow read CSV from file?"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: easy-table.php:
|
280 |
msgid "Check this if you also want to convert CSV file to table"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: easy-table.php:
|
284 |
msgid "Save"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: easy-table.php:
|
288 |
msgid "Possible parameter"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: easy-table.php:
|
292 |
msgid ""
|
293 |
"These parameters commonly can override global options in the left side of "
|
294 |
"this page. Example usage:"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: easy-table.php:
|
298 |
-
#: easy-table.php:
|
299 |
-
#: easy-table.php:
|
300 |
-
#: easy-table.php:
|
301 |
-
#: easy-table.php:
|
302 |
msgid "default value"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: easy-table.php:
|
306 |
msgid "another value"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: easy-table.php:
|
310 |
msgid ""
|
311 |
"parameter is for initial sorting order. Value for each column separated by "
|
312 |
"comma. See example below:"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: easy-table.php:
|
316 |
msgid ""
|
317 |
"Set initial order of first column descending and second column ascending:"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: easy-table.php:
|
321 |
msgid "Set initial order of second column descending:"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: easy-table.php:
|
325 |
msgid ""
|
326 |
"Additionaly, sort option also can be set via sort attr in a cell. See "
|
327 |
"example below"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: easy-table.php:
|
331 |
msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: easy-table.php:
|
335 |
msgid "Example"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: easy-table.php:
|
339 |
msgid "To set initial sort order, this is intended to TH (first row) only."
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: easy-table.php:
|
343 |
msgid "Example: sort second column descending "
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: easy-table.php:
|
347 |
msgid "Test area:"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: easy-table.php:
|
351 |
msgid "Reset"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: easy-table.php:
|
355 |
msgid "Update preview"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: easy-table.php:
|
359 |
msgid "Preview"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: easy-table.php:
|
363 |
msgid "Easy Table theme editor"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: easy-table.php:
|
367 |
msgid ""
|
368 |
"I have tried to make this plugin can be used as easy as possible and "
|
369 |
"documentation as complete as possible. However it is also possible that you "
|
370 |
"are still confused. Therefore feel free to ask. I would be happy to answer."
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: easy-table.php:
|
374 |
msgid ""
|
375 |
"You can use this discussion to get support, request feature or reporting bug."
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: easy-table.php:
|
379 |
msgid "Before you ask something, make sure you have read documentation here!"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: easy-table.php:
|
383 |
msgid "Install Now"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: easy-table.php:
|
387 |
msgid "Install Update Now"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: easy-table.php:
|
391 |
#, php-format
|
392 |
msgid "Newer Version (%s) Installed"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: easy-table.php:
|
396 |
msgid "Latest Version Installed"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: easy-table.php:
|
400 |
msgid "Latest Version:"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: easy-table.php:
|
404 |
msgid "Author:"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: easy-table.php:
|
408 |
msgid "Last Updated:"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: easy-table.php:
|
412 |
#, php-format
|
413 |
msgid "%s ago"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: easy-table.php:
|
417 |
msgid "Requires WordPress Version:"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: easy-table.php:
|
421 |
#, php-format
|
422 |
msgid "%s or higher"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: easy-table.php:
|
426 |
msgid "Compatible up to:"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: easy-table.php:
|
430 |
msgid "Downloaded:"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: easy-table.php:
|
434 |
msgid "WordPress.org Plugin Page »"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: easy-table.php:
|
438 |
msgid "Plugin Homepage »"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: easy-table.php:
|
442 |
msgid "Average Rating"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: easy-table.php:
|
446 |
msgid "Support my work with donation"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: easy-table.php:
|
450 |
msgid "Don't have money? No problem, you can rate my plugin instead."
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: easy-table.php:
|
454 |
msgid "Click here to rate"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: easy-table.php:
|
458 |
msgid "Thanks to"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: easy-table.php:
|
462 |
-
#: easy-table.php:
|
463 |
msgid "by"
|
464 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: easy-table 1.4\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-07-16 22:11+0700\n"
|
6 |
+
"PO-Revision-Date: 2014-07-16 22:14+0700\n"
|
7 |
"Last-Translator: takien <contact@takien.com>\n"
|
8 |
"Language-Team: takien.com <contact@takien.com>\n"
|
9 |
"Language: en_US\n"
|
16 |
"X-Generator: Poedit 1.5.7\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: easy-table.php:97
|
20 |
+
#, php-format
|
21 |
+
msgid ""
|
22 |
+
"It seems %1$s shortcode already used by another plugin and potentially cause "
|
23 |
+
"problem with %2$s. Please change %3$s into another term other than %4$s. <a "
|
24 |
+
"href=\"%5$s\">Click here to fix it.</a>"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: easy-table.php:627
|
28 |
msgid "Settings"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: easy-table.php:639
|
32 |
msgid "Instruction"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: easy-table.php:640
|
36 |
msgid ""
|
37 |
"Once plugin installed, go to plugin options page to configure some options"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: easy-table.php:641
|
41 |
msgid "You are ready to write a table in post or page."
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: easy-table.php:642
|
45 |
msgid ""
|
46 |
"To be able write table in widget you have to check <em>Enable render table "
|
47 |
"in widget</em> option in the option page."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: easy-table.php:661
|
51 |
#, php-format
|
52 |
msgid "%s Option"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: easy-table.php:666
|
56 |
msgid "Support"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: easy-table.php:667
|
60 |
msgid "About"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: easy-table.php:677
|
64 |
msgid "Show/hide help button"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: easy-table.php:678
|
68 |
msgid "General options"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: easy-table.php:683
|
72 |
msgid "Short code tag"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: easy-table.php:685
|
76 |
msgid "Shortcode tag, type 'table' if you want to use [table] short tag."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: easy-table.php:691 easy-table.php:963
|
80 |
msgid "Cell attribute tag"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: easy-table.php:693
|
84 |
msgid "Cell attribute tag, default is attr."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: easy-table.php:698
|
88 |
msgid "Also render table in widget?"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: easy-table.php:700
|
92 |
msgid "Check this if you want the table could be rendered in widget."
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: easy-table.php:705
|
96 |
msgid "Only load JS/CSS when in this condition"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: easy-table.php:706
|
100 |
msgid "Please check in where JavaScript and CSS should be loaded"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: easy-table.php:710
|
104 |
msgid "Single"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: easy-table.php:716
|
108 |
msgid "Page"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: easy-table.php:722
|
112 |
msgid "Front page"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: easy-table.php:728
|
116 |
msgid "Archive page"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: easy-table.php:734
|
120 |
msgid "Search page"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: easy-table.php:742
|
124 |
msgid "Load script on footer?"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: easy-table.php:744
|
128 |
msgid ""
|
129 |
"Check this if you want the script to be rendered in footer. Try to check or "
|
130 |
"uncheck this if you experienced conflict with another JavaScript library "
|
131 |
"(not guaranteed though)."
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: easy-table.php:755
|
135 |
msgid "Use tablesorter?"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: easy-table.php:758
|
139 |
msgid "Check this to use tablesorter jQuery plugin"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: easy-table.php:762
|
143 |
msgid "Use TH for the first row?"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: easy-table.php:765
|
147 |
msgid ""
|
148 |
"Check this if you want to use first row as table head (required by "
|
149 |
"tablesorter)"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: easy-table.php:769
|
153 |
msgid "Load CSS?"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: easy-table.php:772
|
157 |
msgid ""
|
158 |
"Check this to use CSS included in this plugin to styling table, you may "
|
159 |
"unceck if you want to write your own style."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: easy-table.php:776
|
163 |
msgid "Table class"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: easy-table.php:778
|
167 |
msgid "Additional table class attribute."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: easy-table.php:782
|
171 |
msgid "Table width"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: easy-table.php:784
|
175 |
msgid "Table width, in pixel or percent (may be overriden by CSS)"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: easy-table.php:788
|
179 |
+
msgid "Table border"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: easy-table.php:790
|
183 |
+
msgid "Table border (may be overriden by CSS)"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: easy-table.php:794
|
187 |
+
msgid "Table align"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: easy-table.php:796
|
191 |
+
msgid "Table align (left, center, right)"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: easy-table.php:801
|
195 |
msgid "Table options"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: easy-table.php:805
|
199 |
msgid "Theme selector"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: easy-table.php:810
|
203 |
msgid "Default theme"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: easy-table.php:814
|
207 |
msgid "Select default theme of the table"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: easy-table.php:820
|
211 |
msgid "Data options"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: easy-table.php:825
|
215 |
msgid "Row limit"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: easy-table.php:829
|
219 |
msgid "Max row to convert to table, default 0 (unlimited)"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: easy-table.php:833
|
223 |
msgid "Trim cell data?"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: easy-table.php:838
|
227 |
msgid "Trim empty character around cell data"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: easy-table.php:844
|
231 |
msgid "Parser options"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: easy-table.php:845
|
235 |
msgid "Do not change this unless you know what you're doing"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: easy-table.php:851
|
239 |
msgid "New line replacement"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: easy-table.php:854
|
243 |
msgid ""
|
244 |
"Since new line is used by parser, you need specify character as a "
|
245 |
"replacement."
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: easy-table.php:857
|
249 |
msgid "Row terminator"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: easy-table.php:861
|
253 |
msgid ""
|
254 |
"This caharacter will converted into new row. Default value \\n (this is "
|
255 |
"invisible character when you press Enter). If your new line not converted as "
|
256 |
"new row in the table, try use \\r instead."
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: easy-table.php:864
|
260 |
msgid "Delimiter"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: easy-table.php:867
|
264 |
msgid "CSV delimiter (default is comma)"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: easy-table.php:870
|
268 |
msgid "Enclosure"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: easy-table.php:873
|
272 |
msgid "CSV enclosure (default is double quote)"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: easy-table.php:876
|
276 |
msgid "Escape"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: easy-table.php:879
|
280 |
msgid "CSV escape (default is backslash)"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: easy-table.php:882
|
284 |
+
msgid "Fix linebreak"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: easy-table.php:885
|
288 |
+
msgid ""
|
289 |
+
"If terminator is not default (linebreak), you may encounter some issue with "
|
290 |
+
"linebreak inside cell, try to check or uncheck this to resolve"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: easy-table.php:889
|
294 |
msgid "Allow read CSV from file?"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: easy-table.php:892
|
298 |
msgid "Check this if you also want to convert CSV file to table"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: easy-table.php:900
|
302 |
msgid "Save"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: easy-table.php:924
|
306 |
msgid "Possible parameter"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: easy-table.php:925
|
310 |
msgid ""
|
311 |
"These parameters commonly can override global options in the left side of "
|
312 |
"this page. Example usage:"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: easy-table.php:928 easy-table.php:929 easy-table.php:930 easy-table.php:931
|
316 |
+
#: easy-table.php:932 easy-table.php:933 easy-table.php:934 easy-table.php:935
|
317 |
+
#: easy-table.php:936 easy-table.php:937 easy-table.php:938 easy-table.php:939
|
318 |
+
#: easy-table.php:940 easy-table.php:941 easy-table.php:942 easy-table.php:943
|
319 |
+
#: easy-table.php:944
|
320 |
msgid "default value"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: easy-table.php:928
|
324 |
msgid "another value"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: easy-table.php:947
|
328 |
msgid ""
|
329 |
"parameter is for initial sorting order. Value for each column separated by "
|
330 |
"comma. See example below:"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: easy-table.php:949
|
334 |
msgid ""
|
335 |
"Set initial order of first column descending and second column ascending:"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: easy-table.php:955
|
339 |
msgid "Set initial order of second column descending:"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: easy-table.php:961
|
343 |
msgid ""
|
344 |
"Additionaly, sort option also can be set via sort attr in a cell. See "
|
345 |
"example below"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: easy-table.php:965
|
349 |
msgid "To set attribute for cell eg. class, colspan, rowspan, etc"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: easy-table.php:966
|
353 |
msgid "Example"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: easy-table.php:975
|
357 |
msgid "To set initial sort order, this is intended to TH (first row) only."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: easy-table.php:976
|
361 |
msgid "Example: sort second column descending "
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: easy-table.php:993
|
365 |
msgid "Test area:"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: easy-table.php:998
|
369 |
msgid "Reset"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: easy-table.php:999
|
373 |
msgid "Update preview"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: easy-table.php:1001
|
377 |
msgid "Preview"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: easy-table.php:1008
|
381 |
msgid "Easy Table theme editor"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: easy-table.php:1038
|
385 |
msgid ""
|
386 |
"I have tried to make this plugin can be used as easy as possible and "
|
387 |
"documentation as complete as possible. However it is also possible that you "
|
388 |
"are still confused. Therefore feel free to ask. I would be happy to answer."
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: easy-table.php:1039
|
392 |
msgid ""
|
393 |
"You can use this discussion to get support, request feature or reporting bug."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: easy-table.php:1040
|
397 |
msgid "Before you ask something, make sure you have read documentation here!"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: easy-table.php:1099
|
401 |
msgid "Install Now"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: easy-table.php:1103
|
405 |
msgid "Install Update Now"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: easy-table.php:1106
|
409 |
#, php-format
|
410 |
msgid "Newer Version (%s) Installed"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: easy-table.php:1109
|
414 |
msgid "Latest Version Installed"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: easy-table.php:1118
|
418 |
msgid "Latest Version:"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: easy-table.php:1120
|
422 |
msgid "Author:"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: easy-table.php:1122
|
426 |
msgid "Last Updated:"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: easy-table.php:1123
|
430 |
#, php-format
|
431 |
msgid "%s ago"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: easy-table.php:1125
|
435 |
msgid "Requires WordPress Version:"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: easy-table.php:1125
|
439 |
#, php-format
|
440 |
msgid "%s or higher"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: easy-table.php:1127
|
444 |
msgid "Compatible up to:"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: easy-table.php:1129
|
448 |
msgid "Downloaded:"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: easy-table.php:1131
|
452 |
msgid "WordPress.org Plugin Page »"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: easy-table.php:1133
|
456 |
msgid "Plugin Homepage »"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: easy-table.php:1137
|
460 |
msgid "Average Rating"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: easy-table.php:1155
|
464 |
msgid "Support my work with donation"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: easy-table.php:1164
|
468 |
msgid "Don't have money? No problem, you can rate my plugin instead."
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: easy-table.php:1165
|
472 |
msgid "Click here to rate"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: easy-table.php:1167
|
476 |
msgid "Thanks to"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: easy-table.php:1173 easy-table.php:1174 easy-table.php:1175
|
480 |
+
#: easy-table.php:1176 easy-table.php:1177
|
481 |
msgid "by"
|
482 |
msgstr ""
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: takien
|
|
3 |
Donate link: http://takien.com/donate
|
4 |
Tags: table,csv,csv-to-table,post,excel,csv file,widget,tablesorter
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 3.
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -248,6 +248,12 @@ No
|
|
248 |
|
249 |
== Changelog ==
|
250 |
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
= 1.4 =
|
252 |
* Updated: TableSorter JavaScript library now updated to 2.10.8 from 2.0.5b ( hope it will solve many sorting problems )
|
253 |
|
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.9.1
|
7 |
+
Stable tag: 1.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
248 |
|
249 |
== Changelog ==
|
250 |
|
251 |
+
= 1.5 =
|
252 |
+
* Add table-responsive `div` wrap around table and responsive CSS.
|
253 |
+
* Suppress error message: 'Redefining already defined constructor...' on certain PHP version environment.
|
254 |
+
* Check against shortcode that may has been registered by another plugin.
|
255 |
+
* Increase `fgetcsv` limit from 2000 to 2000000 if $limit value not set.
|
256 |
+
|
257 |
= 1.4 =
|
258 |
* Updated: TableSorter JavaScript library now updated to 2.10.8 from 2.0.5b ( hope it will solve many sorting problems )
|
259 |
|