WP-Table Reloaded - Version 1.8

Version Description

This upgrade includes an updated DataTables library, enhances several features and fixes a few small issues.

Download this release

Release Info

Developer TobiasBg
Plugin Icon wp plugin WP-Table Reloaded
Version 1.8
Comparing to
See all releases

Code changes from version 1.7 to 1.8

classes/helper.class.php CHANGED
@@ -48,7 +48,7 @@ class WP_Table_Reloaded_Helper {
48
  // ###################################################################################################################
49
  function safe_output( $string ) {
50
  $string = stripslashes( $string ); // because $string is add_slashed before WP stores it in DB
51
- return wp_specialchars( $string, ENT_QUOTES, false, true );
52
  }
53
 
54
  // ###################################################################################################################
48
  // ###################################################################################################################
49
  function safe_output( $string ) {
50
  $string = stripslashes( $string ); // because $string is add_slashed before WP stores it in DB
51
+ return _wp_specialchars( $string, ENT_QUOTES, false, true );
52
  }
53
 
54
  // ###################################################################################################################
classes/render.class.php CHANGED
@@ -136,6 +136,7 @@ class WP_Table_Reloaded_Render {
136
 
137
  $tbody_class = ( $this->output_options['row_hover'] ) ? ' class="row-hover"' : '';
138
 
 
139
  if ( !empty( $this->output_options['edit_table_url'] ) ) {
140
  $edit_table_link = "<a href=\"{$this->output_options['edit_table_url']}\" title=\"" . __( 'Edit' ) . "\">" . __( 'Edit' ) . "</a>";
141
  $caption = "<caption style=\"caption-side: bottom; text-align: left; border:none; background: none;\">{$edit_table_link}</caption>\n";
@@ -147,11 +148,15 @@ class WP_Table_Reloaded_Render {
147
  $tbody = "<tbody{$tbody_class}>\n" . implode( '', $tbody ) . "</tbody>\n";
148
  $tfoot = ( !empty( $tfoot ) ) ? "<tfoot>\n{$tfoot}</tfoot>\n" : '';
149
 
 
 
 
 
150
  $cellspacing = ( false !== $this->output_options['cellspacing'] ) ? " cellspacing=\"{$this->output_options['cellspacing']}\"" : '';
151
  $cellpadding = ( false !== $this->output_options['cellpadding'] ) ? " cellpadding=\"{$this->output_options['cellpadding']}\"" : '';
152
  $border = ( false !== $this->output_options['border'] ) ? " border=\"{$this->output_options['border']}\"" : '';
153
 
154
- $output .= "\n<table id=\"{$this->output_options['html_id']}\" class=\"{$cssclasses}\"{$cellspacing}{$cellpadding}{$border}>\n";
155
  $output .= $caption . $colgroup . $thead . $tfoot . $tbody;
156
  $output .= "</table>\n";
157
 
@@ -252,8 +257,8 @@ class WP_Table_Reloaded_Render {
252
  * Remove all cells that shall not be rendered, because they are hidden, from the data set
253
  */
254
  function get_render_data() {
255
- $table = $this->table;
256
-
257
  // if row_offset or row_count were given, we cut that part from the table and show just that
258
  // ATTENTION: MIGHT BE DROPPED IN FUTURE VERSIONS!
259
  if ( null === $this->output_options['row_count'] )
@@ -281,6 +286,9 @@ class WP_Table_Reloaded_Render {
281
  }
282
  $table['data'][$row_idx] = array_merge( $row );
283
  }
 
 
 
284
  return $table;
285
  }
286
 
136
 
137
  $tbody_class = ( $this->output_options['row_hover'] ) ? ' class="row-hover"' : '';
138
 
139
+ $caption = '';
140
  if ( !empty( $this->output_options['edit_table_url'] ) ) {
141
  $edit_table_link = "<a href=\"{$this->output_options['edit_table_url']}\" title=\"" . __( 'Edit' ) . "\">" . __( 'Edit' ) . "</a>";
142
  $caption = "<caption style=\"caption-side: bottom; text-align: left; border:none; background: none;\">{$edit_table_link}</caption>\n";
148
  $tbody = "<tbody{$tbody_class}>\n" . implode( '', $tbody ) . "</tbody>\n";
149
  $tfoot = ( !empty( $tfoot ) ) ? "<tfoot>\n{$tfoot}</tfoot>\n" : '';
150
 
151
+ $id = " id=\"{$this->output_options['html_id']}\"";
152
+ $summary = apply_filters( 'wp_table_reloaded_table_summary_arg', '', $table['id'], $table );
153
+ $summary = ( !empty( $summary ) ) ? " summary=\"" . esc_attr( $summary ) . "\"" : '';
154
+ $class = ( !empty( $cssclasses ) ) ? " class=\"{$cssclasses}\"" : '';
155
  $cellspacing = ( false !== $this->output_options['cellspacing'] ) ? " cellspacing=\"{$this->output_options['cellspacing']}\"" : '';
156
  $cellpadding = ( false !== $this->output_options['cellpadding'] ) ? " cellpadding=\"{$this->output_options['cellpadding']}\"" : '';
157
  $border = ( false !== $this->output_options['border'] ) ? " border=\"{$this->output_options['border']}\"" : '';
158
 
159
+ $output .= "\n<table{$id}{$summary}{$class}{$cellspacing}{$cellpadding}{$border}>\n";
160
  $output .= $caption . $colgroup . $thead . $tfoot . $tbody;
161
  $output .= "</table>\n";
162
 
257
  * Remove all cells that shall not be rendered, because they are hidden, from the data set
258
  */
259
  function get_render_data() {
260
+ $table = $orig_table = $this->table;
261
+
262
  // if row_offset or row_count were given, we cut that part from the table and show just that
263
  // ATTENTION: MIGHT BE DROPPED IN FUTURE VERSIONS!
264
  if ( null === $this->output_options['row_count'] )
286
  }
287
  $table['data'][$row_idx] = array_merge( $row );
288
  }
289
+
290
+ $table = apply_filters( 'wp_table_reloaded_render_table', $table, $orig_table, $this->output_options );
291
+
292
  return $table;
293
  }
294
 
controllers/controller-admin.php CHANGED
@@ -253,6 +253,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
253
  */
254
  function show_manage_page() {
255
  $this->available_plugin_languages = array(
 
256
  'cs_CZ' => __( 'Czech', WP_TABLE_RELOADED_TEXTDOMAIN ),
257
  'de_DE' => __( 'German', WP_TABLE_RELOADED_TEXTDOMAIN ),
258
  'en_US' => __( 'English', WP_TABLE_RELOADED_TEXTDOMAIN ),
@@ -262,16 +263,15 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
262
  'hi_IN' => __( 'Hindi', WP_TABLE_RELOADED_TEXTDOMAIN ),
263
  'it_IT' => __( 'Italian', WP_TABLE_RELOADED_TEXTDOMAIN ),
264
  'ja' => __( 'Japanese', WP_TABLE_RELOADED_TEXTDOMAIN ),
 
265
  'pt_BR' => __( 'Brazilian Portuguese', WP_TABLE_RELOADED_TEXTDOMAIN ),
266
  'ru_RU' => __( 'Russian', WP_TABLE_RELOADED_TEXTDOMAIN ),
267
  'sk_SK' => __( 'Slovak', WP_TABLE_RELOADED_TEXTDOMAIN ),
268
  'sv_SE' => __( 'Swedish', WP_TABLE_RELOADED_TEXTDOMAIN ),
269
  'ua_UA' => __( 'Ukrainian', WP_TABLE_RELOADED_TEXTDOMAIN ),
270
  'zh_CN' => __( 'Chinese (Simplified)', WP_TABLE_RELOADED_TEXTDOMAIN ),
271
- /* // the following are inactive because they are not up-to-date
272
- 'sq_AL' => __( 'Albanian', WP_TABLE_RELOADED_TEXTDOMAIN ),
273
- 'by_BY' => __( 'Belorussian', WP_TABLE_RELOADED_TEXTDOMAIN ),
274
- 'pl_PL' => __( 'Polish', WP_TABLE_RELOADED_TEXTDOMAIN ),
275
  'tr_TR' => __( 'Turkish', WP_TABLE_RELOADED_TEXTDOMAIN ),
276
  */
277
  );
@@ -300,7 +300,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
300
  $messages = array(
301
  0 => false,
302
  1 => sprintf( __( 'Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href="%s">FAQ</a>, the <a href="%s">documentation</a>, and the <a href="%s">support</a> section.', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->options['installed_version'], 'http://tobias.baethge.com/go/wp-table-reloaded/faq/', 'http://tobias.baethge.com/go/wp-table-reloaded/documentation/', 'http://tobias.baethge.com/go/wp-table-reloaded/support/' ),
303
- 2 => sprintf( __( 'Thank you for upgrading to WP-Table Reloaded %s.', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->options['installed_version'] ) . ' ' . __( 'This version includes several enhancements, like an updated DataTables library, a &quot;Table&quot; button in the toolbar of the visual editor, and several other things.', WP_TABLE_RELOADED_TEXTDOMAIN ) . ' ' . sprintf( __( 'Please read the <a href="%s">release announcement</a> for more information.', WP_TABLE_RELOADED_TEXTDOMAIN ), "http://tobias.baethge.com/go/wp-table-reloaded/release-announcement/{$this->options['installed_version']}/" ) . '<br/>' . sprintf( __( 'If you like the new features and enhancements, I would appreciate a small <a href="%s">donation</a>. Thank you.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/donate/' )
304
  );
305
  $message = ( isset( $messages[ $this->options['show_welcome_message'] ] ) ) ? $messages[ $this->options['show_welcome_message'] ] : false;
306
  if ( $message ) {
@@ -464,12 +464,24 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
464
  foreach ( $table['data'] as $row_idx => $row )
465
  array_splice( $table['data'][$row_idx], $cols, 0, $table['visibility']['rows'][$row_idx] );
466
 
 
 
 
 
 
 
467
  $sortarray = $this->create_class_instance( 'arraysort', 'arraysort.class.php' );
468
- $sortarray->input_array = $table['data'];
469
  $sortarray->column = $column;
470
  $sortarray->order = $sort_order;
471
  $sortarray->sort();
472
- $table['data'] = $sortarray->sorted_array;
 
 
 
 
 
 
473
 
474
  // then restore row visibility from sorted data and remove temporary column
475
  foreach ( $table['data'] as $row_idx => $row ) {
@@ -862,7 +874,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
862
  $this->import_instance->filename = __( 'Imported Table', WP_TABLE_RELOADED_TEXTDOMAIN );
863
  $this->import_instance->mimetype = sprintf( __( 'from %s', WP_TABLE_RELOADED_TEXTDOMAIN ), $_POST['import_url'] );
864
  $this->import_instance->import_from = 'url';
865
- $url = clean_url( $_POST['import_url'] );
866
  $temp_data = wp_remote_fopen( $url );
867
  $this->import_instance->import_data = ( false !== $temp_data ) ? $temp_data : '';
868
  } else {
@@ -939,7 +951,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
939
  $table_id = $table['id'];
940
  $this->load_view( 'edit', compact( 'table_id' ) );
941
  } elseif ( isset( $_POST['import_wp_table_reloaded_dump_file'] ) ) {
942
- check_admin_referer( $this->get_nonce( 'import_dump' ) );
943
 
944
  // check if user is admin
945
  if ( !current_user_can( 'manage_options' ) ) {
@@ -1034,7 +1046,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1034
  */
1035
  function do_action_export_all() {
1036
  if ( isset( $_POST['export_all'] ) ) {
1037
- check_admin_referer( $this->get_nonce( 'export_all' ) );
1038
 
1039
  $export = array();
1040
  $export['table_info'] = $this->tables;
@@ -1058,7 +1070,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1058
  */
1059
  function do_action_options() {
1060
  if ( isset( $_POST['submit'] ) && isset( $_POST['options'] ) ) {
1061
- check_admin_referer( $this->get_nonce( 'options' ) );
1062
 
1063
  // check if user can access Plugin Options
1064
  if ( !$this->user_has_access( 'plugin-options' ) ) {
@@ -1290,14 +1302,16 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1290
  'export' => __( 'Export a Table', WP_TABLE_RELOADED_TEXTDOMAIN )
1291
  );
1292
  $table_actions = apply_filters( 'wp_table_reloaded_backend_table_actions', $table_actions );
1293
- $last_table_action = array_pop( array_keys( $table_actions ) );
1294
-
 
1295
  $plugin_actions = array(
1296
  'options' => __( 'Plugin Options', WP_TABLE_RELOADED_TEXTDOMAIN ),
1297
  'about' => __( 'About the plugin', WP_TABLE_RELOADED_TEXTDOMAIN )
1298
  );
1299
  $plugin_actions = apply_filters( 'wp_table_reloaded_backend_plugin_actions', $plugin_actions );
1300
- $last_plugin_action = array_pop( array_keys( $plugin_actions ) );
 
1301
 
1302
  ?>
1303
  <ul class="subsubsub">
@@ -1459,7 +1473,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1459
  $action_url = add_query_arg( $url_params, admin_url( $this->page_url ) );
1460
  if ( $add_nonce )
1461
  $action_url = wp_nonce_url( $action_url, $this->get_nonce( $url_params['action'], $url_params['item'] ) );
1462
- $action_url = clean_url( $action_url );
1463
  return $action_url;
1464
  }
1465
 
@@ -1757,7 +1771,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
1757
  );
1758
  $ajax_url = add_query_arg( $params, admin_url( $this->page_url ) );
1759
  $ajax_url = wp_nonce_url( $ajax_url, $this->get_nonce( $params['action'], false ) );
1760
- $ajax_url = clean_url( $ajax_url );
1761
  $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '.dev' : '';
1762
  $jsfile = "admin/admin-editor-buttons-script{$suffix}.js";
1763
 
253
  */
254
  function show_manage_page() {
255
  $this->available_plugin_languages = array(
256
+ 'be_BY' => __( 'Belarusian', WP_TABLE_RELOADED_TEXTDOMAIN ),
257
  'cs_CZ' => __( 'Czech', WP_TABLE_RELOADED_TEXTDOMAIN ),
258
  'de_DE' => __( 'German', WP_TABLE_RELOADED_TEXTDOMAIN ),
259
  'en_US' => __( 'English', WP_TABLE_RELOADED_TEXTDOMAIN ),
263
  'hi_IN' => __( 'Hindi', WP_TABLE_RELOADED_TEXTDOMAIN ),
264
  'it_IT' => __( 'Italian', WP_TABLE_RELOADED_TEXTDOMAIN ),
265
  'ja' => __( 'Japanese', WP_TABLE_RELOADED_TEXTDOMAIN ),
266
+ 'pl_PL' => __( 'Polish', WP_TABLE_RELOADED_TEXTDOMAIN ),
267
  'pt_BR' => __( 'Brazilian Portuguese', WP_TABLE_RELOADED_TEXTDOMAIN ),
268
  'ru_RU' => __( 'Russian', WP_TABLE_RELOADED_TEXTDOMAIN ),
269
  'sk_SK' => __( 'Slovak', WP_TABLE_RELOADED_TEXTDOMAIN ),
270
  'sv_SE' => __( 'Swedish', WP_TABLE_RELOADED_TEXTDOMAIN ),
271
  'ua_UA' => __( 'Ukrainian', WP_TABLE_RELOADED_TEXTDOMAIN ),
272
  'zh_CN' => __( 'Chinese (Simplified)', WP_TABLE_RELOADED_TEXTDOMAIN ),
273
+ // the following are inactive because they are not up-to-date
274
+ /* 'sq_AL' => __( 'Albanian', WP_TABLE_RELOADED_TEXTDOMAIN ),
 
 
275
  'tr_TR' => __( 'Turkish', WP_TABLE_RELOADED_TEXTDOMAIN ),
276
  */
277
  );
300
  $messages = array(
301
  0 => false,
302
  1 => sprintf( __( 'Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href="%s">FAQ</a>, the <a href="%s">documentation</a>, and the <a href="%s">support</a> section.', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->options['installed_version'], 'http://tobias.baethge.com/go/wp-table-reloaded/faq/', 'http://tobias.baethge.com/go/wp-table-reloaded/documentation/', 'http://tobias.baethge.com/go/wp-table-reloaded/support/' ),
303
+ 2 => sprintf( __( 'Thank you for upgrading to WP-Table Reloaded %s.', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->options['installed_version'] ) . ' ' . __( 'This version includes several enhancements, like an updated DataTables library, several enhancements to certain features and a few small bug fixes.', WP_TABLE_RELOADED_TEXTDOMAIN ) . ' ' . sprintf( __( 'Please read the <a href="%s">release announcement</a> for more information.', WP_TABLE_RELOADED_TEXTDOMAIN ), "http://tobias.baethge.com/go/wp-table-reloaded/release-announcement/{$this->options['installed_version']}/" ) . '<br/>' . sprintf( __( 'If you like the new features and enhancements, I would appreciate a small <a href="%s">donation</a>. Thank you.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/donate/' )
304
  );
305
  $message = ( isset( $messages[ $this->options['show_welcome_message'] ] ) ) ? $messages[ $this->options['show_welcome_message'] ] : false;
306
  if ( $message ) {
464
  foreach ( $table['data'] as $row_idx => $row )
465
  array_splice( $table['data'][$row_idx], $cols, 0, $table['visibility']['rows'][$row_idx] );
466
 
467
+ $array_to_sort = $table['data'];
468
+ if ( isset( $table['options']['first_row_th'] ) && $table['options']['first_row_th'] )
469
+ $first_row = array_shift( $array_to_sort );
470
+ if ( isset( $table['options']['table_footer'] ) && $table['options']['table_footer'] )
471
+ $last_row = array_pop( $array_to_sort );
472
+
473
  $sortarray = $this->create_class_instance( 'arraysort', 'arraysort.class.php' );
474
+ $sortarray->input_array = $array_to_sort;
475
  $sortarray->column = $column;
476
  $sortarray->order = $sort_order;
477
  $sortarray->sort();
478
+ $sorted_array = $sortarray->sorted_array;
479
+
480
+ if ( isset( $table['options']['first_row_th'] ) && $table['options']['first_row_th'] )
481
+ array_unshift( $sorted_array, $first_row );
482
+ if ( isset( $table['options']['table_footer'] ) && $table['options']['table_footer'] )
483
+ array_push( $sorted_array, $last_row );
484
+ $table['data'] = $sorted_array;
485
 
486
  // then restore row visibility from sorted data and remove temporary column
487
  foreach ( $table['data'] as $row_idx => $row ) {
874
  $this->import_instance->filename = __( 'Imported Table', WP_TABLE_RELOADED_TEXTDOMAIN );
875
  $this->import_instance->mimetype = sprintf( __( 'from %s', WP_TABLE_RELOADED_TEXTDOMAIN ), $_POST['import_url'] );
876
  $this->import_instance->import_from = 'url';
877
+ $url = esc_url( $_POST['import_url'] );
878
  $temp_data = wp_remote_fopen( $url );
879
  $this->import_instance->import_data = ( false !== $temp_data ) ? $temp_data : '';
880
  } else {
951
  $table_id = $table['id'];
952
  $this->load_view( 'edit', compact( 'table_id' ) );
953
  } elseif ( isset( $_POST['import_wp_table_reloaded_dump_file'] ) ) {
954
+ check_admin_referer( $this->get_nonce( 'import_dump' ), $this->get_nonce( 'import_dump' ) );
955
 
956
  // check if user is admin
957
  if ( !current_user_can( 'manage_options' ) ) {
1046
  */
1047
  function do_action_export_all() {
1048
  if ( isset( $_POST['export_all'] ) ) {
1049
+ check_admin_referer( $this->get_nonce( 'export_all' ), $this->get_nonce( 'export_all' ) );
1050
 
1051
  $export = array();
1052
  $export['table_info'] = $this->tables;
1070
  */
1071
  function do_action_options() {
1072
  if ( isset( $_POST['submit'] ) && isset( $_POST['options'] ) ) {
1073
+ check_admin_referer( $this->get_nonce( 'options' ), $this->get_nonce( 'options' ) );
1074
 
1075
  // check if user can access Plugin Options
1076
  if ( !$this->user_has_access( 'plugin-options' ) ) {
1302
  'export' => __( 'Export a Table', WP_TABLE_RELOADED_TEXTDOMAIN )
1303
  );
1304
  $table_actions = apply_filters( 'wp_table_reloaded_backend_table_actions', $table_actions );
1305
+ $_table_actions = array_keys( $table_actions );
1306
+ $last_table_action = array_pop( $_table_actions );
1307
+
1308
  $plugin_actions = array(
1309
  'options' => __( 'Plugin Options', WP_TABLE_RELOADED_TEXTDOMAIN ),
1310
  'about' => __( 'About the plugin', WP_TABLE_RELOADED_TEXTDOMAIN )
1311
  );
1312
  $plugin_actions = apply_filters( 'wp_table_reloaded_backend_plugin_actions', $plugin_actions );
1313
+ $_plugin_actions = array_keys( $plugin_actions );
1314
+ $last_plugin_action = array_pop( $_plugin_actions );
1315
 
1316
  ?>
1317
  <ul class="subsubsub">
1473
  $action_url = add_query_arg( $url_params, admin_url( $this->page_url ) );
1474
  if ( $add_nonce )
1475
  $action_url = wp_nonce_url( $action_url, $this->get_nonce( $url_params['action'], $url_params['item'] ) );
1476
+ $action_url = esc_url( $action_url );
1477
  return $action_url;
1478
  }
1479
 
1771
  );
1772
  $ajax_url = add_query_arg( $params, admin_url( $this->page_url ) );
1773
  $ajax_url = wp_nonce_url( $ajax_url, $this->get_nonce( $params['action'], false ) );
1774
+ $ajax_url = esc_url( $ajax_url );
1775
  $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '.dev' : '';
1776
  $jsfile = "admin/admin-editor-buttons-script{$suffix}.js";
1777
 
controllers/controller-base.php CHANGED
@@ -194,4 +194,15 @@ class WP_Table_Reloaded_Controller_Base {
194
 
195
  } // class WP_Table_Reloaded_Controller_Base
196
 
 
 
 
 
 
 
 
 
 
 
 
197
  ?>
194
 
195
  } // class WP_Table_Reloaded_Controller_Base
196
 
197
+ /**
198
+ * Provide backwards compatibility for deprecated functions
199
+ */
200
+
201
+ // esc_url replaced clean_url in WP 3.0
202
+ if ( !function_exists( 'esc_url' ) ) {
203
+ function esc_url( $url ) {
204
+ return clean_url( $url );
205
+ }
206
+ }
207
+
208
  ?>
controllers/controller-frontend.php CHANGED
@@ -310,7 +310,7 @@ class WP_Table_Reloaded_Controller_Frontend extends WP_Table_Reloaded_Controller
310
  'table_id' => $table['id']
311
  );
312
  $edit_url = add_query_arg( $url_params, admin_url( $admin_menu_page ) );
313
- $edit_url = clean_url( $edit_url );
314
  }
315
  }
316
  $output_options['edit_table_url'] = $edit_url;
@@ -425,7 +425,7 @@ class WP_Table_Reloaded_Controller_Frontend extends WP_Table_Reloaded_Controller
425
  foreach ( $query_result as $search_term => $tables ) {
426
  foreach ( $tables as $table_id ) {
427
  $old_or = "OR ({$wpdb->posts}.post_content LIKE '{$n}{$search_term}{$n}')";
428
- $shortcode = "[table id={$table_id}"; // only the beginning, as there might be more Shortcode atts coming, does not find [table id="<ID>" though, might need another loop?
429
  $new_or = $old_or. " OR ({$wpdb->posts}.post_content LIKE '%{$shortcode}%')";
430
  $where = str_replace( $old_or, $new_or, $where );
431
  }
@@ -449,6 +449,22 @@ class WP_Table_Reloaded_Controller_Frontend extends WP_Table_Reloaded_Controller
449
  if ( !empty( $url_css_plugin ) )
450
  $default_css['plugin.css'] = "@import url(\"{$url_css_plugin}\");";
451
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
452
  if ( $this->options['enable_tablesorter'] ) {
453
  switch ( $this->options['tablesorter_script'] ) {
454
  case 'datatables-tabletools':
@@ -540,7 +556,7 @@ CSSSTYLE;
540
  wp_register_script( 'wp-table-reloaded-zeroclipboard-js', $js_zeroclipboard_url, array(), $this->options['installed_version'] );
541
  wp_print_scripts( 'wp-table-reloaded-zeroclipboard-js' );
542
 
543
- $js_tabletools_url = plugins_url( 'js/tabletools/tabletools.js', WP_TABLE_RELOADED__FILE__ );
544
  $js_tabletools_url = apply_filters( 'wp_table_reloaded_url_js_tabletools', $js_tabletools_url );
545
  wp_register_script( 'wp-table-reloaded-tabletools-js', $js_tabletools_url, array(), $this->options['installed_version'] );
546
  $swf_zeroclipboard_url = plugins_url( 'js/tabletools/zeroclipboard.swf', WP_TABLE_RELOADED__FILE__ );
310
  'table_id' => $table['id']
311
  );
312
  $edit_url = add_query_arg( $url_params, admin_url( $admin_menu_page ) );
313
+ $edit_url = esc_url( $edit_url );
314
  }
315
  }
316
  $output_options['edit_table_url'] = $edit_url;
425
  foreach ( $query_result as $search_term => $tables ) {
426
  foreach ( $tables as $table_id ) {
427
  $old_or = "OR ({$wpdb->posts}.post_content LIKE '{$n}{$search_term}{$n}')";
428
+ $shortcode = "[table id={$table_id} "; // only the beginning, as there might be more Shortcode atts coming, does not find [table id="<ID>" though, might need another loop? The space at the end is necessary to make sure that no table IDs with the same beginning are found.
429
  $new_or = $old_or. " OR ({$wpdb->posts}.post_content LIKE '%{$shortcode}%')";
430
  $where = str_replace( $old_or, $new_or, $where );
431
  }
449
  if ( !empty( $url_css_plugin ) )
450
  $default_css['plugin.css'] = "@import url(\"{$url_css_plugin}\");";
451
 
452
+ // is_rtl was introduced in WP 3.0, for other versions we need to provide it here
453
+ if ( !function_exists( 'is_rtl' ) ) {
454
+ function is_rtl() {
455
+ global $wp_locale;
456
+ $is_rtl = isset( $wp_locale ) && isset( $wp_locale->text_direction ) && ( 'rtl' == $wp_locale->text_direction );
457
+ return $is_rtl;
458
+ }
459
+ }
460
+ // RTL languages support
461
+ if ( is_rtl() ) {
462
+ $url_css_rtl_plugin = $plugin_path . 'css/plugin.rtl.css' . '?ver=' . $this->options['installed_version'];
463
+ $url_css_rtl_plugin = apply_filters( 'wp_table_reloaded_url_css_rtl_plugin', $url_css_rtl_plugin );
464
+ if ( !empty( $url_css_rtl_plugin ) )
465
+ $default_css['plugin.rtl.css'] = "@import url(\"{$url_css_rtl_plugin}\");";
466
+ }
467
+
468
  if ( $this->options['enable_tablesorter'] ) {
469
  switch ( $this->options['tablesorter_script'] ) {
470
  case 'datatables-tabletools':
556
  wp_register_script( 'wp-table-reloaded-zeroclipboard-js', $js_zeroclipboard_url, array(), $this->options['installed_version'] );
557
  wp_print_scripts( 'wp-table-reloaded-zeroclipboard-js' );
558
 
559
+ $js_tabletools_url = plugins_url( 'js/tabletools/tabletools.min.js', WP_TABLE_RELOADED__FILE__ );
560
  $js_tabletools_url = apply_filters( 'wp_table_reloaded_url_js_tabletools', $js_tabletools_url );
561
  wp_register_script( 'wp-table-reloaded-tabletools-js', $js_tabletools_url, array(), $this->options['installed_version'] );
562
  $swf_zeroclipboard_url = plugins_url( 'js/tabletools/zeroclipboard.swf', WP_TABLE_RELOADED__FILE__ );
css/plugin.css CHANGED
@@ -17,6 +17,7 @@
17
  background-color: #E6EEEE;
18
  border: 1px solid #FFFFFF;
19
  padding: 4px;
 
20
  }
21
  .wp-table-reloaded td {
22
  color: #3D3D3D;
@@ -31,7 +32,7 @@
31
  background-color: #F0F0F6;
32
  }
33
  .wp-table-reloaded .row-hover tr:hover td {
34
- background-color: #D0D0D6;
35
  }
36
  .wp-table-reloaded-table-description {
37
  clear: both;
17
  background-color: #E6EEEE;
18
  border: 1px solid #FFFFFF;
19
  padding: 4px;
20
+ color: #3D3D3D!important;
21
  }
22
  .wp-table-reloaded td {
23
  color: #3D3D3D;
32
  background-color: #F0F0F6;
33
  }
34
  .wp-table-reloaded .row-hover tr:hover td {
35
+ background-color: #D0D0D6!important;
36
  }
37
  .wp-table-reloaded-table-description {
38
  clear: both;
css/plugin.rtl.css ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ /*************************************************
2
+ * This CSS file belongs to WP-Table Reloaded! *
3
+ * DO NOT make any changes here, add them to the *
4
+ * "Custom CSS" textarea in the "Plugin Options"! *
5
+ *************************************************/
6
+
7
+ .wp-table-reloaded {
8
+ direction: rtl;
9
+ text-align: right;
10
+ }
js/jquery.datatables.min.js CHANGED
@@ -1,6 +1,6 @@
1
  /*
2
  * File: jquery.dataTables.min.js
3
- * Version: 1.6.2
4
  * Author: Allan Jardine (www.sprymedia.co.uk)
5
  * Info: www.datatables.net
6
  *
@@ -13,575 +13,124 @@
13
  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14
  * or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details.
15
  */
16
- (function($){$.fn.dataTableSettings=[];var _aoSettings=$.fn.dataTableSettings;$.fn.dataTableExt={};
17
- var _oExt=$.fn.dataTableExt;_oExt.sVersion="1.6.2";_oExt.iApiIndex=0;_oExt.oApi={};
18
- _oExt.afnFiltering=[];_oExt.aoFeatures=[];_oExt.ofnSearch={};_oExt.afnSortData=[];
19
- _oExt.oStdClasses={sPagePrevEnabled:"paginate_enabled_previous",sPagePrevDisabled:"paginate_disabled_previous",sPageNextEnabled:"paginate_enabled_next",sPageNextDisabled:"paginate_disabled_next",sPageJUINext:"",sPageJUIPrev:"",sPageButton:"paginate_button",sPageButtonActive:"paginate_active",sPageButtonStaticDisabled:"paginate_button",sPageFirst:"first",sPagePrevious:"previous",sPageNext:"next",sPageLast:"last",sStripOdd:"odd",sStripEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter",sInfo:"dataTables_info",sPaging:"dataTables_paginate paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"sorting_asc",sSortDesc:"sorting_desc",sSortable:"sorting",sSortableAsc:"sorting_asc_disabled",sSortableDesc:"sorting_desc_disabled",sSortableNone:"sorting_disabled",sSortColumn:"sorting_",sSortJUIAsc:"",sSortJUIDesc:"",sSortJUI:"",sSortJUIAscAllowed:"",sSortJUIDescAllowed:""};
20
- _oExt.oJUIClasses={sPagePrevEnabled:"fg-button ui-state-default ui-corner-left",sPagePrevDisabled:"fg-button ui-state-default ui-corner-left ui-state-disabled",sPageNextEnabled:"fg-button ui-state-default ui-corner-right",sPageNextDisabled:"fg-button ui-state-default ui-corner-right ui-state-disabled",sPageJUINext:"ui-icon ui-icon-circle-arrow-e",sPageJUIPrev:"ui-icon ui-icon-circle-arrow-w",sPageButton:"fg-button ui-state-default",sPageButtonActive:"fg-button ui-state-default ui-state-disabled",sPageButtonStaticDisabled:"fg-button ui-state-default ui-state-disabled",sPageFirst:"first ui-corner-tl ui-corner-bl",sPagePrevious:"previous",sPageNext:"next",sPageLast:"last ui-corner-tr ui-corner-br",sStripOdd:"odd",sStripEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter",sInfo:"dataTables_info",sPaging:"dataTables_paginate fg-buttonset fg-buttonset-multi paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"ui-state-default",sSortDesc:"ui-state-default",sSortable:"ui-state-default",sSortableAsc:"ui-state-default",sSortableDesc:"ui-state-default",sSortableNone:"ui-state-default",sSortColumn:"sorting_",sSortJUIAsc:"css_right ui-icon ui-icon-triangle-1-n",sSortJUIDesc:"css_right ui-icon ui-icon-triangle-1-s",sSortJUI:"css_right ui-icon ui-icon-carat-2-n-s",sSortJUIAscAllowed:"css_right ui-icon ui-icon-carat-1-n",sSortJUIDescAllowed:"css_right ui-icon ui-icon-carat-1-s"};
21
- _oExt.oPagination={two_button:{fnInit:function(oSettings,nPaging,fnCallbackDraw){var nPrevious,nNext,nPreviousInner,nNextInner;
22
- if(!oSettings.bJUI){nPrevious=document.createElement("div");nNext=document.createElement("div")
23
- }else{nPrevious=document.createElement("a");nNext=document.createElement("a");nNextInner=document.createElement("span");
24
- nNextInner.className=oSettings.oClasses.sPageJUINext;nNext.appendChild(nNextInner);
25
- nPreviousInner=document.createElement("span");nPreviousInner.className=oSettings.oClasses.sPageJUIPrev;
26
- nPrevious.appendChild(nPreviousInner)}nPrevious.className=oSettings.oClasses.sPagePrevDisabled;
27
- nNext.className=oSettings.oClasses.sPageNextDisabled;nPrevious.title=oSettings.oLanguage.oPaginate.sPrevious;
28
- nNext.title=oSettings.oLanguage.oPaginate.sNext;nPaging.appendChild(nPrevious);nPaging.appendChild(nNext);
29
- $(nPrevious).click(function(){if(oSettings.oApi._fnPageChange(oSettings,"previous")){fnCallbackDraw(oSettings)
30
- }});$(nNext).click(function(){if(oSettings.oApi._fnPageChange(oSettings,"next")){fnCallbackDraw(oSettings)
31
- }});$(nPrevious).bind("selectstart",function(){return false});$(nNext).bind("selectstart",function(){return false
32
- });if(oSettings.sTableId!==""&&typeof oSettings.aanFeatures.p=="undefined"){nPaging.setAttribute("id",oSettings.sTableId+"_paginate");
33
- nPrevious.setAttribute("id",oSettings.sTableId+"_previous");nNext.setAttribute("id",oSettings.sTableId+"_next")
34
- }},fnUpdate:function(oSettings,fnCallbackDraw){if(!oSettings.aanFeatures.p){return
35
- }var an=oSettings.aanFeatures.p;for(var i=0,iLen=an.length;i<iLen;i++){if(an[i].childNodes.length!==0){an[i].childNodes[0].className=(oSettings._iDisplayStart===0)?oSettings.oClasses.sPagePrevDisabled:oSettings.oClasses.sPagePrevEnabled;
36
- an[i].childNodes[1].className=(oSettings.fnDisplayEnd()==oSettings.fnRecordsDisplay())?oSettings.oClasses.sPageNextDisabled:oSettings.oClasses.sPageNextEnabled
37
- }}}},iFullNumbersShowPages:5,full_numbers:{fnInit:function(oSettings,nPaging,fnCallbackDraw){var nFirst=document.createElement("span");
38
- var nPrevious=document.createElement("span");var nList=document.createElement("span");
39
- var nNext=document.createElement("span");var nLast=document.createElement("span");
40
- nFirst.innerHTML=oSettings.oLanguage.oPaginate.sFirst;nPrevious.innerHTML=oSettings.oLanguage.oPaginate.sPrevious;
41
- nNext.innerHTML=oSettings.oLanguage.oPaginate.sNext;nLast.innerHTML=oSettings.oLanguage.oPaginate.sLast;
42
- var oClasses=oSettings.oClasses;nFirst.className=oClasses.sPageButton+" "+oClasses.sPageFirst;
43
- nPrevious.className=oClasses.sPageButton+" "+oClasses.sPagePrevious;nNext.className=oClasses.sPageButton+" "+oClasses.sPageNext;
44
- nLast.className=oClasses.sPageButton+" "+oClasses.sPageLast;nPaging.appendChild(nFirst);
45
- nPaging.appendChild(nPrevious);nPaging.appendChild(nList);nPaging.appendChild(nNext);
46
- nPaging.appendChild(nLast);$(nFirst).click(function(){if(oSettings.oApi._fnPageChange(oSettings,"first")){fnCallbackDraw(oSettings)
47
- }});$(nPrevious).click(function(){if(oSettings.oApi._fnPageChange(oSettings,"previous")){fnCallbackDraw(oSettings)
48
- }});$(nNext).click(function(){if(oSettings.oApi._fnPageChange(oSettings,"next")){fnCallbackDraw(oSettings)
49
- }});$(nLast).click(function(){if(oSettings.oApi._fnPageChange(oSettings,"last")){fnCallbackDraw(oSettings)
50
- }});$("span",nPaging).bind("mousedown",function(){return false}).bind("selectstart",function(){return false
51
- });if(oSettings.sTableId!==""&&typeof oSettings.aanFeatures.p=="undefined"){nPaging.setAttribute("id",oSettings.sTableId+"_paginate");
52
- nFirst.setAttribute("id",oSettings.sTableId+"_first");nPrevious.setAttribute("id",oSettings.sTableId+"_previous");
53
- nNext.setAttribute("id",oSettings.sTableId+"_next");nLast.setAttribute("id",oSettings.sTableId+"_last")
54
- }},fnUpdate:function(oSettings,fnCallbackDraw){if(!oSettings.aanFeatures.p){return
55
- }var iPageCount=_oExt.oPagination.iFullNumbersShowPages;var iPageCountHalf=Math.floor(iPageCount/2);
56
- var iPages=Math.ceil((oSettings.fnRecordsDisplay())/oSettings._iDisplayLength);var iCurrentPage=Math.ceil(oSettings._iDisplayStart/oSettings._iDisplayLength)+1;
57
- var sList="";var iStartButton,iEndButton,i,iLen;var oClasses=oSettings.oClasses;if(iPages<iPageCount){iStartButton=1;
58
- iEndButton=iPages}else{if(iCurrentPage<=iPageCountHalf){iStartButton=1;iEndButton=iPageCount
59
- }else{if(iCurrentPage>=(iPages-iPageCountHalf)){iStartButton=iPages-iPageCount+1;
60
- iEndButton=iPages}else{iStartButton=iCurrentPage-Math.ceil(iPageCount/2)+1;iEndButton=iStartButton+iPageCount-1
61
- }}}for(i=iStartButton;i<=iEndButton;i++){if(iCurrentPage!=i){sList+='<span class="'+oClasses.sPageButton+'">'+i+"</span>"
62
- }else{sList+='<span class="'+oClasses.sPageButtonActive+'">'+i+"</span>"}}var an=oSettings.aanFeatures.p;
63
- var anButtons,anStatic,nPaginateList;var fnClick=function(){var iTarget=(this.innerHTML*1)-1;
64
- oSettings._iDisplayStart=iTarget*oSettings._iDisplayLength;fnCallbackDraw(oSettings);
65
- return false};var fnFalse=function(){return false};for(i=0,iLen=an.length;i<iLen;
66
- i++){if(an[i].childNodes.length===0){continue}nPaginateList=an[i].childNodes[2];nPaginateList.innerHTML=sList;
67
- $("span",nPaginateList).click(fnClick).bind("mousedown",fnFalse).bind("selectstart",fnFalse);
68
- anButtons=an[i].getElementsByTagName("span");anStatic=[anButtons[0],anButtons[1],anButtons[anButtons.length-2],anButtons[anButtons.length-1]];
69
- $(anStatic).removeClass(oClasses.sPageButton+" "+oClasses.sPageButtonActive+" "+oClasses.sPageButtonStaticDisabled);
70
- if(iCurrentPage==1){anStatic[0].className+=" "+oClasses.sPageButtonStaticDisabled;
71
- anStatic[1].className+=" "+oClasses.sPageButtonStaticDisabled}else{anStatic[0].className+=" "+oClasses.sPageButton;
72
- anStatic[1].className+=" "+oClasses.sPageButton}if(iPages===0||iCurrentPage==iPages||oSettings._iDisplayLength==-1){anStatic[2].className+=" "+oClasses.sPageButtonStaticDisabled;
73
- anStatic[3].className+=" "+oClasses.sPageButtonStaticDisabled}else{anStatic[2].className+=" "+oClasses.sPageButton;
74
- anStatic[3].className+=" "+oClasses.sPageButton}}}}};_oExt.oSort={"string-asc":function(a,b){var x=a.toLowerCase();
75
- var y=b.toLowerCase();return((x<y)?-1:((x>y)?1:0))},"string-desc":function(a,b){var x=a.toLowerCase();
76
- var y=b.toLowerCase();return((x<y)?1:((x>y)?-1:0))},"html-asc":function(a,b){var x=a.replace(/<.*?>/g,"").toLowerCase();
77
- var y=b.replace(/<.*?>/g,"").toLowerCase();return((x<y)?-1:((x>y)?1:0))},"html-desc":function(a,b){var x=a.replace(/<.*?>/g,"").toLowerCase();
78
- var y=b.replace(/<.*?>/g,"").toLowerCase();return((x<y)?1:((x>y)?-1:0))},"date-asc":function(a,b){var x=Date.parse(a);
79
- var y=Date.parse(b);if(isNaN(x)){x=Date.parse("01/01/1970 00:00:00")}if(isNaN(y)){y=Date.parse("01/01/1970 00:00:00")
80
- }return x-y},"date-desc":function(a,b){var x=Date.parse(a);var y=Date.parse(b);if(isNaN(x)){x=Date.parse("01/01/1970 00:00:00")
81
- }if(isNaN(y)){y=Date.parse("01/01/1970 00:00:00")}return y-x},"numeric-asc":function(a,b){var x=a=="-"?0:a;
82
- var y=b=="-"?0:b;return x-y},"numeric-desc":function(a,b){var x=a=="-"?0:a;var y=b=="-"?0:b;
83
- return y-x}};_oExt.aTypes=[function(sData){if(typeof sData=="number"){return"numeric"
84
- }else{if(typeof sData.charAt!="function"){return null}}var sValidFirstChars="0123456789-";
85
- var sValidChars="0123456789.";var Char;var bDecimal=false;Char=sData.charAt(0);if(sValidFirstChars.indexOf(Char)==-1){return null
86
- }for(var i=1;i<sData.length;i++){Char=sData.charAt(i);if(sValidChars.indexOf(Char)==-1){return null
87
- }if(Char=="."){if(bDecimal){return null}bDecimal=true}}return"numeric"},function(sData){var iParse=Date.parse(sData);
88
- if(iParse!==null&&!isNaN(iParse)){return"date"}return null}];_oExt._oExternConfig={iNextUnique:0};
89
- $.fn.dataTable=function(oInit){function classSettings(){this.fnRecordsTotal=function(){if(this.oFeatures.bServerSide){return this._iRecordsTotal
90
- }else{return this.aiDisplayMaster.length}};this.fnRecordsDisplay=function(){if(this.oFeatures.bServerSide){return this._iRecordsDisplay
91
- }else{return this.aiDisplay.length}};this.fnDisplayEnd=function(){if(this.oFeatures.bServerSide){return this._iDisplayStart+this.aiDisplay.length
92
- }else{return this._iDisplayEnd}};this.sInstance=null;this.oFeatures={bPaginate:true,bLengthChange:true,bFilter:true,bSort:true,bInfo:true,bAutoWidth:true,bProcessing:false,bSortClasses:true,bStateSave:false,bServerSide:false};
93
- this.aanFeatures=[];this.oLanguage={sProcessing:"Processing...",sLengthMenu:"Show _MENU_ entries",sZeroRecords:"No matching records found",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)",sInfoPostFix:"",sSearch:"Search:",sUrl:"",oPaginate:{sFirst:"First",sPrevious:"Previous",sNext:"Next",sLast:"Last"}};
94
- this.aoData=[];this.aiDisplay=[];this.aiDisplayMaster=[];this.aoColumns=[];this.iNextId=0;
95
- this.asDataSearch=[];this.oPreviousSearch={sSearch:"",bEscapeRegex:true};this.aoPreSearchCols=[];
96
- this.aaSorting=[[0,"asc",0]];this.aaSortingFixed=null;this.asStripClasses=[];this.fnRowCallback=null;
97
- this.fnHeaderCallback=null;this.fnFooterCallback=null;this.aoDrawCallback=[];this.fnInitComplete=null;
98
- this.sTableId="";this.nTable=null;this.iDefaultSortIndex=0;this.bInitialised=false;
99
- this.aoOpenRows=[];this.sDom="lfrtip";this.sPaginationType="two_button";this.iCookieDuration=60*60*2;
100
- this.sAjaxSource=null;this.bAjaxDataGet=true;this.fnServerData=$.getJSON;this.iServerDraw=0;
101
- this._iDisplayLength=10;this._iDisplayStart=0;this._iDisplayEnd=10;this._iRecordsTotal=0;
102
- this._iRecordsDisplay=0;this.bJUI=false;this.oClasses=_oExt.oStdClasses;this.bFiltered=false;
103
- this.bSorted=false}this.oApi={};this.fnDraw=function(bComplete){var oSettings=_fnSettingsFromNode(this[_oExt.iApiIndex]);
104
- if(typeof bComplete!="undefined"&&bComplete===false){_fnCalculateEnd(oSettings);_fnDraw(oSettings)
105
- }else{_fnReDraw(oSettings)}};this.fnFilter=function(sInput,iColumn,bEscapeRegex){var oSettings=_fnSettingsFromNode(this[_oExt.iApiIndex]);
106
- if(typeof bEscapeRegex=="undefined"){bEscapeRegex=true}if(typeof iColumn=="undefined"||iColumn===null){_fnFilterComplete(oSettings,{sSearch:sInput,bEscapeRegex:bEscapeRegex},1)
107
- }else{oSettings.aoPreSearchCols[iColumn].sSearch=sInput;oSettings.aoPreSearchCols[iColumn].bEscapeRegex=bEscapeRegex;
108
- _fnFilterComplete(oSettings,oSettings.oPreviousSearch,1)}};this.fnSettings=function(nNode){return _fnSettingsFromNode(this[_oExt.iApiIndex])
109
- };this.fnVersionCheck=function(sVersion){var fnZPad=function(Zpad,count){while(Zpad.length<count){Zpad+="0"
110
- }return Zpad};var aThis=_oExt.sVersion.split(".");var aThat=sVersion.split(".");var sThis="",sThat="";
111
- for(var i=0,iLen=aThat.length;i<iLen;i++){sThis+=fnZPad(aThis[i],3);sThat+=fnZPad(aThat[i],3)
112
- }return parseInt(sThis,10)>=parseInt(sThat,10)};this.fnSort=function(aaSort){var oSettings=_fnSettingsFromNode(this[_oExt.iApiIndex]);
113
- oSettings.aaSorting=aaSort;_fnSort(oSettings)};this.fnSortListener=function(nNode,iColumn,fnCallback){_fnSortAttachListener(_fnSettingsFromNode(this[_oExt.iApiIndex]),nNode,iColumn,fnCallback)
114
- };this.fnAddData=function(mData,bRedraw){if(mData.length===0){return[]}var aiReturn=[];
115
- var iTest;var oSettings=_fnSettingsFromNode(this[_oExt.iApiIndex]);if(typeof mData[0]=="object"){for(var i=0;
116
- i<mData.length;i++){iTest=_fnAddData(oSettings,mData[i]);if(iTest==-1){return aiReturn
117
- }aiReturn.push(iTest)}}else{iTest=_fnAddData(oSettings,mData);if(iTest==-1){return aiReturn
118
- }aiReturn.push(iTest)}oSettings.aiDisplay=oSettings.aiDisplayMaster.slice();_fnBuildSearchArray(oSettings,1);
119
- if(typeof bRedraw=="undefined"||bRedraw){_fnReDraw(oSettings)}return aiReturn};this.fnDeleteRow=function(mTarget,fnCallBack,bNullRow){var oSettings=_fnSettingsFromNode(this[_oExt.iApiIndex]);
120
- var i,iAODataIndex;iAODataIndex=(typeof mTarget=="object")?_fnNodeToDataIndex(oSettings,mTarget):mTarget;
121
- for(i=0;i<oSettings.aiDisplayMaster.length;i++){if(oSettings.aiDisplayMaster[i]==iAODataIndex){oSettings.aiDisplayMaster.splice(i,1);
122
- break}}for(i=0;i<oSettings.aiDisplay.length;i++){if(oSettings.aiDisplay[i]==iAODataIndex){oSettings.aiDisplay.splice(i,1);
123
- break}}_fnBuildSearchArray(oSettings,1);if(typeof fnCallBack=="function"){fnCallBack.call(this)
124
- }if(oSettings._iDisplayStart>=oSettings.aiDisplay.length){oSettings._iDisplayStart-=oSettings._iDisplayLength;
125
- if(oSettings._iDisplayStart<0){oSettings._iDisplayStart=0}}_fnCalculateEnd(oSettings);
126
- _fnDraw(oSettings);var aData=oSettings.aoData[iAODataIndex]._aData.slice();if(typeof bNullRow!="undefined"&&bNullRow===true){oSettings.aoData[iAODataIndex]=null
127
- }return aData};this.fnClearTable=function(bRedraw){var oSettings=_fnSettingsFromNode(this[_oExt.iApiIndex]);
128
- _fnClearTable(oSettings);if(typeof bRedraw=="undefined"||bRedraw){_fnDraw(oSettings)
129
- }};this.fnOpen=function(nTr,sHtml,sClass){var oSettings=_fnSettingsFromNode(this[_oExt.iApiIndex]);
130
- this.fnClose(nTr);var nNewRow=document.createElement("tr");var nNewCell=document.createElement("td");
131
- nNewRow.appendChild(nNewCell);nNewCell.className=sClass;nNewCell.colSpan=_fnVisbleColumns(oSettings);
132
- nNewCell.innerHTML=sHtml;var nTrs=$("tbody tr",oSettings.nTable);if($.inArray(nTr,nTrs)!=-1){$(nNewRow).insertAfter(nTr)
133
- }if(!oSettings.oFeatures.bServerSide){oSettings.aoOpenRows.push({nTr:nNewRow,nParent:nTr})
134
- }return nNewRow};this.fnClose=function(nTr){var oSettings=_fnSettingsFromNode(this[_oExt.iApiIndex]);
135
- for(var i=0;i<oSettings.aoOpenRows.length;i++){if(oSettings.aoOpenRows[i].nParent==nTr){var nTrParent=oSettings.aoOpenRows[i].nTr.parentNode;
136
- if(nTrParent){nTrParent.removeChild(oSettings.aoOpenRows[i].nTr)}oSettings.aoOpenRows.splice(i,1);
137
- return 0}}return 1};this.fnGetData=function(mRow){var oSettings=_fnSettingsFromNode(this[_oExt.iApiIndex]);
138
- if(typeof mRow!="undefined"){var iRow=(typeof mRow=="object")?_fnNodeToDataIndex(oSettings,mRow):mRow;
139
- return oSettings.aoData[iRow]._aData}return _fnGetDataMaster(oSettings)};this.fnGetNodes=function(iRow){var oSettings=_fnSettingsFromNode(this[_oExt.iApiIndex]);
140
- if(typeof iRow!="undefined"){return oSettings.aoData[iRow].nTr}return _fnGetTrNodes(oSettings)
141
- };this.fnGetPosition=function(nNode){var oSettings=_fnSettingsFromNode(this[_oExt.iApiIndex]);
142
- var i;if(nNode.nodeName=="TR"){return _fnNodeToDataIndex(oSettings,nNode)}else{if(nNode.nodeName=="TD"){var iDataIndex=_fnNodeToDataIndex(oSettings,nNode.parentNode);
143
- var iCorrector=0;for(var j=0;j<oSettings.aoColumns.length;j++){if(oSettings.aoColumns[j].bVisible){if(oSettings.aoData[iDataIndex].nTr.getElementsByTagName("td")[j-iCorrector]==nNode){return[iDataIndex,j-iCorrector,j]
144
- }}else{iCorrector++}}}}return null};this.fnUpdate=function(mData,mRow,iColumn,bRedraw){var oSettings=_fnSettingsFromNode(this[_oExt.iApiIndex]);
145
- var iVisibleColumn;var sDisplay;var iRow=(typeof mRow=="object")?_fnNodeToDataIndex(oSettings,mRow):mRow;
146
- if(typeof mData!="object"){sDisplay=mData;oSettings.aoData[iRow]._aData[iColumn]=sDisplay;
147
- if(oSettings.aoColumns[iColumn].fnRender!==null){sDisplay=oSettings.aoColumns[iColumn].fnRender({iDataRow:iRow,iDataColumn:iColumn,aData:oSettings.aoData[iRow]._aData,oSettings:oSettings});
148
- if(oSettings.aoColumns[iColumn].bUseRendered){oSettings.aoData[iRow]._aData[iColumn]=sDisplay
149
- }}iVisibleColumn=_fnColumnIndexToVisible(oSettings,iColumn);if(iVisibleColumn!==null){oSettings.aoData[iRow].nTr.getElementsByTagName("td")[iVisibleColumn].innerHTML=sDisplay
150
- }}else{if(mData.length!=oSettings.aoColumns.length){alert("DataTables warning: An array passed to fnUpdate must have the same number of columns as the table in question - in this case "+oSettings.aoColumns.length);
151
- return 1}for(var i=0;i<mData.length;i++){sDisplay=mData[i];oSettings.aoData[iRow]._aData[i]=sDisplay;
152
- if(oSettings.aoColumns[i].fnRender!==null){sDisplay=oSettings.aoColumns[i].fnRender({iDataRow:iRow,iDataColumn:i,aData:oSettings.aoData[iRow]._aData,oSettings:oSettings});
153
- if(oSettings.aoColumns[i].bUseRendered){oSettings.aoData[iRow]._aData[i]=sDisplay
154
- }}iVisibleColumn=_fnColumnIndexToVisible(oSettings,i);if(iVisibleColumn!==null){oSettings.aoData[iRow].nTr.getElementsByTagName("td")[iVisibleColumn].innerHTML=sDisplay
155
- }}}_fnBuildSearchArray(oSettings,1);if(typeof bRedraw!="undefined"&&bRedraw){_fnReDraw(oSettings)
156
- }return 0};this.fnSetColumnVis=function(iCol,bShow){var oSettings=_fnSettingsFromNode(this[_oExt.iApiIndex]);
157
- var i,iLen;var iColumns=oSettings.aoColumns.length;var nTd,anTds;if(oSettings.aoColumns[iCol].bVisible==bShow){return
158
- }var nTrHead=$("thead:eq(0)>tr",oSettings.nTable)[0];var nTrFoot=$("tfoot:eq(0)>tr",oSettings.nTable)[0];
159
- var anTheadTh=[];var anTfootTh=[];for(i=0;i<iColumns;i++){anTheadTh.push(oSettings.aoColumns[i].nTh);
160
- anTfootTh.push(oSettings.aoColumns[i].nTf)}if(bShow){var iInsert=0;for(i=0;i<iCol;
161
- i++){if(oSettings.aoColumns[i].bVisible){iInsert++}}if(iInsert>=_fnVisbleColumns(oSettings)){nTrHead.appendChild(anTheadTh[iCol]);
162
- if(nTrFoot){nTrFoot.appendChild(anTfootTh[iCol])}for(i=0,iLen=oSettings.aoData.length;
163
- i<iLen;i++){nTd=oSettings.aoData[i]._anHidden[iCol];oSettings.aoData[i].nTr.appendChild(nTd)
164
- }}else{var iBefore;for(i=iCol;i<iColumns;i++){iBefore=_fnColumnIndexToVisible(oSettings,i);
165
- if(iBefore!==null){break}}nTrHead.insertBefore(anTheadTh[iCol],nTrHead.getElementsByTagName("th")[iBefore]);
166
- if(nTrFoot){nTrFoot.insertBefore(anTfootTh[iCol],nTrFoot.getElementsByTagName("th")[iBefore])
167
- }anTds=_fnGetTdNodes(oSettings);for(i=0,iLen=oSettings.aoData.length;i<iLen;i++){nTd=oSettings.aoData[i]._anHidden[iCol];
168
- oSettings.aoData[i].nTr.insertBefore(nTd,$(">td:eq("+iBefore+")",oSettings.aoData[i].nTr)[0])
169
- }}oSettings.aoColumns[iCol].bVisible=true}else{nTrHead.removeChild(anTheadTh[iCol]);
170
- if(nTrFoot){nTrFoot.removeChild(anTfootTh[iCol])}anTds=_fnGetTdNodes(oSettings);for(i=0,iLen=oSettings.aoData.length;
171
- i<iLen;i++){nTd=anTds[(i*oSettings.aoColumns.length)+iCol];oSettings.aoData[i]._anHidden[iCol]=nTd;
172
- nTd.parentNode.removeChild(nTd)}oSettings.aoColumns[iCol].bVisible=false}for(i=0,iLen=oSettings.aoOpenRows.length;
173
- i<iLen;i++){oSettings.aoOpenRows[i].nTr.colSpan=_fnVisbleColumns(oSettings)}_fnSaveState(oSettings)
174
- };this.fnPageChange=function(sAction,bRedraw){var oSettings=_fnSettingsFromNode(this[_oExt.iApiIndex]);
175
- _fnPageChange(oSettings,sAction);_fnCalculateEnd(oSettings);if(typeof bRedraw=="undefined"||bRedraw){_fnDraw(oSettings)
176
- }};function _fnExternApiFunc(sFunc){return function(){var aArgs=[_fnSettingsFromNode(this[_oExt.iApiIndex])].concat(Array.prototype.slice.call(arguments));
177
- return _oExt.oApi[sFunc].apply(this,aArgs)}}for(var sFunc in _oExt.oApi){if(sFunc){this[sFunc]=_fnExternApiFunc(sFunc)
178
- }}function _fnInitalise(oSettings){if(oSettings.bInitialised===false){setTimeout(function(){_fnInitalise(oSettings)
179
- },200);return}_fnAddOptionsHtml(oSettings);_fnDrawHead(oSettings);if(oSettings.oFeatures.bSort){_fnSort(oSettings,false);
180
- _fnSortingClasses(oSettings)}else{oSettings.aiDisplay=oSettings.aiDisplayMaster.slice();
181
- _fnCalculateEnd(oSettings);_fnDraw(oSettings)}if(oSettings.sAjaxSource!==null&&!oSettings.oFeatures.bServerSide){_fnProcessingDisplay(oSettings,true);
182
- oSettings.fnServerData(oSettings.sAjaxSource,null,function(json){for(var i=0;i<json.aaData.length;
183
- i++){_fnAddData(oSettings,json.aaData[i])}oSettings.iInitDisplayStart=oSettings._iDisplayStart;
184
- if(oSettings.oFeatures.bSort){_fnSort(oSettings)}else{oSettings.aiDisplay=oSettings.aiDisplayMaster.slice();
185
- _fnCalculateEnd(oSettings);_fnDraw(oSettings)}_fnProcessingDisplay(oSettings,false);
186
- if(typeof oSettings.fnInitComplete=="function"){oSettings.fnInitComplete(oSettings,json)
187
- }});return}if(typeof oSettings.fnInitComplete=="function"){oSettings.fnInitComplete(oSettings)
188
- }if(!oSettings.oFeatures.bServerSide){_fnProcessingDisplay(oSettings,false)}}function _fnLanguageProcess(oSettings,oLanguage,bInit){_fnMap(oSettings.oLanguage,oLanguage,"sProcessing");
189
- _fnMap(oSettings.oLanguage,oLanguage,"sLengthMenu");_fnMap(oSettings.oLanguage,oLanguage,"sZeroRecords");
190
- _fnMap(oSettings.oLanguage,oLanguage,"sInfo");_fnMap(oSettings.oLanguage,oLanguage,"sInfoEmpty");
191
- _fnMap(oSettings.oLanguage,oLanguage,"sInfoFiltered");_fnMap(oSettings.oLanguage,oLanguage,"sInfoPostFix");
192
- _fnMap(oSettings.oLanguage,oLanguage,"sSearch");if(typeof oLanguage.oPaginate!="undefined"){_fnMap(oSettings.oLanguage.oPaginate,oLanguage.oPaginate,"sFirst");
193
- _fnMap(oSettings.oLanguage.oPaginate,oLanguage.oPaginate,"sPrevious");_fnMap(oSettings.oLanguage.oPaginate,oLanguage.oPaginate,"sNext");
194
- _fnMap(oSettings.oLanguage.oPaginate,oLanguage.oPaginate,"sLast")}if(bInit){_fnInitalise(oSettings)
195
- }}function _fnAddColumn(oSettings,oOptions,nTh){oSettings.aoColumns[oSettings.aoColumns.length++]={sType:null,_bAutoType:true,bVisible:true,bSearchable:true,bSortable:true,asSorting:["asc","desc"],sSortingClass:oSettings.oClasses.sSortable,sSortingClassJUI:oSettings.oClasses.sSortJUI,sTitle:nTh?nTh.innerHTML:"",sName:"",sWidth:null,sClass:null,fnRender:null,bUseRendered:true,iDataSort:oSettings.aoColumns.length-1,sSortDataType:"std",nTh:nTh?nTh:document.createElement("th"),nTf:null};
196
- var iLength=oSettings.aoColumns.length-1;var oCol=oSettings.aoColumns[iLength];if(typeof oOptions!="undefined"&&oOptions!==null){if(typeof oOptions.sType!="undefined"){oCol.sType=oOptions.sType;
197
- oCol._bAutoType=false}_fnMap(oCol,oOptions,"bVisible");_fnMap(oCol,oOptions,"bSearchable");
198
- _fnMap(oCol,oOptions,"bSortable");_fnMap(oCol,oOptions,"sTitle");_fnMap(oCol,oOptions,"sName");
199
- _fnMap(oCol,oOptions,"sWidth");_fnMap(oCol,oOptions,"sClass");_fnMap(oCol,oOptions,"fnRender");
200
- _fnMap(oCol,oOptions,"bUseRendered");_fnMap(oCol,oOptions,"iDataSort");_fnMap(oCol,oOptions,"asSorting");
201
- _fnMap(oCol,oOptions,"sSortDataType")}if(!oSettings.oFeatures.bSort){oCol.bSortable=false
202
- }if(!oCol.bSortable||($.inArray("asc",oCol.asSorting)==-1&&$.inArray("desc",oCol.asSorting)==-1)){oCol.sSortingClass=oSettings.oClasses.sSortableNone;
203
- oCol.sSortingClassJUI=""}else{if($.inArray("asc",oCol.asSorting)!=-1&&$.inArray("desc",oCol.asSorting)==-1){oCol.sSortingClass=oSettings.oClasses.sSortableAsc;
204
- oCol.sSortingClassJUI=oSettings.oClasses.sSortJUIAscAllowed}else{if($.inArray("asc",oCol.asSorting)==-1&&$.inArray("desc",oCol.asSorting)!=-1){oCol.sSortingClass=oSettings.oClasses.sSortableDesc;
205
- oCol.sSortingClassJUI=oSettings.oClasses.sSortJUIDescAllowed}}}if(typeof oSettings.aoPreSearchCols[iLength]=="undefined"||oSettings.aoPreSearchCols[iLength]===null){oSettings.aoPreSearchCols[iLength]={sSearch:"",bEscapeRegex:true}
206
- }else{if(typeof oSettings.aoPreSearchCols[iLength].bEscapeRegex=="undefined"){oSettings.aoPreSearchCols[iLength].bEscapeRegex=true
207
- }}}function _fnAddData(oSettings,aData){if(aData.length!=oSettings.aoColumns.length){alert("DataTables warning: Added data does not match known number of columns");
208
- return -1}var iThisIndex=oSettings.aoData.length;oSettings.aoData.push({nTr:document.createElement("tr"),_iId:oSettings.iNextId++,_aData:aData.slice(),_anHidden:[],_sRowStripe:""});
209
- var nTd,sThisType;for(var i=0;i<aData.length;i++){nTd=document.createElement("td");
210
- if(typeof oSettings.aoColumns[i].fnRender=="function"){var sRendered=oSettings.aoColumns[i].fnRender({iDataRow:iThisIndex,iDataColumn:i,aData:aData,oSettings:oSettings});
211
- nTd.innerHTML=sRendered;if(oSettings.aoColumns[i].bUseRendered){oSettings.aoData[iThisIndex]._aData[i]=sRendered
212
- }}else{nTd.innerHTML=aData[i]}if(oSettings.aoColumns[i].sClass!==null){nTd.className=oSettings.aoColumns[i].sClass
213
- }if(oSettings.aoColumns[i]._bAutoType&&oSettings.aoColumns[i].sType!="string"){sThisType=_fnDetectType(oSettings.aoData[iThisIndex]._aData[i]);
214
- if(oSettings.aoColumns[i].sType===null){oSettings.aoColumns[i].sType=sThisType}else{if(oSettings.aoColumns[i].sType!=sThisType){oSettings.aoColumns[i].sType="string"
215
- }}}if(oSettings.aoColumns[i].bVisible){oSettings.aoData[iThisIndex].nTr.appendChild(nTd)
216
- }else{oSettings.aoData[iThisIndex]._anHidden[i]=nTd}}oSettings.aiDisplayMaster.push(iThisIndex);
217
- return iThisIndex}function _fnGatherData(oSettings){var iLoop,i,iLen,j,jLen,jInner,nTds,nTrs,nTd,aLocalData,iThisIndex,iRow,iRows,iColumn,iColumns;
218
- if(oSettings.sAjaxSource===null){nTrs=oSettings.nTable.getElementsByTagName("tbody")[0].childNodes;
219
- for(i=0,iLen=nTrs.length;i<iLen;i++){if(nTrs[i].nodeName=="TR"){iThisIndex=oSettings.aoData.length;
220
- oSettings.aoData.push({nTr:nTrs[i],_iId:oSettings.iNextId++,_aData:[],_anHidden:[],_sRowStripe:""});
221
- oSettings.aiDisplayMaster.push(iThisIndex);aLocalData=oSettings.aoData[iThisIndex]._aData;
222
- nTds=nTrs[i].childNodes;jInner=0;for(j=0,jLen=nTds.length;j<jLen;j++){if(nTds[j].nodeName=="TD"){aLocalData[jInner]=nTds[j].innerHTML;
223
- jInner++}}}}}nTrs=_fnGetTrNodes(oSettings);nTds=[];for(i=0,iLen=nTrs.length;i<iLen;
224
- i++){for(j=0,jLen=nTrs[i].childNodes.length;j<jLen;j++){nTd=nTrs[i].childNodes[j];
225
- if(nTd.nodeName=="TD"){nTds.push(nTd)}}}if(nTds.length!=nTrs.length*oSettings.aoColumns.length){alert("DataTables warning: Unexpected number of TD elements. Expected "+(nTrs.length*oSettings.aoColumns.length)+" and got "+nTds.length+". DataTables does not support rowspan / colspan in the table body, and there must be one cell for each row/column combination.")
226
- }for(iColumn=0,iColumns=oSettings.aoColumns.length;iColumn<iColumns;iColumn++){if(oSettings.aoColumns[iColumn].sTitle===null){oSettings.aoColumns[iColumn].sTitle=oSettings.aoColumns[iColumn].nTh.innerHTML
227
- }var bAutoType=oSettings.aoColumns[iColumn]._bAutoType,bRender=typeof oSettings.aoColumns[iColumn].fnRender=="function",bClass=oSettings.aoColumns[iColumn].sClass!==null,bVisible=oSettings.aoColumns[iColumn].bVisible,nCell,sThisType,sRendered;
228
- if(bAutoType||bRender||bClass||!bVisible){for(iRow=0,iRows=oSettings.aoData.length;
229
- iRow<iRows;iRow++){nCell=nTds[(iRow*iColumns)+iColumn];if(bAutoType){if(oSettings.aoColumns[iColumn].sType!="string"){sThisType=_fnDetectType(oSettings.aoData[iRow]._aData[iColumn]);
230
- if(oSettings.aoColumns[iColumn].sType===null){oSettings.aoColumns[iColumn].sType=sThisType
231
- }else{if(oSettings.aoColumns[iColumn].sType!=sThisType){oSettings.aoColumns[iColumn].sType="string"
232
- }}}}if(bRender){sRendered=oSettings.aoColumns[iColumn].fnRender({iDataRow:iRow,iDataColumn:iColumn,aData:oSettings.aoData[iRow]._aData,oSettings:oSettings});
233
- nCell.innerHTML=sRendered;if(oSettings.aoColumns[iColumn].bUseRendered){oSettings.aoData[iRow]._aData[iColumn]=sRendered
234
- }}if(bClass){nCell.className+=" "+oSettings.aoColumns[iColumn].sClass}if(!bVisible){oSettings.aoData[iRow]._anHidden[iColumn]=nCell;
235
- nCell.parentNode.removeChild(nCell)}}}}}function _fnDrawHead(oSettings){var i,nTh,iLen;
236
- var iThs=oSettings.nTable.getElementsByTagName("thead")[0].getElementsByTagName("th").length;
237
- var iCorrector=0;if(iThs!==0){for(i=0,iLen=oSettings.aoColumns.length;i<iLen;i++){nTh=oSettings.aoColumns[i].nTh;
238
- if(oSettings.aoColumns[i].bVisible){if(oSettings.aoColumns[i].sWidth!==null){nTh.style.width=oSettings.aoColumns[i].sWidth
239
- }if(oSettings.aoColumns[i].sTitle!=nTh.innerHTML){nTh.innerHTML=oSettings.aoColumns[i].sTitle
240
- }}else{nTh.parentNode.removeChild(nTh);iCorrector++}}}else{var nTr=document.createElement("tr");
241
- for(i=0,iLen=oSettings.aoColumns.length;i<iLen;i++){nTh=oSettings.aoColumns[i].nTh;
242
- nTh.innerHTML=oSettings.aoColumns[i].sTitle;if(oSettings.aoColumns[i].bVisible){if(oSettings.aoColumns[i].sClass!==null){nTh.className=oSettings.aoColumns[i].sClass
243
- }if(oSettings.aoColumns[i].sWidth!==null){nTh.style.width=oSettings.aoColumns[i].sWidth
244
- }nTr.appendChild(nTh)}}$("thead:eq(0)",oSettings.nTable).html("")[0].appendChild(nTr)
245
- }if(oSettings.bJUI){for(i=0,iLen=oSettings.aoColumns.length;i<iLen;i++){oSettings.aoColumns[i].nTh.insertBefore(document.createElement("span"),oSettings.aoColumns[i].nTh.firstChild)
246
- }}if(oSettings.oFeatures.bSort){for(i=0;i<oSettings.aoColumns.length;i++){if(oSettings.aoColumns[i].bSortable!==false){_fnSortAttachListener(oSettings,oSettings.aoColumns[i].nTh,i)
247
- }else{$(oSettings.aoColumns[i].nTh).addClass(oSettings.oClasses.sSortableNone)}}$("thead:eq(0) th",oSettings.nTable).mousedown(function(e){if(e.shiftKey){this.onselectstart=function(){return false
248
- };return false}})}var nTfoot=oSettings.nTable.getElementsByTagName("tfoot");if(nTfoot.length!==0){iCorrector=0;
249
- var nTfs=nTfoot[0].getElementsByTagName("th");for(i=0,iLen=nTfs.length;i<iLen;i++){oSettings.aoColumns[i].nTf=nTfs[i-iCorrector];
250
- if(!oSettings.aoColumns[i].bVisible){nTfs[i-iCorrector].parentNode.removeChild(nTfs[i-iCorrector]);
251
- iCorrector++}}}}function _fnDraw(oSettings){var i,iLen;var anRows=[];var iRowCount=0;
252
- var bRowError=false;var iStrips=oSettings.asStripClasses.length;var iOpenRows=oSettings.aoOpenRows.length;
253
- if(oSettings.oFeatures.bServerSide&&!_fnAjaxUpdate(oSettings)){return}if(typeof oSettings.iInitDisplayStart!="undefined"&&oSettings.iInitDisplayStart!=-1){oSettings._iDisplayStart=(oSettings.iInitDisplayStart>=oSettings.fnRecordsDisplay())?0:oSettings.iInitDisplayStart;
254
- oSettings.iInitDisplayStart=-1;_fnCalculateEnd(oSettings)}if(oSettings.aiDisplay.length!==0){var iStart=oSettings._iDisplayStart;
255
- var iEnd=oSettings._iDisplayEnd;if(oSettings.oFeatures.bServerSide){iStart=0;iEnd=oSettings.aoData.length
256
- }for(var j=iStart;j<iEnd;j++){var aoData=oSettings.aoData[oSettings.aiDisplay[j]];
257
- var nRow=aoData.nTr;if(iStrips!==0){var sStrip=oSettings.asStripClasses[iRowCount%iStrips];
258
- if(aoData._sRowStripe!=sStrip){$(nRow).removeClass(aoData._sRowStripe).addClass(sStrip);
259
- aoData._sRowStripe=sStrip}}if(typeof oSettings.fnRowCallback=="function"){nRow=oSettings.fnRowCallback(nRow,oSettings.aoData[oSettings.aiDisplay[j]]._aData,iRowCount,j);
260
- if(!nRow&&!bRowError){alert("DataTables warning: A node was not returned by fnRowCallback");
261
- bRowError=true}}anRows.push(nRow);iRowCount++;if(iOpenRows!==0){for(var k=0;k<iOpenRows;
262
- k++){if(nRow==oSettings.aoOpenRows[k].nParent){anRows.push(oSettings.aoOpenRows[k].nTr)
263
- }}}}}else{anRows[0]=document.createElement("tr");if(typeof oSettings.asStripClasses[0]!="undefined"){anRows[0].className=oSettings.asStripClasses[0]
264
- }var nTd=document.createElement("td");nTd.setAttribute("valign","top");nTd.colSpan=oSettings.aoColumns.length;
265
- nTd.className=oSettings.oClasses.sRowEmpty;nTd.innerHTML=oSettings.oLanguage.sZeroRecords;
266
- anRows[iRowCount].appendChild(nTd)}if(typeof oSettings.fnHeaderCallback=="function"){oSettings.fnHeaderCallback($("thead:eq(0)>tr",oSettings.nTable)[0],_fnGetDataMaster(oSettings),oSettings._iDisplayStart,oSettings.fnDisplayEnd(),oSettings.aiDisplay)
267
- }if(typeof oSettings.fnFooterCallback=="function"){oSettings.fnFooterCallback($("tfoot:eq(0)>tr",oSettings.nTable)[0],_fnGetDataMaster(oSettings),oSettings._iDisplayStart,oSettings.fnDisplayEnd(),oSettings.aiDisplay)
268
- }var nBody=oSettings.nTable.getElementsByTagName("tbody");if(nBody[0]){var nTrs=nBody[0].childNodes;
269
- for(i=nTrs.length-1;i>=0;i--){nTrs[i].parentNode.removeChild(nTrs[i])}for(i=0,iLen=anRows.length;
270
- i<iLen;i++){nBody[0].appendChild(anRows[i])}}for(i=0,iLen=oSettings.aoDrawCallback.length;
271
- i<iLen;i++){oSettings.aoDrawCallback[i].fn(oSettings)}oSettings.bSorted=false;oSettings.bFiltered=false;
272
- if(typeof oSettings._bInitComplete=="undefined"){oSettings._bInitComplete=true;if(oSettings.oFeatures.bAutoWidth&&oSettings.nTable.offsetWidth!==0){oSettings.nTable.style.width=oSettings.nTable.offsetWidth+"px"
273
- }}}function _fnReDraw(oSettings){if(oSettings.oFeatures.bSort){_fnSort(oSettings,oSettings.oPreviousSearch)
274
- }else{if(oSettings.oFeatures.bFilter){_fnFilterComplete(oSettings,oSettings.oPreviousSearch)
275
- }else{_fnCalculateEnd(oSettings);_fnDraw(oSettings)}}}function _fnAjaxUpdate(oSettings){if(oSettings.bAjaxDataGet){_fnProcessingDisplay(oSettings,true);
276
- var iColumns=oSettings.aoColumns.length;var aoData=[];var i;oSettings.iServerDraw++;
277
- aoData.push({name:"sEcho",value:oSettings.iServerDraw});aoData.push({name:"iColumns",value:iColumns});
278
- aoData.push({name:"sColumns",value:_fnColumnOrdering(oSettings)});aoData.push({name:"iDisplayStart",value:oSettings._iDisplayStart});
279
- aoData.push({name:"iDisplayLength",value:oSettings.oFeatures.bPaginate!==false?oSettings._iDisplayLength:-1});
280
- if(oSettings.oFeatures.bFilter!==false){aoData.push({name:"sSearch",value:oSettings.oPreviousSearch.sSearch});
281
- aoData.push({name:"bEscapeRegex",value:oSettings.oPreviousSearch.bEscapeRegex});for(i=0;
282
- i<iColumns;i++){aoData.push({name:"sSearch_"+i,value:oSettings.aoPreSearchCols[i].sSearch});
283
- aoData.push({name:"bEscapeRegex_"+i,value:oSettings.aoPreSearchCols[i].bEscapeRegex});
284
- aoData.push({name:"bSearchable_"+i,value:oSettings.aoColumns[i].bSearchable})}}if(oSettings.oFeatures.bSort!==false){var iFixed=oSettings.aaSortingFixed!==null?oSettings.aaSortingFixed.length:0;
285
- var iUser=oSettings.aaSorting.length;aoData.push({name:"iSortingCols",value:iFixed+iUser});
286
- for(i=0;i<iFixed;i++){aoData.push({name:"iSortCol_"+i,value:oSettings.aaSortingFixed[i][0]});
287
- aoData.push({name:"sSortDir_"+i,value:oSettings.aaSortingFixed[i][1]})}for(i=0;i<iUser;
288
- i++){aoData.push({name:"iSortCol_"+(i+iFixed),value:oSettings.aaSorting[i][0]});aoData.push({name:"sSortDir_"+(i+iFixed),value:oSettings.aaSorting[i][1]})
289
- }for(i=0;i<iColumns;i++){aoData.push({name:"bSortable_"+i,value:oSettings.aoColumns[i].bSortable})
290
- }}oSettings.fnServerData(oSettings.sAjaxSource,aoData,function(json){_fnAjaxUpdateDraw(oSettings,json)
291
- });return false}else{return true}}function _fnAjaxUpdateDraw(oSettings,json){if(typeof json.sEcho!="undefined"){if(json.sEcho*1<oSettings.iServerDraw){return
292
- }else{oSettings.iServerDraw=json.sEcho*1}}_fnClearTable(oSettings);oSettings._iRecordsTotal=json.iTotalRecords;
293
- oSettings._iRecordsDisplay=json.iTotalDisplayRecords;var sOrdering=_fnColumnOrdering(oSettings);
294
- var bReOrder=(typeof json.sColumns!="undefined"&&sOrdering!==""&&json.sColumns!=sOrdering);
295
- if(bReOrder){var aiIndex=_fnReOrderIndex(oSettings,json.sColumns)}for(var i=0,iLen=json.aaData.length;
296
- i<iLen;i++){if(bReOrder){var aData=[];for(var j=0,jLen=oSettings.aoColumns.length;
297
- j<jLen;j++){aData.push(json.aaData[i][aiIndex[j]])}_fnAddData(oSettings,aData)}else{_fnAddData(oSettings,json.aaData[i])
298
- }}oSettings.aiDisplay=oSettings.aiDisplayMaster.slice();oSettings.bAjaxDataGet=false;
299
- _fnDraw(oSettings);oSettings.bAjaxDataGet=true;_fnProcessingDisplay(oSettings,false)
300
- }function _fnAddOptionsHtml(oSettings){var nHolding=document.createElement("div");
301
- oSettings.nTable.parentNode.insertBefore(nHolding,oSettings.nTable);var nWrapper=document.createElement("div");
302
- nWrapper.className=oSettings.oClasses.sWrapper;if(oSettings.sTableId!==""){nWrapper.setAttribute("id",oSettings.sTableId+"_wrapper")
303
- }var nInsertNode=nWrapper;var sDom=oSettings.sDom.replace("H","fg-toolbar ui-widget-header ui-corner-tl ui-corner-tr ui-helper-clearfix");
304
- sDom=sDom.replace("F","fg-toolbar ui-widget-header ui-corner-bl ui-corner-br ui-helper-clearfix");
305
- var aDom=sDom.split("");var nTmp,iPushFeature,cOption,nNewNode,cNext,sClass,j;for(var i=0;
306
- i<aDom.length;i++){iPushFeature=0;cOption=aDom[i];if(cOption=="<"){nNewNode=document.createElement("div");
307
- cNext=aDom[i+1];if(cNext=="'"||cNext=='"'){sClass="";j=2;while(aDom[i+j]!=cNext){sClass+=aDom[i+j];
308
- j++}nNewNode.className=sClass;i+=j}nInsertNode.appendChild(nNewNode);nInsertNode=nNewNode
309
- }else{if(cOption==">"){nInsertNode=nInsertNode.parentNode}else{if(cOption=="l"&&oSettings.oFeatures.bPaginate&&oSettings.oFeatures.bLengthChange){nTmp=_fnFeatureHtmlLength(oSettings);
310
- iPushFeature=1}else{if(cOption=="f"&&oSettings.oFeatures.bFilter){nTmp=_fnFeatureHtmlFilter(oSettings);
311
- iPushFeature=1}else{if(cOption=="r"&&oSettings.oFeatures.bProcessing){nTmp=_fnFeatureHtmlProcessing(oSettings);
312
- iPushFeature=1}else{if(cOption=="t"){nTmp=oSettings.nTable;iPushFeature=1}else{if(cOption=="i"&&oSettings.oFeatures.bInfo){nTmp=_fnFeatureHtmlInfo(oSettings);
313
- iPushFeature=1}else{if(cOption=="p"&&oSettings.oFeatures.bPaginate){nTmp=_fnFeatureHtmlPaginate(oSettings);
314
- iPushFeature=1}else{if(_oExt.aoFeatures.length!==0){var aoFeatures=_oExt.aoFeatures;
315
- for(var k=0,kLen=aoFeatures.length;k<kLen;k++){if(cOption==aoFeatures[k].cFeature){nTmp=aoFeatures[k].fnInit(oSettings);
316
- if(nTmp){iPushFeature=1}break}}}}}}}}}}}if(iPushFeature==1){if(typeof oSettings.aanFeatures[cOption]!="object"){oSettings.aanFeatures[cOption]=[]
317
- }oSettings.aanFeatures[cOption].push(nTmp);nInsertNode.appendChild(nTmp)}}nHolding.parentNode.replaceChild(nWrapper,nHolding)
318
- }function _fnFeatureHtmlFilter(oSettings){var nFilter=document.createElement("div");
319
- if(oSettings.sTableId!==""&&typeof oSettings.aanFeatures.f=="undefined"){nFilter.setAttribute("id",oSettings.sTableId+"_filter")
320
- }nFilter.className=oSettings.oClasses.sFilter;var sSpace=oSettings.oLanguage.sSearch===""?"":" ";
321
- nFilter.innerHTML=oSettings.oLanguage.sSearch+sSpace+'<input type="text" />';var jqFilter=$("input",nFilter);
322
- jqFilter.val(oSettings.oPreviousSearch.sSearch.replace('"',"&quot;"));jqFilter.keyup(function(e){var n=oSettings.aanFeatures.f;
323
- for(var i=0,iLen=n.length;i<iLen;i++){if(n[i]!=this.parentNode){$("input",n[i]).val(this.value)
324
- }}_fnFilterComplete(oSettings,{sSearch:this.value,bEscapeRegex:oSettings.oPreviousSearch.bEscapeRegex})
325
- });jqFilter.keypress(function(e){if(e.keyCode==13){return false}});return nFilter
326
- }function _fnFilterComplete(oSettings,oInput,iForce){_fnFilter(oSettings,oInput.sSearch,iForce,oInput.bEscapeRegex);
327
- for(var i=0;i<oSettings.aoPreSearchCols.length;i++){_fnFilterColumn(oSettings,oSettings.aoPreSearchCols[i].sSearch,i,oSettings.aoPreSearchCols[i].bEscapeRegex)
328
- }if(_oExt.afnFiltering.length!==0){_fnFilterCustom(oSettings)}oSettings.bFiltered=true;
329
- oSettings._iDisplayStart=0;_fnCalculateEnd(oSettings);_fnDraw(oSettings);_fnBuildSearchArray(oSettings,0)
330
- }function _fnFilterCustom(oSettings){var afnFilters=_oExt.afnFiltering;for(var i=0,iLen=afnFilters.length;
331
- i<iLen;i++){var iCorrector=0;for(var j=0,jLen=oSettings.aiDisplay.length;j<jLen;j++){var iDisIndex=oSettings.aiDisplay[j-iCorrector];
332
- if(!afnFilters[i](oSettings,oSettings.aoData[iDisIndex]._aData,iDisIndex)){oSettings.aiDisplay.splice(j-iCorrector,1);
333
- iCorrector++}}}}function _fnFilterColumn(oSettings,sInput,iColumn,bEscapeRegex){if(sInput===""){return
334
- }var iIndexCorrector=0;var sRegexMatch=bEscapeRegex?_fnEscapeRegex(sInput):sInput;
335
- var rpSearch=new RegExp(sRegexMatch,"i");for(var i=oSettings.aiDisplay.length-1;i>=0;
336
- i--){var sData=_fnDataToSearch(oSettings.aoData[oSettings.aiDisplay[i]]._aData[iColumn],oSettings.aoColumns[iColumn].sType);
337
- if(!rpSearch.test(sData)){oSettings.aiDisplay.splice(i,1);iIndexCorrector++}}}function _fnFilter(oSettings,sInput,iForce,bEscapeRegex){var i;
338
- if(typeof iForce=="undefined"||iForce===null){iForce=0}if(_oExt.afnFiltering.length!==0){iForce=1
339
- }var asSearch=bEscapeRegex?_fnEscapeRegex(sInput).split(" "):sInput.split(" ");var sRegExpString="^(?=.*?"+asSearch.join(")(?=.*?")+").*$";
340
- var rpSearch=new RegExp(sRegExpString,"i");if(sInput.length<=0){oSettings.aiDisplay.splice(0,oSettings.aiDisplay.length);
341
- oSettings.aiDisplay=oSettings.aiDisplayMaster.slice()}else{if(oSettings.aiDisplay.length==oSettings.aiDisplayMaster.length||oSettings.oPreviousSearch.sSearch.length>sInput.length||iForce==1||sInput.indexOf(oSettings.oPreviousSearch.sSearch)!==0){oSettings.aiDisplay.splice(0,oSettings.aiDisplay.length);
342
- _fnBuildSearchArray(oSettings,1);for(i=0;i<oSettings.aiDisplayMaster.length;i++){if(rpSearch.test(oSettings.asDataSearch[i])){oSettings.aiDisplay.push(oSettings.aiDisplayMaster[i])
343
- }}}else{var iIndexCorrector=0;for(i=0;i<oSettings.asDataSearch.length;i++){if(!rpSearch.test(oSettings.asDataSearch[i])){oSettings.aiDisplay.splice(i-iIndexCorrector,1);
344
- iIndexCorrector++}}}}oSettings.oPreviousSearch.sSearch=sInput;oSettings.oPreviousSearch.bEscapeRegex=bEscapeRegex
345
- }function _fnBuildSearchArray(oSettings,iMaster){oSettings.asDataSearch.splice(0,oSettings.asDataSearch.length);
346
- var aArray=(typeof iMaster!="undefined"&&iMaster==1)?oSettings.aiDisplayMaster:oSettings.aiDisplay;
347
- for(var i=0,iLen=aArray.length;i<iLen;i++){oSettings.asDataSearch[i]="";for(var j=0,jLen=oSettings.aoColumns.length;
348
- j<jLen;j++){if(oSettings.aoColumns[j].bSearchable){var sData=oSettings.aoData[aArray[i]]._aData[j];
349
- oSettings.asDataSearch[i]+=_fnDataToSearch(sData,oSettings.aoColumns[j].sType)+" "
350
- }}}}function _fnDataToSearch(sData,sType){if(typeof _oExt.ofnSearch[sType]=="function"){return _oExt.ofnSearch[sType](sData)
351
- }else{if(sType=="html"){return sData.replace(/\n/g," ").replace(/<.*?>/g,"")}else{if(typeof sData=="string"){return sData.replace(/\n/g," ")
352
- }}}return sData}function _fnSort(oSettings,bApplyClasses){var aaSort=[];var oSort=_oExt.oSort;
353
- var aoData=oSettings.aoData;var iDataSort;var iDataType;var i,j,jLen;if(!oSettings.oFeatures.bServerSide&&(oSettings.aaSorting.length!==0||oSettings.aaSortingFixed!==null)){if(oSettings.aaSortingFixed!==null){aaSort=oSettings.aaSortingFixed.concat(oSettings.aaSorting)
354
- }else{aaSort=oSettings.aaSorting.slice()}for(i=0;i<aaSort.length;i++){var iColumn=aaSort[i][0];
355
- var sDataType=oSettings.aoColumns[iColumn].sSortDataType;if(typeof _oExt.afnSortData[sDataType]!="undefined"){var iCorrector=0;
356
- var aData=_oExt.afnSortData[sDataType](oSettings,iColumn);for(j=0,jLen=aoData.length;
357
- j<jLen;j++){if(aoData[j]!==null){aoData[j]._aData[iColumn]=aData[iCorrector];iCorrector++
358
- }}}}if(!window.runtime){var fnLocalSorting;var sDynamicSort="fnLocalSorting = function(a,b){var iTest;";
359
- for(i=0;i<aaSort.length-1;i++){iDataSort=oSettings.aoColumns[aaSort[i][0]].iDataSort;
360
- iDataType=oSettings.aoColumns[iDataSort].sType;sDynamicSort+="iTest = oSort['"+iDataType+"-"+aaSort[i][1]+"']( aoData[a]._aData["+iDataSort+"], aoData[b]._aData["+iDataSort+"] ); if ( iTest === 0 )"
361
- }iDataSort=oSettings.aoColumns[aaSort[aaSort.length-1][0]].iDataSort;iDataType=oSettings.aoColumns[iDataSort].sType;
362
- sDynamicSort+="iTest = oSort['"+iDataType+"-"+aaSort[aaSort.length-1][1]+"']( aoData[a]._aData["+iDataSort+"], aoData[b]._aData["+iDataSort+"] );if (iTest===0) return oSort['numeric-"+aaSort[aaSort.length-1][1]+"'](a, b); return iTest;}";
363
- eval(sDynamicSort);oSettings.aiDisplayMaster.sort(fnLocalSorting)}else{var aAirSort=[];
364
- var iLen=aaSort.length;for(i=0;i<iLen;i++){iDataSort=oSettings.aoColumns[aaSort[i][0]].iDataSort;
365
- aAirSort.push([iDataSort,oSettings.aoColumns[iDataSort].sType+"-"+aaSort[i][1]])}oSettings.aiDisplayMaster.sort(function(a,b){var iTest;
366
- for(var i=0;i<iLen;i++){iTest=oSort[aAirSort[i][1]](aoData[a]._aData[aAirSort[i][0]],aoData[b]._aData[aAirSort[i][0]]);
367
- if(iTest!==0){return iTest}}return 0})}}if(typeof bApplyClasses=="undefined"||bApplyClasses){_fnSortingClasses(oSettings)
368
- }oSettings.bSorted=true;if(oSettings.oFeatures.bFilter){_fnFilterComplete(oSettings,oSettings.oPreviousSearch,1)
369
- }else{oSettings.aiDisplay=oSettings.aiDisplayMaster.slice();oSettings._iDisplayStart=0;
370
- _fnCalculateEnd(oSettings);_fnDraw(oSettings)}}function _fnSortAttachListener(oSettings,nNode,iDataIndex,fnCallback){$(nNode).click(function(e){if(oSettings.aoColumns[iDataIndex].bSortable===false){return
371
- }var fnInnerSorting=function(){var iColumn,iNextSort;if(e.shiftKey){var bFound=false;
372
- for(var i=0;i<oSettings.aaSorting.length;i++){if(oSettings.aaSorting[i][0]==iDataIndex){bFound=true;
373
- iColumn=oSettings.aaSorting[i][0];iNextSort=oSettings.aaSorting[i][2]+1;if(typeof oSettings.aoColumns[iColumn].asSorting[iNextSort]=="undefined"){oSettings.aaSorting.splice(i,1)
374
- }else{oSettings.aaSorting[i][1]=oSettings.aoColumns[iColumn].asSorting[iNextSort];
375
- oSettings.aaSorting[i][2]=iNextSort}break}}if(bFound===false){oSettings.aaSorting.push([iDataIndex,oSettings.aoColumns[iDataIndex].asSorting[0],0])
376
- }}else{if(oSettings.aaSorting.length==1&&oSettings.aaSorting[0][0]==iDataIndex){iColumn=oSettings.aaSorting[0][0];
377
- iNextSort=oSettings.aaSorting[0][2]+1;if(typeof oSettings.aoColumns[iColumn].asSorting[iNextSort]=="undefined"){iNextSort=0
378
- }oSettings.aaSorting[0][1]=oSettings.aoColumns[iColumn].asSorting[iNextSort];oSettings.aaSorting[0][2]=iNextSort
379
- }else{oSettings.aaSorting.splice(0,oSettings.aaSorting.length);oSettings.aaSorting.push([iDataIndex,oSettings.aoColumns[iDataIndex].asSorting[0],0])
380
- }}_fnSort(oSettings)};if(!oSettings.oFeatures.bProcessing){fnInnerSorting()}else{_fnProcessingDisplay(oSettings,true);
381
- setTimeout(function(){fnInnerSorting();if(!oSettings.oFeatures.bServerSide){_fnProcessingDisplay(oSettings,false)
382
- }},0)}if(typeof fnCallback=="function"){fnCallback(oSettings)}})}function _fnSortingClasses(oSettings){var i,iLen,j,jLen,iFound;
383
- var aaSort,sClass;var iColumns=oSettings.aoColumns.length;var oClasses=oSettings.oClasses;
384
- for(i=0;i<iColumns;i++){if(oSettings.aoColumns[i].bSortable){$(oSettings.aoColumns[i].nTh).removeClass(oClasses.sSortAsc+" "+oClasses.sSortDesc+" "+oSettings.aoColumns[i].sSortingClass)
385
- }}if(oSettings.aaSortingFixed!==null){aaSort=oSettings.aaSortingFixed.concat(oSettings.aaSorting)
386
- }else{aaSort=oSettings.aaSorting.slice()}for(i=0;i<oSettings.aoColumns.length;i++){if(oSettings.aoColumns[i].bSortable){sClass=oSettings.aoColumns[i].sSortingClass;
387
- iFound=-1;for(j=0;j<aaSort.length;j++){if(aaSort[j][0]==i){sClass=(aaSort[j][1]=="asc")?oClasses.sSortAsc:oClasses.sSortDesc;
388
- iFound=j;break}}$(oSettings.aoColumns[i].nTh).addClass(sClass);if(oSettings.bJUI){var jqSpan=$("span",oSettings.aoColumns[i].nTh);
389
- jqSpan.removeClass(oClasses.sSortJUIAsc+" "+oClasses.sSortJUIDesc+" "+oClasses.sSortJUI+" "+oClasses.sSortJUIAscAllowed+" "+oClasses.sSortJUIDescAllowed);
390
- var sSpanClass;if(iFound==-1){sSpanClass=oSettings.aoColumns[i].sSortingClassJUI}else{if(aaSort[iFound][1]=="asc"){sSpanClass=oClasses.sSortJUIAsc
391
- }else{sSpanClass=oClasses.sSortJUIDesc}}jqSpan.addClass(sSpanClass)}}else{$(oSettings.aoColumns[i].nTh).addClass(oSettings.aoColumns[i].sSortingClass)
392
- }}sClass=oClasses.sSortColumn;if(oSettings.oFeatures.bSort&&oSettings.oFeatures.bSortClasses){var nTds=_fnGetTdNodes(oSettings);
393
- if(nTds.length>=iColumns){for(i=0;i<iColumns;i++){if(nTds[i].className.indexOf(sClass+"1")!=-1){for(j=0,jLen=(nTds.length/iColumns);
394
- j<jLen;j++){nTds[(iColumns*j)+i].className=nTds[(iColumns*j)+i].className.replace(" "+sClass+"1","")
395
- }}else{if(nTds[i].className.indexOf(sClass+"2")!=-1){for(j=0,jLen=(nTds.length/iColumns);
396
- j<jLen;j++){nTds[(iColumns*j)+i].className=nTds[(iColumns*j)+i].className.replace(" "+sClass+"2","")
397
- }}else{if(nTds[i].className.indexOf(sClass+"3")!=-1){for(j=0,jLen=(nTds.length/iColumns);
398
- j<jLen;j++){nTds[(iColumns*j)+i].className=nTds[(iColumns*j)+i].className.replace(" "+sClass+"3","")
399
- }}}}}}var iClass=1,iTargetCol;for(i=0;i<aaSort.length;i++){iTargetCol=parseInt(aaSort[i][0],10);
400
- for(j=0,jLen=(nTds.length/iColumns);j<jLen;j++){nTds[(iColumns*j)+iTargetCol].className+=" "+sClass+iClass
401
- }if(iClass<3){iClass++}}}}function _fnFeatureHtmlPaginate(oSettings){var nPaginate=document.createElement("div");
402
- nPaginate.className=oSettings.oClasses.sPaging+oSettings.sPaginationType;_oExt.oPagination[oSettings.sPaginationType].fnInit(oSettings,nPaginate,function(oSettings){_fnCalculateEnd(oSettings);
403
- _fnDraw(oSettings)});if(typeof oSettings.aanFeatures.p=="undefined"){oSettings.aoDrawCallback.push({fn:function(oSettings){_oExt.oPagination[oSettings.sPaginationType].fnUpdate(oSettings,function(oSettings){_fnCalculateEnd(oSettings);
404
- _fnDraw(oSettings)})},sName:"pagination"})}return nPaginate}function _fnPageChange(oSettings,sAction){var iOldStart=oSettings._iDisplayStart;
405
- if(sAction=="first"){oSettings._iDisplayStart=0}else{if(sAction=="previous"){oSettings._iDisplayStart=oSettings._iDisplayLength>=0?oSettings._iDisplayStart-oSettings._iDisplayLength:0;
406
- if(oSettings._iDisplayStart<0){oSettings._iDisplayStart=0}}else{if(sAction=="next"){if(oSettings._iDisplayLength>=0){if(oSettings._iDisplayStart+oSettings._iDisplayLength<oSettings.fnRecordsDisplay()){oSettings._iDisplayStart+=oSettings._iDisplayLength
407
- }}else{oSettings._iDisplayStart=0}}else{if(sAction=="last"){if(oSettings._iDisplayLength>=0){var iPages=parseInt((oSettings.fnRecordsDisplay()-1)/oSettings._iDisplayLength,10)+1;
408
- oSettings._iDisplayStart=(iPages-1)*oSettings._iDisplayLength}else{oSettings._iDisplayStart=0
409
- }}else{alert("DataTables warning: unknown paging action: "+sAction)}}}}return iOldStart!=oSettings._iDisplayStart
410
- }function _fnFeatureHtmlInfo(oSettings){var nInfo=document.createElement("div");nInfo.className=oSettings.oClasses.sInfo;
411
- if(typeof oSettings.aanFeatures.i=="undefined"){oSettings.aoDrawCallback.push({fn:_fnUpdateInfo,sName:"information"});
412
- if(oSettings.sTableId!==""){nInfo.setAttribute("id",oSettings.sTableId+"_info")}}return nInfo
413
- }function _fnUpdateInfo(oSettings){if(!oSettings.oFeatures.bInfo||oSettings.aanFeatures.i.length===0){return
414
- }var nFirst=oSettings.aanFeatures.i[0];if(oSettings.fnRecordsDisplay()===0&&oSettings.fnRecordsDisplay()==oSettings.fnRecordsTotal()){nFirst.innerHTML=oSettings.oLanguage.sInfoEmpty+oSettings.oLanguage.sInfoPostFix
415
- }else{if(oSettings.fnRecordsDisplay()===0){nFirst.innerHTML=oSettings.oLanguage.sInfoEmpty+" "+oSettings.oLanguage.sInfoFiltered.replace("_MAX_",oSettings.fnRecordsTotal())+oSettings.oLanguage.sInfoPostFix
416
- }else{if(oSettings.fnRecordsDisplay()==oSettings.fnRecordsTotal()){nFirst.innerHTML=oSettings.oLanguage.sInfo.replace("_START_",oSettings._iDisplayStart+1).replace("_END_",oSettings.fnDisplayEnd()).replace("_TOTAL_",oSettings.fnRecordsDisplay())+oSettings.oLanguage.sInfoPostFix
417
- }else{nFirst.innerHTML=oSettings.oLanguage.sInfo.replace("_START_",oSettings._iDisplayStart+1).replace("_END_",oSettings.fnDisplayEnd()).replace("_TOTAL_",oSettings.fnRecordsDisplay())+" "+oSettings.oLanguage.sInfoFiltered.replace("_MAX_",oSettings.fnRecordsTotal())+oSettings.oLanguage.sInfoPostFix
418
- }}}var n=oSettings.aanFeatures.i;if(n.length>1){var sInfo=nFirst.innerHTML;for(var i=1,iLen=n.length;
419
- i<iLen;i++){n[i].innerHTML=sInfo}}}function _fnFeatureHtmlLength(oSettings){var sName=(oSettings.sTableId==="")?"":'name="'+oSettings.sTableId+'_length"';
420
- var sStdMenu='<select size="1" '+sName+'><option value="10">10</option><option value="25">25</option><option value="50">50</option><option value="100">100</option></select>';
421
- var nLength=document.createElement("div");if(oSettings.sTableId!==""&&typeof oSettings.aanFeatures.l=="undefined"){nLength.setAttribute("id",oSettings.sTableId+"_length")
422
- }nLength.className=oSettings.oClasses.sLength;nLength.innerHTML=oSettings.oLanguage.sLengthMenu.replace("_MENU_",sStdMenu);
423
- $('select option[value="'+oSettings._iDisplayLength+'"]',nLength).attr("selected",true);
424
- $("select",nLength).change(function(e){var iVal=$(this).val();var n=oSettings.aanFeatures.l;
425
- for(var i=0,iLen=n.length;i<iLen;i++){if(n[i]!=this.parentNode){$("select",n[i]).val(iVal)
426
- }}oSettings._iDisplayLength=parseInt(iVal,10);_fnCalculateEnd(oSettings);if(oSettings._iDisplayEnd==oSettings.aiDisplay.length){oSettings._iDisplayStart=oSettings._iDisplayEnd-oSettings._iDisplayLength;
427
- if(oSettings._iDisplayStart<0){oSettings._iDisplayStart=0}}if(oSettings._iDisplayLength==-1){oSettings._iDisplayStart=0
428
- }_fnDraw(oSettings)});return nLength}function _fnFeatureHtmlProcessing(oSettings){var nProcessing=document.createElement("div");
429
- if(oSettings.sTableId!==""&&typeof oSettings.aanFeatures.r=="undefined"){nProcessing.setAttribute("id",oSettings.sTableId+"_processing")
430
- }nProcessing.innerHTML=oSettings.oLanguage.sProcessing;nProcessing.className=oSettings.oClasses.sProcessing;
431
- oSettings.nTable.parentNode.insertBefore(nProcessing,oSettings.nTable);return nProcessing
432
- }function _fnProcessingDisplay(oSettings,bShow){if(oSettings.oFeatures.bProcessing){var an=oSettings.aanFeatures.r;
433
- for(var i=0,iLen=an.length;i<iLen;i++){an[i].style.visibility=bShow?"visible":"hidden"
434
- }}}function _fnVisibleToColumnIndex(oSettings,iMatch){var iColumn=-1;for(var i=0;
435
- i<oSettings.aoColumns.length;i++){if(oSettings.aoColumns[i].bVisible===true){iColumn++
436
- }if(iColumn==iMatch){return i}}return null}function _fnColumnIndexToVisible(oSettings,iMatch){var iVisible=-1;
437
- for(var i=0;i<oSettings.aoColumns.length;i++){if(oSettings.aoColumns[i].bVisible===true){iVisible++
438
- }if(i==iMatch){return oSettings.aoColumns[i].bVisible===true?iVisible:null}}return null
439
- }function _fnNodeToDataIndex(s,n){for(var i=0,iLen=s.aoData.length;i<iLen;i++){if(s.aoData[i]!==null&&s.aoData[i].nTr==n){return i
440
- }}return null}function _fnVisbleColumns(oS){var iVis=0;for(var i=0;i<oS.aoColumns.length;
441
- i++){if(oS.aoColumns[i].bVisible===true){iVis++}}return iVis}function _fnCalculateEnd(oSettings){if(oSettings.oFeatures.bPaginate===false){oSettings._iDisplayEnd=oSettings.aiDisplay.length
442
- }else{if(oSettings._iDisplayStart+oSettings._iDisplayLength>oSettings.aiDisplay.length||oSettings._iDisplayLength==-1){oSettings._iDisplayEnd=oSettings.aiDisplay.length
443
- }else{oSettings._iDisplayEnd=oSettings._iDisplayStart+oSettings._iDisplayLength}}}function _fnConvertToWidth(sWidth,nParent){if(!sWidth||sWidth===null||sWidth===""){return 0
444
- }if(typeof nParent=="undefined"){nParent=document.getElementsByTagName("body")[0]
445
- }var iWidth;var nTmp=document.createElement("div");nTmp.style.width=sWidth;nParent.appendChild(nTmp);
446
- iWidth=nTmp.offsetWidth;nParent.removeChild(nTmp);return(iWidth)}function _fnCalculateColumnWidths(oSettings){var iTableWidth=oSettings.nTable.offsetWidth;
447
- var iTotalUserIpSize=0;var iTmpWidth;var iVisibleColumns=0;var iColums=oSettings.aoColumns.length;
448
- var i;var oHeaders=$("thead:eq(0)>th",oSettings.nTable);for(i=0;i<iColums;i++){if(oSettings.aoColumns[i].bVisible){iVisibleColumns++;
449
- if(oSettings.aoColumns[i].sWidth!==null){iTmpWidth=_fnConvertToWidth(oSettings.aoColumns[i].sWidth,oSettings.nTable.parentNode);
450
- iTotalUserIpSize+=iTmpWidth;oSettings.aoColumns[i].sWidth=iTmpWidth+"px"}}}if(iColums==oHeaders.length&&iTotalUserIpSize===0&&iVisibleColumns==iColums){for(i=0;
451
- i<oSettings.aoColumns.length;i++){oSettings.aoColumns[i].sWidth=oHeaders[i].offsetWidth+"px"
452
- }}else{var nCalcTmp=oSettings.nTable.cloneNode(false);nCalcTmp.setAttribute("id","");
453
- var sTableTmp='<table class="'+nCalcTmp.className+'">';var sCalcHead="<tr>";var sCalcHtml="<tr>";
454
- for(i=0;i<iColums;i++){if(oSettings.aoColumns[i].bVisible){sCalcHead+="<th>"+oSettings.aoColumns[i].sTitle+"</th>";
455
- if(oSettings.aoColumns[i].sWidth!==null){var sWidth="";if(oSettings.aoColumns[i].sWidth!==null){sWidth=' style="width:'+oSettings.aoColumns[i].sWidth+';"'
456
- }sCalcHtml+="<td"+sWidth+' tag_index="'+i+'">'+fnGetMaxLenString(oSettings,i)+"</td>"
457
- }else{sCalcHtml+='<td tag_index="'+i+'">'+fnGetMaxLenString(oSettings,i)+"</td>"}}}sCalcHead+="</tr>";
458
- sCalcHtml+="</tr>";nCalcTmp=$(sTableTmp+sCalcHead+sCalcHtml+"</table>")[0];nCalcTmp.style.width=iTableWidth+"px";
459
- nCalcTmp.style.visibility="hidden";nCalcTmp.style.position="absolute";oSettings.nTable.parentNode.appendChild(nCalcTmp);
460
- var oNodes=$("tr:eq(1)>td",nCalcTmp);var iIndex;for(i=0;i<oNodes.length;i++){iIndex=oNodes[i].getAttribute("tag_index");
461
- var iContentWidth=$("td",nCalcTmp).eq(i).width();var iSetWidth=oSettings.aoColumns[i].sWidth?oSettings.aoColumns[i].sWidth.slice(0,-2):0;
462
- oSettings.aoColumns[iIndex].sWidth=Math.max(iContentWidth,iSetWidth)+"px"}oSettings.nTable.parentNode.removeChild(nCalcTmp)
463
- }}function fnGetMaxLenString(oSettings,iCol){var iMax=0;var iMaxIndex=-1;for(var i=0;
464
- i<oSettings.aoData.length;i++){if(oSettings.aoData[i]._aData[iCol].length>iMax){iMax=oSettings.aoData[i]._aData[iCol].length;
465
- iMaxIndex=i}}if(iMaxIndex>=0){return oSettings.aoData[iMaxIndex]._aData[iCol]}return""
466
- }function _fnArrayCmp(aArray1,aArray2){if(aArray1.length!=aArray2.length){return 1
467
- }for(var i=0;i<aArray1.length;i++){if(aArray1[i]!=aArray2[i]){return 2}}return 0}function _fnDetectType(sData){var aTypes=_oExt.aTypes;
468
- var iLen=aTypes.length;for(var i=0;i<iLen;i++){var sType=aTypes[i](sData);if(sType!==null){return sType
469
- }}return"string"}function _fnSettingsFromNode(nTable){for(var i=0;i<_aoSettings.length;
470
- i++){if(_aoSettings[i].nTable==nTable){return _aoSettings[i]}}return null}function _fnGetDataMaster(oSettings){var aData=[];
471
- var iLen=oSettings.aoData.length;for(var i=0;i<iLen;i++){if(oSettings.aoData[i]===null){aData.push(null)
472
- }else{aData.push(oSettings.aoData[i]._aData)}}return aData}function _fnGetTrNodes(oSettings){var aNodes=[];
473
- var iLen=oSettings.aoData.length;for(var i=0;i<iLen;i++){if(oSettings.aoData[i]===null){aNodes.push(null)
474
- }else{aNodes.push(oSettings.aoData[i].nTr)}}return aNodes}function _fnGetTdNodes(oSettings){var nTrs=_fnGetTrNodes(oSettings);
475
- var nTds=[],nTd;var anReturn=[];var iCorrector;var iRow,iRows,iColumn,iColumns;for(iRow=0,iRows=nTrs.length;
476
- iRow<iRows;iRow++){nTds=[];for(iColumn=0,iColumns=nTrs[iRow].childNodes.length;iColumn<iColumns;
477
- iColumn++){nTd=nTrs[iRow].childNodes[iColumn];if(nTd.nodeName=="TD"){nTds.push(nTd)
478
- }}iCorrector=0;for(iColumn=0,iColumns=oSettings.aoColumns.length;iColumn<iColumns;
479
- iColumn++){if(oSettings.aoColumns[iColumn].bVisible){anReturn.push(nTds[iColumn-iCorrector])
480
- }else{anReturn.push(oSettings.aoData[iRow]._anHidden[iColumn]);iCorrector++}}}return anReturn
481
- }function _fnEscapeRegex(sVal){var acEscape=["/",".","*","+","?","|","(",")","[","]","{","}","\\","$","^"];
482
- var reReplace=new RegExp("(\\"+acEscape.join("|\\")+")","g");return sVal.replace(reReplace,"\\$1")
483
- }function _fnReOrderIndex(oSettings,sColumns){var aColumns=sColumns.split(",");var aiReturn=[];
484
- for(var i=0,iLen=oSettings.aoColumns.length;i<iLen;i++){for(var j=0;j<iLen;j++){if(oSettings.aoColumns[i].sName==aColumns[j]){aiReturn.push(j);
485
- break}}}return aiReturn}function _fnColumnOrdering(oSettings){var sNames="";for(var i=0,iLen=oSettings.aoColumns.length;
486
- i<iLen;i++){sNames+=oSettings.aoColumns[i].sName+","}if(sNames.length==iLen){return""
487
- }return sNames.slice(0,-1)}function _fnClearTable(oSettings){oSettings.aoData.length=0;
488
- oSettings.aiDisplayMaster.length=0;oSettings.aiDisplay.length=0;_fnCalculateEnd(oSettings)
489
- }function _fnSaveState(oSettings){if(!oSettings.oFeatures.bStateSave){return}var i;
490
- var sValue="{";sValue+='"iStart": '+oSettings._iDisplayStart+",";sValue+='"iEnd": '+oSettings._iDisplayEnd+",";
491
- sValue+='"iLength": '+oSettings._iDisplayLength+",";sValue+='"sFilter": "'+oSettings.oPreviousSearch.sSearch.replace('"','\\"')+'",';
492
- sValue+='"sFilterEsc": '+oSettings.oPreviousSearch.bEscapeRegex+",";sValue+='"aaSorting": [ ';
493
- for(i=0;i<oSettings.aaSorting.length;i++){sValue+="["+oSettings.aaSorting[i][0]+",'"+oSettings.aaSorting[i][1]+"'],"
494
- }sValue=sValue.substring(0,sValue.length-1);sValue+="],";sValue+='"aaSearchCols": [ ';
495
- for(i=0;i<oSettings.aoPreSearchCols.length;i++){sValue+="['"+oSettings.aoPreSearchCols[i].sSearch.replace("'","'")+"',"+oSettings.aoPreSearchCols[i].bEscapeRegex+"],"
496
- }sValue=sValue.substring(0,sValue.length-1);sValue+="],";sValue+='"abVisCols": [ ';
497
- for(i=0;i<oSettings.aoColumns.length;i++){sValue+=oSettings.aoColumns[i].bVisible+","
498
- }sValue=sValue.substring(0,sValue.length-1);sValue+="]";sValue+="}";_fnCreateCookie("SpryMedia_DataTables_"+oSettings.sInstance,sValue,oSettings.iCookieDuration)
499
- }function _fnLoadState(oSettings,oInit){if(!oSettings.oFeatures.bStateSave){return
500
- }var oData;var sData=_fnReadCookie("SpryMedia_DataTables_"+oSettings.sInstance);if(sData!==null&&sData!==""){try{if(typeof JSON=="object"&&typeof JSON.parse=="function"){oData=JSON.parse(sData.replace(/'/g,'"'))
501
- }else{oData=eval("("+sData+")")}}catch(e){return}oSettings._iDisplayStart=oData.iStart;
502
- oSettings.iInitDisplayStart=oData.iStart;oSettings._iDisplayEnd=oData.iEnd;oSettings._iDisplayLength=oData.iLength;
503
- oSettings.oPreviousSearch.sSearch=oData.sFilter;oSettings.aaSorting=oData.aaSorting.slice();
504
- oSettings.saved_aaSorting=oData.aaSorting.slice();if(typeof oData.sFilterEsc!="undefined"){oSettings.oPreviousSearch.bEscapeRegex=oData.sFilterEsc
505
- }if(typeof oData.aaSearchCols!="undefined"){for(var i=0;i<oData.aaSearchCols.length;
506
- i++){oSettings.aoPreSearchCols[i]={sSearch:oData.aaSearchCols[i][0],bEscapeRegex:oData.aaSearchCols[i][1]}
507
- }}if(typeof oData.abVisCols!="undefined"){oInit.saved_aoColumns=[];for(i=0;i<oData.abVisCols.length;
508
- i++){oInit.saved_aoColumns[i]={};oInit.saved_aoColumns[i].bVisible=oData.abVisCols[i]
509
- }}}}function _fnCreateCookie(sName,sValue,iSecs){var date=new Date();date.setTime(date.getTime()+(iSecs*1000));
510
- sName+="_"+window.location.pathname.replace(/[\/:]/g,"").toLowerCase();document.cookie=sName+"="+encodeURIComponent(sValue)+"; expires="+date.toGMTString()+"; path=/"
511
- }function _fnReadCookie(sName){var sNameEQ=sName+"_"+window.location.pathname.replace(/[\/:]/g,"").toLowerCase()+"=";
512
- var sCookieContents=document.cookie.split(";");for(var i=0;i<sCookieContents.length;
513
- i++){var c=sCookieContents[i];while(c.charAt(0)==" "){c=c.substring(1,c.length)}if(c.indexOf(sNameEQ)===0){return decodeURIComponent(c.substring(sNameEQ.length,c.length))
514
- }}return null}function _fnGetUniqueThs(nThead){var nTrs=nThead.getElementsByTagName("tr");
515
- if(nTrs.length==1){return nTrs[0].getElementsByTagName("th")}var aLayout=[],aReturn=[];
516
- var ROWSPAN=2,COLSPAN=3,TDELEM=4;var i,j,k,iLen,jLen,iColumnShifted;var fnShiftCol=function(a,i,j){while(typeof a[i][j]!="undefined"){j++
517
- }return j};var fnAddRow=function(i){if(typeof aLayout[i]=="undefined"){aLayout[i]=[]
518
- }};for(i=0,iLen=nTrs.length;i<iLen;i++){fnAddRow(i);var iColumn=0;var nTds=[];for(j=0,jLen=nTrs[i].childNodes.length;
519
- j<jLen;j++){if(nTrs[i].childNodes[j].nodeName=="TD"||nTrs[i].childNodes[j].nodeName=="TH"){nTds.push(nTrs[i].childNodes[j])
520
- }}for(j=0,jLen=nTds.length;j<jLen;j++){var iColspan=nTds[j].getAttribute("colspan")*1;
521
- var iRowspan=nTds[j].getAttribute("rowspan")*1;if(!iColspan||iColspan===0||iColspan===1){iColumnShifted=fnShiftCol(aLayout,i,iColumn);
522
- aLayout[i][iColumnShifted]=(nTds[j].nodeName=="TD")?TDELEM:nTds[j];if(iRowspan||iRowspan===0||iRowspan===1){for(k=1;
523
- k<iRowspan;k++){fnAddRow(i+k);aLayout[i+k][iColumnShifted]=ROWSPAN}}iColumn++}else{iColumnShifted=fnShiftCol(aLayout,i,iColumn);
524
- for(k=0;k<iColspan;k++){aLayout[i][iColumnShifted+k]=COLSPAN}iColumn+=iColspan}}}for(i=0,iLen=aLayout[0].length;
525
- i<iLen;i++){for(j=0,jLen=aLayout.length;j<jLen;j++){if(typeof aLayout[j][i]=="object"){aReturn.push(aLayout[j][i])
526
- }}}return aReturn}function _fnMap(oRet,oSrc,sName,sMappedName){if(typeof sMappedName=="undefined"){sMappedName=sName
527
- }if(typeof oSrc[sName]!="undefined"){oRet[sMappedName]=oSrc[sName]}}this.oApi._fnInitalise=_fnInitalise;
528
- this.oApi._fnLanguageProcess=_fnLanguageProcess;this.oApi._fnAddColumn=_fnAddColumn;
529
- this.oApi._fnAddData=_fnAddData;this.oApi._fnGatherData=_fnGatherData;this.oApi._fnDrawHead=_fnDrawHead;
530
- this.oApi._fnDraw=_fnDraw;this.oApi._fnAjaxUpdate=_fnAjaxUpdate;this.oApi._fnAddOptionsHtml=_fnAddOptionsHtml;
531
- this.oApi._fnFeatureHtmlFilter=_fnFeatureHtmlFilter;this.oApi._fnFeatureHtmlInfo=_fnFeatureHtmlInfo;
532
- this.oApi._fnFeatureHtmlPaginate=_fnFeatureHtmlPaginate;this.oApi._fnPageChange=_fnPageChange;
533
- this.oApi._fnFeatureHtmlLength=_fnFeatureHtmlLength;this.oApi._fnFeatureHtmlProcessing=_fnFeatureHtmlProcessing;
534
- this.oApi._fnProcessingDisplay=_fnProcessingDisplay;this.oApi._fnFilterComplete=_fnFilterComplete;
535
- this.oApi._fnFilterColumn=_fnFilterColumn;this.oApi._fnFilter=_fnFilter;this.oApi._fnSortingClasses=_fnSortingClasses;
536
- this.oApi._fnVisibleToColumnIndex=_fnVisibleToColumnIndex;this.oApi._fnColumnIndexToVisible=_fnColumnIndexToVisible;
537
- this.oApi._fnNodeToDataIndex=_fnNodeToDataIndex;this.oApi._fnVisbleColumns=_fnVisbleColumns;
538
- this.oApi._fnBuildSearchArray=_fnBuildSearchArray;this.oApi._fnDataToSearch=_fnDataToSearch;
539
- this.oApi._fnCalculateEnd=_fnCalculateEnd;this.oApi._fnConvertToWidth=_fnConvertToWidth;
540
- this.oApi._fnCalculateColumnWidths=_fnCalculateColumnWidths;this.oApi._fnArrayCmp=_fnArrayCmp;
541
- this.oApi._fnDetectType=_fnDetectType;this.oApi._fnGetDataMaster=_fnGetDataMaster;
542
- this.oApi._fnGetTrNodes=_fnGetTrNodes;this.oApi._fnGetTdNodes=_fnGetTdNodes;this.oApi._fnEscapeRegex=_fnEscapeRegex;
543
- this.oApi._fnReOrderIndex=_fnReOrderIndex;this.oApi._fnColumnOrdering=_fnColumnOrdering;
544
- this.oApi._fnClearTable=_fnClearTable;this.oApi._fnSaveState=_fnSaveState;this.oApi._fnLoadState=_fnLoadState;
545
- this.oApi._fnCreateCookie=_fnCreateCookie;this.oApi._fnReadCookie=_fnReadCookie;this.oApi._fnGetUniqueThs=_fnGetUniqueThs;
546
- this.oApi._fnReDraw=_fnReDraw;var _that=this;return this.each(function(){var i=0,iLen,j,jLen;
547
- for(i=0,iLen=_aoSettings.length;i<iLen;i++){if(_aoSettings[i].nTable==this){alert("DataTables warning: Unable to re-initialise DataTable. Please use the API to make any configuration changes required.");
548
- return _aoSettings[i]}}var oSettings=new classSettings();_aoSettings.push(oSettings);
549
- var bInitHandedOff=false;var bUsePassedData=false;var sId=this.getAttribute("id");
550
- if(sId!==null){oSettings.sTableId=sId;oSettings.sInstance=sId}else{oSettings.sInstance=_oExt._oExternConfig.iNextUnique++
551
- }oSettings.nTable=this;oSettings.oApi=_that.oApi;if(typeof oInit!="undefined"&&oInit!==null){_fnMap(oSettings.oFeatures,oInit,"bPaginate");
552
- _fnMap(oSettings.oFeatures,oInit,"bLengthChange");_fnMap(oSettings.oFeatures,oInit,"bFilter");
553
- _fnMap(oSettings.oFeatures,oInit,"bSort");_fnMap(oSettings.oFeatures,oInit,"bInfo");
554
- _fnMap(oSettings.oFeatures,oInit,"bProcessing");_fnMap(oSettings.oFeatures,oInit,"bAutoWidth");
555
- _fnMap(oSettings.oFeatures,oInit,"bSortClasses");_fnMap(oSettings.oFeatures,oInit,"bServerSide");
556
- _fnMap(oSettings,oInit,"asStripClasses");_fnMap(oSettings,oInit,"fnRowCallback");
557
- _fnMap(oSettings,oInit,"fnHeaderCallback");_fnMap(oSettings,oInit,"fnFooterCallback");
558
- _fnMap(oSettings,oInit,"fnInitComplete");_fnMap(oSettings,oInit,"fnServerData");_fnMap(oSettings,oInit,"aaSorting");
559
- _fnMap(oSettings,oInit,"aaSortingFixed");_fnMap(oSettings,oInit,"sPaginationType");
560
- _fnMap(oSettings,oInit,"sAjaxSource");_fnMap(oSettings,oInit,"iCookieDuration");_fnMap(oSettings,oInit,"sDom");
561
- _fnMap(oSettings,oInit,"oSearch","oPreviousSearch");_fnMap(oSettings,oInit,"aoSearchCols","aoPreSearchCols");
562
- _fnMap(oSettings,oInit,"iDisplayLength","_iDisplayLength");_fnMap(oSettings,oInit,"bJQueryUI","bJUI");
563
- if(typeof oInit.fnDrawCallback=="function"){oSettings.aoDrawCallback.push({fn:oInit.fnDrawCallback,sName:"user"})
564
- }if(oSettings.oFeatures.bServerSide&&oSettings.oFeatures.bSort&&oSettings.oFeatures.bSortClasses){oSettings.aoDrawCallback.push({fn:_fnSortingClasses,sName:"server_side_sort_classes"})
565
- }if(typeof oInit.bJQueryUI!="undefined"&&oInit.bJQueryUI){oSettings.oClasses=_oExt.oJUIClasses;
566
- if(typeof oInit.sDom=="undefined"){oSettings.sDom='<"H"lfr>t<"F"ip>'}}if(typeof oInit.iDisplayStart!="undefined"&&typeof oSettings.iInitDisplayStart=="undefined"){oSettings.iInitDisplayStart=oInit.iDisplayStart;
567
- oSettings._iDisplayStart=oInit.iDisplayStart}if(typeof oInit.bStateSave!="undefined"){oSettings.oFeatures.bStateSave=oInit.bStateSave;
568
- _fnLoadState(oSettings,oInit);oSettings.aoDrawCallback.push({fn:_fnSaveState,sName:"state_save"})
569
- }if(typeof oInit.aaData!="undefined"){bUsePassedData=true}if(typeof oInit!="undefined"&&typeof oInit.aoData!="undefined"){oInit.aoColumns=oInit.aoData
570
- }if(typeof oInit.oLanguage!="undefined"){if(typeof oInit.oLanguage.sUrl!="undefined"&&oInit.oLanguage.sUrl!==""){oSettings.oLanguage.sUrl=oInit.oLanguage.sUrl;
571
- $.getJSON(oSettings.oLanguage.sUrl,null,function(json){_fnLanguageProcess(oSettings,json,true)
572
- });bInitHandedOff=true}else{_fnLanguageProcess(oSettings,oInit.oLanguage,false)}}}else{oInit={}
573
- }if(typeof oInit.asStripClasses=="undefined"){oSettings.asStripClasses.push(oSettings.oClasses.sStripOdd);
574
- oSettings.asStripClasses.push(oSettings.oClasses.sStripEven)}var nThead=this.getElementsByTagName("thead");
575
- var nThs=nThead.length===0?null:_fnGetUniqueThs(nThead[0]);var bUseCols=typeof oInit.aoColumns!="undefined";
576
- for(i=0,iLen=bUseCols?oInit.aoColumns.length:nThs.length;i<iLen;i++){var oCol=bUseCols?oInit.aoColumns[i]:null;
577
- var nTh=nThs?nThs[i]:null;if(typeof oInit.saved_aoColumns!="undefined"&&oInit.saved_aoColumns.length==iLen){if(oCol===null){oCol={}
578
- }oCol.bVisible=oInit.saved_aoColumns[i].bVisible}_fnAddColumn(oSettings,oCol,nTh)
579
- }for(i=0,iLen=oSettings.aaSorting.length;i<iLen;i++){var oColumn=oSettings.aoColumns[oSettings.aaSorting[i][0]];
580
- if(typeof oSettings.aaSorting[i][2]=="undefined"){oSettings.aaSorting[i][2]=0}if(typeof oInit.aaSorting=="undefined"&&typeof oSettings.saved_aaSorting=="undefined"){oSettings.aaSorting[i][1]=oColumn.asSorting[0]
581
- }for(j=0,jLen=oColumn.asSorting.length;j<jLen;j++){if(oSettings.aaSorting[i][1]==oColumn.asSorting[j]){oSettings.aaSorting[i][2]=j;
582
- break}}}if(this.getElementsByTagName("thead").length===0){this.appendChild(document.createElement("thead"))
583
- }if(this.getElementsByTagName("tbody").length===0){this.appendChild(document.createElement("tbody"))
584
- }if(bUsePassedData){for(i=0;i<oInit.aaData.length;i++){_fnAddData(oSettings,oInit.aaData[i])
585
- }}else{_fnGatherData(oSettings)}oSettings.aiDisplay=oSettings.aiDisplayMaster.slice();
586
- if(oSettings.oFeatures.bAutoWidth){_fnCalculateColumnWidths(oSettings)}oSettings.bInitialised=true;
587
- if(bInitHandedOff===false){_fnInitalise(oSettings)}})}})(jQuery);
1
  /*
2
  * File: jquery.dataTables.min.js
3
+ * Version: 1.7.0
4
  * Author: Allan Jardine (www.sprymedia.co.uk)
5
  * Info: www.datatables.net
6
  *
13
  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14
  * or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details.
15
  */
16
+ (function(j,Y,p){j.fn.dataTableSettings=[];var E=j.fn.dataTableSettings;j.fn.dataTableExt={};var m=j.fn.dataTableExt;m.sVersion="1.7.0";m.sErrMode="alert";m.iApiIndex=0;m.oApi={};m.afnFiltering=[];m.aoFeatures=[];m.ofnSearch={};m.afnSortData=[];m.oStdClasses={sPagePrevEnabled:"paginate_enabled_previous",sPagePrevDisabled:"paginate_disabled_previous",sPageNextEnabled:"paginate_enabled_next",sPageNextDisabled:"paginate_disabled_next",sPageJUINext:"",sPageJUIPrev:"",sPageButton:"paginate_button",sPageButtonActive:"paginate_active",
17
+ sPageButtonStaticDisabled:"paginate_button",sPageFirst:"first",sPagePrevious:"previous",sPageNext:"next",sPageLast:"last",sStripOdd:"odd",sStripEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter",sInfo:"dataTables_info",sPaging:"dataTables_paginate paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"sorting_asc",sSortDesc:"sorting_desc",sSortable:"sorting",sSortableAsc:"sorting_asc_disabled",sSortableDesc:"sorting_desc_disabled",
18
+ sSortableNone:"sorting_disabled",sSortColumn:"sorting_",sSortJUIAsc:"",sSortJUIDesc:"",sSortJUI:"",sSortJUIAscAllowed:"",sSortJUIDescAllowed:"",sScrollWrapper:"dataTables_scroll",sScrollHead:"dataTables_scrollHead",sScrollHeadInner:"dataTables_scrollHeadInner",sScrollBody:"dataTables_scrollBody",sScrollFoot:"dataTables_scrollFoot",sScrollFootInner:"dataTables_scrollFootInner",sFooterTH:""};m.oJUIClasses={sPagePrevEnabled:"fg-button ui-state-default ui-corner-left",sPagePrevDisabled:"fg-button ui-state-default ui-corner-left ui-state-disabled",
19
+ sPageNextEnabled:"fg-button ui-state-default ui-corner-right",sPageNextDisabled:"fg-button ui-state-default ui-corner-right ui-state-disabled",sPageJUINext:"ui-icon ui-icon-circle-arrow-e",sPageJUIPrev:"ui-icon ui-icon-circle-arrow-w",sPageButton:"fg-button ui-state-default",sPageButtonActive:"fg-button ui-state-default ui-state-disabled",sPageButtonStaticDisabled:"fg-button ui-state-default ui-state-disabled",sPageFirst:"first ui-corner-tl ui-corner-bl",sPagePrevious:"previous",sPageNext:"next",
20
+ sPageLast:"last ui-corner-tr ui-corner-br",sStripOdd:"odd",sStripEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter",sInfo:"dataTables_info",sPaging:"dataTables_paginate fg-buttonset fg-buttonset-multi paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"ui-state-default",sSortDesc:"ui-state-default",sSortable:"ui-state-default",sSortableAsc:"ui-state-default",sSortableDesc:"ui-state-default",sSortableNone:"ui-state-default",
21
+ sSortColumn:"sorting_",sSortJUIAsc:"css_right ui-icon ui-icon-triangle-1-n",sSortJUIDesc:"css_right ui-icon ui-icon-triangle-1-s",sSortJUI:"css_right ui-icon ui-icon-carat-2-n-s",sSortJUIAscAllowed:"css_right ui-icon ui-icon-carat-1-n",sSortJUIDescAllowed:"css_right ui-icon ui-icon-carat-1-s",sScrollWrapper:"dataTables_scroll",sScrollHead:"dataTables_scrollHead ui-state-default",sScrollHeadInner:"dataTables_scrollHeadInner",sScrollBody:"dataTables_scrollBody",sScrollFoot:"dataTables_scrollFoot ui-state-default",
22
+ sScrollFootInner:"dataTables_scrollFootInner",sFooterTH:"ui-state-default"};m.oPagination={two_button:{fnInit:function(g,l,q){var r,u,y;if(g.bJUI){r=p.createElement("a");u=p.createElement("a");y=p.createElement("span");y.className=g.oClasses.sPageJUINext;u.appendChild(y);y=p.createElement("span");y.className=g.oClasses.sPageJUIPrev;r.appendChild(y)}else{r=p.createElement("div");u=p.createElement("div")}r.className=g.oClasses.sPagePrevDisabled;u.className=g.oClasses.sPageNextDisabled;r.title=g.oLanguage.oPaginate.sPrevious;
23
+ u.title=g.oLanguage.oPaginate.sNext;l.appendChild(r);l.appendChild(u);j(r).click(function(){g.oApi._fnPageChange(g,"previous")&&q(g)});j(u).click(function(){g.oApi._fnPageChange(g,"next")&&q(g)});j(r).bind("selectstart",function(){return false});j(u).bind("selectstart",function(){return false});if(g.sTableId!==""&&typeof g.aanFeatures.p=="undefined"){l.setAttribute("id",g.sTableId+"_paginate");r.setAttribute("id",g.sTableId+"_previous");u.setAttribute("id",g.sTableId+"_next")}},fnUpdate:function(g){if(g.aanFeatures.p)for(var l=
24
+ g.aanFeatures.p,q=0,r=l.length;q<r;q++)if(l[q].childNodes.length!==0){l[q].childNodes[0].className=g._iDisplayStart===0?g.oClasses.sPagePrevDisabled:g.oClasses.sPagePrevEnabled;l[q].childNodes[1].className=g.fnDisplayEnd()==g.fnRecordsDisplay()?g.oClasses.sPageNextDisabled:g.oClasses.sPageNextEnabled}}},iFullNumbersShowPages:5,full_numbers:{fnInit:function(g,l,q){var r=p.createElement("span"),u=p.createElement("span"),y=p.createElement("span"),C=p.createElement("span"),w=p.createElement("span");r.innerHTML=
25
+ g.oLanguage.oPaginate.sFirst;u.innerHTML=g.oLanguage.oPaginate.sPrevious;C.innerHTML=g.oLanguage.oPaginate.sNext;w.innerHTML=g.oLanguage.oPaginate.sLast;var x=g.oClasses;r.className=x.sPageButton+" "+x.sPageFirst;u.className=x.sPageButton+" "+x.sPagePrevious;C.className=x.sPageButton+" "+x.sPageNext;w.className=x.sPageButton+" "+x.sPageLast;l.appendChild(r);l.appendChild(u);l.appendChild(y);l.appendChild(C);l.appendChild(w);j(r).click(function(){g.oApi._fnPageChange(g,"first")&&q(g)});j(u).click(function(){g.oApi._fnPageChange(g,
26
+ "previous")&&q(g)});j(C).click(function(){g.oApi._fnPageChange(g,"next")&&q(g)});j(w).click(function(){g.oApi._fnPageChange(g,"last")&&q(g)});j("span",l).bind("mousedown",function(){return false}).bind("selectstart",function(){return false});if(g.sTableId!==""&&typeof g.aanFeatures.p=="undefined"){l.setAttribute("id",g.sTableId+"_paginate");r.setAttribute("id",g.sTableId+"_first");u.setAttribute("id",g.sTableId+"_previous");C.setAttribute("id",g.sTableId+"_next");w.setAttribute("id",g.sTableId+"_last")}},
27
+ fnUpdate:function(g,l){if(g.aanFeatures.p){var q=m.oPagination.iFullNumbersShowPages,r=Math.floor(q/2),u=Math.ceil(g.fnRecordsDisplay()/g._iDisplayLength),y=Math.ceil(g._iDisplayStart/g._iDisplayLength)+1,C="",w,x=g.oClasses;if(u<q){r=1;w=u}else if(y<=r){r=1;w=q}else if(y>=u-r){r=u-q+1;w=u}else{r=y-Math.ceil(q/2)+1;w=r+q-1}for(q=r;q<=w;q++)C+=y!=q?'<span class="'+x.sPageButton+'">'+q+"</span>":'<span class="'+x.sPageButtonActive+'">'+q+"</span>";w=g.aanFeatures.p;var z,D=function(){g._iDisplayStart=
28
+ (this.innerHTML*1-1)*g._iDisplayLength;l(g);return false},L=function(){return false};q=0;for(r=w.length;q<r;q++)if(w[q].childNodes.length!==0){z=w[q].childNodes[2];z.innerHTML=C;j("span",z).click(D).bind("mousedown",L).bind("selectstart",L);z=w[q].getElementsByTagName("span");z=[z[0],z[1],z[z.length-2],z[z.length-1]];j(z).removeClass(x.sPageButton+" "+x.sPageButtonActive+" "+x.sPageButtonStaticDisabled);if(y==1){z[0].className+=" "+x.sPageButtonStaticDisabled;z[1].className+=" "+x.sPageButtonStaticDisabled}else{z[0].className+=
29
+ " "+x.sPageButton;z[1].className+=" "+x.sPageButton}if(u===0||y==u||g._iDisplayLength==-1){z[2].className+=" "+x.sPageButtonStaticDisabled;z[3].className+=" "+x.sPageButtonStaticDisabled}else{z[2].className+=" "+x.sPageButton;z[3].className+=" "+x.sPageButton}}}}}};m.oSort={"string-asc":function(g,l){g=g.toLowerCase();l=l.toLowerCase();return g<l?-1:g>l?1:0},"string-desc":function(g,l){g=g.toLowerCase();l=l.toLowerCase();return g<l?1:g>l?-1:0},"html-asc":function(g,l){g=g.replace(/<.*?>/g,"").toLowerCase();
30
+ l=l.replace(/<.*?>/g,"").toLowerCase();return g<l?-1:g>l?1:0},"html-desc":function(g,l){g=g.replace(/<.*?>/g,"").toLowerCase();l=l.replace(/<.*?>/g,"").toLowerCase();return g<l?1:g>l?-1:0},"date-asc":function(g,l){g=Date.parse(g);l=Date.parse(l);if(isNaN(g)||g==="")g=Date.parse("01/01/1970 00:00:00");if(isNaN(l)||l==="")l=Date.parse("01/01/1970 00:00:00");return g-l},"date-desc":function(g,l){g=Date.parse(g);l=Date.parse(l);if(isNaN(g)||g==="")g=Date.parse("01/01/1970 00:00:00");if(isNaN(l)||l===
31
+ "")l=Date.parse("01/01/1970 00:00:00");return l-g},"numeric-asc":function(g,l){return(g=="-"||g===""?0:g*1)-(l=="-"||l===""?0:l*1)},"numeric-desc":function(g,l){return(l=="-"||l===""?0:l*1)-(g=="-"||g===""?0:g*1)}};m.aTypes=[function(g){if(g.length===0)return"numeric";var l,q=false;l=g.charAt(0);if("0123456789-".indexOf(l)==-1)return null;for(var r=1;r<g.length;r++){l=g.charAt(r);if("0123456789.".indexOf(l)==-1)return null;if(l=="."){if(q)return null;q=true}}return"numeric"},function(g){var l=Date.parse(g);
32
+ if(l!==null&&!isNaN(l)||g.length===0)return"date";return null},function(g){if(g.indexOf("<")!=-1&&g.indexOf(">")!=-1)return"html";return null}];m.fnVersionCheck=function(g){var l=function(w,x){for(;w.length<x;)w+="0";return w},q=m.sVersion.split(".");g=g.split(".");for(var r="",u="",y=0,C=g.length;y<C;y++){r+=l(q[y],3);u+=l(g[y],3)}return parseInt(r,10)>=parseInt(u,10)};m._oExternConfig={iNextUnique:0};j.fn.dataTable=function(g){function l(){this.fnRecordsTotal=function(){return this.oFeatures.bServerSide?
33
+ this._iRecordsTotal:this.aiDisplayMaster.length};this.fnRecordsDisplay=function(){return this.oFeatures.bServerSide?this._iRecordsDisplay:this.aiDisplay.length};this.fnDisplayEnd=function(){return this.oFeatures.bServerSide?this.oFeatures.bPaginate===false?this._iDisplayStart+this.aiDisplay.length:Math.min(this._iDisplayStart+this._iDisplayLength,this._iDisplayStart+this.aiDisplay.length):this._iDisplayEnd};this.sInstance=this.oInstance=null;this.oFeatures={bPaginate:true,bLengthChange:true,bFilter:true,
34
+ bSort:true,bInfo:true,bAutoWidth:true,bProcessing:false,bSortClasses:true,bStateSave:false,bServerSide:false};this.oScroll={sX:"",sXInner:"",sY:"",bCollapse:false,iBarWidth:0};this.aanFeatures=[];this.oLanguage={sProcessing:"Processing...",sLengthMenu:"Show _MENU_ entries",sZeroRecords:"No matching records found",sEmptyTable:"No data available in table",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)",
35
+ sInfoPostFix:"",sSearch:"Search:",sUrl:"",oPaginate:{sFirst:"First",sPrevious:"Previous",sNext:"Next",sLast:"Last"}};this.aoData=[];this.aiDisplay=[];this.aiDisplayMaster=[];this.aoColumns=[];this.iNextId=0;this.asDataSearch=[];this.oPreviousSearch={sSearch:"",bRegex:false,bSmart:true};this.aoPreSearchCols=[];this.aaSorting=[[0,"asc",0]];this.aaSortingFixed=null;this.asStripClasses=[];this.asDestoryStrips=[];this.fnFooterCallback=this.fnHeaderCallback=this.fnRowCallback=null;this.aoDrawCallback=[];
36
+ this.fnInitComplete=null;this.sTableId="";this.nTableWrapper=this.nTBody=this.nTFoot=this.nTHead=this.nTable=null;this.iDefaultSortIndex=0;this.bInitialised=false;this.aoOpenRows=[];this.sDom="lfrtip";this.sPaginationType="two_button";this.iCookieDuration=7200;this.sCookiePrefix="SpryMedia_DataTables_";this.sAjaxSource=null;this.bAjaxDataGet=true;this.fnServerData=function(a,b,c){j.ajax({url:a,data:b,success:c,dataType:"json",cache:false,error:function(){alert("DataTables warning: JSON data from server failed to load or be parsed. This is most likely to be caused by a JSON formatting error.")}})};
37
+ this.fnFormatNumber=function(a){if(a<1E3)return a;else{var b=a+"";a=b.split("");var c="";b=b.length;for(var d=0;d<b;d++){if(d%3===0&&d!==0)c=","+c;c=a[b-d-1]+c}}return c};this.aLengthMenu=[10,25,50,100];this.iDraw=0;this.iDrawError=-1;this._iDisplayLength=10;this._iDisplayStart=0;this._iDisplayEnd=10;this._iRecordsDisplay=this._iRecordsTotal=0;this.bJUI=false;this.oClasses=m.oStdClasses;this.bSorted=this.bFiltered=false;this.oInit=null}function q(a){return function(){var b=[B(this[m.iApiIndex])].concat(Array.prototype.slice.call(arguments));
38
+ return m.oApi[a].apply(this,b)}}function r(a){if(a.bInitialised===false)setTimeout(function(){r(a)},200);else{na(a);z(a);if(a.oFeatures.bSort)O(a);else{a.aiDisplay=a.aiDisplayMaster.slice();F(a);D(a)}if(a.sAjaxSource!==null&&!a.oFeatures.bServerSide){K(a,true);a.fnServerData.call(a.oInstance,a.sAjaxSource,null,function(b){for(var c=0;c<b.aaData.length;c++)w(a,b.aaData[c]);a.iInitDisplayStart=a._iDisplayStart;if(a.oFeatures.bSort)O(a);else{a.aiDisplay=a.aiDisplayMaster.slice();F(a);D(a)}K(a,false);
39
+ typeof a.fnInitComplete=="function"&&a.fnInitComplete.call(a.oInstance,a,b)})}else{typeof a.fnInitComplete=="function"&&a.fnInitComplete.call(a.oInstance,a);a.oFeatures.bServerSide||K(a,false)}}}function u(a,b,c){n(a.oLanguage,b,"sProcessing");n(a.oLanguage,b,"sLengthMenu");n(a.oLanguage,b,"sEmptyTable");n(a.oLanguage,b,"sZeroRecords");n(a.oLanguage,b,"sInfo");n(a.oLanguage,b,"sInfoEmpty");n(a.oLanguage,b,"sInfoFiltered");n(a.oLanguage,b,"sInfoPostFix");n(a.oLanguage,b,"sSearch");if(typeof b.oPaginate!=
40
+ "undefined"){n(a.oLanguage.oPaginate,b.oPaginate,"sFirst");n(a.oLanguage.oPaginate,b.oPaginate,"sPrevious");n(a.oLanguage.oPaginate,b.oPaginate,"sNext");n(a.oLanguage.oPaginate,b.oPaginate,"sLast")}typeof b.sEmptyTable=="undefined"&&typeof b.sZeroRecords!="undefined"&&n(a.oLanguage,b,"sZeroRecords","sEmptyTable");c&&r(a)}function y(a,b){a.aoColumns[a.aoColumns.length++]={sType:null,_bAutoType:true,bVisible:true,bSearchable:true,bSortable:true,asSorting:["asc","desc"],sSortingClass:a.oClasses.sSortable,
41
+ sSortingClassJUI:a.oClasses.sSortJUI,sTitle:b?b.innerHTML:"",sName:"",sWidth:null,sWidthOrig:null,sClass:null,fnRender:null,bUseRendered:true,iDataSort:a.aoColumns.length-1,sSortDataType:"std",nTh:b?b:p.createElement("th"),nTf:null};b=a.aoColumns.length-1;if(typeof a.aoPreSearchCols[b]=="undefined"||a.aoPreSearchCols[b]===null)a.aoPreSearchCols[b]={sSearch:"",bRegex:false,bSmart:true};else{if(typeof a.aoPreSearchCols[b].bRegex=="undefined")a.aoPreSearchCols[b].bRegex=true;if(typeof a.aoPreSearchCols[b].bSmart==
42
+ "undefined")a.aoPreSearchCols[b].bSmart=true}C(a,b,null)}function C(a,b,c){b=a.aoColumns[b];if(typeof c!="undefined"&&c!==null){if(typeof c.sType!="undefined"){b.sType=c.sType;b._bAutoType=false}n(b,c,"bVisible");n(b,c,"bSearchable");n(b,c,"bSortable");n(b,c,"sTitle");n(b,c,"sName");n(b,c,"sWidth");n(b,c,"sWidth","sWidthOrig");n(b,c,"sClass");n(b,c,"fnRender");n(b,c,"bUseRendered");n(b,c,"iDataSort");n(b,c,"asSorting");n(b,c,"sSortDataType")}if(!a.oFeatures.bSort)b.bSortable=false;if(!b.bSortable||
43
+ j.inArray("asc",b.asSorting)==-1&&j.inArray("desc",b.asSorting)==-1){b.sSortingClass=a.oClasses.sSortableNone;b.sSortingClassJUI=""}else if(j.inArray("asc",b.asSorting)!=-1&&j.inArray("desc",b.asSorting)==-1){b.sSortingClass=a.oClasses.sSortableAsc;b.sSortingClassJUI=a.oClasses.sSortJUIAscAllowed}else if(j.inArray("asc",b.asSorting)==-1&&j.inArray("desc",b.asSorting)!=-1){b.sSortingClass=a.oClasses.sSortableDesc;b.sSortingClassJUI=a.oClasses.sSortJUIDescAllowed}}function w(a,b){if(b.length!=a.aoColumns.length&&
44
+ a.iDrawError!=a.iDraw){J(a,0,"Added data does not match known number of columns");a.iDrawError=a.iDraw;return-1}b=b.slice();var c=a.aoData.length;a.aoData.push({nTr:p.createElement("tr"),_iId:a.iNextId++,_aData:b,_anHidden:[],_sRowStripe:""});for(var d,f,e=0;e<b.length;e++){d=p.createElement("td");if(b[e]===null)b[e]="";if(typeof b[e]!="string")b[e]+="";b[e]=j.trim(b[e]);if(typeof a.aoColumns[e].fnRender=="function"){f=a.aoColumns[e].fnRender({iDataRow:c,iDataColumn:e,aData:b,oSettings:a});d.innerHTML=
45
+ f;if(a.aoColumns[e].bUseRendered)a.aoData[c]._aData[e]=f}else d.innerHTML=b[e];if(a.aoColumns[e].sClass!==null)d.className=a.aoColumns[e].sClass;if(a.aoColumns[e]._bAutoType&&a.aoColumns[e].sType!="string"){f=Z(a.aoData[c]._aData[e]);if(a.aoColumns[e].sType===null)a.aoColumns[e].sType=f;else if(a.aoColumns[e].sType!=f)a.aoColumns[e].sType="string"}if(a.aoColumns[e].bVisible)a.aoData[c].nTr.appendChild(d);else a.aoData[c]._anHidden[e]=d}a.aiDisplayMaster.push(c);return c}function x(a){var b,c,d,f,
46
+ e,i,h,k;if(a.sAjaxSource===null){h=a.nTBody.childNodes;b=0;for(c=h.length;b<c;b++)if(h[b].nodeName.toUpperCase()=="TR"){i=a.aoData.length;a.aoData.push({nTr:h[b],_iId:a.iNextId++,_aData:[],_anHidden:[],_sRowStripe:""});a.aiDisplayMaster.push(i);k=a.aoData[i]._aData;i=h[b].childNodes;d=e=0;for(f=i.length;d<f;d++)if(i[d].nodeName.toUpperCase()=="TD"){k[e]=j.trim(i[d].innerHTML);e++}}}h=S(a);i=[];b=0;for(c=h.length;b<c;b++){d=0;for(f=h[b].childNodes.length;d<f;d++){e=h[b].childNodes[d];e.nodeName.toUpperCase()==
47
+ "TD"&&i.push(e)}}i.length!=h.length*a.aoColumns.length&&J(a,1,"Unexpected number of TD elements. Expected "+h.length*a.aoColumns.length+" and got "+i.length+". DataTables does not support rowspan / colspan in the table body, and there must be one cell for each row/column combination.");h=0;for(d=a.aoColumns.length;h<d;h++){if(a.aoColumns[h].sTitle===null)a.aoColumns[h].sTitle=a.aoColumns[h].nTh.innerHTML;f=a.aoColumns[h]._bAutoType;e=typeof a.aoColumns[h].fnRender=="function";k=a.aoColumns[h].sClass!==
48
+ null;var o=a.aoColumns[h].bVisible,t,s;if(f||e||k||!o){b=0;for(c=a.aoData.length;b<c;b++){t=i[b*d+h];if(f)if(a.aoColumns[h].sType!="string"){s=Z(a.aoData[b]._aData[h]);if(a.aoColumns[h].sType===null)a.aoColumns[h].sType=s;else if(a.aoColumns[h].sType!=s)a.aoColumns[h].sType="string"}if(e){s=a.aoColumns[h].fnRender({iDataRow:b,iDataColumn:h,aData:a.aoData[b]._aData,oSettings:a});t.innerHTML=s;if(a.aoColumns[h].bUseRendered)a.aoData[b]._aData[h]=s}if(k)t.className+=" "+a.aoColumns[h].sClass;if(!o){a.aoData[b]._anHidden[h]=
49
+ t;t.parentNode.removeChild(t)}}}}}function z(a){var b,c,d,f=0;if(a.nTHead.getElementsByTagName("th").length!==0){b=0;for(d=a.aoColumns.length;b<d;b++){c=a.aoColumns[b].nTh;if(a.aoColumns[b].bVisible){if(a.aoColumns[b].sWidth!==null)c.style.width=a.aoColumns[b].sWidth;if(a.aoColumns[b].sTitle!=c.innerHTML)c.innerHTML=a.aoColumns[b].sTitle}else{c.parentNode.removeChild(c);f++}}}else{f=p.createElement("tr");b=0;for(d=a.aoColumns.length;b<d;b++){c=a.aoColumns[b].nTh;c.innerHTML=a.aoColumns[b].sTitle;
50
+ if(a.aoColumns[b].bVisible){if(a.aoColumns[b].sClass!==null)c.className=a.aoColumns[b].sClass;if(a.aoColumns[b].sWidth!==null)c.style.width=a.aoColumns[b].sWidth;f.appendChild(c)}}j(a.nTHead).html("")[0].appendChild(f)}if(a.bJUI){b=0;for(d=a.aoColumns.length;b<d;b++)a.aoColumns[b].nTh.insertBefore(p.createElement("span"),a.aoColumns[b].nTh.firstChild)}if(a.oFeatures.bSort){for(b=0;b<a.aoColumns.length;b++)a.aoColumns[b].bSortable!==false?$(a,a.aoColumns[b].nTh,b):j(a.aoColumns[b].nTh).addClass(a.oClasses.sSortableNone);
51
+ j("th",a.nTHead).mousedown(function(){this.onselectstart=function(){return false};return false})}if(a.nTFoot!==null){f=0;c=a.nTFoot.getElementsByTagName("th");b=0;for(d=c.length;b<d;b++)if(typeof a.aoColumns[b]!="undefined"){a.aoColumns[b].nTf=c[b-f];if(a.oClasses.sFooterTH!=="")a.aoColumns[b].nTf.className+=" "+a.oClasses.sFooterTH;if(!a.aoColumns[b].bVisible){c[b-f].parentNode.removeChild(c[b-f]);f++}}}}function D(a){var b,c,d=[],f=0,e=false;b=a.asStripClasses.length;c=a.aoOpenRows.length;if(typeof a.iInitDisplayStart!=
52
+ "undefined"&&a.iInitDisplayStart!=-1){a._iDisplayStart=a.oFeatures.bServerSide?a.iInitDisplayStart:a.iInitDisplayStart>=a.fnRecordsDisplay()?0:a.iInitDisplayStart;a.iInitDisplayStart=-1;F(a)}if(!(a.oFeatures.bServerSide&&!oa(a))){if(a.aiDisplay.length!==0){var i=a._iDisplayStart,h=a._iDisplayEnd;if(a.oFeatures.bServerSide){i=0;h=a.aoData.length}for(i=i;i<h;i++){var k=a.aoData[a.aiDisplay[i]],o=k.nTr;if(b!==0){var t=a.asStripClasses[f%b];if(k._sRowStripe!=t){j(o).removeClass(k._sRowStripe).addClass(t);
53
+ k._sRowStripe=t}}if(typeof a.fnRowCallback=="function"){o=a.fnRowCallback.call(a.oInstance,o,a.aoData[a.aiDisplay[i]]._aData,f,i);if(!o&&!e){J(a,0,"A node was not returned by fnRowCallback");e=true}}d.push(o);f++;if(c!==0)for(k=0;k<c;k++)o==a.aoOpenRows[k].nParent&&d.push(a.aoOpenRows[k].nTr)}}else{d[0]=p.createElement("tr");if(typeof a.asStripClasses[0]!="undefined")d[0].className=a.asStripClasses[0];e=p.createElement("td");e.setAttribute("valign","top");e.colSpan=T(a);e.className=a.oClasses.sRowEmpty;
54
+ e.innerHTML=typeof a.oLanguage.sEmptyTable!="undefined"&&a.fnRecordsTotal()===0?a.oLanguage.sEmptyTable:a.oLanguage.sZeroRecords.replace("_MAX_",a.fnFormatNumber(a.fnRecordsTotal()));d[f].appendChild(e)}typeof a.fnHeaderCallback=="function"&&a.fnHeaderCallback.call(a.oInstance,j(">tr",a.nTHead)[0],V(a),a._iDisplayStart,a.fnDisplayEnd(),a.aiDisplay);typeof a.fnFooterCallback=="function"&&a.fnFooterCallback.call(a.oInstance,j(">tr",a.nTFoot)[0],V(a),a._iDisplayStart,a.fnDisplayEnd(),a.aiDisplay);f=
55
+ p.createDocumentFragment();b=p.createDocumentFragment();if(a.nTBody){e=a.nTBody.parentNode;b.appendChild(a.nTBody);c=a.nTBody.childNodes;for(b=c.length-1;b>=0;b--)c[b].parentNode.removeChild(c[b]);b=0;for(c=d.length;b<c;b++)f.appendChild(d[b]);a.nTBody.appendChild(f);e!==null&&e.appendChild(a.nTBody)}if(typeof a._bInitComplete=="undefined"){a._bInitComplete=true;a.nTableWrapper!=a.nTable.parentNode&&j(a.nTableWrapper).width()>j(a.nTable.parentNode).width()&&U(a)}b=0;for(c=a.aoDrawCallback.length;b<
56
+ c;b++)a.aoDrawCallback[b].fn.call(a.oInstance,a);a.bSorted=false;a.bFiltered=false}}function L(a){if(a.oFeatures.bSort)O(a,a.oPreviousSearch);else if(a.oFeatures.bFilter)P(a,a.oPreviousSearch);else{F(a);D(a)}}function oa(a){if(a.bAjaxDataGet){K(a,true);var b=a.aoColumns.length,c=[],d;a.iDraw++;c.push({name:"sEcho",value:a.iDraw});c.push({name:"iColumns",value:b});c.push({name:"sColumns",value:aa(a)});c.push({name:"iDisplayStart",value:a._iDisplayStart});c.push({name:"iDisplayLength",value:a.oFeatures.bPaginate!==
57
+ false?a._iDisplayLength:-1});if(a.oFeatures.bFilter!==false){c.push({name:"sSearch",value:a.oPreviousSearch.sSearch});c.push({name:"bRegex",value:a.oPreviousSearch.bRegex});for(d=0;d<b;d++){c.push({name:"sSearch_"+d,value:a.aoPreSearchCols[d].sSearch});c.push({name:"bRegex_"+d,value:a.aoPreSearchCols[d].bRegex});c.push({name:"bSearchable_"+d,value:a.aoColumns[d].bSearchable})}}if(a.oFeatures.bSort!==false){var f=a.aaSortingFixed!==null?a.aaSortingFixed.length:0,e=a.aaSorting.length;c.push({name:"iSortingCols",
58
+ value:f+e});for(d=0;d<f;d++){c.push({name:"iSortCol_"+d,value:a.aaSortingFixed[d][0]});c.push({name:"sSortDir_"+d,value:a.aaSortingFixed[d][1]})}for(d=0;d<e;d++){c.push({name:"iSortCol_"+(d+f),value:a.aaSorting[d][0]});c.push({name:"sSortDir_"+(d+f),value:a.aaSorting[d][1]})}for(d=0;d<b;d++)c.push({name:"bSortable_"+d,value:a.aoColumns[d].bSortable})}a.fnServerData.call(a.oInstance,a.sAjaxSource,c,function(i){pa(a,i)});return false}else return true}function pa(a,b){if(typeof b.sEcho!="undefined")if(b.sEcho*
59
+ 1<a.iDraw)return;else a.iDraw=b.sEcho*1;ba(a);a._iRecordsTotal=b.iTotalRecords;a._iRecordsDisplay=b.iTotalDisplayRecords;var c=aa(a);if(c=typeof b.sColumns!="undefined"&&c!==""&&b.sColumns!=c)var d=qa(a,b.sColumns);for(var f=0,e=b.aaData.length;f<e;f++)if(c){for(var i=[],h=0,k=a.aoColumns.length;h<k;h++)i.push(b.aaData[f][d[h]]);w(a,i)}else w(a,b.aaData[f]);a.aiDisplay=a.aiDisplayMaster.slice();a.bAjaxDataGet=false;D(a);a.bAjaxDataGet=true;K(a,false)}function na(a){var b=p.createElement("div");a.nTable.parentNode.insertBefore(b,
60
+ a.nTable);a.nTableWrapper=p.createElement("div");a.nTableWrapper.className=a.oClasses.sWrapper;a.sTableId!==""&&a.nTableWrapper.setAttribute("id",a.sTableId+"_wrapper");for(var c=a.nTableWrapper,d=a.sDom.split(""),f,e,i,h,k,o,t,s=0;s<d.length;s++){e=0;i=d[s];if(i=="<"){h=p.createElement("div");k=d[s+1];if(k=="'"||k=='"'){o="";for(t=2;d[s+t]!=k;){o+=d[s+t];t++}if(o=="H")o="fg-toolbar ui-widget-header ui-corner-tl ui-corner-tr ui-helper-clearfix";else if(o=="F")o="fg-toolbar ui-widget-header ui-corner-bl ui-corner-br ui-helper-clearfix";
61
+ h.className=o;s+=t}c.appendChild(h);c=h}else if(i==">")c=c.parentNode;else if(i=="l"&&a.oFeatures.bPaginate&&a.oFeatures.bLengthChange){f=ra(a);e=1}else if(i=="f"&&a.oFeatures.bFilter){f=sa(a);e=1}else if(i=="r"&&a.oFeatures.bProcessing){f=ta(a);e=1}else if(i=="t"){f=ua(a);e=1}else if(i=="i"&&a.oFeatures.bInfo){f=va(a);e=1}else if(i=="p"&&a.oFeatures.bPaginate){f=wa(a);e=1}else if(m.aoFeatures.length!==0){h=m.aoFeatures;k=0;for(o=h.length;k<o;k++)if(i==h[k].cFeature){if(f=h[k].fnInit(a))e=1;break}}if(e==
62
+ 1){if(typeof a.aanFeatures[i]!="object")a.aanFeatures[i]=[];a.aanFeatures[i].push(f);c.appendChild(f)}}b.parentNode.replaceChild(a.nTableWrapper,b)}function ua(a){if(a.oScroll.sX===""&&a.oScroll.sY==="")return a.nTable;var b=p.createElement("div"),c=p.createElement("div"),d=p.createElement("div"),f=p.createElement("div"),e=p.createElement("div"),i=p.createElement("div"),h=a.nTable.cloneNode(false),k=a.nTable.cloneNode(false),o=a.nTable.getElementsByTagName("thead")[0],t=a.nTable.getElementsByTagName("tfoot").length===
63
+ 0?null:a.nTable.getElementsByTagName("tfoot")[0],s=typeof g.bJQueryUI!="undefined"&&g.bJQueryUI?m.oJUIClasses:m.oStdClasses;c.appendChild(d);e.appendChild(i);f.appendChild(a.nTable);b.appendChild(c);b.appendChild(f);d.appendChild(h);h.appendChild(o);if(t!==null){b.appendChild(e);i.appendChild(k);k.appendChild(t)}b.className=s.sScrollWrapper;c.className=s.sScrollHead;d.className=s.sScrollHeadInner;f.className=s.sScrollBody;e.className=s.sScrollFoot;i.className=s.sScrollFootInner;c.style.overflow="hidden";
64
+ e.style.overflow="hidden";f.style.overflow="auto";c.style.border="0";e.style.border="0";d.style.width="150%";h.removeAttribute("id");h.style.marginLeft="0";a.nTable.style.marginLeft="0";if(t!==null){k.removeAttribute("id");k.style.marginLeft="0"}d=j(">caption",a.nTable);i=0;for(k=d.length;i<k;i++)h.appendChild(d[i]);if(a.oScroll.sX!==""){c.style.width=v(a.oScroll.sX);f.style.width=v(a.oScroll.sX);if(t!==null)e.style.width=v(a.oScroll.sX);j(f).scroll(function(){c.scrollLeft=this.scrollLeft;if(t!==
65
+ null)e.scrollLeft=this.scrollLeft})}if(a.oScroll.sY!=="")f.style.height=v(a.oScroll.sY);a.aoDrawCallback.push({fn:xa,sName:"scrolling"});a.nScrollHead=c;a.nScrollFoot=e;return b}function xa(a){var b=a.nScrollHead.getElementsByTagName("div")[0],c=b.getElementsByTagName("table")[0],d=a.nTable.parentNode,f,e,i,h,k,o,t,s,H=[];i=a.nTable.getElementsByTagName("thead");i.length>0&&a.nTable.removeChild(i[0]);if(a.nTFoot!==null){k=a.nTable.getElementsByTagName("tfoot");k.length>0&&a.nTable.removeChild(k[0])}i=
66
+ a.nTHead.cloneNode(true);a.nTable.insertBefore(i,a.nTable.childNodes[0]);if(a.nTFoot!==null){k=a.nTFoot.cloneNode(true);a.nTable.insertBefore(k,a.nTable.childNodes[1])}var I=ca(i);f=0;for(e=I.length;f<e;f++){t=da(a,f);I[f].style.width=a.aoColumns[t].sWidth}a.nTFoot!==null&&M(function(A){A.style.width=""},k.getElementsByTagName("tr"));f=j(a.nTable).outerWidth();if(a.oScroll.sX===""){a.nTable.style.width="100%";if(j.browser.msie&&j.browser.version<=7)a.nTable.style.width=v(j(a.nTable).outerWidth()-
67
+ a.oScroll.iBarWidth)}else if(a.oScroll.sXInner!=="")a.nTable.style.width=v(a.oScroll.sXInner);else if(f==j(d).width()&&j(d).height()<j(a.nTable).height()){a.nTable.style.width=v(f-a.oScroll.iBarWidth);if(j(a.nTable).outerWidth()>f-a.oScroll.iBarWidth)a.nTable.style.width=v(f)}else a.nTable.style.width=v(f);f=j(a.nTable).outerWidth();e=a.nTHead.getElementsByTagName("tr");i=i.getElementsByTagName("tr");M(function(A,G){o=A.style;o.paddingTop="0";o.paddingBottom="0";o.borderTopWidth="0";o.borderBottomWidth=
68
+ "0";o.height=0;s=j(A).width();G.style.width=v(s);H.push(s)},i,e);if(a.nTFoot!==null){h=k.getElementsByTagName("tr");k=a.nTFoot.getElementsByTagName("tr");M(function(A,G){o=A.style;o.paddingTop="0";o.paddingBottom="0";o.borderTopWidth="0";o.borderBottomWidth="0";s=j(A).width();G.style.width=v(s);H.push(s)},h,k)}M(function(A){A.innerHTML="";A.style.width=v(H.shift())},i);a.nTFoot!==null&&M(function(A){A.innerHTML="";A.style.width=v(H.shift())},h);if(j(a.nTable).outerWidth()<f)if(a.oScroll.sX==="")J(a,
69
+ 1,"The table cannot fit into the current element which will cause column misalignment. It is suggested that you enable x-scrolling or increase the width the table has in which to be drawn");else a.oScroll.sXInner!==""&&J(a,1,"The table cannot fit into the current element which will cause column misalignment. It is suggested that you increase the sScrollXInner property to allow it to draw in a larger area, or simply remove that parameter to allow automatic calculation");if(a.oScroll.sY==="")if(j.browser.msie&&
70
+ j.browser.version<=7)d.style.height=v(a.nTable.offsetHeight+a.oScroll.iBarWidth);if(a.oScroll.sY!==""&&a.oScroll.bCollapse){d.style.height=v(a.oScroll.sY);h=a.oScroll.sX!==""&&a.nTable.offsetWidth>d.offsetWidth?a.oScroll.iBarWidth:0;if(a.nTable.offsetHeight<d.offsetHeight)d.style.height=v(j(a.nTable).height()+h)}c.style.width=v(j(a.nTable).outerWidth());b.style.width=v(j(a.nTable).outerWidth()+a.oScroll.iBarWidth);if(a.nTFoot!==null){b=a.nScrollFoot.getElementsByTagName("div")[0];c=b.getElementsByTagName("table")[0];
71
+ b.style.width=v(a.nTable.offsetWidth+a.oScroll.iBarWidth);c.style.width=v(a.nTable.offsetWidth)}}function U(a){if(a.oFeatures.bAutoWidth===false)return false;ea(a);for(var b=0,c=a.aoColumns.length;b<c;b++)a.aoColumns[b].nTh.style.width=a.aoColumns[b].sWidth}function sa(a){var b=p.createElement("div");a.sTableId!==""&&typeof a.aanFeatures.f=="undefined"&&b.setAttribute("id",a.sTableId+"_filter");b.className=a.oClasses.sFilter;b.innerHTML=a.oLanguage.sSearch+(a.oLanguage.sSearch===""?"":" ")+'<input type="text" />';
72
+ var c=j("input",b);c.val(a.oPreviousSearch.sSearch.replace('"',"&quot;"));c.keyup(function(){for(var d=a.aanFeatures.f,f=0,e=d.length;f<e;f++)d[f]!=this.parentNode&&j("input",d[f]).val(this.value);P(a,{sSearch:this.value,bRegex:a.oPreviousSearch.bRegex,bSmart:a.oPreviousSearch.bSmart})});c.keypress(function(d){if(d.keyCode==13)return false});return b}function P(a,b,c){ya(a,b.sSearch,c,b.bRegex,b.bSmart);for(b=0;b<a.aoPreSearchCols.length;b++)za(a,a.aoPreSearchCols[b].sSearch,b,a.aoPreSearchCols[b].bRegex,
73
+ a.aoPreSearchCols[b].bSmart);m.afnFiltering.length!==0&&Aa(a);a.bFiltered=true;a._iDisplayStart=0;F(a);D(a);Q(a,0)}function Aa(a){for(var b=m.afnFiltering,c=0,d=b.length;c<d;c++)for(var f=0,e=0,i=a.aiDisplay.length;e<i;e++){var h=a.aiDisplay[e-f];if(!b[c](a,a.aoData[h]._aData,h)){a.aiDisplay.splice(e-f,1);f++}}}function za(a,b,c,d,f){if(b!==""){var e=0;b=fa(b,d,f);for(d=a.aiDisplay.length-1;d>=0;d--){f=ga(a.aoData[a.aiDisplay[d]]._aData[c],a.aoColumns[c].sType);if(!b.test(f)){a.aiDisplay.splice(d,
74
+ 1);e++}}}}function ya(a,b,c,d,f){var e=fa(b,d,f);if(typeof c=="undefined"||c===null)c=0;if(m.afnFiltering.length!==0)c=1;if(b.length<=0){a.aiDisplay.splice(0,a.aiDisplay.length);a.aiDisplay=a.aiDisplayMaster.slice()}else if(a.aiDisplay.length==a.aiDisplayMaster.length||a.oPreviousSearch.sSearch.length>b.length||c==1||b.indexOf(a.oPreviousSearch.sSearch)!==0){a.aiDisplay.splice(0,a.aiDisplay.length);Q(a,1);for(c=0;c<a.aiDisplayMaster.length;c++)e.test(a.asDataSearch[c])&&a.aiDisplay.push(a.aiDisplayMaster[c])}else{var i=
75
+ 0;for(c=0;c<a.asDataSearch.length;c++)if(!e.test(a.asDataSearch[c])){a.aiDisplay.splice(c-i,1);i++}}a.oPreviousSearch.sSearch=b;a.oPreviousSearch.bRegex=d;a.oPreviousSearch.bSmart=f}function Q(a,b){a.asDataSearch.splice(0,a.asDataSearch.length);var c=p.createElement("div");b=typeof b!="undefined"&&b==1?a.aiDisplayMaster:a.aiDisplay;for(var d=0,f=b.length;d<f;d++){a.asDataSearch[d]="";for(var e=0,i=a.aoColumns.length;e<i;e++)if(a.aoColumns[e].bSearchable)a.asDataSearch[d]+=ga(a.aoData[b[d]]._aData[e],
76
+ a.aoColumns[e].sType)+" ";if(a.asDataSearch[d].indexOf("&")!==-1){c.innerHTML=a.asDataSearch[d];a.asDataSearch[d]=c.textContent?c.textContent:c.innerText}}}function fa(a,b,c){if(c){a=b?a.split(" "):ha(a).split(" ");a="^(?=.*?"+a.join(")(?=.*?")+").*$";return new RegExp(a,"i")}else{a=b?a:ha(a);return new RegExp(a,"i")}}function ga(a,b){if(typeof m.ofnSearch[b]=="function")return m.ofnSearch[b](a);else if(b=="html")return a.replace(/\n/g," ").replace(/<.*?>/g,"");else if(typeof a=="string")return a.replace(/\n/g,
77
+ " ");return a}function O(a,b){var c=[],d=m.oSort,f=a.aoData,e,i,h,k;if(!a.oFeatures.bServerSide&&(a.aaSorting.length!==0||a.aaSortingFixed!==null)){c=a.aaSortingFixed!==null?a.aaSortingFixed.concat(a.aaSorting):a.aaSorting.slice();for(h=0;h<c.length;h++){e=c[h][0];i=N(a,e);k=a.aoColumns[e].sSortDataType;if(typeof m.afnSortData[k]!="undefined"){var o=m.afnSortData[k](a,e,i);i=0;for(k=f.length;i<k;i++)f[i]._aData[e]=o[i]}}if(Y.runtime){var t=[],s=c.length;for(h=0;h<s;h++){e=a.aoColumns[c[h][0]].iDataSort;
78
+ t.push([e,a.aoColumns[e].sType+"-"+c[h][1]])}a.aiDisplayMaster.sort(function(H,I){for(var A,G=0;G<s;G++){A=d[t[G][1]](f[H]._aData[t[G][0]],f[I]._aData[t[G][0]]);if(A!==0)return A}return 0})}else{this.ClosureDataTables={fn:function(){},data:f,sort:m.oSort};k="this.ClosureDataTables.fn = function(a,b){var iTest, oSort=this.ClosureDataTables.sort, aoData=this.ClosureDataTables.data;";for(h=0;h<c.length-1;h++){e=a.aoColumns[c[h][0]].iDataSort;i=a.aoColumns[e].sType;k+="iTest = oSort['"+i+"-"+c[h][1]+
79
+ "']( aoData[a]._aData["+e+"], aoData[b]._aData["+e+"] ); if ( iTest === 0 )"}if(c.length>0){e=a.aoColumns[c[c.length-1][0]].iDataSort;i=a.aoColumns[e].sType;k+="iTest = oSort['"+i+"-"+c[c.length-1][1]+"']( aoData[a]._aData["+e+"], aoData[b]._aData["+e+"] );if (iTest===0) return oSort['numeric-"+c[c.length-1][1]+"'](a, b); return iTest;}";eval(k);a.aiDisplayMaster.sort(this.ClosureDataTables.fn)}this.ClosureDataTables=undefined}}if(typeof b=="undefined"||b)W(a);a.bSorted=true;if(a.oFeatures.bFilter)P(a,
80
+ a.oPreviousSearch,1);else{a.aiDisplay=a.aiDisplayMaster.slice();a._iDisplayStart=0;F(a);D(a)}}function $(a,b,c,d){j(b).click(function(f){if(a.aoColumns[c].bSortable!==false){var e=function(){var i,h;if(f.shiftKey){for(var k=false,o=0;o<a.aaSorting.length;o++)if(a.aaSorting[o][0]==c){k=true;i=a.aaSorting[o][0];h=a.aaSorting[o][2]+1;if(typeof a.aoColumns[i].asSorting[h]=="undefined")a.aaSorting.splice(o,1);else{a.aaSorting[o][1]=a.aoColumns[i].asSorting[h];a.aaSorting[o][2]=h}break}k===false&&a.aaSorting.push([c,
81
+ a.aoColumns[c].asSorting[0],0])}else if(a.aaSorting.length==1&&a.aaSorting[0][0]==c){i=a.aaSorting[0][0];h=a.aaSorting[0][2]+1;if(typeof a.aoColumns[i].asSorting[h]=="undefined")h=0;a.aaSorting[0][1]=a.aoColumns[i].asSorting[h];a.aaSorting[0][2]=h}else{a.aaSorting.splice(0,a.aaSorting.length);a.aaSorting.push([c,a.aoColumns[c].asSorting[0],0])}O(a)};if(a.oFeatures.bProcessing){K(a,true);setTimeout(function(){e();a.oFeatures.bServerSide||K(a,false)},0)}else e();typeof d=="function"&&d(a)}})}function W(a){var b,
82
+ c,d,f,e,i=a.aoColumns.length,h=a.oClasses;for(b=0;b<i;b++)a.aoColumns[b].bSortable&&j(a.aoColumns[b].nTh).removeClass(h.sSortAsc+" "+h.sSortDesc+" "+a.aoColumns[b].sSortingClass);f=a.aaSortingFixed!==null?a.aaSortingFixed.concat(a.aaSorting):a.aaSorting.slice();for(b=0;b<a.aoColumns.length;b++)if(a.aoColumns[b].bSortable){e=a.aoColumns[b].sSortingClass;d=-1;for(c=0;c<f.length;c++)if(f[c][0]==b){e=f[c][1]=="asc"?h.sSortAsc:h.sSortDesc;d=c;break}j(a.aoColumns[b].nTh).addClass(e);if(a.bJUI){c=j("span",
83
+ a.aoColumns[b].nTh);c.removeClass(h.sSortJUIAsc+" "+h.sSortJUIDesc+" "+h.sSortJUI+" "+h.sSortJUIAscAllowed+" "+h.sSortJUIDescAllowed);c.addClass(d==-1?a.aoColumns[b].sSortingClassJUI:f[d][1]=="asc"?h.sSortJUIAsc:h.sSortJUIDesc)}}else j(a.aoColumns[b].nTh).addClass(a.aoColumns[b].sSortingClass);e=h.sSortColumn;if(a.oFeatures.bSort&&a.oFeatures.bSortClasses){d=X(a);if(d.length>=i)for(b=0;b<i;b++)if(d[b].className.indexOf(e+"1")!=-1){c=0;for(a=d.length/i;c<a;c++)d[i*c+b].className=d[i*c+b].className.replace(" "+
84
+ e+"1","")}else if(d[b].className.indexOf(e+"2")!=-1){c=0;for(a=d.length/i;c<a;c++)d[i*c+b].className=d[i*c+b].className.replace(" "+e+"2","")}else if(d[b].className.indexOf(e+"3")!=-1){c=0;for(a=d.length/i;c<a;c++)d[i*c+b].className=d[i*c+b].className.replace(" "+e+"3","")}h=1;var k;for(b=0;b<f.length;b++){k=parseInt(f[b][0],10);c=0;for(a=d.length/i;c<a;c++)d[i*c+k].className+=" "+e+h;h<3&&h++}}}function wa(a){var b=p.createElement("div");b.className=a.oClasses.sPaging+a.sPaginationType;m.oPagination[a.sPaginationType].fnInit(a,
85
+ b,function(c){F(c);D(c)});typeof a.aanFeatures.p=="undefined"&&a.aoDrawCallback.push({fn:function(c){m.oPagination[c.sPaginationType].fnUpdate(c,function(d){F(d);D(d)})},sName:"pagination"});return b}function Ba(a,b){var c=a._iDisplayStart;if(b=="first")a._iDisplayStart=0;else if(b=="previous"){a._iDisplayStart=a._iDisplayLength>=0?a._iDisplayStart-a._iDisplayLength:0;if(a._iDisplayStart<0)a._iDisplayStart=0}else if(b=="next")if(a._iDisplayLength>=0){if(a._iDisplayStart+a._iDisplayLength<a.fnRecordsDisplay())a._iDisplayStart+=
86
+ a._iDisplayLength}else a._iDisplayStart=0;else if(b=="last")if(a._iDisplayLength>=0){b=parseInt((a.fnRecordsDisplay()-1)/a._iDisplayLength,10)+1;a._iDisplayStart=(b-1)*a._iDisplayLength}else a._iDisplayStart=0;else J(a,0,"Unknown paging action: "+b);return c!=a._iDisplayStart}function va(a){var b=p.createElement("div");b.className=a.oClasses.sInfo;if(typeof a.aanFeatures.i=="undefined"){a.aoDrawCallback.push({fn:Ca,sName:"information"});a.sTableId!==""&&b.setAttribute("id",a.sTableId+"_info")}return b}
87
+ function Ca(a){if(!(!a.oFeatures.bInfo||a.aanFeatures.i.length===0)){var b=j(a.aanFeatures.i[0]),c=a.fnFormatNumber(a.fnRecordsTotal()),d=a.fnFormatNumber(a._iDisplayStart+1),f=a.fnFormatNumber(a.fnDisplayEnd()),e=a.fnFormatNumber(a.fnRecordsDisplay());if(a.fnRecordsDisplay()===0&&a.fnRecordsDisplay()==a.fnRecordsTotal())b.html(a.oLanguage.sInfoEmpty+a.oLanguage.sInfoPostFix);else if(a.fnRecordsDisplay()===0)b.html(a.oLanguage.sInfoEmpty+" "+a.oLanguage.sInfoFiltered.replace("_MAX_",c)+a.oLanguage.sInfoPostFix);
88
+ else a.fnRecordsDisplay()==a.fnRecordsTotal()?b.html(a.oLanguage.sInfo.replace("_START_",d).replace("_END_",f).replace("_TOTAL_",e)+a.oLanguage.sInfoPostFix):b.html(a.oLanguage.sInfo.replace("_START_",d).replace("_END_",f).replace("_TOTAL_",e)+" "+a.oLanguage.sInfoFiltered.replace("_MAX_",a.fnFormatNumber(a.fnRecordsTotal()))+a.oLanguage.sInfoPostFix);a=a.aanFeatures.i;if(a.length>1){b=b.html();c=1;for(d=a.length;c<d;c++)j(a[c]).html(b)}}}function ra(a){var b='<select size="1" '+(a.sTableId===""?
89
+ "":'name="'+a.sTableId+'_length"')+">",c,d;if(a.aLengthMenu.length==2&&typeof a.aLengthMenu[0]=="object"&&typeof a.aLengthMenu[1]=="object"){c=0;for(d=a.aLengthMenu[0].length;c<d;c++)b+='<option value="'+a.aLengthMenu[0][c]+'">'+a.aLengthMenu[1][c]+"</option>"}else{c=0;for(d=a.aLengthMenu.length;c<d;c++)b+='<option value="'+a.aLengthMenu[c]+'">'+a.aLengthMenu[c]+"</option>"}b+="</select>";var f=p.createElement("div");a.sTableId!==""&&typeof a.aanFeatures.l=="undefined"&&f.setAttribute("id",a.sTableId+
90
+ "_length");f.className=a.oClasses.sLength;f.innerHTML=a.oLanguage.sLengthMenu.replace("_MENU_",b);j('select option[value="'+a._iDisplayLength+'"]',f).attr("selected",true);j("select",f).change(function(){var e=j(this).val(),i=a.aanFeatures.l;c=0;for(d=i.length;c<d;c++)i[c]!=this.parentNode&&j("select",i[c]).val(e);a._iDisplayLength=parseInt(e,10);F(a);if(a.fnDisplayEnd()==a.fnRecordsDisplay()){a._iDisplayStart=a.fnDisplayEnd()-a._iDisplayLength;if(a._iDisplayStart<0)a._iDisplayStart=0}if(a._iDisplayLength==
91
+ -1)a._iDisplayStart=0;D(a)});return f}function ta(a){var b=p.createElement("div");a.sTableId!==""&&typeof a.aanFeatures.r=="undefined"&&b.setAttribute("id",a.sTableId+"_processing");b.innerHTML=a.oLanguage.sProcessing;b.className=a.oClasses.sProcessing;a.nTable.parentNode.insertBefore(b,a.nTable);return b}function K(a,b){if(a.oFeatures.bProcessing){a=a.aanFeatures.r;for(var c=0,d=a.length;c<d;c++)a[c].style.visibility=b?"visible":"hidden"}}function da(a,b){for(var c=-1,d=0;d<a.aoColumns.length;d++){a.aoColumns[d].bVisible===
92
+ true&&c++;if(c==b)return d}return null}function N(a,b){for(var c=-1,d=0;d<a.aoColumns.length;d++){a.aoColumns[d].bVisible===true&&c++;if(d==b)return a.aoColumns[d].bVisible===true?c:null}return null}function R(a,b){var c,d;c=a._iDisplayStart;for(d=a._iDisplayEnd;c<d;c++)if(a.aoData[a.aiDisplay[c]].nTr==b)return a.aiDisplay[c];c=0;for(d=a.aoData.length;c<d;c++)if(a.aoData[c].nTr==b)return c;return null}function T(a){for(var b=0,c=0;c<a.aoColumns.length;c++)a.aoColumns[c].bVisible===true&&b++;return b}
93
+ function F(a){a._iDisplayEnd=a.oFeatures.bPaginate===false?a.aiDisplay.length:a._iDisplayStart+a._iDisplayLength>a.aiDisplay.length||a._iDisplayLength==-1?a.aiDisplay.length:a._iDisplayStart+a._iDisplayLength}function Da(a,b){if(!a||a===null||a==="")return 0;if(typeof b=="undefined")b=p.getElementsByTagName("body")[0];var c=p.createElement("div");c.style.width=a;b.appendChild(c);a=c.offsetWidth;b.removeChild(c);return a}function ea(a){var b=0,c,d=0,f=a.aoColumns.length,e,i=j("th",a.nTHead);for(e=
94
+ 0;e<f;e++)if(a.aoColumns[e].bVisible){d++;if(a.aoColumns[e].sWidth!==null){c=Da(a.aoColumns[e].sWidthOrig,a.nTable.parentNode);if(c!==null)a.aoColumns[e].sWidth=v(c);b++}}if(f==i.length&&b===0&&d==f){ia(a,a.nTable);for(e=0;e<a.aoColumns.length;e++){c=j(i[e]).width();if(c!==null)a.aoColumns[e].sWidth=v(c)}}else{b=a.nTable.cloneNode(false);e=p.createElement("tbody");c=p.createElement("tr");b.removeAttribute("id");b.appendChild(a.nTHead.cloneNode(true));if(a.nTFoot!==null){b.appendChild(a.nTFoot.cloneNode(true));
95
+ M(function(h){h.style.width=""},b.getElementsByTagName("tr"))}b.appendChild(e);e.appendChild(c);e=j("thead th",b);if(e.length===0)e=j("tbody tr:eq(0)>td",b);e.each(function(h){this.style.width="";h=da(a,h);if(h!==null&&a.aoColumns[h].sWidthOrig!=="")this.style.width=a.aoColumns[h].sWidthOrig});for(e=0;e<f;e++)if(a.aoColumns[e].bVisible){d=Ea(a,e);if(d!==null){d=d.cloneNode(true);c.appendChild(d)}}e=a.nTable.parentNode;e.appendChild(b);if(a.oScroll.sX!==""&&a.oScroll.sXInner!=="")b.style.width=v(a.oScroll.sXInner);
96
+ else if(a.oScroll.sX!==""){b.style.width="";if(j(b).width()<e.offsetWidth)b.style.width=v(e.offsetWidth)}else b.style.width=v(e.offsetWidth);b.style.visibility="hidden";ia(a,b);f=j("tbody tr:eq(0)>td",b);if(f.length===0)f=j("thead tr:eq(0)>th",b);for(e=c=0;e<a.aoColumns.length;e++)if(a.aoColumns[e].bVisible){d=j(f[c]).width();if(d!==null&&d>0)a.aoColumns[e].sWidth=v(d);c++}a.nTable.style.width=v(j(b).outerWidth());b.parentNode.removeChild(b)}}function ia(a,b){if(a.oScroll.sX===""&&a.oScroll.sY!==
97
+ ""){j(b).width();b.style.width=v(j(b).outerWidth()-a.oScroll.iBarWidth)}else if(a.oScroll.sX!=="")b.style.width=v(j(b).outerWidth())}function Ea(a,b,c){if(typeof c=="undefined"||c){c=Fa(a,b);b=N(a,b);if(c<0)return null;return a.aoData[c].nTr.getElementsByTagName("td")[b]}var d=-1,f,e;c=-1;var i=p.createElement("div");i.style.visibility="hidden";i.style.position="absolute";p.body.appendChild(i);f=0;for(e=a.aoData.length;f<e;f++){i.innerHTML=a.aoData[f]._aData[b];if(i.offsetWidth>d){d=i.offsetWidth;
98
+ c=f}}p.body.removeChild(i);if(c>=0){b=N(a,b);if(a=a.aoData[c].nTr.getElementsByTagName("td")[b])return a}return null}function Fa(a,b){for(var c=0,d=-1,f=0;f<a.aoData.length;f++){var e=a.aoData[f]._aData[b];if(e.length>c){c=e.length;d=f}}return d}function v(a){if(a===null)return"0px";if(typeof a=="number")return a+"px";if(a.indexOf("em")!=-1||a.indexOf("%")!=-1||a.indexOf("ex")!=-1||a.indexOf("px")!=-1)return a;return a+"px"}function La(a,b){if(a.length!=b.length)return 1;for(var c=0;c<a.length;c++)if(a[c]!=
99
+ b[c])return 2;return 0}function Z(a){for(var b=m.aTypes,c=b.length,d=0;d<c;d++){var f=b[d](a);if(f!==null)return f}return"string"}function B(a){for(var b=0;b<E.length;b++)if(E[b].nTable==a)return E[b];return null}function V(a){for(var b=[],c=a.aoData.length,d=0;d<c;d++)b.push(a.aoData[d]._aData);return b}function S(a){for(var b=[],c=a.aoData.length,d=0;d<c;d++)b.push(a.aoData[d].nTr);return b}function X(a){var b=S(a),c=[],d,f=[],e,i,h,k;e=0;for(i=b.length;e<i;e++){c=[];h=0;for(k=b[e].childNodes.length;h<
100
+ k;h++){d=b[e].childNodes[h];d.nodeName.toUpperCase()=="TD"&&c.push(d)}h=d=0;for(k=a.aoColumns.length;h<k;h++)if(a.aoColumns[h].bVisible)f.push(c[h-d]);else{f.push(a.aoData[e]._anHidden[h]);d++}}return f}function ha(a){return a.replace(new RegExp("(\\/|\\.|\\*|\\+|\\?|\\||\\(|\\)|\\[|\\]|\\{|\\}|\\\\|\\$|\\^)","g"),"\\$1")}function ja(a,b){for(var c=-1,d=0,f=a.length;d<f;d++)if(a[d]==b)c=d;else a[d]>b&&a[d]--;c!=-1&&a.splice(c,1)}function qa(a,b){b=b.split(",");for(var c=[],d=0,f=a.aoColumns.length;d<
101
+ f;d++)for(var e=0;e<f;e++)if(a.aoColumns[d].sName==b[e]){c.push(e);break}return c}function aa(a){for(var b="",c=0,d=a.aoColumns.length;c<d;c++)b+=a.aoColumns[c].sName+",";if(b.length==d)return"";return b.slice(0,-1)}function J(a,b,c){a=a.sTableId===""?"DataTables warning: "+c:"DataTables warning (table id = '"+a.sTableId+"'): "+c;if(b===0)if(m.sErrMode=="alert")alert(a);else throw a;else typeof console!="undefined"&&typeof console.log!="undefined"&&console.log(a)}function ba(a){a.aoData.length=0;
102
+ a.aiDisplayMaster.length=0;a.aiDisplay.length=0;F(a)}function Ga(a){if(a.oFeatures.bStateSave){var b,c="{";c+='"iCreate": '+(new Date).getTime()+",";c+='"iStart": '+a._iDisplayStart+",";c+='"iEnd": '+a._iDisplayEnd+",";c+='"iLength": '+a._iDisplayLength+",";c+='"sFilter": "'+a.oPreviousSearch.sSearch.replace('"','\\"')+'",';c+='"sFilterEsc": '+!a.oPreviousSearch.bRegex+",";c+='"aaSorting": [ ';for(b=0;b<a.aaSorting.length;b++)c+="["+a.aaSorting[b][0]+",'"+a.aaSorting[b][1]+"'],";c=c.substring(0,c.length-
103
+ 1);c+="],";c+='"aaSearchCols": [ ';for(b=0;b<a.aoPreSearchCols.length;b++)c+="['"+a.aoPreSearchCols[b].sSearch.replace("'","'")+"',"+!a.aoPreSearchCols[b].bRegex+"],";c=c.substring(0,c.length-1);c+="],";c+='"abVisCols": [ ';for(b=0;b<a.aoColumns.length;b++)c+=a.aoColumns[b].bVisible+",";c=c.substring(0,c.length-1);c+="]";c+="}";Ha(a.sCookiePrefix+a.sInstance,c,a.iCookieDuration,a.sCookiePrefix)}}function Ia(a,b){if(a.oFeatures.bStateSave){var c,d=ka(a.sCookiePrefix+a.sInstance);if(d!==null&&d!==""){try{c=
104
+ typeof JSON=="object"&&typeof JSON.parse=="function"?JSON.parse(d.replace(/'/g,'"')):eval("("+d+")")}catch(f){return}a._iDisplayStart=c.iStart;a.iInitDisplayStart=c.iStart;a._iDisplayEnd=c.iEnd;a._iDisplayLength=c.iLength;a.oPreviousSearch.sSearch=c.sFilter;a.aaSorting=c.aaSorting.slice();a.saved_aaSorting=c.aaSorting.slice();if(typeof c.sFilterEsc!="undefined")a.oPreviousSearch.bRegex=!c.sFilterEsc;if(typeof c.aaSearchCols!="undefined")for(d=0;d<c.aaSearchCols.length;d++)a.aoPreSearchCols[d]={sSearch:c.aaSearchCols[d][0],
105
+ bRegex:!c.aaSearchCols[d][1]};if(typeof c.abVisCols!="undefined"){b.saved_aoColumns=[];for(d=0;d<c.abVisCols.length;d++){b.saved_aoColumns[d]={};b.saved_aoColumns[d].bVisible=c.abVisCols[d]}}}}}function Ha(a,b,c,d){var f=new Date;f.setTime(f.getTime()+c*1E3);c=Y.location.pathname.split("/");var e=a+"_"+c.pop().replace(/[\/:]/g,"").toLowerCase();b=e+"="+encodeURIComponent(b)+"; expires="+f.toGMTString()+"; path="+c.join("/")+"/";f="";a=9999999999999;var i;if((ka(e)!==null?p.cookie.length:b.length+
106
+ p.cookie.length)+10>4096){e=p.cookie.split(";");for(var h=0,k=e.length;h<k;h++)if(e[h].indexOf(d)!=-1){var o=e[h].split("=");try{i=eval("("+decodeURIComponent(o[1])+")")}catch(t){continue}if(typeof i.iCreate!="undefined"&&i.iCreate<a){f=o[0];a=i.iCreate}}if(f!=="")p.cookie=f+"=; expires=Thu, 01-Jan-1970 00:00:01 GMT; path="+c.join("/")+"/"}p.cookie=b}function ka(a){var b=Y.location.pathname.split("/");a=a+"_"+b[b.length-1].replace(/[\/:]/g,"").toLowerCase()+"=";b=p.cookie.split(";");for(var c=0;c<
107
+ b.length;c++){for(var d=b[c];d.charAt(0)==" ";)d=d.substring(1,d.length);if(d.indexOf(a)===0)return decodeURIComponent(d.substring(a.length,d.length))}return null}function ca(a){a=a.getElementsByTagName("tr");if(a.length==1)return a[0].getElementsByTagName("th");var b=[],c=[],d,f,e,i,h,k,o=function(G,Ma,la){for(;typeof G[Ma][la]!="undefined";)la++;return la},t=function(G){if(typeof b[G]=="undefined")b[G]=[]};d=0;for(i=a.length;d<i;d++){t(d);var s=0,H=[];f=0;for(h=a[d].childNodes.length;f<h;f++)if(a[d].childNodes[f].nodeName.toUpperCase()==
108
+ "TD"||a[d].childNodes[f].nodeName.toUpperCase()=="TH")H.push(a[d].childNodes[f]);f=0;for(h=H.length;f<h;f++){var I=H[f].getAttribute("colspan")*1,A=H[f].getAttribute("rowspan")*1;if(!I||I===0||I===1){k=o(b,d,s);b[d][k]=H[f].nodeName.toUpperCase()=="TD"?4:H[f];if(A||A===0||A===1)for(e=1;e<A;e++){t(d+e);b[d+e][k]=2}s++}else{k=o(b,d,s);for(e=0;e<I;e++)b[d][k+e]=3;s+=I}}}d=0;for(i=b[0].length;d<i;d++){f=0;for(h=b.length;f<h;f++)typeof b[f][d]=="object"&&c.push(b[f][d])}return c}function Ja(){var a=p.createElement("p"),
109
+ b=a.style;b.width="100%";b.height="200px";var c=p.createElement("div");b=c.style;b.position="absolute";b.top="0px";b.left="0px";b.visibility="hidden";b.width="200px";b.height="150px";b.overflow="hidden";c.appendChild(a);p.body.appendChild(c);b=a.offsetWidth;c.style.overflow="scroll";a=a.offsetWidth;if(b==a)a=c.clientWidth;p.body.removeChild(c);return b-a}function M(a,b,c){for(var d=0,f=b.length;d<f;d++)for(var e=0,i=b[d].childNodes.length;e<i;e++)if(b[d].childNodes[e].nodeType==1)typeof c!="undefined"?
110
+ a(b[d].childNodes[e],c[d].childNodes[e]):a(b[d].childNodes[e])}function n(a,b,c,d){if(typeof d=="undefined")d=c;if(typeof b[c]!="undefined")a[d]=b[c]}this.oApi={};this.fnDraw=function(a){var b=B(this[m.iApiIndex]);if(typeof a!="undefined"&&a===false){F(b);D(b)}else L(b)};this.fnFilter=function(a,b,c,d,f){var e=B(this[m.iApiIndex]);if(e.oFeatures.bFilter){if(typeof c=="undefined")c=false;if(typeof d=="undefined")d=true;if(typeof f=="undefined")f=true;if(typeof b=="undefined"||b===null){P(e,{sSearch:a,
111
+ bRegex:c,bSmart:d},1);if(f&&typeof e.aanFeatures.f!="undefined"){b=e.aanFeatures.f;c=0;for(d=b.length;c<d;c++)j("input",b[c]).val(a)}}else{e.aoPreSearchCols[b].sSearch=a;e.aoPreSearchCols[b].bRegex=c;e.aoPreSearchCols[b].bSmart=d;P(e,e.oPreviousSearch,1)}}};this.fnSettings=function(){return B(this[m.iApiIndex])};this.fnVersionCheck=m.fnVersionCheck;this.fnSort=function(a){var b=B(this[m.iApiIndex]);b.aaSorting=a;O(b)};this.fnSortListener=function(a,b,c){$(B(this[m.iApiIndex]),a,b,c)};this.fnAddData=
112
+ function(a,b){if(a.length===0)return[];var c=[],d,f=B(this[m.iApiIndex]);if(typeof a[0]=="object")for(var e=0;e<a.length;e++){d=w(f,a[e]);if(d==-1)return c;c.push(d)}else{d=w(f,a);if(d==-1)return c;c.push(d)}f.aiDisplay=f.aiDisplayMaster.slice();Q(f,1);if(typeof b=="undefined"||b)L(f);return c};this.fnDeleteRow=function(a,b,c){var d=B(this[m.iApiIndex]);a=typeof a=="object"?R(d,a):a;var f=d.aoData.splice(a,1);ja(d.aiDisplayMaster,a);ja(d.aiDisplay,a);Q(d,1);typeof b=="function"&&b.call(this,d,f);
113
+ if(d._iDisplayStart>=d.aiDisplay.length){d._iDisplayStart-=d._iDisplayLength;if(d._iDisplayStart<0)d._iDisplayStart=0}if(typeof c=="undefined"||c){F(d);D(d)}return f};this.fnClearTable=function(a){var b=B(this[m.iApiIndex]);ba(b);if(typeof a=="undefined"||a)D(b)};this.fnOpen=function(a,b,c){var d=B(this[m.iApiIndex]);this.fnClose(a);var f=p.createElement("tr"),e=p.createElement("td");f.appendChild(e);e.className=c;e.colSpan=T(d);e.innerHTML=b;b=j("tr",d.nTBody);j.inArray(a,b)!=-1&&j(f).insertAfter(a);
114
+ d.aoOpenRows.push({nTr:f,nParent:a});return f};this.fnClose=function(a){for(var b=B(this[m.iApiIndex]),c=0;c<b.aoOpenRows.length;c++)if(b.aoOpenRows[c].nParent==a){(a=b.aoOpenRows[c].nTr.parentNode)&&a.removeChild(b.aoOpenRows[c].nTr);b.aoOpenRows.splice(c,1);return 0}return 1};this.fnGetData=function(a){var b=B(this[m.iApiIndex]);if(typeof a!="undefined"){a=typeof a=="object"?R(b,a):a;return b.aoData[a]._aData}return V(b)};this.fnGetNodes=function(a){var b=B(this[m.iApiIndex]);if(typeof a!="undefined")return b.aoData[a].nTr;
115
+ return S(b)};this.fnGetPosition=function(a){var b=B(this[m.iApiIndex]);if(a.nodeName.toUpperCase()=="TR")return R(b,a);else if(a.nodeName.toUpperCase()=="TD")for(var c=R(b,a.parentNode),d=0,f=0;f<b.aoColumns.length;f++)if(b.aoColumns[f].bVisible){if(b.aoData[c].nTr.getElementsByTagName("td")[f-d]==a)return[c,f-d,f]}else d++;return null};this.fnUpdate=function(a,b,c,d,f){var e=B(this[m.iApiIndex]),i=typeof b=="object"?R(e,b):b;if(typeof a!="object"){b=a;e.aoData[i]._aData[c]=b;if(e.aoColumns[c].fnRender!==
116
+ null){b=e.aoColumns[c].fnRender({iDataRow:i,iDataColumn:c,aData:e.aoData[i]._aData,oSettings:e});if(e.aoColumns[c].bUseRendered)e.aoData[i]._aData[c]=b}c=N(e,c);if(c!==null)e.aoData[i].nTr.getElementsByTagName("td")[c].innerHTML=b}else{if(a.length!=e.aoColumns.length){J(e,0,"An array passed to fnUpdate must have the same number of columns as the table in question - in this case "+e.aoColumns.length);return 1}for(var h=0;h<a.length;h++){b=a[h];e.aoData[i]._aData[h]=b;if(e.aoColumns[h].fnRender!==null){b=
117
+ e.aoColumns[h].fnRender({iDataRow:i,iDataColumn:h,aData:e.aoData[i]._aData,oSettings:e});if(e.aoColumns[h].bUseRendered)e.aoData[i]._aData[h]=b}c=N(e,h);if(c!==null)e.aoData[i].nTr.getElementsByTagName("td")[c].innerHTML=b}}if(typeof f=="undefined"||f){Q(e,1);U(e)}if(typeof d=="undefined"||d)L(e);return 0};this.fnSetColumnVis=function(a,b){var c=B(this[m.iApiIndex]),d,f;f=c.aoColumns.length;var e,i;if(c.aoColumns[a].bVisible!=b){e=j(">tr",c.nTHead)[0];var h=j(">tr",c.nTFoot)[0],k=[],o=[];for(d=0;d<
118
+ f;d++){k.push(c.aoColumns[d].nTh);o.push(c.aoColumns[d].nTf)}if(b){for(d=b=0;d<a;d++)c.aoColumns[d].bVisible&&b++;if(b>=T(c)){e.appendChild(k[a]);h&&h.appendChild(o[a]);d=0;for(f=c.aoData.length;d<f;d++){e=c.aoData[d]._anHidden[a];c.aoData[d].nTr.appendChild(e)}}else{for(d=a;d<f;d++){i=N(c,d);if(i!==null)break}e.insertBefore(k[a],e.getElementsByTagName("th")[i]);h&&h.insertBefore(o[a],h.getElementsByTagName("th")[i]);X(c);d=0;for(f=c.aoData.length;d<f;d++){e=c.aoData[d]._anHidden[a];c.aoData[d].nTr.insertBefore(e,
119
+ j(">td:eq("+i+")",c.aoData[d].nTr)[0])}}c.aoColumns[a].bVisible=true}else{e.removeChild(k[a]);h&&h.removeChild(o[a]);i=X(c);d=0;for(f=c.aoData.length;d<f;d++){e=i[d*c.aoColumns.length+a*1];c.aoData[d]._anHidden[a]=e;e.parentNode.removeChild(e)}c.aoColumns[a].bVisible=false}d=0;for(f=c.aoOpenRows.length;d<f;d++)c.aoOpenRows[d].nTr.colSpan=T(c);U(c);D(c)}};this.fnPageChange=function(a,b){var c=B(this[m.iApiIndex]);Ba(c,a);F(c);if(typeof b=="undefined"||b)D(c)};this.fnDestroy=function(){var a=B(this[m.iApiIndex]),
120
+ b=a.nTableWrapper.parentNode,c=a.nTBody,d;a.nTable.parentNode.removeChild(a.nTable);j(a.nTableWrapper).remove();a.aaSorting=[];a.aaSortingFixed=[];W(a);j(S(a)).removeClass(a.asStripClasses.join(" "));if(a.bJUI){j("th",a.nTHead).removeClass([m.oStdClasses.sSortable,m.oJUIClasses.sSortableAsc,m.oJUIClasses.sSortableDesc,m.oJUIClasses.sSortableNone].join(" "));j("th span",a.nTHead).remove()}else j("th",a.nTHead).removeClass([m.oStdClasses.sSortable,m.oStdClasses.sSortableAsc,m.oStdClasses.sSortableDesc,
121
+ m.oStdClasses.sSortableNone].join(" "));b.appendChild(a.nTable);b=0;for(d=a.aoData.length;b<d;b++)c.appendChild(a.aoData[b].nTr);j(">tr:even",c).addClass(a.asDestoryStrips[0]);j(">tr:odd",c).addClass(a.asDestoryStrips[1]);b=0;for(d=E.length;b<d;b++)E[b]==a&&E.splice(b,1)};this.fnAdjustColumnSizing=function(a){U(B(this[m.iApiIndex]));if(typeof a=="undefined"||a)this.fnDraw(false)};for(var ma in m.oApi)if(ma)this[ma]=q(ma);this.oApi._fnExternApiFunc=q;this.oApi._fnInitalise=r;this.oApi._fnLanguageProcess=
122
+ u;this.oApi._fnAddColumn=y;this.oApi._fnColumnOptions=C;this.oApi._fnAddData=w;this.oApi._fnGatherData=x;this.oApi._fnDrawHead=z;this.oApi._fnDraw=D;this.oApi._fnReDraw=L;this.oApi._fnAjaxUpdate=oa;this.oApi._fnAjaxUpdateDraw=pa;this.oApi._fnAddOptionsHtml=na;this.oApi._fnFeatureHtmlTable=ua;this.oApi._fnScrollDraw=xa;this.oApi._fnAjustColumnSizing=U;this.oApi._fnFeatureHtmlFilter=sa;this.oApi._fnFilterComplete=P;this.oApi._fnFilterCustom=Aa;this.oApi._fnFilterColumn=za;this.oApi._fnFilter=ya;this.oApi._fnBuildSearchArray=
123
+ Q;this.oApi._fnFilterCreateSearch=fa;this.oApi._fnDataToSearch=ga;this.oApi._fnSort=O;this.oApi._fnSortAttachListener=$;this.oApi._fnSortingClasses=W;this.oApi._fnFeatureHtmlPaginate=wa;this.oApi._fnPageChange=Ba;this.oApi._fnFeatureHtmlInfo=va;this.oApi._fnUpdateInfo=Ca;this.oApi._fnFeatureHtmlLength=ra;this.oApi._fnFeatureHtmlProcessing=ta;this.oApi._fnProcessingDisplay=K;this.oApi._fnVisibleToColumnIndex=da;this.oApi._fnColumnIndexToVisible=N;this.oApi._fnNodeToDataIndex=R;this.oApi._fnVisbleColumns=
124
+ T;this.oApi._fnCalculateEnd=F;this.oApi._fnConvertToWidth=Da;this.oApi._fnCalculateColumnWidths=ea;this.oApi._fnScrollingWidthAdjust=ia;this.oApi._fnGetWidestNode=Ea;this.oApi._fnGetMaxLenString=Fa;this.oApi._fnStringToCss=v;this.oApi._fnArrayCmp=La;this.oApi._fnDetectType=Z;this.oApi._fnSettingsFromNode=B;this.oApi._fnGetDataMaster=V;this.oApi._fnGetTrNodes=S;this.oApi._fnGetTdNodes=X;this.oApi._fnEscapeRegex=ha;this.oApi._fnDeleteIndex=ja;this.oApi._fnReOrderIndex=qa;this.oApi._fnColumnOrdering=
125
+ aa;this.oApi._fnLog=J;this.oApi._fnClearTable=ba;this.oApi._fnSaveState=Ga;this.oApi._fnLoadState=Ia;this.oApi._fnCreateCookie=Ha;this.oApi._fnReadCookie=ka;this.oApi._fnGetUniqueThs=ca;this.oApi._fnScrollBarWidth=Ja;this.oApi._fnApplyToChildren=M;this.oApi._fnMap=n;var Ka=this;return this.each(function(){var a=0,b,c,d,f;a=0;for(b=E.length;a<b;a++){if(E[a].nTable==this)if(typeof g=="undefined"||typeof g.bRetrieve!="undefined"&&g.bRetrieve===true)return E[a].oInstance;else if(typeof g.bDestroy!="undefined"&&
126
+ g.bDestroy===true){E[a].oInstance.fnDestroy();break}else{J(E[a],0,"Cannot reinitialise DataTable.\n\nTo retrieve the DataTables object for this table, please pass either no arguments to the dataTable() function, or set bRetrieve to true. Alternatively, to destory the old table and create a new one, set bDestroy to true (note that a lot of changes to the configuration can be made through the API which is usually much faster).");return}if(E[a].sTableId!==""&&E[a].sTableId==this.getAttribute("id")){E.splice(a,
127
+ 1);break}}var e=new l;E.push(e);var i=false,h=false;a=this.getAttribute("id");if(a!==null){e.sTableId=a;e.sInstance=a}else e.sInstance=m._oExternConfig.iNextUnique++;e.oInstance=Ka;e.nTable=this;e.oApi=Ka.oApi;if(typeof g!="undefined"&&g!==null){e.oInit=g;n(e.oFeatures,g,"bPaginate");n(e.oFeatures,g,"bLengthChange");n(e.oFeatures,g,"bFilter");n(e.oFeatures,g,"bSort");n(e.oFeatures,g,"bInfo");n(e.oFeatures,g,"bProcessing");n(e.oFeatures,g,"bAutoWidth");n(e.oFeatures,g,"bSortClasses");n(e.oFeatures,
128
+ g,"bServerSide");n(e.oScroll,g,"sScrollX","sX");n(e.oScroll,g,"sScrollXInner","sXInner");n(e.oScroll,g,"sScrollY","sY");n(e.oScroll,g,"bScrollCollapse","bCollapse");n(e,g,"asStripClasses");n(e,g,"fnRowCallback");n(e,g,"fnHeaderCallback");n(e,g,"fnFooterCallback");n(e,g,"fnInitComplete");n(e,g,"fnServerData");n(e,g,"fnFormatNumber");n(e,g,"aaSorting");n(e,g,"aaSortingFixed");n(e,g,"aLengthMenu");n(e,g,"sPaginationType");n(e,g,"sAjaxSource");n(e,g,"iCookieDuration");n(e,g,"sCookiePrefix");n(e,g,"sDom");
129
+ n(e,g,"oSearch","oPreviousSearch");n(e,g,"aoSearchCols","aoPreSearchCols");n(e,g,"iDisplayLength","_iDisplayLength");n(e,g,"bJQueryUI","bJUI");typeof g.fnDrawCallback=="function"&&e.aoDrawCallback.push({fn:g.fnDrawCallback,sName:"user"});e.oFeatures.bServerSide&&e.oFeatures.bSort&&e.oFeatures.bSortClasses&&e.aoDrawCallback.push({fn:W,sName:"server_side_sort_classes"});if(typeof g.bJQueryUI!="undefined"&&g.bJQueryUI){e.oClasses=m.oJUIClasses;if(typeof g.sDom=="undefined")e.sDom='<"H"lfr>t<"F"ip>'}if(e.oScroll.sX!==
130
+ ""||e.oScroll.sY!=="")e.oScroll.iBarWidth=Ja();if(typeof g.iDisplayStart!="undefined"&&typeof e.iInitDisplayStart=="undefined"){e.iInitDisplayStart=g.iDisplayStart;e._iDisplayStart=g.iDisplayStart}if(typeof g.bStateSave!="undefined"){e.oFeatures.bStateSave=g.bStateSave;Ia(e,g);e.aoDrawCallback.push({fn:Ga,sName:"state_save"})}if(typeof g.aaData!="undefined")h=true;if(typeof g!="undefined"&&typeof g.aoData!="undefined")g.aoColumns=g.aoData;if(typeof g.oLanguage!="undefined")if(typeof g.oLanguage.sUrl!=
131
+ "undefined"&&g.oLanguage.sUrl!==""){e.oLanguage.sUrl=g.oLanguage.sUrl;j.getJSON(e.oLanguage.sUrl,null,function(o){u(e,o,true)});i=true}else u(e,g.oLanguage,false)}else g={};if(typeof g.asStripClasses=="undefined"){e.asStripClasses.push(e.oClasses.sStripOdd);e.asStripClasses.push(e.oClasses.sStripEven)}c=false;d=j("tbody>tr",this);a=0;for(b=e.asStripClasses.length;a<b;a++)if(d.filter(":lt(2)").hasClass(e.asStripClasses[a])){c=true;break}if(c){e.asDestoryStrips=["",""];if(j(d[0]).hasClass(e.oClasses.sStripOdd))e.asDestoryStrips[0]+=
132
+ e.oClasses.sStripOdd+" ";if(j(d[0]).hasClass(e.oClasses.sStripEven))e.asDestoryStrips[0]+=e.oClasses.sStripEven;if(j(d[1]).hasClass(e.oClasses.sStripOdd))e.asDestoryStrips[1]+=e.oClasses.sStripOdd+" ";if(j(d[1]).hasClass(e.oClasses.sStripEven))e.asDestoryStrips[1]+=e.oClasses.sStripEven;d.removeClass(e.asStripClasses.join(" "))}a=this.getElementsByTagName("thead");c=a.length===0?[]:ca(a[0]);d=typeof g.aoColumns!="undefined";a=0;for(b=d?g.aoColumns.length:c.length;a<b;a++){f=d?g.aoColumns[a]:null;
133
+ var k=c?c[a]:null;if(typeof g.saved_aoColumns!="undefined"&&g.saved_aoColumns.length==b){if(f===null)f={};f.bVisible=g.saved_aoColumns[a].bVisible}y(e,k)}if(typeof g.aoColumnDefs!="undefined")for(a=g.aoColumnDefs.length-1;a>=0;a--){k=g.aoColumnDefs[a].aTargets;c=0;for(d=k.length;c<d;c++)if(typeof k[c]=="number"&&k[c]>=0){for(;e.aoColumns.length<=k[c];)y(e);C(e,k[c],g.aoColumnDefs[a])}else if(typeof k[c]=="number"&&k[c]<0)C(e,e.aoColumns.length+k[c],g.aoColumnDefs[a]);else if(typeof k[c]=="string"){b=
134
+ 0;for(f=e.aoColumns.length;b<f;b++)if(k[c]=="_all"||e.aoColumns[b].nTh.className.indexOf(k[c])!=-1)C(e,b,g.aoColumnDefs[a])}}if(typeof g.aoColumns!="undefined"){a=0;for(b=g.aoColumns.length;a<b;a++)C(e,a,g.aoColumns[a])}a=0;for(b=e.aaSorting.length;a<b;a++){f=e.aoColumns[e.aaSorting[a][0]];if(typeof e.aaSorting[a][2]=="undefined")e.aaSorting[a][2]=0;if(typeof g.aaSorting=="undefined"&&typeof e.saved_aaSorting=="undefined")e.aaSorting[a][1]=f.asSorting[0];c=0;for(d=f.asSorting.length;c<d;c++)if(e.aaSorting[a][1]==
135
+ f.asSorting[c]){e.aaSorting[a][2]=c;break}}this.getElementsByTagName("thead").length===0&&this.appendChild(p.createElement("thead"));this.getElementsByTagName("tbody").length===0&&this.appendChild(p.createElement("tbody"));e.nTHead=this.getElementsByTagName("thead")[0];e.nTBody=this.getElementsByTagName("tbody")[0];if(this.getElementsByTagName("tfoot").length>0)e.nTFoot=this.getElementsByTagName("tfoot")[0];if(h)for(a=0;a<g.aaData.length;a++)w(e,g.aaData[a]);else x(e);e.aiDisplay=e.aiDisplayMaster.slice();
136
+ e.oFeatures.bAutoWidth&&ea(e);e.bInitialised=true;i===false&&r(e)})}})(jQuery,window,document);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/tabletools/tabletools.js CHANGED
@@ -1,6 +1,6 @@
1
  /*
2
  * File: TableTools.js
3
- * Version: 1.1.3
4
  * CVS: $Id$
5
  * Description: Copy, save and print functions for DataTables
6
  * Author: Allan Jardine (www.sprymedia.co.uk)
@@ -29,7 +29,7 @@ var TableToolsInit = {
29
  },
30
  "oBom": {
31
  "bCsv": true,
32
- "bXls": true,
33
  },
34
  "bIncFooter": true,
35
  "bIncHiddenColumns": false,
@@ -306,7 +306,7 @@ function TableTools ( oInit )
306
  _iPrintScroll = $(window).scrollTop();
307
  window.scrollTo( 0, 0 );
308
 
309
- $(document).bind( "keydown", null, fnPrintEnd );
310
 
311
  setTimeout( function() {
312
  $(nInfo).fadeOut( "normal", function() {
1
  /*
2
  * File: TableTools.js
3
+ * Version: 1.1.4
4
  * CVS: $Id$
5
  * Description: Copy, save and print functions for DataTables
6
  * Author: Allan Jardine (www.sprymedia.co.uk)
29
  },
30
  "oBom": {
31
  "bCsv": true,
32
+ "bXls": true
33
  },
34
  "bIncFooter": true,
35
  "bIncHiddenColumns": false,
306
  _iPrintScroll = $(window).scrollTop();
307
  window.scrollTo( 0, 0 );
308
 
309
+ $(document).bind( "keyup", null, fnPrintEnd );
310
 
311
  setTimeout( function() {
312
  $(nInfo).fadeOut( "normal", function() {
js/tabletools/tabletools.min.js ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * File: TableTools.min.js
3
+ * Version: 2.0.0.dev
4
+ * Author: Allan Jardine (www.sprymedia.co.uk)
5
+ *
6
+ * Copyright 2009-2010 Allan Jardine, all rights reserved.
7
+ *
8
+ * This source file is free software, under either the GPL v2 license or a
9
+ * BSD (3 point) style license, as supplied with this software.
10
+ *
11
+ * This source file is distributed in the hope that it will be useful, but
12
+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details.
14
+ */
15
+ var TableToolsInit={oFeatures:{bCsv:true,bXls:true,bCopy:true,bPrint:true},oBom:{bCsv:true,bXls:true},bIncFooter:true,bIncHiddenColumns:false,sPrintMessage:"",sPrintInfo:"<h6>Print view</h6><p>Please use your browser's print function to print this table. Press escape when finished.",sTitle:"",sSwfPath:WP_Table_Reloaded_TableTools.swf_path,iButtonHeight:30,iButtonWidth:30,sCsvBoundary:"'",_iNextId:1};
16
+ (function(j){function D(p){function E(a){_nTools=document.createElement("div");_nTools.className="TableTools";l=TableToolsInit._iNextId++;g=j.extend(true,{},TableToolsInit);e=a.oDTSettings;F=v(e.nTable,"dataTables_wrapper");ZeroClipboard.moviePath=g.sSwfPath;g.oFeatures.bCopy&&G();g.oFeatures.bCsv&&H();g.oFeatures.bXls&&I();g.oFeatures.bPrint&&J();return _nTools}function H(){var a=document.createElement("div");a.id="ToolTables_CSV_"+l;a.style.height=g.iButtonHeight+"px";a.style.width=g.iButtonWidth+
17
+ "px";a.className="TableTools_button TableTools_csv";_nTools.appendChild(a);var b=new ZeroClipboard.Client;b.setHandCursor(true);b.setAction("save");b.setCharSet("UTF8");b.setBomInc(g.oBom.bCsv);b.setFileName(w()+".csv");b.addEventListener("mouseOver",function(){a.className="TableTools_button TableTools_csv_hover"});b.addEventListener("mouseOut",function(){a.className="TableTools_button TableTools_csv"});b.addEventListener("mouseDown",function(){q(b,r(",",TableToolsInit.sCsvBoundary))});o(b,a,"ToolTables_CSV_"+
18
+ l,"Save as CSV")}function I(){var a=document.createElement("div");a.id="ToolTables_XLS_"+l;a.style.height=g.iButtonHeight+"px";a.style.width=g.iButtonWidth+"px";a.className="TableTools_button TableTools_xls";_nTools.appendChild(a);var b=new ZeroClipboard.Client;b.setHandCursor(true);b.setAction("save");b.setCharSet("UTF16LE");b.setBomInc(g.oBom.bXls);b.setFileName(w()+".xls");b.addEventListener("mouseOver",function(){a.className="TableTools_button TableTools_xls_hover"});b.addEventListener("mouseOut",
19
+ function(){a.className="TableTools_button TableTools_xls"});b.addEventListener("mouseDown",function(){q(b,r("\t"))});o(b,a,"ToolTables_XLS_"+l,"Save for Excel")}function G(){var a=document.createElement("div");a.id="ToolTables_Copy_"+l;a.style.height=g.iButtonHeight+"px";a.style.width=g.iButtonWidth+"px";a.className="TableTools_button TableTools_clipboard";_nTools.appendChild(a);var b=new ZeroClipboard.Client;b.setHandCursor(true);b.setAction("copy");b.addEventListener("mouseOver",function(){a.className=
20
+ "TableTools_button TableTools_clipboard_hover"});b.addEventListener("mouseOut",function(){a.className="TableTools_button TableTools_clipboard"});b.addEventListener("mouseDown",function(){q(b,r("\t"))});b.addEventListener("complete",function(){var c=x.split("\n");alert("Copied "+(c.length-1)+" rows to the clipboard")});o(b,a,"ToolTables_Copy_"+l,"Copy to clipboard")}function J(){var a=document.createElement("div");a.style.height=g.iButtonHeight+"px";a.style.width=g.iButtonWidth+"px";a.className="TableTools_button TableTools_print";
21
+ a.title="Print table";_nTools.appendChild(a);j(a).hover(function(){a.className="TableTools_button TableTools_print_hover"},function(){a.className="TableTools_button TableTools_print"});j(a).click(function(){y(e.nTable);_iPrintSaveStart=e._iDisplayStart;_iPrintSaveLength=e._iDisplayLength;e._iDisplayStart=0;e._iDisplayLength=-1;e.oApi._fnCalculateEnd(e);e.oApi._fnDraw(e);var b=e.anFeatures;for(var c in b)if(c!="i"&&c!="t"){m.push({node:b[c],display:"block"});b[c].style.display="none"}var d=document.createElement("div");
22
+ d.className="TableTools_PrintInfo";d.innerHTML=g.sPrintInfo;document.body.appendChild(d);if(g.sPrintMessage!==""){n=document.createElement("p");n.className="TableTools_PrintMessage";n.innerHTML=g.sPrintMessage;document.body.insertBefore(n,document.body.childNodes[0])}z=j(window).scrollTop();window.scrollTo(0,0);j(document).bind("keydown",null,A);setTimeout(function(){j(d).fadeOut("normal",function(){document.body.removeChild(d)})},2E3)})}function A(a){if(a.keyCode==27){K();window.scrollTo(0,z);if(n){document.body.removeChild(n);
23
+ n=null}e._iDisplayStart=_iPrintSaveStart;e._iDisplayLength=_iPrintSaveLength;e.oApi._fnCalculateEnd(e);e.oApi._fnDraw(e);j(document).unbind("keydown",A)}}function K(){for(var a=0,b=m.length;a<b;a++)m[a].node.style.display=m[a].display;m.splice(0,m.length)}function y(a){for(var b=a.parentNode,c=b.childNodes,d=0,h=c.length;d<h;d++)if(c[d]!=a&&c[d].nodeType==1){var k=j(c[d]).css("display");if(k!="none"){m.push({node:c[d],display:k});c[d].style.display="none"}}b.nodeName!="BODY"&&y(b)}function o(a,b,
24
+ c,d){document.getElementById(c)?a.glue(b,d):setTimeout(function(){o(a,b,c,d)},100)}function w(){var a;a=g.sTitle!==""?g.sTitle:document.getElementsByTagName("title")[0].innerHTML;return"\u00a1".toString().length<4?a.replace(/[^a-zA-Z0-9_\u00A1-\uFFFF\.,\-_ !\(\)]/g,""):a.replace(/[^a-zA-Z0-9_\.,\-_ !\(\)]/g,"")}function v(a,b){return a.className.match(b)||a.nodeName=="BODY"?a:v(a.parentNode,b)}function s(a,b,c){return b===""?a:b+a.replace(c,"\\"+b)+b}function t(a){a=B(a,2048);var b=document.createElement("div"),
25
+ c,d,h,k="";c=0;for(d=a.length;c<d;c++){h=a[c].lastIndexOf("&");if(h!=-1&&a[c].length>=8&&h>a[c].length-8){a[c].substr(h);a[c]=a[c].substr(0,h)}b.innerHTML=a[c];k+=b.childNodes[0].nodeValue}return k}function B(a,b){for(var c=[],d=a.length,h=0;h<d;h+=b)h+b<d?c.push(a.substring(h,h+b)):c.push(a.substring(h,d));return c}function q(a,b){b=B(b,8192);a.clearText();for(var c=0,d=b.length;c<d;c++)a.appendText(b[c])}function r(a,b){var c,d,h,k,i="",f="",C=navigator.userAgent.match(/Windows/)?"\r\n":"\n";if(typeof b==
26
+ "undefined")b="";var u=new RegExp(b,"g");c=0;for(d=e.aoColumns.length;c<d;c++)if(g.bIncHiddenColumns===true||e.aoColumns[c].bVisible){f=e.aoColumns[c].sTitle.replace(/\n/g," ").replace(/<.*?>/g,"");if(f.indexOf("&")!=-1)f=t(f);i+=s(f,b,u)+a}i=i.slice(0,a.length*-1);i+=C;h=0;for(k=e.aiDisplay.length;h<k;h++){c=0;for(d=e.aoColumns.length;c<d;c++)if(g.bIncHiddenColumns===true||e.aoColumns[c].bVisible){f=e.aoData[e.aiDisplay[h]]._aData[c];if(typeof f=="string"){f=f.replace(/\n/g," ");f=f.replace(/<img.*?\s+alt\s*=\s*(?:"([^"]+)"|'([^']+)'|([^\s>]+)).*?>/gi,
27
+ "$1$2$3");f=f.replace(/<.*?>/g,"")}else f=f+"";f=f.replace(/^\s+/,"").replace(/\s+$/,"");if(f.indexOf("&")!=-1)f=t(f);i+=s(f,b,u)+a}i=i.slice(0,a.length*-1);i+=C}i.slice(0,-1);if(g.bIncFooter){c=0;for(d=e.aoColumns.length;c<d;c++)if(e.aoColumns[c].nTf!==null&&(g.bIncHiddenColumns===true||e.aoColumns[c].bVisible)){f=e.aoColumns[c].nTf.innerHTML.replace(/\n/g," ").replace(/<.*?>/g,"");if(f.indexOf("&")!=-1)f=t(f);i+=s(f,b,u)+a}i=i.slice(0,a.length*-1)}return x=i}var g,F,m=[],z=0,n=null,e,x,l;return E(p)}
28
+ typeof j.fn.dataTable=="function"&&typeof j.fn.dataTableExt.sVersion!="undefined"?j.fn.dataTableExt.aoFeatures.push({fnInit:function(p){return new D({oDTSettings:p})},cFeature:"T",sFeature:"TableTools"}):alert("Warning: TableTools requires DataTables 1.5 or greater - www.datatables.net/download")})(jQuery);
js/tabletools/zeroclipboard.swf CHANGED
Binary file
languages/datatables/lang-be_BY.txt ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sProcessing": "Пачакайце...",
3
+ "sLengthMenu": "Паказаць _MENU_ запісаў",
4
+ "sZeroRecords": "Запісы адсутнічаюць.",
5
+ "sInfo": "Запісы з _START_ да _END_ з _TOTAL_ запісаў",
6
+ "sInfoEmpty": "Запісы з 0 да 0 з 0 запісаў",
7
+ "sInfoFiltered": "(адфільтравана з _MAX_ запісаў)",
8
+ "sInfoPostFix": "",
9
+ "sSearch": "Пошук:",
10
+ "sUrl": "",
11
+ "oPaginate": {
12
+ "sFirst": "Першая",
13
+ "sPrevious": "Папярэдняя",
14
+ "sNext": "Наступная",
15
+ "sLast": "Апошняя"
16
+ }
17
+ }
languages/datatables/lang-da_DK.txt CHANGED
@@ -1,17 +1,17 @@
1
- {
2
- sProcessing: "Henter...",
3
- sLengthMenu: "Vis: _MENU_ linjer",
4
- sZeroRecords: "Ingen linjer matcher søgningen",
5
- sInfo: "Viser _START_ til _END_ af _TOTAL_ linjer",
6
- sInfoEmpty: "Viser 0 til 0 af 0 linjer",
7
- sInfoFiltered: "(filtreret fra _MAX_ linjer)",
8
- sInfoPostFix: "",
9
- sSearch: "Søg:",
10
- sUrl: "",
11
- oPaginate: {
12
- sFirst: "Første",
13
- sPrevious: "Forrige",
14
- sNext: "Næste",
15
- sLast: "Sidste"
16
- }
17
  }
1
+ {
2
+ "sProcessing": "Henter...",
3
+ "sLengthMenu": "Vis: _MENU_ linjer",
4
+ "sZeroRecords": "Ingen linjer matcher søgningen",
5
+ "sInfo": "Viser _START_ til _END_ af _TOTAL_ linjer",
6
+ "sInfoEmpty": "Viser 0 til 0 af 0 linjer",
7
+ "sInfoFiltered": "(filtreret fra _MAX_ linjer)",
8
+ "sInfoPostFix": "",
9
+ "sSearch": "Søg:",
10
+ "sUrl": "",
11
+ "oPaginate": {
12
+ "sFirst": "Første",
13
+ "sPrevious": "Forrige",
14
+ "sNext": "Næste",
15
+ "sLast": "Sidste"
16
+ }
17
  }
languages/datatables/lang-nb_NO.txt CHANGED
@@ -1,17 +1,17 @@
1
- {
2
- sProcessing: "Laster...",
3
- sLengthMenu: "Vis: _MENU_ linjer",
4
- sZeroRecords: "Ingen linjer matcher søket",
5
- sInfo: "Viser _START_ til _END_ av _TOTAL_ linjer",
6
- sInfoEmpty: "Viser 0 til 0 av 0 linjer",
7
- sInfoFiltered: "(filtrert fra _MAX_ totalt antall linjer)",
8
- sInfoPostFix: "",
9
- sSearch: "Søk:",
10
- sUrl: "",
11
- oPaginate: {
12
- sFirst: "Første",
13
- sPrevious: "Forrige",
14
- sNext: "Neste",
15
- sLast: "Siste"
16
  }
17
  }
1
+ {
2
+ "sProcessing": "Laster...",
3
+ "sLengthMenu": "Vis: _MENU_ linjer",
4
+ "sZeroRecords": "Ingen linjer matcher søket",
5
+ "sInfo": "Viser _START_ til _END_ av _TOTAL_ linjer",
6
+ "sInfoEmpty": "Viser 0 til 0 av 0 linjer",
7
+ "sInfoFiltered": "(filtrert fra _MAX_ totalt antall linjer)",
8
+ "sInfoPostFix": "",
9
+ "sSearch": "Søk:",
10
+ "sUrl": "",
11
+ "oPaginate": {
12
+ "sFirst": "Første",
13
+ "sPrevious": "Forrige",
14
+ "sNext": "Neste",
15
+ "sLast": "Siste"
16
  }
17
  }
languages/datatables/lang-nn_NO.txt CHANGED
@@ -1,17 +1,17 @@
1
- {
2
- sProcessing: "Laster...",
3
- sLengthMenu: "Vis: _MENU_ linjer",
4
- sZeroRecords: "Ingen linjer matcher søket",
5
- sInfo: "Viser _START_ til _END_ av _TOTAL_ linjer",
6
- sInfoEmpty: "Viser 0 til 0 av 0 linjer",
7
- sInfoFiltered: "(filtrert fra _MAX_ totalt antall linjer)",
8
- sInfoPostFix: "",
9
- sSearch: "Søk:",
10
- sUrl: "",
11
- oPaginate: {
12
- sFirst: "Første",
13
- sPrevious: "Forrige",
14
- sNext: "Neste",
15
- sLast: "Siste"
16
  }
17
  }
1
+ {
2
+ "sProcessing": "Laster...",
3
+ "sLengthMenu": "Vis: _MENU_ linjer",
4
+ "sZeroRecords": "Ingen linjer matcher søket",
5
+ "sInfo": "Viser _START_ til _END_ av _TOTAL_ linjer",
6
+ "sInfoEmpty": "Viser 0 til 0 av 0 linjer",
7
+ "sInfoFiltered": "(filtrert fra _MAX_ totalt antall linjer)",
8
+ "sInfoPostFix": "",
9
+ "sSearch": "Søk:",
10
+ "sUrl": "",
11
+ "oPaginate": {
12
+ "sFirst": "Første",
13
+ "sPrevious": "Forrige",
14
+ "sNext": "Neste",
15
+ "sLast": "Siste"
16
  }
17
  }
languages/datatables/lang-ro_RO.txt ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sProcessing": "Se procesează...",
3
+ "sLengthMenu": "Arată _MENU_ înregistrări",
4
+ "sZeroRecords": "NU s-au găsit înregistrări",
5
+ "sInfo": "Se afişează de la _START_ la _END_ din totalul de _TOTAL_ înregistrări",
6
+ "sInfoEmpty": "Se afişează de la 0 la 0 din 0 înregistrări",
7
+ "sInfoFiltered": "(filtrate din totalul de _MAX_ înregistrări)",
8
+ "sInfoPostFix": "",
9
+ "sSearch": "Caută:",
10
+ "sUrl": "",
11
+ "oPaginate": {
12
+ "sFirst": "La început",
13
+ "sPrevious": "Anterior",
14
+ "sNext": "Următor",
15
+ "sLast": "La sfârşit"
16
+ }
17
+ }
languages/wp-table-reloaded-be_BY.mo ADDED
Binary file
languages/wp-table-reloaded-be_BY.po ADDED
@@ -0,0 +1,2408 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Table Reloaded BY (1.7)\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
5
+ "POT-Creation-Date: 2010-03-04 21:16+0000\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Slava Mikheev <slavikmikheev@gmail.com>\n"
8
+ "Language-Team: Slava Mikheev <slavikmikheev@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2;\n"
13
+ "X-Poedit-Language: Belarusian\n"
14
+ "X-Poedit-Country: BELARUS\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e\n"
17
+ "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-SearchPath-0: ./wp-table-reloaded\n"
19
+
20
+ #: classes/export.class.php:28
21
+ #: classes/import.class.php:36
22
+ msgid "CSV - Character-Separated Values"
23
+ msgstr "CSV - Character-Separated Values (значэнні падзеленыя знакамі)"
24
+
25
+ #: classes/export.class.php:29
26
+ #: classes/import.class.php:37
27
+ msgid "HTML - Hypertext Markup Language"
28
+ msgstr "HTML - Hypertext Markup Language (мова разметкі гіпертэксту)"
29
+
30
+ #: classes/export.class.php:30
31
+ #: classes/import.class.php:38
32
+ msgid "XML - eXtended Markup Language"
33
+ msgstr "XML - eXtended Markup Language (пашыраная мова разметкі)"
34
+
35
+ #: classes/export.class.php:33
36
+ msgid "; (semicolon)"
37
+ msgstr "; (кропка з коскай)"
38
+
39
+ #: classes/export.class.php:34
40
+ msgid ", (comma)"
41
+ msgstr ", (коска)"
42
+
43
+ #: classes/export.class.php:35
44
+ msgid ": (colon)"
45
+ msgstr ": (двукроп'е)"
46
+
47
+ #: classes/export.class.php:36
48
+ msgid ". (dot)"
49
+ msgstr ". (кропка)"
50
+
51
+ #: classes/export.class.php:37
52
+ msgid "| (pipe)"
53
+ msgstr "| (вертыкальная рыса)"
54
+
55
+ #: classes/helper.class.php:40
56
+ #: views/view-about.php:22
57
+ #, php-format
58
+ msgid "More information about WP-Table Reloaded can be found on the <a href=\"%s\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress Plugin Directory</a>."
59
+ msgstr "Падрабязную інфармацыю аб WP-Table Reloaded можаце атрымаць на <a href=\"%s\">сайце ўбудовы</a> ці на старонцы <a href=\"%s\">WordPress Plugin Directory</a>."
60
+
61
+ #: classes/helper.class.php:41
62
+ #: views/view-about.php:22
63
+ #, php-format
64
+ msgid "For technical information, see the <a href=\"%s\">documentation</a>."
65
+ msgstr "Тэхнічную інфармацыю можаце знайсці ў <a href=\"%s\">дакумантацыі</a>."
66
+
67
+ #: classes/helper.class.php:42
68
+ #: views/view-about.php:29
69
+ #, php-format
70
+ msgid "<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress Support Forums</a>."
71
+ msgstr "<a href=\"%s\">Падтрымка</a> ажыццяўляецца праз <a href=\"%s\">Форум падтрымкі WordPress</a> (ангельскі)."
72
+
73
+ #: classes/helper.class.php:43
74
+ #: views/view-about.php:29
75
+ #, php-format
76
+ msgid "Before asking for support, please carefully read the <a href=\"%s\">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums."
77
+ msgstr "Перад тым, як звярнуцца за дапамогай, пашукайце адказы на форуме і ўважліва прачытайце <a href=\"%s\">Часта задаваныя пытанні</a>, дзе вы можаце знайсці адказы на найболей часта задаваныя пытанні."
78
+
79
+ #: classes/helper.class.php:44
80
+ #: views/view-about.php:36
81
+ #, php-format
82
+ msgid "If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is recommended."
83
+ msgstr "Калі вам спадабалася ўбудова, мы будзем удзячныя вам за <a href=\"%s\"><strong>ахвяраванне</strong></a>."
84
+
85
+ #: classes/helper.class.php:74
86
+ msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
87
+ msgstr "Мы ўдзячныя вам за тое, што вы выкарыстоўваеце <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
88
+
89
+ #: classes/helper.class.php:74
90
+ #, php-format
91
+ msgid "Support the plugin with your <a href=\"%s\">donation</a>!"
92
+ msgstr "Калі ласка, падтрымайце ўбудову вашымі <a href=\"%s\">ахвяраваннямі</a>!"
93
+
94
+ #: classes/helper.class.php:104
95
+ #: classes/helper.class.php:109
96
+ msgid "Table cells can span across more than one column or row."
97
+ msgstr "Вочка табліцы можа займаць больш аднаго радка ці слупка."
98
+
99
+ #: classes/helper.class.php:104
100
+ msgid "Combining consecutive cells within the same row is called \"colspanning\"."
101
+ msgstr "Злучэнне вочак у адным радку завецца \"colspanning\"."
102
+
103
+ #: classes/helper.class.php:104
104
+ msgid "To combine cells, add the keyword #colspan# to the cell to the right of the one with the content for the combined cell by using the corresponding button."
105
+ msgstr "Для таго, каб злучыць вочкі ў шэрагу, дадайце ключавое слова #colspan# у самае правае вочка і націсніце адпаведную кнопку."
106
+
107
+ #: classes/helper.class.php:104
108
+ #: classes/helper.class.php:109
109
+ msgid "Repeat this to add the keyword to all cells that shall be connected."
110
+ msgstr "Паўтарыце гэту аперацыю для ўсіх вочак, якія трэба злучыць."
111
+
112
+ #: classes/helper.class.php:104
113
+ #: classes/helper.class.php:109
114
+ msgid "Be aware that the JavaScript libraries will not work on tables which have combined cells."
115
+ msgstr "Улічыце, што бібліятэкі JavaScript не будуць працаваць з табліцамі, якія маюць абъяднаныя вочкі."
116
+
117
+ #: classes/helper.class.php:109
118
+ msgid "Combining consecutive cells within the same column is called \"rowspanning\"."
119
+ msgstr "Злучэнне вочак у адным слупку завецца \"rowspanning\"."
120
+
121
+ #: classes/helper.class.php:109
122
+ msgid "To combine cells, add the keyword #rowspan# to the cell below the one with the content for the combined cell by using the corresponding button."
123
+ msgstr "Для таго, каб злучыць вочкі ў слупку, дадайце ключавое слова #rowspan# у самае ніжняе вочка і націсніце адпаведную кнопку."
124
+
125
+ #: classes/helper.class.php:118
126
+ msgid "Help"
127
+ msgstr "Дапамога"
128
+
129
+ #: classes/render.class.php:140
130
+ #: views/view-list.php:60
131
+ msgid "Edit"
132
+ msgstr "Рэдагаваць"
133
+
134
+ #: controllers/controller-admin.php:256
135
+ msgid "Czech"
136
+ msgstr "Чэшскі"
137
+
138
+ #: controllers/controller-admin.php:257
139
+ msgid "German"
140
+ msgstr "Нямецкі"
141
+
142
+ #: controllers/controller-admin.php:258
143
+ msgid "English"
144
+ msgstr "Ангельскі"
145
+
146
+ #: controllers/controller-admin.php:259
147
+ msgid "Spanish"
148
+ msgstr "Іспанскі"
149
+
150
+ #: controllers/controller-admin.php:260
151
+ msgid "Finnish"
152
+ msgstr "Фінскі"
153
+
154
+ #: controllers/controller-admin.php:261
155
+ msgid "Hindi"
156
+ msgstr "Хінді"
157
+
158
+ #: controllers/controller-admin.php:262
159
+ msgid "Italian"
160
+ msgstr "Італьянскі"
161
+
162
+ #: controllers/controller-admin.php:263
163
+ msgid "Japanese"
164
+ msgstr "Японскі"
165
+
166
+ #: controllers/controller-admin.php:264
167
+ msgid "Brazilian Portuguese"
168
+ msgstr "Бразільскі/партугальскі"
169
+
170
+ #: controllers/controller-admin.php:265
171
+ msgid "Chinese (Simplified)"
172
+ msgstr "Кітайскі (Спрошчаны)"
173
+
174
+ #: controllers/controller-admin.php:266
175
+ msgid "Russian"
176
+ msgstr "Рускі"
177
+
178
+ #: controllers/controller-admin.php:267
179
+ msgid "Slovak"
180
+ msgstr "Славацкі"
181
+
182
+ #: controllers/controller-admin.php:268
183
+ msgid "Swedish"
184
+ msgstr "Швецкі"
185
+
186
+ #: controllers/controller-admin.php:270
187
+ msgid "Albanian"
188
+ msgstr "Албанскі"
189
+
190
+ #: controllers/controller-admin.php:271
191
+ msgid "Belorussian"
192
+ msgstr "Беларускі"
193
+
194
+ #: controllers/controller-admin.php:272
195
+ msgid "Estonian"
196
+ msgstr "Эстонскі"
197
+
198
+ #: controllers/controller-admin.php:273
199
+ msgid "French"
200
+ msgstr "Французскі"
201
+
202
+ #: controllers/controller-admin.php:274
203
+ msgid "Polish"
204
+ msgstr "Польскі"
205
+
206
+ #: controllers/controller-admin.php:275
207
+ msgid "Turkish"
208
+ msgstr "Турэцкі"
209
+
210
+ #: controllers/controller-admin.php:301
211
+ #, php-format
212
+ msgid "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s\">documentation</a>, and the <a href=\"%s\">support</a> section."
213
+ msgstr "Сардэчна запрашаем на WP-Table Reloaded %s. Калі ў вас паўстануць якія-небудзь пытанні, ці цяжкасці, калі ласка азнаёмцеся з <a href=\"%s\">часта задаванымі пытаннямі</a> і <a href=\"%s\">дакументацыяй</a>, ці звяртайцеся ў секцыю <a href=\"%s\">падтрымкі</a> ."
214
+
215
+ #: controllers/controller-admin.php:302
216
+ #, php-format
217
+ msgid "Thank you for upgrading to WP-Table Reloaded %s."
218
+ msgstr "Дзякуй за тое, што абнавілі сваю версію WP-Table Reloaded %s."
219
+
220
+ #: controllers/controller-admin.php:302
221
+ msgid "This version includes several enhancements, like an updated DataTables library, a &quot;Table&quot; button in the toolbar of the visual editor, and several other things."
222
+ msgstr "Новая версія ўтрымоўвае шэраг паляпшэнняў, такіх як абноўленыя бібліятэкі DataTables, кнопку &quot;Табліцы&quot; на панэлі прылад візуальнага рэдактара і некаторыя іншыя."
223
+
224
+ #: controllers/controller-admin.php:302
225
+ #, php-format
226
+ msgid "Please read the <a href=\"%s\">release announcement</a> for more information."
227
+ msgstr "Для таго, каб атрымаць больш падрабязную інфармацыю, прачытайце <a href=\"%s\">паведамленне пра рэліз</a>."
228
+
229
+ #: controllers/controller-admin.php:302
230
+ #, php-format
231
+ msgid "If you like the new features and enhancements, I would appreciate a small <a href=\"%s\">donation</a>. Thank you."
232
+ msgstr "Калі вам спадабаліся новыя функцыі і магчымасці, я буду ўдзячны за невялікае <a href=\"%s\">ахвяраванне</a>. Дзякуй."
233
+
234
+ #: controllers/controller-admin.php:307
235
+ msgid "Hide this message"
236
+ msgstr "Схаваць гэтае паведамленне."
237
+
238
+ #: controllers/controller-admin.php:315
239
+ msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago."
240
+ msgstr "Дзякуй за тое, што выкарыстоўваеце гэту ўбудову. Вы карыстаецеся WP-Table Reloaded ужо больш месяца."
241
+
242
+ #: controllers/controller-admin.php:315
243
+ #, php-format
244
+ msgid "If it works and you are satisfied with the results of managing your %s table, isn't it worth at least one dollar or euro?"
245
+ msgid_plural "If it works and you are satisfied with the results of managing your %s tables, isn't it worth at least one dollar or euro?"
246
+ msgstr[0] "Калі ўсё працуе і вы задаволены тым, як кіруеце вашай %s табліцай, то, магчыма, гэта варта адзін даляр ці еўра?"
247
+ msgstr[1] "Калі ўсё працуе і вы задаволены тым, як кіруеце вашымі %s табліцамі, то, магчыма, гэта варта адзін даляр ці еўра?"
248
+
249
+ #: controllers/controller-admin.php:316
250
+ #, php-format
251
+ msgid "<a href=\"%s\">Donations</a> help me to continue support and development of this <i>free</i> software - things for which I spend countless hours of my free time! Thank you!"
252
+ msgstr "<a href=\"%s\">Ахвяраванні</a> дапамогуць мне падтрымліваць і развіваць гэтую <i>бясплатную</i> ўбудову. Дзякуй!"
253
+
254
+ #: controllers/controller-admin.php:317
255
+ msgid "Sure, no problem!"
256
+ msgstr "Так, без праблем"
257
+
258
+ #: controllers/controller-admin.php:318
259
+ msgid "I already donated."
260
+ msgstr "Я ўжо зрабіў ахвяраванне."
261
+
262
+ #: controllers/controller-admin.php:319
263
+ msgid "No, thanks. Don't ask again."
264
+ msgstr "Не, дзякуй. Больш не пытайце."
265
+
266
+ #: controllers/controller-admin.php:347
267
+ #, php-format
268
+ msgid "Table &quot;%s&quot; added successfully."
269
+ msgstr "Табліца &quot;%s&quot; была паспяхова дабаўлена."
270
+
271
+ #: controllers/controller-admin.php:378
272
+ #, php-format
273
+ msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
274
+ msgstr "Табліца паспяхова адрэдактавана. Зараз гэта табліца мае такое ID %s. Вам неабходна змяніць існыя коды адпаведна."
275
+
276
+ #: controllers/controller-admin.php:380
277
+ #, php-format
278
+ msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
279
+ msgstr "ID нельга змяніць з %s нa %s, таму што ўжо існуе табліца з такім ID."
280
+
281
+ #: controllers/controller-admin.php:383
282
+ msgid "Table edited successfully."
283
+ msgstr "Табліца была паспяхова адрэдатавана."
284
+
285
+ #: controllers/controller-admin.php:430
286
+ msgid "Rows swapped successfully."
287
+ msgstr "Шэрагі паспяхова заменены."
288
+
289
+ #: controllers/controller-admin.php:451
290
+ msgid "Columns swapped successfully."
291
+ msgstr "Слупкі паспяхова заменены."
292
+
293
+ #: controllers/controller-admin.php:480
294
+ msgid "Table sorted successfully."
295
+ msgstr "Табліца паспяхова адсартыравана."
296
+
297
+ #: controllers/controller-admin.php:501
298
+ msgid "Row moved successfully."
299
+ msgstr "Шэраг паспяхова перамешчаны."
300
+
301
+ #: controllers/controller-admin.php:526
302
+ msgid "Column moved successfully."
303
+ msgstr "Слупок паспяхова перамешчаны."
304
+
305
+ #: controllers/controller-admin.php:534
306
+ msgid "Row could not be deleted."
307
+ msgid_plural "Rows could not be deleted."
308
+ msgstr[0] "Радок не можа быць выдален."
309
+ msgstr[1] "Радкі не могуць быць выдалены."
310
+
311
+ #: controllers/controller-admin.php:543
312
+ msgid "Row deleted successfully."
313
+ msgid_plural "Rows deleted successfully."
314
+ msgstr[0] "Шэраг выдалены паспяхова."
315
+ msgstr[1] "Шэрагі выдалены паспяхова."
316
+
317
+ #: controllers/controller-admin.php:553
318
+ msgid "Column could not be deleted."
319
+ msgid_plural "Columns could not be deleted."
320
+ msgstr[0] "Слупок не можа быць выдалены."
321
+ msgstr[1] "Слупкі не могуць быць выдалены."
322
+
323
+ #: controllers/controller-admin.php:566
324
+ msgid "Column deleted successfully."
325
+ msgid_plural "Columns deleted successfully."
326
+ msgstr[0] "Слупок выдалены паспяхова."
327
+ msgstr[1] "Слупкі выдалены паспяхова."
328
+
329
+ #: controllers/controller-admin.php:589
330
+ msgid "Row inserted successfully."
331
+ msgid_plural "Rows inserted successfully."
332
+ msgstr[0] "Шэраг устаўлены паспяхова."
333
+ msgstr[1] "Шэрагі ўстаўлены паспяхова."
334
+
335
+ #: controllers/controller-admin.php:616
336
+ msgid "Column inserted successfully."
337
+ msgid_plural "Columns inserted successfully."
338
+ msgstr[0] "Слупок устаўлены паспяхова."
339
+ msgstr[1] "Слупкі ўстаўлены паспяхова."
340
+
341
+ #: controllers/controller-admin.php:631
342
+ msgid "Row added successfully."
343
+ msgid_plural "Rows added successfully."
344
+ msgstr[0] "Шэраг дададзены паспяхова."
345
+ msgstr[1] "Шэрагі дададзены паспяхова."
346
+
347
+ #: controllers/controller-admin.php:645
348
+ msgid "Column added successfully."
349
+ msgid_plural "Columns added successfully."
350
+ msgstr[0] "Слупок дададзены паспяхова."
351
+ msgstr[1] "Слупкі дададзены паспяхова."
352
+
353
+ #: controllers/controller-admin.php:652
354
+ msgid "Could not add Custom Data Field, because you did not enter a name."
355
+ msgstr "Карыстацкае поле не можа быць дададзена, бо не паказана імя."
356
+
357
+ #: controllers/controller-admin.php:657
358
+ msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
359
+ msgstr "Карыстацкае поле не можа быць дададзена, бо імя, якое вы паказалі, зарэзервавана за іншым полем."
360
+
361
+ #: controllers/controller-admin.php:663
362
+ msgid "Could not add Custom Data Field, because the name contained illegal characters."
363
+ msgstr "Карыстацкае поле не можа быць дададзена, бо імя ўтрымоўвае недапушчальныя знакі."
364
+
365
+ #: controllers/controller-admin.php:667
366
+ msgid "Could not add Custom Data Field, because a Field with that name already exists."
367
+ msgstr "Карыстацкае поле не можа быць дададзена, бо поле з такім імем ужо існуе."
368
+
369
+ #: controllers/controller-admin.php:673
370
+ msgid "Custom Data Field added successfully."
371
+ msgstr "Карыстацкае поле дададзена паспяхова."
372
+
373
+ #: controllers/controller-admin.php:713
374
+ #: controllers/controller-admin.php:769
375
+ msgid "Copy of"
376
+ msgstr "Копія"
377
+
378
+ #: controllers/controller-admin.php:717
379
+ msgid "Table copied successfully."
380
+ msgid_plural "Tables copied successfully."
381
+ msgstr[0] "Табліца скапіявана паспяхова."
382
+ msgstr[1] "Табліцы скапіяваны паспяхова."
383
+
384
+ #: controllers/controller-admin.php:723
385
+ msgid "Table deleted successfully."
386
+ msgid_plural "Tables deleted successfully."
387
+ msgstr[0] "Табліца выдалена паспяхова."
388
+ msgstr[1] "Табліцы выдалены паспяхова."
389
+
390
+ #: controllers/controller-admin.php:744
391
+ #: controllers/controller-admin.php:899
392
+ #: controllers/controller-admin.php:937
393
+ msgid "Table imported successfully."
394
+ msgid_plural "Tables imported successfully."
395
+ msgstr[0] "Табліца імпартавана паспяхова."
396
+ msgstr[1] "Табліцы імпартаваны паспяхова"
397
+
398
+ #: controllers/controller-admin.php:751
399
+ msgid "You did not select any tables!"
400
+ msgstr "Ніводная табліца не абрана."
401
+
402
+ #: controllers/controller-admin.php:774
403
+ #, php-format
404
+ msgid "Table &quot;%s&quot; copied successfully."
405
+ msgstr "Табліца &quot;%s&quot; скапіявана паспяхова."
406
+
407
+ #: controllers/controller-admin.php:792
408
+ #, php-format
409
+ msgid "Table &quot;%s&quot; deleted successfully."
410
+ msgstr "Табліца &quot;%s&quot; выдалена паспяхова."
411
+
412
+ #: controllers/controller-admin.php:800
413
+ msgid "Custom Data Field deleted successfully."
414
+ msgstr "Карыстацкае поле выдалена паспяхова."
415
+
416
+ #: controllers/controller-admin.php:802
417
+ msgid "Custom Data Field could not be deleted."
418
+ msgstr "Карыстацкае поле не можа быць выдалена."
419
+
420
+ #: controllers/controller-admin.php:808
421
+ msgid "Delete failed."
422
+ msgstr "Выдаленне не адбылося."
423
+
424
+ #: controllers/controller-admin.php:840
425
+ #: controllers/controller-admin.php:850
426
+ #: controllers/controller-admin.php:861
427
+ msgid "Imported Table"
428
+ msgstr "Імпартаваная табліца."
429
+
430
+ #: controllers/controller-admin.php:841
431
+ #: controllers/controller-admin.php:862
432
+ #, php-format
433
+ msgid "from %s"
434
+ msgstr "з %s"
435
+
436
+ #: controllers/controller-admin.php:851
437
+ msgid "via form"
438
+ msgstr "праз форму"
439
+
440
+ #: controllers/controller-admin.php:878
441
+ #: controllers/controller-admin.php:915
442
+ msgid "Table could not be imported."
443
+ msgstr "Табліца не можа быць імпартавана."
444
+
445
+ #: controllers/controller-admin.php:895
446
+ #, php-format
447
+ msgid "Table %s (%s) replaced successfully."
448
+ msgstr "Табліца %s (%s) заменена паспяхова."
449
+
450
+ #: controllers/controller-admin.php:945
451
+ #: controllers/controller-admin.php:1138
452
+ msgid "You do not have sufficient rights to perform this action."
453
+ msgstr "У вас недастаткова праў для выканання гэтага дзеяння."
454
+
455
+ #: controllers/controller-admin.php:952
456
+ msgid "You did not upload a WP-Table Reloaded dump file."
457
+ msgstr "Вы не загрузілі WP-Table Reloaded дамп файл."
458
+
459
+ #: controllers/controller-admin.php:961
460
+ msgid "The uploaded dump file is empty. Please upload a valid dump file."
461
+ msgstr "Вы загрузілі пусты дамп файл. Калі ласка, загрузіце карэктны дамп файл."
462
+
463
+ #: controllers/controller-admin.php:990
464
+ msgid "All Tables, Settings and Options were successfully imported."
465
+ msgstr "Усе табліцы, налады і ўсталёўкі былі паспяхова перанесены."
466
+
467
+ #: controllers/controller-admin.php:1019
468
+ #, php-format
469
+ msgid "Table &quot;%s&quot; exported successfully."
470
+ msgstr "Табліца &quot;%s&quot; экспартавана паспяхова."
471
+
472
+ #: controllers/controller-admin.php:1064
473
+ #: views/view-options.php:232
474
+ msgid "You do not have sufficient rights to access the Plugin Options."
475
+ msgstr "У вас недастаткова праў для доступу да Plugin Options."
476
+
477
+ #: controllers/controller-admin.php:1119
478
+ msgid "Options saved successfully."
479
+ msgstr "Опцыі захаваны паспяхова."
480
+
481
+ #: controllers/controller-admin.php:1122
482
+ #, php-format
483
+ msgid "<a href=\"%s\">Click here to Proceed.</a>"
484
+ msgstr "<a href=\"%s\">Працягнуць.</a>"
485
+
486
+ #: controllers/controller-admin.php:1188
487
+ msgid "There is no table with this ID!"
488
+ msgstr "Табліца з такім ID не існуе."
489
+
490
+ #: controllers/controller-admin.php:1225
491
+ msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
492
+ msgstr "Вельмі ўдзячны вам за ахвяраванне. Вы зрабілі свой унёсак у развіццё WP-Table Reloaded!"
493
+
494
+ #: controllers/controller-admin.php:1227
495
+ #, php-format
496
+ msgid "No problem! I still hope you enjoy the benefits that WP-Table Reloaded brings to you. If you should want to change your mind, you'll always find the &quot;%s&quot; button on the <a href=\"%s\">WP-Table Reloaded website</a>."
497
+ msgstr ""
498
+
499
+ #: controllers/controller-admin.php:1227
500
+ #: controllers/controller-admin.php:1655
501
+ msgid "Donate"
502
+ msgstr "Ахвяраванне"
503
+
504
+ #: controllers/controller-admin.php:1250
505
+ #: controllers/controller-admin.php:1257
506
+ msgid "List of Tables"
507
+ msgstr "Спіс табліц"
508
+
509
+ #. #-#-#-#-# plugin.pot (WP-Table Reloaded 1.7-beta1) #-#-#-#-#
510
+ #. Plugin Name of an extension
511
+ #: controllers/controller-admin.php:1250
512
+ #: controllers/controller-admin.php:1254
513
+ #: controllers/controller-admin.php:1256
514
+ msgid "WP-Table Reloaded"
515
+ msgstr "WP-Table Reloaded"
516
+
517
+ #: controllers/controller-admin.php:1251
518
+ #: controllers/controller-admin.php:1287
519
+ msgid "Add new Table"
520
+ msgstr "Дадаць новую табліцу"
521
+
522
+ #: controllers/controller-admin.php:1252
523
+ #: controllers/controller-admin.php:1288
524
+ msgid "Import a Table"
525
+ msgstr "Імпартаваць табліцу"
526
+
527
+ #: controllers/controller-admin.php:1253
528
+ #: controllers/controller-admin.php:1289
529
+ msgid "Export a Table"
530
+ msgstr "Экспартаваць табліцу"
531
+
532
+ #: controllers/controller-admin.php:1254
533
+ #: controllers/controller-admin.php:1295
534
+ #: views/view-edit.php:342
535
+ #: views/view-edit.php:357
536
+ #: views/view-export.php:10
537
+ msgid "Plugin Options"
538
+ msgstr "Налады ўбудовы"
539
+
540
+ #: controllers/controller-admin.php:1255
541
+ msgid "About WP-Table Reloaded"
542
+ msgstr "Аб WP-Table Reloaded"
543
+
544
+ #: controllers/controller-admin.php:1263
545
+ #, php-format
546
+ msgid "Edit Table &quot;%s&quot; (ID %s)"
547
+ msgstr "Рэдагаваць табліцу &quot;%s&quot; (ID %s)"
548
+
549
+ #: controllers/controller-admin.php:1264
550
+ #, php-format
551
+ msgid "Preview of Table &quot;%s&quot; (ID %s)"
552
+ msgstr "Папярэдні прагляд табліцы &quot;%s&quot; (ID %s)"
553
+
554
+ #: controllers/controller-admin.php:1286
555
+ msgid "List Tables"
556
+ msgstr "Адлюстраваць табліцы"
557
+
558
+ #: controllers/controller-admin.php:1296
559
+ msgid "About the plugin"
560
+ msgstr "Пра ўбудову"
561
+
562
+ #: controllers/controller-admin.php:1651
563
+ msgid "WP-Table Reloaded Plugin Page"
564
+ msgstr "Старонка убудовы WP-Table Reloaded"
565
+
566
+ #: controllers/controller-admin.php:1651
567
+ msgid "Plugin Page"
568
+ msgstr "Старонка ўбудовы"
569
+
570
+ #: controllers/controller-admin.php:1652
571
+ msgid "Frequently Asked Questions"
572
+ msgstr "Часта задаваныя пытанні"
573
+
574
+ #: controllers/controller-admin.php:1652
575
+ msgid "FAQ"
576
+ msgstr "FAQ"
577
+
578
+ #: controllers/controller-admin.php:1653
579
+ msgid "Support"
580
+ msgstr "Падтрымка"
581
+
582
+ #: controllers/controller-admin.php:1654
583
+ msgid "Plugin Documentation"
584
+ msgstr "Дакументацыя ўбудовы"
585
+
586
+ #: controllers/controller-admin.php:1654
587
+ msgid "Documentation"
588
+ msgstr "Дакументацыя"
589
+
590
+ #: controllers/controller-admin.php:1655
591
+ msgid "Support WP-Table Reloaded with your donation!"
592
+ msgstr "Падтрымаеце WP-Table Reloaded з дапамогай сваіх ахвяраванняў!"
593
+
594
+ #: controllers/controller-admin.php:1694
595
+ msgid "Do you really want to activate this? You should only do that right before uninstallation!"
596
+ msgstr "Вы ўпэўнены? Гэта варта зрабіць перад выдаленнем убудовы!"
597
+
598
+ #: controllers/controller-admin.php:1695
599
+ msgid "URL of link to insert"
600
+ msgstr "URL спасылкі"
601
+
602
+ #: controllers/controller-admin.php:1696
603
+ msgid "Text of link"
604
+ msgstr "Тэкст спасылкі"
605
+
606
+ #: controllers/controller-admin.php:1697
607
+ msgid "To insert the following HTML code for a link into a cell, just click the cell after closing this dialog."
608
+ msgstr "Каб змясціць у вочка HTML код спасылкі, клікніце на вочку пасля таго, як зачыніце гэта дыялогавае акно."
609
+
610
+ #: controllers/controller-admin.php:1698
611
+ msgid "To insert an image, click &quot;OK&quot; and then click into the cell into which you want to insert the image."
612
+ msgstr "Каб уставіць малюначак, клікніце на тое вочка, куды вы жадаеце змясціць малюначак."
613
+
614
+ #: controllers/controller-admin.php:1698
615
+ msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
616
+ msgstr "Адчыніцца акно медыя бібліятэкі, дзе вы зможаце абраць малюначак ці ўставіць URL малюначкі."
617
+
618
+ #: controllers/controller-admin.php:1698
619
+ #, php-format
620
+ msgid "Click the &quot;%s&quot; button to insert the image."
621
+ msgstr "Клікніце &quot;%s&quot; кнопку, каб уставіць малюначак."
622
+
623
+ #: controllers/controller-admin.php:1698
624
+ msgid "Insert into Post"
625
+ msgstr "Уставіць у пост."
626
+
627
+ #: controllers/controller-admin.php:1699
628
+ msgid "To combine cells within a row, click into the cell to the right of the cell that has the content the combined cells shall have."
629
+ msgstr "Каб аб'яднаць вочкі ў шэрагу, трэба клікнуць на вочка якая варта справа ад той, у якой знаходзіцца змесціва, якія вы жадаеце змясціць у аб'яднаныя вочкі."
630
+
631
+ #: controllers/controller-admin.php:1700
632
+ msgid "To combine cells within a column, click into the cell below the cell that has the content the combined cells shall have."
633
+ msgstr "Каб аб'яднаць вочкі ў слупку, трэба клікнуць на вочка якая варта пад той, у якой знаходзіцца змесціва, якія вы жадаеце змясціць у аб'яднаныя вочкі."
634
+
635
+ #: controllers/controller-admin.php:1701
636
+ msgid "Do you want to copy the selected tables?"
637
+ msgstr "Вы жадаеце скапіяваць вылучаныя табліцы?"
638
+
639
+ #: controllers/controller-admin.php:1702
640
+ msgid "The selected tables and all content will be erased. Do you really want to delete them?"
641
+ msgstr "Вылучаныя табліцы і ўсё змесціва будуць выдалены. Вы сапраўды жадаеце іх выдаліць?"
642
+
643
+ #: controllers/controller-admin.php:1703
644
+ msgid "Do you really want to import the selected tables from the wp-Table plugin?"
645
+ msgstr "Вы сапраўды жадаеце імпартаваць вылучаныя табліцы з wp-Table plugin?"
646
+
647
+ #: controllers/controller-admin.php:1704
648
+ msgid "Do you want to copy this table?"
649
+ msgstr "Вы жадаеце скапіяваць гэту табліцу?"
650
+
651
+ #: controllers/controller-admin.php:1705
652
+ msgid "The complete table and all content will be erased. Do you really want to delete it?"
653
+ msgstr "Усе табліцы і змесціва будуць выдалены. Вы сапраўды жадаеце іх выдаліць?"
654
+
655
+ #: controllers/controller-admin.php:1706
656
+ msgid "Do you really want to delete the selected rows?"
657
+ msgstr "Вы сапраўды жадаеце выдаліць вылучаныя шэрагі?"
658
+
659
+ #: controllers/controller-admin.php:1707
660
+ msgid "Do you really want to delete the selected columns?"
661
+ msgstr "Вы сапраўды жадаеце выдаліць вылучаныя шэрагі?"
662
+
663
+ #: controllers/controller-admin.php:1708
664
+ #: controllers/controller-admin.php:1712
665
+ #: controllers/controller-admin.php:1714
666
+ msgid "You have not selected any rows."
667
+ msgstr "Вы не абралі ніводнага шэрагу."
668
+
669
+ #: controllers/controller-admin.php:1709
670
+ #: controllers/controller-admin.php:1713
671
+ #: controllers/controller-admin.php:1715
672
+ msgid "You have not selected any columns."
673
+ msgstr "Вы не абралі ніводнага слупка."
674
+
675
+ #: controllers/controller-admin.php:1710
676
+ msgid "You can not delete all rows of the table at once!"
677
+ msgstr "Вы не можаце выдаліць адразу ўсе шэрагі ў табліцы!"
678
+
679
+ #: controllers/controller-admin.php:1711
680
+ msgid "You can not delete all columns of the table at once!"
681
+ msgstr "Вы не можаце выдаліць адразу ўсе слупкі ў табліцы!"
682
+
683
+ #: controllers/controller-admin.php:1716
684
+ msgid "Do you really want to import this table from the wp-Table plugin?"
685
+ msgstr "Вы сапраўды жадаеце імпартаваць гэту табліцу з wp-Table plugin?"
686
+
687
+ #: controllers/controller-admin.php:1717
688
+ msgid "Do you really want to uninstall the plugin and delete ALL data?"
689
+ msgstr "Вы сапраўды жадаеце выдаліць убудову і ЎСЕ дадзеныя?"
690
+
691
+ #: controllers/controller-admin.php:1718
692
+ msgid "Are you really sure?"
693
+ msgstr "Вы ўпэўнены?"
694
+
695
+ #: controllers/controller-admin.php:1719
696
+ msgid "Do you really want to change the ID of the table?"
697
+ msgstr "Вы сапраўды жадаеце змяніць ID табліцы?"
698
+
699
+ #: controllers/controller-admin.php:1720
700
+ msgid "To show this Custom Data Field, use this shortcode:"
701
+ msgstr "Каб адлюстраваць гэта карыстацкае поле выкарыстоўвайце код:"
702
+
703
+ #: controllers/controller-admin.php:1721
704
+ msgid "To show this table, use this shortcode:"
705
+ msgstr "Каб адлюстраваць гэту табліцу выкарыстоўвайце код:"
706
+
707
+ #: controllers/controller-admin.php:1722
708
+ msgid "Warning: You will lose all current Tables and Settings! You should create a backup first. Be warned!"
709
+ msgstr "Увага: вы страціце ўсе табліцы і налады! Вам трэба стварыць рэзервовую копію."
710
+
711
+ #: controllers/controller-admin.php:1723
712
+ msgid "You have made changes to the content of this table and not yet saved them."
713
+ msgstr "Вы ўнеслі змены ў змесціва гэтай табліцы, але не захавалі іх."
714
+
715
+ #: controllers/controller-admin.php:1723
716
+ #, php-format
717
+ msgid "You should first click &quot;%s&quot; or they will be lost if you navigate away from this page."
718
+ msgstr "Вам трэба клікнуць &quot;%s&quot; ці дадзеныя будуць страчаны ў выпадку калі вы пакініце гэту старонку."
719
+
720
+ #: controllers/controller-admin.php:1723
721
+ #: views/view-edit.php:41
722
+ #: views/view-edit.php:253
723
+ #: views/view-edit.php:405
724
+ #: views/view-edit.php:456
725
+ msgid "Update Changes"
726
+ msgstr "Абнавіць змены."
727
+
728
+ #: controllers/controller-admin.php:1766
729
+ #: views/view-about.php:14
730
+ #: views/view-list.php:2
731
+ msgid "Table"
732
+ msgstr "Табліца"
733
+
734
+ #: controllers/controller-admin.php:1767
735
+ msgid "Insert a Table"
736
+ msgstr "Уставіць табліцу"
737
+
738
+ #: controllers/controller-admin.php:1828
739
+ msgid "Please wait..."
740
+ msgstr "Калі ласка, пачакайце..."
741
+
742
+ #: controllers/controller-admin.php:1829
743
+ msgid "Show _MENU_ Tables"
744
+ msgstr "Паказаць _MENU_ табліц"
745
+
746
+ #: controllers/controller-admin.php:1830
747
+ #: views/view-ajax_list.php:53
748
+ #: views/view-export.php:71
749
+ #: views/view-list.php:88
750
+ msgid "No tables were found."
751
+ msgstr "Ніводнай табліцы не знойдзена."
752
+
753
+ #: controllers/controller-admin.php:1831
754
+ msgid "_START_ to _END_ of _TOTAL_ Tables"
755
+ msgstr "Паказаць _START_ да _END_ з _TOTAL_ табліц"
756
+
757
+ #: controllers/controller-admin.php:1832
758
+ msgid "(filtered from _MAX_ Tables)"
759
+ msgstr "(абрана з _MAX_ табліц)"
760
+
761
+ #: controllers/controller-admin.php:1833
762
+ msgid "Filter:"
763
+ msgstr "Адфільтраваць:"
764
+
765
+ #: controllers/controller-admin.php:1834
766
+ msgid "First"
767
+ msgstr "Першы"
768
+
769
+ #: controllers/controller-admin.php:1835
770
+ msgid "Back"
771
+ msgstr "Назад"
772
+
773
+ #: controllers/controller-admin.php:1836
774
+ msgid "Next"
775
+ msgstr "Наступны"
776
+
777
+ #: controllers/controller-admin.php:1837
778
+ msgid "Last"
779
+ msgstr "Апошні"
780
+
781
+ #: views/view-about.php:5
782
+ msgid "Plugin Purpose"
783
+ msgstr "Прызначэнне ўбудовы."
784
+
785
+ #: views/view-about.php:7
786
+ msgid "WP-Table Reloaded allows you to create and manage tables in the admin-area of WordPress."
787
+ msgstr "WP-Table Reloaded дае вам магчымасць ствараць табліцы і кіраваць імі ў адмін частке WordPress."
788
+
789
+ #: views/view-about.php:7
790
+ msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
791
+ msgstr "Гэтыя табліцы могуць утрымоўваць тэкст, лікі і нават HTML (напрыклад малюначкі і спасылкі)"
792
+
793
+ #: views/view-about.php:7
794
+ msgid "You can then show the tables in your posts, on your pages or in text-widgets by using a shortcode."
795
+ msgstr "Затым вы можаце змясціць табліцы ў ваш пост, на вашы старонкі ці виджаты, выкарыстоўваючы код."
796
+
797
+ #: views/view-about.php:7
798
+ msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
799
+ msgstr "Калі вы жадаеце выкарыстоўваць табліцы дзе-або яшчэ ў вашай тэме, вы можаце выкарыстоўваць функцыю шаблону."
800
+
801
+ #: views/view-about.php:12
802
+ msgid "Usage"
803
+ msgstr "Выкарыстанне"
804
+
805
+ #: views/view-about.php:14
806
+ msgid "At first you should add or import a table."
807
+ msgstr "Спачатку вам трэба дадаць і імпартаваць табліцу."
808
+
809
+ #: views/view-about.php:14
810
+ msgid "This means that you either let the plugin create an empty table for you or that you load an existing table from either a CSV, XML or HTML file."
811
+ msgstr "Гэта значыць, што вы дазволілі ўбудове стварыць пустую табліцу, ці загрузілі ўжо існую табліцу з CSV, XML ці HTML файла."
812
+
813
+ #: views/view-about.php:14
814
+ msgid "Then you can edit your data or change the structure of your table (e.g. by inserting or deleting rows or columns, swaping rows or columns or sorting them) and select specific table options like alternating row colors or whether to print the name or description, if you want."
815
+ msgstr "Пасля вы можаце рэдагаваць вашы дадзеныя ці змяняць структуру табліцы (напрыклад дадаючы шэрагі, ці слупкі, змяняючы месцамі шэрагі ці, слупкі, ці сартуючы іх) і выбіраць спецыфічныя опцыі табліцы, такія як альтэрнатыўны колер фону радка і адлюстраванне імя і апісання."
816
+
817
+ #: views/view-about.php:14
818
+ msgid "To easily add a link or an image to a cell, use the provided buttons. Those will ask you for the URL and a title. Then you can click into a cell and the corresponding HTML will be added to it for you."
819
+ msgstr "Для таго, каб дадаць малюначак ці спасылку ў вочка, выкарыстоўвайце адпаведныя кнопкі. "
820
+
821
+ #: views/view-about.php:14
822
+ #: views/view-ajax_preview.php:5
823
+ #: views/view-edit.php:9
824
+ #: views/view-list.php:2
825
+ #, php-format
826
+ msgid "To insert the table into a page, post or text-widget, copy the shortcode <strong>[table id=%s /]</strong> and paste it into the corresponding place in the editor."
827
+ msgstr "Для таго, каб дадаць табліцу на старонку, у пост ці ў тэкставы виджет, скапіюйце код <strong>[table id=%s /]</strong> і змесціце ў соответствуещее месца ў рэдактары."
828
+
829
+ #: views/view-about.php:14
830
+ #, php-format
831
+ msgid "You can also select the desired table from a list (after clicking the button &quot;%s&quot; in the editor toolbar) and the corresponding shortcode will be added for you."
832
+ msgstr "Вы гэтак жа можаце абраць жаданую табліцу са спісу (для гэтага трэба націснуць кнопку &quot;%s&quot; на панэлі прылад рэдактара) і адпаведны код будзе дададзены."
833
+
834
+ #: views/view-about.php:14
835
+ msgid "Tables can be styled by changing and adding CSS commands."
836
+ msgstr "Вонкавы выгляд табліцы можа быць зменены з дапамогай дадання і змены CSS дырэктыў."
837
+
838
+ #: views/view-about.php:14
839
+ msgid "The plugin ships with default CSS Stylesheets, which can be customized with own code or replaced with other Stylesheets."
840
+ msgstr "Убудова падаецца з лістом стыляў па змаўчанні, які можа быць дапоўнены вашым уласным кодам ці заменены на іншы ліст стыляў."
841
+
842
+ #: views/view-about.php:14
843
+ msgid "For this, each table is given certain CSS classes that can be used as CSS selectors."
844
+ msgstr "Для гэтага кожная табліца забяспечана сваімі класамі ў лісце стыляў, якія могуць быць скарыстаны як селектары стыляў."
845
+
846
+ #: views/view-about.php:14
847
+ #, php-format
848
+ msgid "Please see the <a href=\"%s\">documentation</a> for a list of these selectors and for styling examples."
849
+ msgstr "Спісы селектараў і прыклады стыляў вы можаце знайсці ў <a href=\"%s\">дакументацыі</a>."
850
+
851
+ #: views/view-about.php:20
852
+ msgid "More Information and Documentation"
853
+ msgstr "Інфармацыя і дакументацыя."
854
+
855
+ #: views/view-about.php:27
856
+ msgid "Help and Support"
857
+ msgstr "Дапамога і падтрымка"
858
+
859
+ #: views/view-about.php:29
860
+ #, php-format
861
+ msgid "If you do not find an answer there, please <a href=\"%s\">open a new thread</a> in the WordPress Support Forums with the tag &quot;wp-table-reloaded&quot;."
862
+ msgstr "Калі вы не знайшлі адказ на сваё пытанне, калі ласка, <a href=\"%s\">стварыце новую тэму</a> на форуме падтрымкі WordPress з ключавым словам &quot;wp-table-reloaded&quot;."
863
+
864
+ #: views/view-about.php:34
865
+ msgid "Author and License"
866
+ msgstr "Аўтар і ліцэнзія"
867
+
868
+ #: views/view-about.php:36
869
+ #, php-format
870
+ msgid "This plugin was written by <a href=\"%s\">Tobias B&auml;thge</a>."
871
+ msgstr "Убудова напісана <a href=\"%s\">Tobias B&auml;thge</a>"
872
+
873
+ #: views/view-about.php:36
874
+ msgid "It is licensed as Free Software under GPL 2."
875
+ msgstr "Праграма распаўсюджваецца па ліцэнзіі GPL 2."
876
+
877
+ #: views/view-about.php:36
878
+ #, php-format
879
+ msgid "Please rate the plugin in the <a href=\"%s\">WordPress Plugin Directory</a>."
880
+ msgstr "Калі ласка дайце адзнаку ўбудове ў <a href=\"%s\"> дырэкторыі ўбудоў WordPress</a>."
881
+
882
+ #: views/view-about.php:36
883
+ msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
884
+ msgstr "Ахвяраванні і высокія рэйтынгі дапамагаюць далейшаму развіццю ўбудовы і яго падтрымцы. Вітаецца любое ахвяраванне! Дзякуй!"
885
+
886
+ #: views/view-about.php:41
887
+ msgid "Credits and Thanks"
888
+ msgstr "Падзяка"
889
+
890
+ #: views/view-about.php:44
891
+ msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
892
+ msgstr "Дзякуй за тое, што звярнуліся на <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> для таго, каб атрымаць wp-Table убудову,"
893
+
894
+ #: views/view-about.php:45
895
+ msgid "Allan Jardine for the <a href=\"http://www.datatables.net/\">DataTables jQuery plugin</a>,"
896
+ msgstr "Allan Jardine за ўбудову <a href=\"http://www.datatables.net/\">DataTables jQuery </a>,"
897
+
898
+ #: views/view-about.php:46
899
+ msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
900
+ msgstr "Christian Bach за ўбудову <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery</a>,"
901
+
902
+ #: views/view-about.php:47
903
+ msgid "Soeren Krings for its extension <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
904
+ msgstr "Soerenu Kringsovi за яго пашырэнне <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
905
+
906
+ #: views/view-about.php:48
907
+ msgid "the submitters of translations:"
908
+ msgstr "перакладнікам:"
909
+
910
+ #: views/view-about.php:76
911
+ #, php-format
912
+ msgid "%s (thanks to %s)"
913
+ msgstr "%s (дзякуючы %s)"
914
+
915
+ #: views/view-about.php:79
916
+ msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
917
+ msgstr "і ўсім фундатарам, распрацоўнікам, аглядальнікам і тым хто выкарыстоўвае ўбудову!"
918
+
919
+ #: views/view-about.php:85
920
+ msgid "Debug and Version Information"
921
+ msgstr "Адладка і інфармацыя пра версіі"
922
+
923
+ #: views/view-about.php:85
924
+ #: views/view-edit.php:15
925
+ #: views/view-edit.php:51
926
+ #: views/view-edit.php:104
927
+ #: views/view-edit.php:262
928
+ #: views/view-edit.php:353
929
+ #: views/view-edit.php:414
930
+ #: views/view-options.php:19
931
+ #: views/view-options.php:70
932
+ #: views/view-options.php:87
933
+ #: views/view-options.php:184
934
+ #: views/view-options.php:195
935
+ msgctxt "expand"
936
+ msgid "Hide"
937
+ msgstr "Схаваць"
938
+
939
+ #: views/view-about.php:85
940
+ #: views/view-edit.php:15
941
+ #: views/view-edit.php:51
942
+ #: views/view-edit.php:104
943
+ #: views/view-edit.php:262
944
+ #: views/view-edit.php:353
945
+ #: views/view-edit.php:414
946
+ #: views/view-options.php:19
947
+ #: views/view-options.php:70
948
+ #: views/view-options.php:87
949
+ #: views/view-options.php:184
950
+ #: views/view-options.php:195
951
+ msgid "Expand"
952
+ msgstr "Адлюстраваць"
953
+
954
+ #: views/view-about.php:88
955
+ msgid "You are using the following versions of the software."
956
+ msgstr "Вы выкарыстоўваеце наступную версію праграмы."
957
+
958
+ #: views/view-about.php:88
959
+ msgid "Please provide this information in bug reports."
960
+ msgstr "Падайце гэту інфармацыю ў баг рэпарту ."
961
+
962
+ #: views/view-about.php:91
963
+ msgid "Plugin installed"
964
+ msgstr "Убудова ўсталявана."
965
+
966
+ #: views/view-add.php:4
967
+ msgid "To add a new table, enter its name, a description (optional) and the number of rows and columns."
968
+ msgstr "Для таго, каб дадаць новую табліцу ўвядзіце яе імя, апісанне (опционно) і пакажыце колькасць шэрагаў і калонак."
969
+
970
+ #: views/view-add.php:4
971
+ msgid "You may also add, insert or delete rows and columns later."
972
+ msgstr "Вы можаце дадаць, ці выдаліць шэрагі і калонкі пазней."
973
+
974
+ #: views/view-add.php:13
975
+ #: views/view-ajax_list.php:14
976
+ #: views/view-ajax_list.php:22
977
+ #: views/view-edit.php:23
978
+ #: views/view-edit.php:283
979
+ #: views/view-import.php:99
980
+ #: views/view-import.php:108
981
+ #: views/view-list.php:15
982
+ #: views/view-list.php:25
983
+ msgid "Table Name"
984
+ msgstr "Імя табліцы"
985
+
986
+ #: views/view-add.php:14
987
+ msgid "Enter Table Name"
988
+ msgstr "Пакажыце імя табліцы"
989
+
990
+ #: views/view-add.php:17
991
+ #: views/view-ajax_list.php:15
992
+ #: views/view-ajax_list.php:23
993
+ #: views/view-edit.php:27
994
+ #: views/view-import.php:100
995
+ #: views/view-import.php:109
996
+ #: views/view-list.php:16
997
+ #: views/view-list.php:26
998
+ msgid "Description"
999
+ msgstr "Апісанне"
1000
+
1001
+ #: views/view-add.php:18
1002
+ msgid "Enter Description"
1003
+ msgstr "Увядзіце апісанне"
1004
+
1005
+ #: views/view-add.php:21
1006
+ msgid "Number of Rows"
1007
+ msgstr "Колькасць шэрагаў"
1008
+
1009
+ #: views/view-add.php:25
1010
+ msgid "Number of Columns"
1011
+ msgstr "Колькасць калонак"
1012
+
1013
+ #: views/view-add.php:32
1014
+ msgid "Add Table"
1015
+ msgstr "Дадаць табліцу"
1016
+
1017
+ #: views/view-ajax_list.php:3
1018
+ #: views/view-list.php:2
1019
+ msgid "This is a list of all available tables."
1020
+ msgstr "Спіс усіх даступных табліц."
1021
+
1022
+ #: views/view-ajax_list.php:3
1023
+ msgid "You may insert a table into a post or page here."
1024
+ msgstr "Тут вы можаце дадаць табліцу ў паведамленне ці на старонку."
1025
+
1026
+ #: views/view-ajax_list.php:4
1027
+ #, php-format
1028
+ msgid "Click the &quot;%s&quot; link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=&lt;ID&gt; /]</strong>)."
1029
+ msgstr "Націсніце на спасылку &quot;%s&quot; пасля жаданай табліцы і адпаведны код будзе дададзены ў рэдактар (<strong>[table id=&lt;ID&gt; /]</strong>)."
1030
+
1031
+ #: views/view-ajax_list.php:4
1032
+ #: views/view-ajax_list.php:44
1033
+ msgid "Insert"
1034
+ msgstr "Змясціць"
1035
+
1036
+ #: views/view-ajax_list.php:13
1037
+ #: views/view-ajax_list.php:21
1038
+ #: views/view-import.php:98
1039
+ #: views/view-import.php:107
1040
+ #: views/view-list.php:13
1041
+ #: views/view-list.php:23
1042
+ msgid "ID"
1043
+ msgstr "ID"
1044
+
1045
+ #: views/view-ajax_list.php:16
1046
+ #: views/view-ajax_list.php:24
1047
+ #: views/view-edit.php:426
1048
+ #: views/view-import.php:101
1049
+ #: views/view-import.php:110
1050
+ msgid "Action"
1051
+ msgstr "Дзеянне"
1052
+
1053
+ #: views/view-ajax_preview.php:3
1054
+ msgid "This is a preview of your table."
1055
+ msgstr "Папярэдні прагляд вашай табліцы."
1056
+
1057
+ #: views/view-ajax_preview.php:4
1058
+ msgid "Because of CSS styling, the table might look different on your page!"
1059
+ msgstr "Дзякуючы лісту стыляў, вонкавы выгляд табліцы на вашай старонцы можа адрознівацца."
1060
+
1061
+ #: views/view-ajax_preview.php:4
1062
+ msgid "The JavaScript libraries are also not available in this preview."
1063
+ msgstr "JavaScript бібліятэкі таксама не даступны для папярэдняга прагляду."
1064
+
1065
+ #: views/view-edit.php:8
1066
+ msgid "On this page, you can edit the content of the table."
1067
+ msgstr "На гэтай старонцы вы можаце рэдагаваць змесціва табліцы."
1068
+
1069
+ #: views/view-edit.php:8
1070
+ msgid "It is also possible to change the table structure by inserting, deleting, moving, and swapping columns and rows."
1071
+ msgstr "Таксама, магчыма змяняць структуру табліцы шляхам дадання, выняткі і перасоўванні шэрагаў і калонак."
1072
+
1073
+ #: views/view-edit.php:15
1074
+ msgid "Table Information"
1075
+ msgstr "Інфармацыя пра табліцу"
1076
+
1077
+ #: views/view-edit.php:19
1078
+ msgid "Table ID"
1079
+ msgstr "ID табліцы"
1080
+
1081
+ #: views/view-edit.php:32
1082
+ #: views/view-list.php:17
1083
+ #: views/view-list.php:27
1084
+ msgid "Last Modified"
1085
+ msgstr "Дата апошняй змены"
1086
+
1087
+ #: views/view-edit.php:33
1088
+ #: views/view-list.php:44
1089
+ msgid "by"
1090
+ msgstr "карыстачом"
1091
+
1092
+ #: views/view-edit.php:42
1093
+ #: views/view-edit.php:254
1094
+ #: views/view-edit.php:406
1095
+ #: views/view-edit.php:457
1096
+ msgid "Save and go back"
1097
+ msgstr "Захаваць і вярнуцца"
1098
+
1099
+ #: views/view-edit.php:45
1100
+ #: views/view-edit.php:257
1101
+ #: views/view-edit.php:409
1102
+ #: views/view-edit.php:460
1103
+ #: views/view-options.php:65
1104
+ #: views/view-options.php:171
1105
+ msgid "Cancel"
1106
+ msgstr "Адмена"
1107
+
1108
+ #: views/view-edit.php:51
1109
+ msgid "Table Contents"
1110
+ msgstr "Змесціва табліцы"
1111
+
1112
+ #: views/view-edit.php:104
1113
+ msgid "Data Manipulation"
1114
+ msgstr "Маніпуляцыя дадзенымі"
1115
+
1116
+ #: views/view-edit.php:114
1117
+ #: views/view-options.php:55
1118
+ msgid "Insert Link"
1119
+ msgstr "Змясціць спасылку"
1120
+
1121
+ #: views/view-edit.php:115
1122
+ msgid "Insert Image"
1123
+ msgstr "Змясціць малюнак"
1124
+
1125
+ #: views/view-edit.php:124
1126
+ msgid "ascending"
1127
+ msgstr "па ўзрастанні"
1128
+
1129
+ #: views/view-edit.php:125
1130
+ msgid "descending"
1131
+ msgstr "па змяншэнні"
1132
+
1133
+ #: views/view-edit.php:128
1134
+ #, php-format
1135
+ msgid "Sort table by column %s in %s order"
1136
+ msgstr "Адсартаваць табліцы па слупку %s у %s парадку"
1137
+
1138
+ #: views/view-edit.php:130
1139
+ msgid "Sort"
1140
+ msgstr "Адсартаваць"
1141
+
1142
+ #: views/view-edit.php:135
1143
+ #: views/view-edit.php:139
1144
+ msgctxt "item"
1145
+ msgid "Hide"
1146
+ msgstr "Схаваць"
1147
+
1148
+ #: views/view-edit.php:136
1149
+ #: views/view-edit.php:140
1150
+ msgctxt "item"
1151
+ msgid "Unhide"
1152
+ msgstr "Адлюстраваць"
1153
+
1154
+ #: views/view-edit.php:137
1155
+ #, php-format
1156
+ msgctxt "hide_unhide"
1157
+ msgid "Selected rows: %s %s"
1158
+ msgstr "Абраць шэрагі: %s %s"
1159
+
1160
+ #: views/view-edit.php:141
1161
+ #, php-format
1162
+ msgctxt "hide_unhide"
1163
+ msgid "Selected columns: %s %s"
1164
+ msgstr "Абраць калонкі: %s %s"
1165
+
1166
+ #: views/view-edit.php:144
1167
+ msgid "Combine cells in a row:"
1168
+ msgstr "Аб'яднаць вочкі ў шэраг:"
1169
+
1170
+ #: views/view-edit.php:145
1171
+ msgid "Add colspan"
1172
+ msgstr "Дадаць colspan"
1173
+
1174
+ #: views/view-edit.php:148
1175
+ msgid "Combine cells in a column:"
1176
+ msgstr "Аб'яднаць вочкі ў слупок:"
1177
+
1178
+ #: views/view-edit.php:149
1179
+ msgid "Add rowspan"
1180
+ msgstr "Дадаць rowspan"
1181
+
1182
+ #: views/view-edit.php:155
1183
+ msgid "Insert row"
1184
+ msgstr "Змясціць шэраг"
1185
+
1186
+ #: views/view-edit.php:156
1187
+ #: views/view-edit.php:160
1188
+ #: views/view-list.php:65
1189
+ msgid "Delete"
1190
+ msgstr "Выдаліць"
1191
+
1192
+ #: views/view-edit.php:157
1193
+ #, php-format
1194
+ msgctxt "insert_delete"
1195
+ msgid "Selected rows: %s %s"
1196
+ msgstr "Абраць шэрагі: %s %s"
1197
+
1198
+ #: views/view-edit.php:159
1199
+ msgid "Insert column"
1200
+ msgstr "Змясціць слупок"
1201
+
1202
+ #: views/view-edit.php:161
1203
+ #, php-format
1204
+ msgctxt "insert_delete"
1205
+ msgid "Selected columns: %s %s"
1206
+ msgstr "Абраць слупкі: %s %s"
1207
+
1208
+ #: views/view-edit.php:171
1209
+ #, php-format
1210
+ msgid "Add %s row(s)"
1211
+ msgstr "Дадаць %s шэрагі"
1212
+
1213
+ #: views/view-edit.php:172
1214
+ #: views/view-edit.php:175
1215
+ #: views/view-edit.php:451
1216
+ msgid "Add"
1217
+ msgstr "Дадаць"
1218
+
1219
+ #: views/view-edit.php:174
1220
+ #, php-format
1221
+ msgid "Add %s column(s)"
1222
+ msgstr "Дадаць %s слупкі"
1223
+
1224
+ #: views/view-edit.php:189
1225
+ #, php-format
1226
+ msgid "Swap rows %s and %s"
1227
+ msgstr "Памяняць месцамі %s і %s"
1228
+
1229
+ #: views/view-edit.php:191
1230
+ #: views/view-edit.php:206
1231
+ msgid "Swap"
1232
+ msgstr "Памяняць месцамі"
1233
+
1234
+ #: views/view-edit.php:204
1235
+ #, php-format
1236
+ msgid "Swap columns %s and %s"
1237
+ msgstr "Памяняць месцамі слупкі %s і %s"
1238
+
1239
+ #: views/view-edit.php:219
1240
+ #: views/view-edit.php:239
1241
+ msgid "before"
1242
+ msgstr "перад"
1243
+
1244
+ #: views/view-edit.php:220
1245
+ #: views/view-edit.php:240
1246
+ msgid "after"
1247
+ msgstr "пасля"
1248
+
1249
+ #: views/view-edit.php:223
1250
+ #, php-format
1251
+ msgid "Move row %s %s row %s"
1252
+ msgstr "Пасунуць шэраг %s %s шэраг %s"
1253
+
1254
+ #: views/view-edit.php:225
1255
+ #: views/view-edit.php:245
1256
+ msgid "Move"
1257
+ msgstr "Пасунуць"
1258
+
1259
+ #: views/view-edit.php:243
1260
+ #, php-format
1261
+ msgid "Move column %s %s column %s"
1262
+ msgstr "Пасунуць слупок %s %s слупок %s"
1263
+
1264
+ #: views/view-edit.php:262
1265
+ msgid "Table Styling Options"
1266
+ msgstr "Налады стылю табліцы"
1267
+
1268
+ #: views/view-edit.php:264
1269
+ msgid "These settings will only be used for this table."
1270
+ msgstr "Гэтыя ўсталёўкі будуць скарыстаны толькі для гэтай табліцы."
1271
+
1272
+ #: views/view-edit.php:267
1273
+ msgid "Alternating row colors"
1274
+ msgstr "Альтэрнатыўныя колеры шэрагаў"
1275
+
1276
+ #: views/view-edit.php:268
1277
+ msgid "Every second row has an alternating background color."
1278
+ msgstr "Кожны другі шэраг будзе мець альтэрнатыўны колер фону."
1279
+
1280
+ #: views/view-edit.php:271
1281
+ msgid "Row Highlighting"
1282
+ msgstr "Падсвятленне шэрагу"
1283
+
1284
+ #: views/view-edit.php:272
1285
+ msgid "Highlight a row by changing its background color while the mouse cursor hovers above it."
1286
+ msgstr "Шэраг падсвятляецца шляхам змены колеру фону, калі на яго наводзіцца курсор мышы."
1287
+
1288
+ #: views/view-edit.php:275
1289
+ msgid "Table head"
1290
+ msgstr "Загаловак табліцы"
1291
+
1292
+ #: views/view-edit.php:276
1293
+ msgid "The first row of your table is the table head (HTML tags &lt;thead&gt; and &lt;th&gt;)."
1294
+ msgstr "Правы шэраг вашай табліцы гэта яе загаловак (яму прысвоены HTML tag &lt;th&gt;)"
1295
+
1296
+ #: views/view-edit.php:279
1297
+ msgid "Table footer"
1298
+ msgstr "Футэр табліцы"
1299
+
1300
+ #: views/view-edit.php:280
1301
+ msgid "The last row of your table is the table footer (HTML tags &lt;tfoot&gt; and &lt;th&gt;)."
1302
+ msgstr "Апошні шэраг вашай табліцы з'яўляецца яе футэрам."
1303
+
1304
+ #: views/view-edit.php:289
1305
+ #: views/view-edit.php:306
1306
+ msgid "above"
1307
+ msgstr "над"
1308
+
1309
+ #: views/view-edit.php:291
1310
+ #: views/view-edit.php:308
1311
+ msgid "below"
1312
+ msgstr "пад"
1313
+
1314
+ #: views/view-edit.php:294
1315
+ #, php-format
1316
+ msgid "The Table Name shall be written %s the table (HTML tag &lt;h2&gt;)."
1317
+ msgstr ""
1318
+
1319
+ #: views/view-edit.php:300
1320
+ msgid "Table Description"
1321
+ msgstr "Апісанне табліцы"
1322
+
1323
+ #: views/view-edit.php:311
1324
+ #, php-format
1325
+ msgid "The Table Description shall be written %s the table."
1326
+ msgstr ""
1327
+
1328
+ #: views/view-edit.php:317
1329
+ msgid "Use JavaScript library"
1330
+ msgstr "Выкарыстоўваць JavaScript бібліятэку "
1331
+
1332
+ #: views/view-edit.php:323
1333
+ #: views/view-edit.php:327
1334
+ #: views/view-edit.php:339
1335
+ msgid "You can change further settings for this library below."
1336
+ msgstr "Вы можаце змяніць налады гэтай бібліятэкі ніжэй."
1337
+
1338
+ #: views/view-edit.php:331
1339
+ #: views/view-edit.php:335
1340
+ msgid "The table will then be sortable by the visitor."
1341
+ msgstr "Сартаванне гэтай табліцы будзе даступна карыстачу."
1342
+
1343
+ #: views/view-edit.php:342
1344
+ #, php-format
1345
+ msgid "Yes, use the &quot;%s&quot; JavaScript library with this table."
1346
+ msgstr "Так, выкарыстоўваць &quot;%s&quot; JavaScript бібліятэку для гэтай табліцы."
1347
+
1348
+ #: views/view-edit.php:342
1349
+ #, php-format
1350
+ msgid "You must enable the use of a JavaScript library on the &quot;%s&quot; screen first."
1351
+ msgstr "Вы павінны ўключыць падтрымку JavaScript бібліятэкі на &quot;%s&quot;."
1352
+
1353
+ #: views/view-edit.php:353
1354
+ msgid "DataTables JavaScript Features"
1355
+ msgstr "JavaScript магчымасці базы дадзеных."
1356
+
1357
+ #: views/view-edit.php:355
1358
+ msgid "You can enable certain features for the DataTables JavaScript library here."
1359
+ msgstr "Тут вы можаце ўключыць некаторыя магчымасці для базы дадзеных JavaScript."
1360
+
1361
+ #: views/view-edit.php:355
1362
+ msgid "More information on these features can be found on the <a href=\"http://www.datatables.net/\">DataTables website</a>."
1363
+ msgstr "За дадатковай інфармацыяй звяртайцеся на <a href=\"http://www.datatables.net/\">сайт DataTables</a>."
1364
+
1365
+ #: views/view-edit.php:357
1366
+ #, php-format
1367
+ msgid "You can currently not change these options, because you have not enabled the &quot;DataTables&quot; or the &quot;DataTables+TableTools&quot; JavaScript library on the &quot;%s&quot; screen."
1368
+ msgstr "У дадзены момант гэтыя опцыі змяніць нельга, таму што вы не актывавалі &quot;DataTables&quot; ці &quot;DataTables+TableTools&quot; JavaScript бібліятэку на &quot;%s&quot;."
1369
+
1370
+ #: views/view-edit.php:357
1371
+ msgid "It is not possible to use these features with the &quot;Tablesorter&quot; or &quot;Tablesorter Extended&quot; libraries."
1372
+ msgstr "Гэтыя функцыі нельга выкарыстоўваць у спалучэнні з &quot;Tablesorter&quot; ці &quot;Tablesorter Extended&quot; бібліятэкамі."
1373
+
1374
+ #: views/view-edit.php:361
1375
+ msgid "Sorting"
1376
+ msgstr "Сартаванне"
1377
+
1378
+ #: views/view-edit.php:362
1379
+ msgid "Yes, enable sorting of table data by the visitor."
1380
+ msgstr "Так, дазволіць карыстачам сартаваць табліцу."
1381
+
1382
+ #: views/view-edit.php:365
1383
+ msgid "Pagination"
1384
+ msgstr "Нумарацыя старонак"
1385
+
1386
+ #: views/view-edit.php:370
1387
+ msgid "Yes, enable pagination (showing only a certain number of rows) of the table by the visitor."
1388
+ msgstr "Уключыць разбіўку табліцы на старонкі (адлюстроўваць толькі вызначаны лік радкоў)."
1389
+
1390
+ #: views/view-edit.php:372
1391
+ #, php-format
1392
+ msgid "Show %1$s rows of the table per page."
1393
+ msgstr "Адлюстроўваць %1$s радкоў табліцы на старонку."
1394
+
1395
+ #: views/view-edit.php:378
1396
+ msgid "Length Change"
1397
+ msgstr "Змяніць даўжыню"
1398
+
1399
+ #: views/view-edit.php:379
1400
+ msgid "Yes, allow the visitor to change the number of rows shown when using pagination."
1401
+ msgstr "Дазволіць карыстачу змяняць колькасць шэрагаў пры выкарыстанні нумарацыі старонак."
1402
+
1403
+ #: views/view-edit.php:382
1404
+ msgid "Filtering"
1405
+ msgstr "Фільтраванне"
1406
+
1407
+ #: views/view-edit.php:383
1408
+ msgid "Yes, enable the visitor to filter or search the table. Only rows with the search word in them are shown."
1409
+ msgstr "Дазволіць карыстачу фільтраваць і шукаць табліцу. Адлюстраваны толькі шэрагі з шуканым словам."
1410
+
1411
+ #: views/view-edit.php:386
1412
+ msgid "Info Bar"
1413
+ msgstr "Панэль інфармацыі"
1414
+
1415
+ #: views/view-edit.php:387
1416
+ msgid "Yes, show the table information display. This shows information and statistics about the currently visible data, including filtering."
1417
+ msgstr "Так, адлюстроўваць інфармацыю табліцы. Тут адлюстравана інфармацыя і статыстыка пра бягучыя бачныя дадзеныя, уключаючы фільтраванне."
1418
+
1419
+ #: views/view-edit.php:390
1420
+ msgid "TableTools"
1421
+ msgstr "Прылады табліцы"
1422
+
1423
+ #: views/view-edit.php:392
1424
+ msgid "Yes, activate the TableTools functions (Copy to Clipboard, Save to CSV, Save to XLS, Print Table) for this table."
1425
+ msgstr "Так, актываваць функцыю \"прылады табліцы\" ( \"скапіяваць у буфер абмену\", \"захаваць у CSV\", \"захаваць у XLS\", \"надрукаваць табліцу\") для гэтай табліцы."
1426
+
1427
+ #: views/view-edit.php:393
1428
+ msgid "This option can only be used with the &quot;DataTables+TableTools&quot; JavaScript library."
1429
+ msgstr "Гэту опцыю магчыма выкарыстоўваць толькі з &quot;DataTables+TableTools&quot; JavaScript бібліятэкай."
1430
+
1431
+ #: views/view-edit.php:397
1432
+ msgid "Custom Commands"
1433
+ msgstr "Карыстацкія каманды"
1434
+
1435
+ #: views/view-edit.php:398
1436
+ msgid "Enter additional DataTables JavaScript parameters that will be included with the script call here."
1437
+ msgstr "Увесці дадатковыя DataTables JavaScript параметры, якія будуць дададзены да выкліку гэтага скрыпту."
1438
+
1439
+ #: views/view-edit.php:398
1440
+ msgid "For advanced use only. Read the <a href=\"http://www.datatables.net/\">DataTables documentation</a> before."
1441
+ msgstr "Для дасведчаных карыстачоў. Спачатку прачытайце <a href=\"http://www.datatables.net/\">DataTables documentation</a>."
1442
+
1443
+ #: views/view-edit.php:414
1444
+ msgid "Custom Data Fields"
1445
+ msgstr "Палі вызначаныя карыстачом"
1446
+
1447
+ #: views/view-edit.php:416
1448
+ msgid "Custom Data Fields can be used to add extra metadata to a table."
1449
+ msgstr "Палі вызначаныя карыстачом могуць выкарыстоўвацца для дадання дадатковых meta-дадзеных у табліцу."
1450
+
1451
+ #: views/view-edit.php:416
1452
+ msgid "For example, this could be information about the source or the creator of the data."
1453
+ msgstr "Напрыклад, гэта можа быць інфармацыя пра крыніцу, ці стваральніка інфармацыі. "
1454
+
1455
+ #: views/view-edit.php:418
1456
+ #, php-format
1457
+ msgid "You can show this data in the same way as tables by using the shortcode <strong>[table-info id=%s field=\"&lt;field-name&gt;\" /]</strong>."
1458
+ msgstr "Вы можаце паказваць гэтаую інфармацыю гэтак жа як і табліцы, з дапамогай выкарыстання кода <strong>[table-info id=%s field=\"&lt;field-name&gt;\" /]</strong>."
1459
+
1460
+ #: views/view-edit.php:424
1461
+ msgid "Field Name"
1462
+ msgstr "Імя поля"
1463
+
1464
+ #: views/view-edit.php:425
1465
+ msgid "Value"
1466
+ msgstr "Значэнне"
1467
+
1468
+ #: views/view-edit.php:439
1469
+ msgid "Delete Field"
1470
+ msgstr "Выдаліць поле"
1471
+
1472
+ #: views/view-edit.php:441
1473
+ msgid "View shortcode"
1474
+ msgstr "Паглядзець код"
1475
+
1476
+ #: views/view-edit.php:450
1477
+ msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
1478
+ msgstr "Каб паказаць новае поле вызначанае карыстачом, увядзіце гэта імя (толькі вялікімі літарамі, лікамі, _ і -)."
1479
+
1480
+ #: views/view-edit.php:451
1481
+ msgid "Custom Data Field Name"
1482
+ msgstr "Імя поля вызначанага карыстачом"
1483
+
1484
+ #: views/view-edit.php:465
1485
+ msgid "Other actions"
1486
+ msgstr "Іншыя дзеянні"
1487
+
1488
+ #: views/view-edit.php:468
1489
+ msgid "Delete Table"
1490
+ msgstr "Выдаліць табліцу"
1491
+
1492
+ #: views/view-edit.php:469
1493
+ #: views/view-export.php:59
1494
+ msgid "Export Table"
1495
+ msgstr "Экспартаваць табліцу"
1496
+
1497
+ #: views/view-export.php:10
1498
+ msgid "It is recommended to export and backup the data of important tables regularly."
1499
+ msgstr "Рэкамендуецца рэгулярна захоўваць рэзервовую копію."
1500
+
1501
+ #: views/view-export.php:10
1502
+ msgid "Select the table, the desired export format and (for CSV only) a delimiter."
1503
+ msgstr "Абраць табліцу, фармат экспарту і (толькі для CSV) падзельнік."
1504
+
1505
+ #: views/view-export.php:10
1506
+ msgid "You may choose to download the export file. Otherwise it will be shown on this page."
1507
+ msgstr "WP-Table Reloaded можа імпартаваць табліцы з ужо існых дадзеных. Вы можаце запампаваць экспарт-файл, інакш ён будзе адлюстраваны на гэтай старонцы."
1508
+
1509
+ #: views/view-export.php:10
1510
+ msgid "Be aware that only the table data, but no options or settings are exported."
1511
+ msgstr "Ведайце, што экспартуюцца толькі дадзеныя табліцы, а не налады і ўсталёўкі."
1512
+
1513
+ #: views/view-export.php:10
1514
+ #, php-format
1515
+ msgid "To backup all tables, including their settings, at once use the &quot;%s&quot; button in the &quot;%s&quot;."
1516
+ msgstr "Для таго, каб захаваць табліцы і ўсталёўкі выкарыстоўвайце &quot;%s&quot; кнопку ў &quot;%s&quot;."
1517
+
1518
+ #: views/view-export.php:10
1519
+ #: views/view-options.php:189
1520
+ msgid "Create and Download Dump File"
1521
+ msgstr "Стварыць і загрузіць Dump File"
1522
+
1523
+ #: views/view-export.php:18
1524
+ msgid "Select Table to Export"
1525
+ msgstr "Абраць табліцу для экспарту"
1526
+
1527
+ #: views/view-export.php:33
1528
+ msgid "Select Export Format"
1529
+ msgstr "Абраць фармат экспарту"
1530
+
1531
+ #: views/view-export.php:43
1532
+ msgid "Select Delimiter to use"
1533
+ msgstr "Абраць падзельнік"
1534
+
1535
+ #: views/view-export.php:50
1536
+ msgid "Only needed for CSV export."
1537
+ msgstr "Трэба толькі для CSV экспарту."
1538
+
1539
+ #: views/view-export.php:53
1540
+ msgid "Download file"
1541
+ msgstr "Загрузіць файл"
1542
+
1543
+ #: views/view-export.php:54
1544
+ msgid "Yes, I want to download the export file."
1545
+ msgstr "Так, я жадаю загрузіць экспартаваны файл"
1546
+
1547
+ #: views/view-export.php:71
1548
+ #: views/view-list.php:88
1549
+ #, php-format
1550
+ msgid "You should <a href=\"%s\">add</a> or <a href=\"%s\">import</a> a table to get started!"
1551
+ msgstr "Для таго, каб пачаць, вам трэба <a href=\"%s\">дадаць</a> ці <a href=\"%s\">імпартаваць</a> табліцу!"
1552
+
1553
+ #: views/view-import.php:3
1554
+ msgid "WP-Table Reloaded can import tables from existing data."
1555
+ msgstr "WP-Table Reloaded можа імпартаваць табліцы з ужо існых дадзеных."
1556
+
1557
+ #: views/view-import.php:3
1558
+ msgid "This may be a CSV, XML or HTML file, each with a certain structure."
1559
+ msgstr "Гэта можа быць CSV, XML ці HTML файл, кожны з вызначанай структурай."
1560
+
1561
+ #: views/view-import.php:3
1562
+ msgid "To import an existing table, please select its format and the source for the import."
1563
+ msgstr "Для таго, каб імпартаваць ужо існую табліцу, абярыце фармат і крыніцу імпартавання."
1564
+
1565
+ #: views/view-import.php:3
1566
+ msgid "You can also decide, if you want to import it as a new table or replace an existing table."
1567
+ msgstr "Вы можаце імпартаваць табліцу як новую ці замяніць ужо існуючую."
1568
+
1569
+ #: views/view-import.php:10
1570
+ msgid "Select Import Format"
1571
+ msgstr "Абраць фармат імпарту."
1572
+
1573
+ #: views/view-import.php:21
1574
+ msgid "Add or Replace Table?"
1575
+ msgstr "Дадаць ці замяніць табліцу?"
1576
+
1577
+ #: views/view-import.php:23
1578
+ msgid "Add as new Table"
1579
+ msgstr "Дадаць табліцу як новую"
1580
+
1581
+ #: views/view-import.php:24
1582
+ msgid "Replace existing Table"
1583
+ msgstr "Замяніць існуючую табліцу"
1584
+
1585
+ #: views/view-import.php:28
1586
+ msgid "Select existing Table to Replace"
1587
+ msgstr "Абраць існуючую табліцу для замены"
1588
+
1589
+ #: views/view-import.php:44
1590
+ msgid "Select source for Import"
1591
+ msgstr "Абраць крыніцу імпарту"
1592
+
1593
+ #: views/view-import.php:46
1594
+ msgid "File upload"
1595
+ msgstr "Загрузка файла"
1596
+
1597
+ #: views/view-import.php:47
1598
+ msgid "URL"
1599
+ msgstr "URL адрас"
1600
+
1601
+ #: views/view-import.php:48
1602
+ msgid "Manual input"
1603
+ msgstr "Ручное даданне"
1604
+
1605
+ #: views/view-import.php:49
1606
+ msgid "File on server"
1607
+ msgstr "Файл на серверы"
1608
+
1609
+ #: views/view-import.php:53
1610
+ msgid "Select File with Table to Import"
1611
+ msgstr "Абраць файл з табліцай для імпарту"
1612
+
1613
+ #: views/view-import.php:57
1614
+ msgid "URL to Import Table from"
1615
+ msgstr "URL адрас з якога будзе імпартавана табліца"
1616
+
1617
+ #: views/view-import.php:61
1618
+ msgid "Path to file on server"
1619
+ msgstr "Шлях да файла на серверы."
1620
+
1621
+ #: views/view-import.php:65
1622
+ msgid "Paste data with Table to Import"
1623
+ msgstr "Устаўце дадзеныя з табліцай, якую будзеце імпартаваць."
1624
+
1625
+ #: views/view-import.php:71
1626
+ msgid "Import Table"
1627
+ msgstr "Імпартаваць табліцу"
1628
+
1629
+ #: views/view-import.php:85
1630
+ msgid "Import from original wp-Table plugin"
1631
+ msgstr "Імпартаваць з арыгінальнай wp-Table убудовы."
1632
+
1633
+ #: views/view-import.php:131
1634
+ msgid "Import"
1635
+ msgstr "Імпартаваць"
1636
+
1637
+ #: views/view-import.php:139
1638
+ #: views/view-list.php:79
1639
+ msgid "Bulk actions:"
1640
+ msgstr "Масавыя дзеянні:"
1641
+
1642
+ #: views/view-import.php:139
1643
+ msgid "Import Tables"
1644
+ msgstr "Імпартаваць табліцы"
1645
+
1646
+ #: views/view-import.php:145
1647
+ msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
1648
+ msgstr "wp-Table быў усталяваны, але ніводнай табліцы не знойдзена."
1649
+
1650
+ #: views/view-list.php:2
1651
+ msgid "You may add, edit, copy, delete or preview tables here."
1652
+ msgstr "Тут вы можаце дадаваць, рэдагаваць ці ажыццяўляць папярэдні прагляд табліцы."
1653
+
1654
+ #: views/view-list.php:2
1655
+ msgid "Each table has a unique ID that needs to be adjusted in that shortcode."
1656
+ msgstr "Кожная табліца мае ўнікальны ID, які трэба паказаць у гэтым кодзе."
1657
+
1658
+ #: views/view-list.php:2
1659
+ #, php-format
1660
+ msgid "You can also click the button &quot;%s&quot; in the editor toolbar to select and insert a table."
1661
+ msgstr "Для таго, каб абраць і ўставіць табліцу вы можаце гэтак жа націснуць кнопку &quot;%s&quot; на панэлі рэдагавання."
1662
+
1663
+ #: views/view-list.php:39
1664
+ msgid "(no name)"
1665
+ msgstr "(імя не паказана)"
1666
+
1667
+ #: views/view-list.php:40
1668
+ msgid "(no description)"
1669
+ msgstr "(без апісання)"
1670
+
1671
+ #: views/view-list.php:58
1672
+ #, php-format
1673
+ msgid "Edit %s"
1674
+ msgstr "Рэдагаваць %s"
1675
+
1676
+ #: views/view-list.php:62
1677
+ msgid "Shortcode"
1678
+ msgstr "Код"
1679
+
1680
+ #: views/view-list.php:63
1681
+ msgid "Copy"
1682
+ msgstr "Капіяваць"
1683
+
1684
+ #: views/view-list.php:64
1685
+ msgid "Export"
1686
+ msgstr "Экспартаваць"
1687
+
1688
+ #: views/view-list.php:66
1689
+ #, php-format
1690
+ msgid "Preview of Table %s"
1691
+ msgstr "Папярэдні прагляд табліцы %s"
1692
+
1693
+ #: views/view-list.php:67
1694
+ msgid "Preview"
1695
+ msgstr "Папярэдні прагляд"
1696
+
1697
+ #: views/view-list.php:79
1698
+ msgid "Copy Tables"
1699
+ msgstr "Скапіяваць табліцы"
1700
+
1701
+ #: views/view-list.php:79
1702
+ msgid "Delete Tables"
1703
+ msgstr "Выдаліць табліцы"
1704
+
1705
+ #: views/view-options.php:3
1706
+ msgid "WP-Table Reloaded has several options which affect the plugin behavior in different areas."
1707
+ msgstr "WP-Table Reloaded мае некалькі налад, якія адказваюць за паводзіны ўбудовы ў розных абласцях."
1708
+
1709
+ #: views/view-options.php:4
1710
+ msgid "Frontend Options influence the output and used features of tables in pages, posts or text-widgets."
1711
+ msgstr "Налады тэмы ўплываюць на адлюстраванне табліц на старонках, у пастах і тэкставых виджетах."
1712
+
1713
+ #: views/view-options.php:4
1714
+ #, php-format
1715
+ msgid "The Backend Options control the plugin's admin area, e.g. the &quot;%s&quot; screen."
1716
+ msgstr "Налады адмін часткі ставяцца на старонке кіравання ўбудовай (&quot;%s&quot;)."
1717
+
1718
+ #: views/view-options.php:4
1719
+ #: views/view-options.php:55
1720
+ #: views/view-options.php:75
1721
+ #: views/view-options.php:79
1722
+ msgid "Edit Table"
1723
+ msgstr "Рэдагаваць"
1724
+
1725
+ #: views/view-options.php:4
1726
+ msgid "Administrators have access to further Admin Options."
1727
+ msgstr "Адміністратары маюць доступ да большага ліку налад."
1728
+
1729
+ #: views/view-options.php:19
1730
+ msgid "Frontend Options"
1731
+ msgstr "Налады вонкавага выгляду"
1732
+
1733
+ #: views/view-options.php:23
1734
+ msgid "JavaScript library"
1735
+ msgstr "JavaScript бібліятэка"
1736
+
1737
+ #: views/view-options.php:24
1738
+ msgid "Yes, enable the use of a JavaScript library."
1739
+ msgstr "Уключыць выкарыстанне JavaScript бібліятэк."
1740
+
1741
+ #: views/view-options.php:24
1742
+ msgid "WP-Table Reloaded includes three JavaScript libraries that can add useful features, like sorting, pagination, and filtering, to a table."
1743
+ msgstr "WP-Table Reloaded уключае тры JavaScript бібліятэкі з дапамогай якіх вы можаце дадаць у табліцу сартаванне, пастаронкавае адлюстраванне і фильтраванне."
1744
+
1745
+ #: views/view-options.php:28
1746
+ msgid "Select the library to use:"
1747
+ msgstr "Абярыце бібліятэку для выкарыстання:"
1748
+
1749
+ #: views/view-options.php:29
1750
+ #: views/view-options.php:127
1751
+ msgid "recommended"
1752
+ msgstr "рэкамендавана"
1753
+
1754
+ #: views/view-options.php:33
1755
+ #, php-format
1756
+ msgid "(You can read more about each library's features on the <a href=\"%s\">plugin's website</a>.)"
1757
+ msgstr "(Больш інфармацыі пра ўласцівасці кожнай бібліятэкі вы можаце атрымаць на <a href=\"%s\">вэбсайты убудовы</a>.)"
1758
+
1759
+ #: views/view-options.php:36
1760
+ msgid "Default CSS"
1761
+ msgstr "CSS па змаўчанні"
1762
+
1763
+ #: views/view-options.php:38
1764
+ msgid "Yes, include and load the plugin's default CSS Stylesheets. This is highly recommended, if you use one of the JavaScript libraries!"
1765
+ msgstr "Выкарыстоўваць CSS па змаўчанні. Гэта рэкамендуецца ў выпадку выкарыстання бібліятэкі JavaScript."
1766
+
1767
+ #: views/view-options.php:42
1768
+ msgid "Custom CSS"
1769
+ msgstr "Карыстацкі CSS"
1770
+
1771
+ #: views/view-options.php:44
1772
+ msgid "Yes, include and load the following custom CSS commands."
1773
+ msgstr "Выкарыстоўваць дырэктывы карыстацкага CSS."
1774
+
1775
+ #: views/view-options.php:44
1776
+ msgid "This should be used to change the table layout and styling."
1777
+ msgstr "Выкарыстоўвайце гэта для змены вонкавага выгляду і стыляў табліцы."
1778
+
1779
+ #: views/view-options.php:50
1780
+ #, php-format
1781
+ msgid "You can get styling examples from the <a href=\"%s\">FAQ</a>."
1782
+ msgstr "Вы можаце атрымаць прыклады стыляў у <a href=\"%s\">FAQ</a>."
1783
+
1784
+ #: views/view-options.php:50
1785
+ #, php-format
1786
+ msgid "Information on available CSS selectors can be found in the <a href=\"%s\">documentation</a>."
1787
+ msgstr "Інфармацыю пра даступныя CSS дырэктывы можаце знайсці ў <a href=\"%s\">дакументацыі</a>."
1788
+
1789
+ #: views/view-options.php:54
1790
+ msgid "Links in new window"
1791
+ msgstr "Адкрыць спасылку ў новым акне."
1792
+
1793
+ #: views/view-options.php:55
1794
+ #, php-format
1795
+ msgid "Yes, open links that are inserted with the &quot;%s&quot; button on the &quot;%s&quot; screen in a new browser window <strong>from now on</strong>."
1796
+ msgstr "Уставіць спасылкі якія былі змешчаны з дапамогай &quot;%s&quot; кнопкі на &quot;%s&quot; экран у новым акне браўзэра <strong>з цяперашняга моманту</strong>"
1797
+
1798
+ #: views/view-options.php:62
1799
+ #: views/view-options.php:168
1800
+ msgid "Save Options"
1801
+ msgstr "Захаваць опцыі"
1802
+
1803
+ #: views/view-options.php:70
1804
+ msgid "Backend Options"
1805
+ msgstr "Опцыі адмін часткі"
1806
+
1807
+ #: views/view-options.php:74
1808
+ msgid "Exit warning"
1809
+ msgstr "Адлюстроўваць папярэджанне"
1810
+
1811
+ #: views/view-options.php:75
1812
+ #, php-format
1813
+ msgid "Yes, show a warning message, if I leave the &quot;%s&quot; screen and have not yet saved my changes."
1814
+ msgstr "Так, паказваць папераджальнае паведамленне, калі я жадаю пакінуць &quot;%s&quot; экран, але змены не захаваны."
1815
+
1816
+ #: views/view-options.php:78
1817
+ msgid "Growing textareas"
1818
+ msgstr "Павялічваючыеся тэкставыя палі."
1819
+
1820
+ #: views/view-options.php:79
1821
+ #, php-format
1822
+ msgid "Yes, enlarge the textareas on the &quot;%s&quot; screen when they are focussed."
1823
+ msgstr "Так, павялічыць тэкставыя палі на &quot;%s&quot; экране калі яны знаходзяцца ў фокусе."
1824
+
1825
+ #: views/view-options.php:87
1826
+ msgid "Admin Options"
1827
+ msgstr "Налады адміністратара"
1828
+
1829
+ #: views/view-options.php:89
1830
+ #: views/view-options.php:209
1831
+ #: views/view-options.php:223
1832
+ msgid "This area are only available to site administrators!"
1833
+ msgstr "Гэта поле даступна толькі адміністратару."
1834
+
1835
+ #: views/view-options.php:89
1836
+ msgid "You can therefore not change these options."
1837
+ msgstr "Вы не можаце змяніць гэтыя налады."
1838
+
1839
+ #: views/view-options.php:94
1840
+ msgid "Plugin Access"
1841
+ msgstr "Доступ да ўбудовы"
1842
+
1843
+ #: views/view-options.php:95
1844
+ msgid "To access WP-Table Reloaded, a user needs to be:"
1845
+ msgstr "Для таго, каб атрымаць доступ да WP-Table Reloaded, карыстач павінен быць:"
1846
+
1847
+ #: views/view-options.php:96
1848
+ #: views/view-options.php:107
1849
+ msgctxt "User role"
1850
+ msgid "Administrator"
1851
+ msgstr "Administrator"
1852
+
1853
+ #: views/view-options.php:97
1854
+ #: views/view-options.php:108
1855
+ msgctxt "User role"
1856
+ msgid "Editor"
1857
+ msgstr "Editor"
1858
+
1859
+ #: views/view-options.php:98
1860
+ #: views/view-options.php:109
1861
+ msgctxt "User role"
1862
+ msgid "Author"
1863
+ msgstr "Author"
1864
+
1865
+ #: views/view-options.php:99
1866
+ msgctxt "User role"
1867
+ msgid "Contributor"
1868
+ msgstr "Contributor"
1869
+
1870
+ #: views/view-options.php:105
1871
+ msgid "Plugin Options Access"
1872
+ msgstr "Доступ да налад"
1873
+
1874
+ #: views/view-options.php:106
1875
+ msgid "To access the Plugin Options of WP-Table Reloaded, a user needs to be:"
1876
+ msgstr "Для таго каб атрымаць доступ да Plugin Options of WP-Table Reloaded, карыстач павінен быць:"
1877
+
1878
+ #: views/view-options.php:110
1879
+ msgid "Admin Options, Dump file Import, and Manual Plugin Uninstall are always accessible by Administrators only, regardless of this setting."
1880
+ msgstr "Налады адміністратара, імпарт файла і ручное выдаленне ўбудовы даступна толькі адміністратару, не залежна ад налад."
1881
+
1882
+ #: views/view-options.php:114
1883
+ msgid "Plugin Language"
1884
+ msgstr "Мова ўбудовы"
1885
+
1886
+ #: views/view-options.php:115
1887
+ msgid "WP-Table Reloaded shall be shown in this language:"
1888
+ msgstr "WP-Table Reloaded павінен адлюстроўвацца на гэтай мове:"
1889
+
1890
+ #: views/view-options.php:116
1891
+ #, php-format
1892
+ msgid "WordPress Default (currently %s)"
1893
+ msgstr "WordPress Default (бягучае %s)"
1894
+
1895
+ #: views/view-options.php:125
1896
+ msgid "Admin menu entry"
1897
+ msgstr "Уваход у меню адмін часткі"
1898
+
1899
+ #: views/view-options.php:126
1900
+ msgid "WP-Table Reloaded shall be shown in this section of the admin menu:"
1901
+ msgstr "WP-Table Reloaded павінен адлюстроўвацца ў гэтай секцыі меню адмін часткі:"
1902
+
1903
+ #: views/view-options.php:127
1904
+ msgid "Tools"
1905
+ msgstr "Налады"
1906
+
1907
+ #: views/view-options.php:128
1908
+ msgid "Posts"
1909
+ msgstr "Пасты"
1910
+
1911
+ #: views/view-options.php:138
1912
+ msgid "Pages"
1913
+ msgstr "Старонкі"
1914
+
1915
+ #: views/view-options.php:139
1916
+ msgid "Plugins"
1917
+ msgstr "Убудовы"
1918
+
1919
+ #: views/view-options.php:140
1920
+ msgid "Settings"
1921
+ msgstr "Усталёўкі"
1922
+
1923
+ #: views/view-options.php:141
1924
+ msgid "Dashboard"
1925
+ msgstr "Панэль кіравання"
1926
+
1927
+ #: views/view-options.php:142
1928
+ msgid "Top-Level"
1929
+ msgstr "Верхні ўзровень"
1930
+
1931
+ #: views/view-options.php:147
1932
+ msgid "Frontend Edit Link"
1933
+ msgstr "Рэдагаванне вонкавага выгляду."
1934
+
1935
+ #: views/view-options.php:148
1936
+ msgid "Yes, show an \"Edit\" link to users with sufficient rights near every table on the frontend."
1937
+ msgstr "Так, паказваць спасылку \"Рэдагаваць\" каля кожнай табліцы."
1938
+
1939
+ #: views/view-options.php:152
1940
+ msgid "WordPress Search"
1941
+ msgstr "Пошук па WordPress."
1942
+
1943
+ #: views/view-options.php:153
1944
+ msgid "Yes, the WordPress Search shall also find posts and pages that contain the search term inside a table."
1945
+ msgstr "Адлюстроўваць вынікі пошуку па пастах і старонкам пры пошуку па вочках табліцы."
1946
+
1947
+ #: views/view-options.php:157
1948
+ msgid "Remove upon Deactivation"
1949
+ msgstr "Выдаліць пры дэактывацыі"
1950
+
1951
+ #: views/view-options.php:158
1952
+ msgid "Yes, remove all plugin related data from the database when the plugin is deactivated."
1953
+ msgstr "Пры дэактывацыі ўбудовы выдаліць усю інфармацыю пра ўбудову."
1954
+
1955
+ #: views/view-options.php:158
1956
+ msgid "Should be activated directly before deactivation only!"
1957
+ msgstr "Актывацыя павінна быць праведзена вылучна перад дэактывацыяй!"
1958
+
1959
+ #: views/view-options.php:178
1960
+ msgid "WP-Table Reloaded Data Export and Backup"
1961
+ msgstr "Захаванне і экспарт інфармацыі па WP-Table Reloaded"
1962
+
1963
+ #: views/view-options.php:181
1964
+ msgid "WP-Table Reloaded can export and import a so-called dump file that contains all tables, their settings and the plugin's options."
1965
+ msgstr "WP-Table Reloaded можа экспартаваць і імпартаваць дамп-файлы якія ўтрымоўваюцца ва ўсіх табліцах, іх усталёўкі і опцыі ўбудовы."
1966
+
1967
+ #: views/view-options.php:181
1968
+ msgid "This file can be used as a backup or to move all data to another WordPress site."
1969
+ msgstr "Гэты файл можа быць скарыстаны як рэзервовая копія ці для перасоўвання ўсёй інфармацыі на іншы WordPress сайт."
1970
+
1971
+ #: views/view-options.php:184
1972
+ msgid "Export a dump file"
1973
+ msgstr "Экспартаваць дамп-файл"
1974
+
1975
+ #: views/view-options.php:186
1976
+ msgid "To export all Tables and their settings, click the button below to generate and download a dump file."
1977
+ msgstr "Каб экспартаваць усе табліцы і іх налады, націсніце на наступную кнопку для стварэння і загрузкі дамп-файла. "
1978
+
1979
+ #: views/view-options.php:186
1980
+ msgid "<strong>Warning</strong>: Do <strong>not</strong> edit the content of that file under any circumstances as you will destroy the file!"
1981
+ msgstr "<strong>Увага</strong>: не пры якіх акалічнасцях <strong>не рэдагуйце</strong> гэты файл. Вы можаце яго знішчыць!"
1982
+
1983
+ #: views/view-options.php:195
1984
+ msgid "Import a dump file"
1985
+ msgstr "Імпартаваць дамп-файл"
1986
+
1987
+ #: views/view-options.php:197
1988
+ msgid "To import a WP-Table Reloaded dump file and restore the included data, upload the file from your computer."
1989
+ msgstr "Для таго, каб імпартаваць WP-Table Reloaded дамп-файл і аднавіць усю інфармацыю, загрузіце файл з вашага кампутара."
1990
+
1991
+ #: views/view-options.php:197
1992
+ msgid "All current data of this WP-Table Reloaded installation (Tables, Options, Settings) <strong>WILL BE OVERWRITTEN</strong> with the data from the file!"
1993
+ msgstr "Усе бягучыя дадзеныя гэтай табліцы WP-Reloaded усталёўцы (Табліцы, Параметры, Налады) <strong> будуць перазапісаны </ STRONG> з дадзенымі з файла!"
1994
+
1995
+ #: views/view-options.php:197
1996
+ msgid "Do not proceed, if you do not understand this!"
1997
+ msgstr "Не працягвайце, калі вы гэтага не разумееце!"
1998
+
1999
+ #: views/view-options.php:197
2000
+ msgid "It is highly recommended to export and backup the data of this installation before importing another dump file (see above)."
2001
+ msgstr "Настойліва рэкамендуецца для экспарту і рэзервовага капіявання дадзеных гэтай усталёўкі перад імпартам наступнага файла дампа (гл. вышэй)."
2002
+
2003
+ #: views/view-options.php:203
2004
+ msgid "Select Dump File"
2005
+ msgstr "Абраць дамп-файл"
2006
+
2007
+ #: views/view-options.php:205
2008
+ msgid "Import Dump File"
2009
+ msgstr "Імпартаваць дамп-файл"
2010
+
2011
+ #: views/view-options.php:215
2012
+ msgid "Manually Uninstall WP-Table Reloaded"
2013
+ msgstr "Уручную выдаліць WP-Table Reloaded"
2014
+
2015
+ #: views/view-options.php:217
2016
+ msgid "Uninstalling <strong>will permanently delete</strong> all tables, data, and options, that belong to WP-Table Reloaded from the database, including all tables you added or imported."
2017
+ msgstr "<strong>Выдаленне</strong> убудовы пацягне за сабой выдаленне ўсіх табліц, дадзеных і параметраў, якія прыналежаць да WP-Reloaded, з базы дадзеных, у тым ліку з усіх табліц што вы дадалі ці імпартавалі."
2018
+
2019
+ #: views/view-options.php:217
2020
+ msgid "You will manually need to remove the plugin's files from the plugin folder afterwards."
2021
+ msgstr "Затым вам неабходна ўручную выдаліць файлы ўбудовы з тэчкі ўбудоў."
2022
+
2023
+ #: views/view-options.php:217
2024
+ msgid "Be very careful with this and only click the button if you know what you are doing!"
2025
+ msgstr "Будзьце вельмі асцярожны з гэтым і націсніце на кнопку толькі ў тым выпадку, калі вы ведаеце, што робіце"
2026
+
2027
+ #: views/view-options.php:221
2028
+ msgid "Uninstall Plugin WP-Table Reloaded"
2029
+ msgstr "Выдаліць убудову WP-Table Reloaded"
2030
+
2031
+ #: views/view-uninstall.php:3
2032
+ msgid "Plugin deactivated successfully."
2033
+ msgstr "Убудова дэактывавана паспяхова"
2034
+
2035
+ #: views/view-uninstall.php:4
2036
+ msgid "All tables, data and options were deleted. You may now manually remove the plugin's subfolder from your WordPress plugin folder or use the \"Delete\" link on the Plugins page."
2037
+ msgstr "Былі выдалены ўсе табліцы і параметры. Зараз Вы можаце ўручную выдаліць тэчку ўбудовы з тэчкі ўбудоў WordPress ці выкарыстоўвайце \"Delete\" спасылкі на старонцы Ўбудовы."
2038
+
2039
+ #. Plugin URI of an extension
2040
+ msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2041
+ msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2042
+
2043
+ #. Description of an extension
2044
+ msgid "This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML."
2045
+ msgstr "Гэта ўбудова дазваляе вам ствараць табліцы і лёгка кіраваць імі ў адмін-пляцы WordPress. Зручныя бэкэнды дазваляюць лёгка маніпуляваць таблічнымі дадзенымі. Вы можаце ўключаць табліцы ў вашым пасце, на сваіх старонках ці ў тэксце з дапамогай виджетов Shortcode ці тэга шаблону функцыі. Табліцы могуць быць імпартаваны і экспартаваны ў / з CSV, XML і HTML."
2046
+
2047
+ #. Author of an extension
2048
+ msgid "Tobias B&auml;thge"
2049
+ msgstr "Tobias B&auml;thge"
2050
+
2051
+ #. Author URI of an extension
2052
+ msgid "http://tobias.baethge.com/"
2053
+ msgstr "http://tobias.baethge.com/"
2054
+
2055
+ #~ msgid ""
2056
+ #~ "Among other things, this version adds support for \"colspan\" and "
2057
+ #~ "\"rowspan\" of table cells and enables the WP Search to search through "
2058
+ #~ "tables."
2059
+ #~ msgstr ""
2060
+ #~ "Помимо прочего, в этой версии появилась поддержка атрибутов \"colspan\" и "
2061
+ #~ "\"rowspan\", а так же поиск по таблицам."
2062
+
2063
+ #~ msgid "This is the &quot;%s&quot; screen."
2064
+ #~ msgstr "Aktuálně se nacházíte v nabídce &quot;%s&quot;."
2065
+
2066
+ #~ msgid ""
2067
+ #~ "This version adds support for the DataTables JavaScript library (with "
2068
+ #~ "features like sorting, pagination, and filtering) and includes a lot more "
2069
+ #~ "enhancements."
2070
+ #~ msgstr ""
2071
+ #~ "Nová verze přináší zejména podporu JavaScriptové knihovny DataTables "
2072
+ #~ "(umožňuje např. řazení, stránkování a filtrování tabulek) a obsahuje i "
2073
+ #~ "mnoho dalších vylepšení."
2074
+
2075
+ #~ msgid "Hide|expand"
2076
+ #~ msgstr "Skrýt|expand"
2077
+
2078
+ #~ msgid "Hide|item"
2079
+ #~ msgstr "Skrýt|item"
2080
+
2081
+ #~ msgid "Unhide|item"
2082
+ #~ msgstr "Zviditelnit|item"
2083
+
2084
+ #~ msgid "Selected rows: %s %s|hide_unhide"
2085
+ #~ msgstr "Označené řádky: %s %s|hide_unhide"
2086
+
2087
+ #~ msgid "Selected rows:"
2088
+ #~ msgstr "Označené řádky:"
2089
+
2090
+ #~ msgid "Selected columns: %s %s|hide_unhide"
2091
+ #~ msgstr "Označené sloupce: %s %s|hide_unhide"
2092
+
2093
+ #~ msgid "Selected columns:"
2094
+ #~ msgstr "Označené sloupce:"
2095
+
2096
+ #~ msgid "Selected rows: %s %s|insert_delete"
2097
+ #~ msgstr "%s nad označené řádky nebo je %s|insert_delete"
2098
+
2099
+ #~ msgid "Selected columns: %s %s|insert_delete"
2100
+ #~ msgstr "%s nalevo od označených sloupců nebo je %s|insert_delete"
2101
+
2102
+ #~ msgid "Administrator|User role"
2103
+ #~ msgstr "Administrátor|User role"
2104
+
2105
+ #~ msgid "Editor|User role"
2106
+ #~ msgstr "Šéfredaktor|User role"
2107
+
2108
+ #~ msgid "Author|User role"
2109
+ #~ msgstr "Redaktor|User role"
2110
+
2111
+ #~ msgid "Contributor|User role"
2112
+ #~ msgstr "Spolupracovník|User role"
2113
+
2114
+ #~ msgid "Change will take effect after another page load after saving."
2115
+ #~ msgstr ""
2116
+ #~ "Případná změna se projeví až když toto nastavení uložíte a poté ještě "
2117
+ #~ "jednou obnovíte stránku."
2118
+
2119
+ #~ msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
2120
+ #~ msgstr "albánština (<a href=\"http://www.romeolab.com/\">Romeo</a>)"
2121
+
2122
+ #~ msgid ""
2123
+ #~ "Belorussian (thanks to <a href=\"http://www.fatcow.com/\">Marcis Gasuns</"
2124
+ #~ "a>)"
2125
+ #~ msgstr "běloruština (<a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
2126
+
2127
+ #~ msgid ""
2128
+ #~ "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/"
2129
+ #~ "\">Rics</a>)"
2130
+ #~ msgstr ""
2131
+ #~ "brazilská portugalština (<a href=\"http://www.pensarics.com/\">Rics</a>)"
2132
+
2133
+ #~ msgid ""
2134
+ #~ "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
2135
+ #~ msgstr "čeština (<a href=\"http://www.separatista.net/\">Separatista</a>)"
2136
+
2137
+ #~ msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
2138
+ #~ msgstr "francouzština (<a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
2139
+
2140
+ #~ msgid ""
2141
+ #~ "Italian (thanks to <a href=\"http://www.scrical.it/\">Gabriella Mazzon</"
2142
+ #~ "a>)"
2143
+ #~ msgstr "italština (<a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
2144
+
2145
+ #~ msgid "Japanese (thanks to <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
2146
+ #~ msgstr "japonština (<a href=\"http://www.u-1.net/\">Yuuichi</a>)"
2147
+
2148
+ #~ msgid "Polish (thanks to Alex Kortan)"
2149
+ #~ msgstr "polština (Alex Kortan)"
2150
+
2151
+ #~ msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
2152
+ #~ msgstr "ruština (<a href=\"http://wp-skins.info/\">Truper</a>)"
2153
+
2154
+ #~ msgid "Slovak (thanks to <a href=\"http://lukas.cerro.sk/\">55.lukas</a>)"
2155
+ #~ msgstr "slovenština (<a href=\"http://lukas.cerro.sk/\">55.lukas</a>)"
2156
+
2157
+ #~ msgid ""
2158
+ #~ "Spanish (thanks to <a href=\"http://theindependentproject.com/"
2159
+ #~ "\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</"
2160
+ #~ "a>)"
2161
+ #~ msgstr ""
2162
+ #~ "španělština (<a href=\"http://theindependentproject.com/\">Alejandro "
2163
+ #~ "Urrutia</a> a <a href=\"http://halles.cl/\">Matias Halles</a>)"
2164
+
2165
+ #~ msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
2166
+ #~ msgstr "švédština (<a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
2167
+
2168
+ #~ msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
2169
+ #~ msgstr "turečtina (<a href=\"http://www.wpuzmani.com/\">Semih</a>)"
2170
+
2171
+ #~ msgid "Insert failed."
2172
+ #~ msgstr "Při vkládání došlo k chybě."
2173
+
2174
+ #~ msgid ""
2175
+ #~ "If you want to show a table in your pages, posts or text-widgets, use the "
2176
+ #~ "shortcode <strong>[table id=&lt;the_table_ID&gt; /]</strong> or click the "
2177
+ #~ "button \"Table\" in the editor toolbar."
2178
+ #~ msgstr ""
2179
+ #~ "Pokud chcete některou tabulku vložit do příspěvku, stránky nebo textového "
2180
+ #~ "widgetu, použijte buď zkrácený zápis <strong>[table id=&lt;"
2181
+ #~ "the_table_ID&gt; /]</strong> nebo přímo tlačítko \"tabulky\" v HTML "
2182
+ #~ "editoru."
2183
+
2184
+ #~ msgid ""
2185
+ #~ "You may edit the content of the table here. It is also possible to add or "
2186
+ #~ "delete columns and rows."
2187
+ #~ msgstr ""
2188
+ #~ "Zde můžete upravovat samotný obsah tabulky, stejně jako přidávat nebo "
2189
+ #~ "mazat sloupce a řádky."
2190
+
2191
+ #~ msgid "Row hidden"
2192
+ #~ msgstr "Skrýt řádek"
2193
+
2194
+ #~ msgid "Column hidden"
2195
+ #~ msgstr "Skrýt sloupec"
2196
+
2197
+ #~ msgid "Use Table Headline"
2198
+ #~ msgstr "Použít záhlaví tabulky"
2199
+
2200
+ #~ msgid "Print Table Name"
2201
+ #~ msgstr "Zobrazit název tabulky"
2202
+
2203
+ #~ msgid "Use Tablesorter"
2204
+ #~ msgstr "Použít Tablesorter"
2205
+
2206
+ #~ msgid ""
2207
+ #~ "You may sort a table using the <a href=\"http://www.tablesorter.com/"
2208
+ #~ "\">Tablesorter-jQuery-Plugin</a>."
2209
+ #~ msgstr ""
2210
+ #~ "Můžete čtenářům povolit vlastní interaktivní řazení dat v tabulce pomocí "
2211
+ #~ "<a href=\"http://www.tablesorter.com/\">jQuery pluginu Tablesorter</a>."
2212
+
2213
+ #~ msgid ""
2214
+ #~ "<small>Attention: You must have Tablesorter enabled on the \"Plugin "
2215
+ #~ "Options\" screen and the option \"Use Table Headline\" has to be enabled "
2216
+ #~ "above for this to work!</small>"
2217
+ #~ msgstr ""
2218
+ #~ "<small>Upozornění: Musíte Tablesorter nejdříve globálně povolit nahoře v "
2219
+ #~ "menu \"Nastavení pluginu\" a zároveň musí být u konkrétní tabulky "
2220
+ #~ "zaškrtnuta možnost \"Použít záhlaví tabulky\", aby vše správně fungovalo!"
2221
+ #~ "</small>"
2222
+
2223
+ #~ msgid "You may also select the import source."
2224
+ #~ msgstr ""
2225
+ #~ "Můžete si také vybrat zdroj, odkud chcete tabulková data importovat."
2226
+
2227
+ #~ msgid "General Plugin Options"
2228
+ #~ msgstr "Obecné nastavení pluginu"
2229
+
2230
+ #~ msgid "They will effect all tables or the general plugin behavior."
2231
+ #~ msgstr ""
2232
+ #~ "Toto nastavení ovlivní všechny tabulky nebo obecné vlastnosti pluginu."
2233
+
2234
+ #~ msgid "Enable Tablesorter-JavaScript?"
2235
+ #~ msgstr "Povolit Tablesorter?"
2236
+
2237
+ #~ msgid ""
2238
+ #~ "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter "
2239
+ #~ "jQuery plugin</a>. This can be used to make tables sortable (can be "
2240
+ #~ "activated for each table separately in its options)."
2241
+ #~ msgstr ""
2242
+ #~ "Ano, povolit jQuery plugin <a href=\"http://www.tablesorter.com/"
2243
+ #~ "\">Tablesorter</a>. Tato volba umožňuje čtenářům, aby si mohli sami "
2244
+ #~ "interaktivně a libovolně řadit data v tabulce tak, jak potřebují (může "
2245
+ #~ "být aktivováno také selektivně pro každou tabulku jednotlivě v nastavení "
2246
+ #~ "tabulky)."
2247
+
2248
+ #~ msgid "Enter custom CSS"
2249
+ #~ msgstr "Vložit vlastní CSS"
2250
+
2251
+ #~ msgid ""
2252
+ #~ "You might get a better website performance, if you add the CSS styling to "
2253
+ #~ "your theme's \"style.css\" (located at <a href=\"%s\">%s</a>) instead."
2254
+ #~ msgstr ""
2255
+ #~ "Můžete zvýšit výkon svého webu také tím, že vlastní tabulkové CSS styly "
2256
+ #~ "místo do tohoto pole přidáte přímo do souboru \"style.css\" ve vaší "
2257
+ #~ "šabloně (tento soubor je umístěn konkrétně zde: <a href=\"%s\">%s</a>)."
2258
+
2259
+ #~ msgid ""
2260
+ #~ "See the <a href=\"%s\">plugin website</a> for styling examples or use one "
2261
+ #~ "of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s"
2262
+ #~ "\">Example Style 2</a>"
2263
+ #~ msgstr ""
2264
+ #~ "Pro další informace o CSS stylování tabulek navštivte <a href=\"%s"
2265
+ #~ "\">stránky pluginu</a>, nebo použijte přímo některý z následujících "
2266
+ #~ "vzorů: <a href=\"%s\">Příklad 1</a>, <a href=\"%s\">Příklad 2</a>."
2267
+
2268
+ #~ msgid "Just copy the contents of a file into the textarea."
2269
+ #~ msgstr ""
2270
+ #~ "Stačí pouze nakopírovat CSS získané z konkrétního příkladu do pole pro "
2271
+ #~ "vložení vlastního CSS."
2272
+
2273
+ #~ msgid ""
2274
+ #~ "Another possibility is, to include a CSS file (e.g. from your theme "
2275
+ #~ "folder) with the CSS @import command: %s"
2276
+ #~ msgstr ""
2277
+ #~ "Další možností je pak použití vlastního samostatného CSS souboru "
2278
+ #~ "(uloženého např. v adresáři vaší šablony) pomocí importního CSS příkazu: %"
2279
+ #~ "s"
2280
+
2281
+ #~ msgid "Use Tablesorter Extended?"
2282
+ #~ msgstr "Použít Rozšířený Tablesorter?"
2283
+
2284
+ #~ msgid ""
2285
+ #~ "Yes, use Extended Tablesorter from <a href=\"http://tablesorter.openwerk."
2286
+ #~ "de\">S&ouml;ren Krings</a> instead of original Tablesorter script "
2287
+ #~ "(EXPERIMENTAL FEATURE!)."
2288
+ #~ msgstr ""
2289
+ #~ "Ano, chci použít raději Rozšířený Tablesorter, jehož autorem je <a href="
2290
+ #~ "\"http://tablesorter.openwerk.de\">S&ouml;ren Krings</a>, místo původního "
2291
+ #~ "jQuery skriptu Tablesorter (POZOR: Tato funkce je zatím v testovacím "
2292
+ #~ "režimu!)."
2293
+
2294
+ #~ msgid ""
2295
+ #~ "Yes, uninstall everything when the plugin is deactivated. Attention: You "
2296
+ #~ "should only enable this checkbox directly before deactivating the plugin "
2297
+ #~ "from the WordPress plugins page!"
2298
+ #~ msgstr ""
2299
+ #~ "Ano, chci všechno odinstalovat, pokud bude plugin deaktivován. "
2300
+ #~ "Upozornění: Tuto možnost byste měli povolit pouze těsně před samotnou "
2301
+ #~ "deaktivací tohoto pluginu v Přehledu pluginů!"
2302
+
2303
+ #~ msgid ""
2304
+ #~ "(This setting does not influence the \"Manually Uninstall Plugin\" button "
2305
+ #~ "below!)"
2306
+ #~ msgstr ""
2307
+ #~ "(Toto nastavení nijak neovlivňuje možnost \"Ruční odinstalace pluginu\", "
2308
+ #~ "kterou můžete provést níže!)"
2309
+
2310
+ #~ msgid "Allow donation message?"
2311
+ #~ msgstr "Povolit upozornění o peněžním daru?"
2312
+
2313
+ #~ msgid "Yes, show a donation message after 30 days of using the plugin."
2314
+ #~ msgstr ""
2315
+ #~ "Ano, chci zobrazit informace o možnosti peněžního daru po uplynutí 30 dní "
2316
+ #~ "od nainstalování pluginu."
2317
+
2318
+ #~ msgid "Manually Uninstall Plugin"
2319
+ #~ msgstr "Ručně odinstalovat plugin"
2320
+
2321
+ #~ msgid ""
2322
+ #~ "To include the table into your posts, pages or text widgets, write the "
2323
+ #~ "shortcode [table id=&lt;table-id&gt;] into them."
2324
+ #~ msgstr ""
2325
+ #~ "Pro vložení tabulky do příspěvku, stránky nebo textového widgetu pak "
2326
+ #~ "stačí napsat pouze zkrácený zápis [table id=&lt;table-id&gt;]."
2327
+
2328
+ #~ msgid ""
2329
+ #~ "You may also style your table via CSS. Example files are provided on the "
2330
+ #~ "plugin website. Every table has the CSS class \"wp-table-reloaded\". Each "
2331
+ #~ "table also has the class \"wp-table-reloaded-&lt;table-id&gt;\"."
2332
+ #~ msgstr ""
2333
+ #~ "Můžete také upravovat zobrazování tabulek pomocí CSS stylů, konkrétní "
2334
+ #~ "příklady naleznete na stránkách pluginu. Každá tabulka má proto v HTML "
2335
+ #~ "přiřazeny CSS třídy \"wp-table-reloaded\" a \"wp-table-reloaded-&lt;table-"
2336
+ #~ "id&gt;\"."
2337
+
2338
+ #~ msgid ""
2339
+ #~ "You can also use the classes \"column-&lt;number&gt;\" and \"row-&lt;"
2340
+ #~ "number&gt;\" to style rows and columns individually. Use this to style "
2341
+ #~ "columns width and text alignment for example."
2342
+ #~ msgstr ""
2343
+ #~ "Můžete také používat CSS třídy \"column-&lt;number&gt;\" a \"row-&lt;"
2344
+ #~ "number&gt;\" pro nastavení specifického zobrazení pro konkrétní řádky a "
2345
+ #~ "sloupce. Pomocí těchto tříd také můžete nastavit např. šířku sloupců a "
2346
+ #~ "zarovnání textu v tabulce."
2347
+
2348
+ #~ msgid ""
2349
+ #~ "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-"
2350
+ #~ "reloaded-english/documentation/\">documentation</a> or find out how to "
2351
+ #~ "get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-"
2352
+ #~ "reloaded-english/support/\">support</a>."
2353
+ #~ msgstr ""
2354
+ #~ "V případě problémů nahlédněte do <a href=\"http://tobias.baethge.com/"
2355
+ #~ "wordpress-plugins/wp-table-reloaded-english/documentation/\">manuálu</a>, "
2356
+ #~ "nebo se obraťte na autora s žádostí o <a href=\"http://tobias.baethge.com/"
2357
+ #~ "wordpress-plugins/wp-table-reloaded-english/support/\">podporu</a>."
2358
+
2359
+ #~ msgid ""
2360
+ #~ "If you like the plugin, please consider <a href=\"http://tobias.baethge."
2361
+ #~ "com/donate/\"><strong>a donation</strong></a> and rate the plugin in the "
2362
+ #~ "<a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/"
2363
+ #~ "\">WordPress Plugin Directory</a>."
2364
+ #~ msgstr ""
2365
+ #~ "Pokud se Vám plugin líbil a úspěšně ho využíváte, zvažte prosím možnost "
2366
+ #~ "<a href=\"http://tobias.baethge.com/donate/\"><strong>peněžního daru</"
2367
+ #~ "strong></a> a ohodnoťte plugin v <a href=\"http://wordpress.org/extend/"
2368
+ #~ "plugins/wp-table-reloaded/\">oficiálním adresáři pluginů Wordpressu</a>."
2369
+
2370
+ #~ msgid "This is the \"List Tables\" screen."
2371
+ #~ msgstr "Aktuálně se nacházíte v nabídce \"Správa tabulek\"."
2372
+
2373
+ #~ msgid "This is the \"Edit Table\" screen."
2374
+ #~ msgstr "Aktuálně se nacházíte v nabídce \"Upravit tabulku\"."
2375
+
2376
+ #~ msgid "This is the \"Add new Table\" screen."
2377
+ #~ msgstr "Aktuálně se nacházíte v nabídce \"Vytvořit tabulku\"."
2378
+
2379
+ #~ msgid "This is the \"Import a Table\" screen."
2380
+ #~ msgstr "Aktuálně se nacházíte v nabídce \"Importovat tabulku\"."
2381
+
2382
+ #~ msgid "This is the \"Export a Table\" screen."
2383
+ #~ msgstr "Aktuálně se nacházíte v nabídce \"Exportovat tabulku\"."
2384
+
2385
+ #~ msgid "URL of image to insert"
2386
+ #~ msgstr "Vložte URL adresu obrázku"
2387
+
2388
+ #, fuzzy
2389
+ #~ msgid "&quot;alt&quot; text of the image"
2390
+ #~ msgstr "Vložte ''alt'' text obrázku"
2391
+
2392
+ #~ msgid ""
2393
+ #~ "To insert the following image into a cell, just click the cell after "
2394
+ #~ "closing this dialog."
2395
+ #~ msgstr ""
2396
+ #~ "Abyste vložili tento obrázek do tabulky, tak si po uzavření tohoto okna "
2397
+ #~ "pomocí tlačítka OK vyberte konkrétní místo v tabulce a klikněte tam."
2398
+
2399
+ #~ msgid "Information about the plugin"
2400
+ #~ msgstr "Informace o pluginu"
2401
+
2402
+ #~ msgid "- or -"
2403
+ #~ msgstr "- nebo -"
2404
+
2405
+ #~ msgid "(upload will be preferred over pasting)"
2406
+ #~ msgstr ""
2407
+ #~ "(při zpracování dat bude upřednostněn vybraný souboru před přímo "
2408
+ #~ "vloženými daty)"
languages/wp-table-reloaded-de_DE.mo CHANGED
Binary file
languages/wp-table-reloaded-de_DE.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP-Table Reloaded\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
5
- "POT-Creation-Date: 2010-03-04 21:16+0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Tobias Baethge <wordpress@tobias.baethge.com>\n"
8
  "Language-Team: \n"
@@ -62,35 +62,35 @@ msgstr "| (Strich)"
62
 
63
  # @ wp-table-reloaded
64
  #: classes/helper.class.php:40
65
- #: views/view-about.php:22
66
  #, php-format
67
  msgid "More information about WP-Table Reloaded can be found on the <a href=\"%s\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress Plugin Directory</a>."
68
  msgstr "Weitere Informationen über WP-Table Reloaded findest du auf der <a href=\"%s\">Plugin-Webseite</a> oder auf der zugehörigen Seite im <a href=\"%s\">WordPress Plugin-Verzeichnis</a>."
69
 
70
  # @ wp-table-reloaded
71
  #: classes/helper.class.php:41
72
- #: views/view-about.php:22
73
  #, php-format
74
  msgid "For technical information, see the <a href=\"%s\">documentation</a>."
75
  msgstr "Technische Informationen befinden sich in der <a href=\"%s\">Dokumentation</a>."
76
 
77
  # @ wp-table-reloaded
78
  #: classes/helper.class.php:42
79
- #: views/view-about.php:29
80
  #, php-format
81
  msgid "<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress Support Forums</a>."
82
  msgstr "<a href=\"%s\">Unterstützung</a> bekommst du im <a href=\"%s\">WordPress Support-Forum</a>."
83
 
84
  # @ wp-table-reloaded
85
  #: classes/helper.class.php:43
86
- #: views/view-about.php:29
87
  #, php-format
88
  msgid "Before asking for support, please carefully read the <a href=\"%s\">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums."
89
  msgstr "Bevor du um Hilfe bittest, lies bitte die <a href=\"%s\">Häufig gestellten Fragen (FAQ)</a> gründlich, in denen du Antworten auf die gängigsten Fragen findest, und nutze die Suche des Forums."
90
 
91
  # @ wp-table-reloaded
92
  #: classes/helper.class.php:44
93
- #: views/view-about.php:36
94
  #, php-format
95
  msgid "If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is recommended."
96
  msgstr "Wenn dir das Plugin gefällt, wird eine <strong><a href=\"%s\">Spende</a></strong> empfohlen."
@@ -150,146 +150,136 @@ msgid "Help"
150
  msgstr "Hilfe"
151
 
152
  # @ wp-table-reloaded
153
- #: classes/render.class.php:140
154
  #: views/view-list.php:60
155
  msgid "Edit"
156
  msgstr "Bearbeiten"
157
 
 
158
  #: controllers/controller-admin.php:256
 
 
 
 
 
159
  msgid "Czech"
160
  msgstr "Tschechisch"
161
 
162
  # @ wp-table-reloaded
163
- #: controllers/controller-admin.php:257
164
  msgid "German"
165
  msgstr "Deutsch"
166
 
167
  # @ wp-table-reloaded
168
- #: controllers/controller-admin.php:258
169
  msgid "English"
170
  msgstr "Englisch"
171
 
172
  # @ wp-table-reloaded
173
- #: controllers/controller-admin.php:259
174
  msgid "Spanish"
175
  msgstr "Spanisch"
176
 
177
  # @ wp-table-reloaded
178
- #: controllers/controller-admin.php:260
179
  msgid "Finnish"
180
  msgstr "Finnisch"
181
 
182
  # @ wp-table-reloaded
183
- #: controllers/controller-admin.php:261
 
 
 
 
 
184
  msgid "Hindi"
185
  msgstr "Hindi"
186
 
187
  # @ wp-table-reloaded
188
- #: controllers/controller-admin.php:262
189
  msgid "Italian"
190
  msgstr "Italienisch"
191
 
192
  # @ wp-table-reloaded
193
- #: controllers/controller-admin.php:263
194
  msgid "Japanese"
195
  msgstr "Japanisch"
196
 
197
  # @ wp-table-reloaded
198
- #: controllers/controller-admin.php:264
199
- msgid "Brazilian Portuguese"
200
- msgstr "Brasilianisches Portugiesisch"
201
 
202
  # @ wp-table-reloaded
203
- #: controllers/controller-admin.php:265
204
- msgid "Chinese (Simplified)"
205
- msgstr "Chinesisch (vereinfacht)"
206
 
207
  # @ wp-table-reloaded
208
- #: controllers/controller-admin.php:266
209
  msgid "Russian"
210
  msgstr "Russisch"
211
 
212
  # @ wp-table-reloaded
213
- #: controllers/controller-admin.php:267
214
  msgid "Slovak"
215
  msgstr "Slowakisch"
216
 
217
  # @ wp-table-reloaded
218
- #: controllers/controller-admin.php:268
219
  msgid "Swedish"
220
  msgstr "Schwedisch"
221
 
222
- # @ wp-table-reloaded
223
- #: controllers/controller-admin.php:270
224
- msgid "Albanian"
225
- msgstr "Albanisch"
226
-
227
- # @ wp-table-reloaded
228
  #: controllers/controller-admin.php:271
229
- msgid "Belorussian"
230
- msgstr "Weißrussisch"
231
 
232
  # @ wp-table-reloaded
233
  #: controllers/controller-admin.php:272
234
- msgid "Estonian"
235
- msgstr "Estnisch"
236
-
237
- # @ wp-table-reloaded
238
- #: controllers/controller-admin.php:273
239
- msgid "French"
240
- msgstr "Französisch"
241
-
242
- # @ wp-table-reloaded
243
- #: controllers/controller-admin.php:274
244
- msgid "Polish"
245
- msgstr "Polnisch"
246
-
247
- # @ wp-table-reloaded
248
- #: controllers/controller-admin.php:275
249
- msgid "Turkish"
250
- msgstr "Türkisch"
251
 
252
  # @ wp-table-reloaded
253
- #: controllers/controller-admin.php:301
254
  #, php-format
255
  msgid "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s\">documentation</a>, and the <a href=\"%s\">support</a> section."
256
  msgstr "Willkommen bei WP-Table Reloaded %s. Wenn du irgendwelche Fragen oder Probleme hast, lies bitte die <a href=\"%s\">FAQ,</a> die <a href=\"%s\">Dokumentation</a> und den Abschnitt <a href=\"%s\">Hilfe und Unterstützung</a>."
257
 
258
  # @ wp-table-reloaded
259
- #: controllers/controller-admin.php:302
260
  #, php-format
261
  msgid "Thank you for upgrading to WP-Table Reloaded %s."
262
  msgstr "Danke, dass du auf WP-Table Reloaded %s aktualisiert hast."
263
 
264
  # @ wp-table-reloaded
265
- #: controllers/controller-admin.php:302
266
- msgid "This version includes several enhancements, like an updated DataTables library, a &quot;Table&quot; button in the toolbar of the visual editor, and several other things."
267
- msgstr "Diese Version beinhaltet mehrere Verbesserungen, wie eine aktualisierte DataTables-JavaScript-Bibliothek und die &quot;Tabelle&quot;-Schaltfläche für den visuellen Editor und andere Dinge."
268
 
269
  # @ wp-table-reloaded
270
- #: controllers/controller-admin.php:302
271
  #, php-format
272
  msgid "Please read the <a href=\"%s\">release announcement</a> for more information."
273
  msgstr "Bitte lies die <a href=\"%s\">Release-Ankündigung</a> für weitere Informationen."
274
 
275
  # @ wp-table-reloaded
276
- #: controllers/controller-admin.php:302
277
  #, php-format
278
  msgid "If you like the new features and enhancements, I would appreciate a small <a href=\"%s\">donation</a>. Thank you."
279
  msgstr "Wenn dir die neuen Funktionen und Verbesserungen gefallen, freue ich mich über eine kleine <a href=\"%s\">Spende</a>. Dankeschön."
280
 
281
  # @ wp-table-reloaded
282
- #: controllers/controller-admin.php:307
283
  msgid "Hide this message"
284
  msgstr "Meldung ausblenden"
285
 
286
  # @ wp-table-reloaded
287
- #: controllers/controller-admin.php:315
288
  msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago."
289
  msgstr "Vielen Dank, dass du dieses Plugin nutzt! Du hast WP-Table Reloaded vor mehr als einem Monat installiert."
290
 
291
  # @ wp-table-reloaded
292
- #: controllers/controller-admin.php:315
293
  #, php-format
294
  msgid "If it works and you are satisfied with the results of managing your %s table, isn't it worth at least one dollar or euro?"
295
  msgid_plural "If it works and you are satisfied with the results of managing your %s tables, isn't it worth at least one dollar or euro?"
@@ -297,349 +287,349 @@ msgstr[0] "Wenn das Plugin funktioniert, und du mit den Ergebnissen der Verwaltu
297
  msgstr[1] "Wenn das Plugin funktioniert, und du mit den Ergebnissen der Verwaltung deiner %s Tabellen zufrieden bist, ist dir das nicht einen Euro wert?"
298
 
299
  # @ wp-table-reloaded
300
- #: controllers/controller-admin.php:316
301
  #, php-format
302
  msgid "<a href=\"%s\">Donations</a> help me to continue support and development of this <i>free</i> software - things for which I spend countless hours of my free time! Thank you!"
303
  msgstr "<a href=\"%s\">Spenden</a> helfen mir, Hilfe und Unterstützung bei der Nutzung zu bieten und die Entwicklung dieser <i>freien</i> Software fortzuführen - Dinge, für die ich unzählige Stunden meiner Freizeit aufbringe! Danke!"
304
 
305
  # @ wp-table-reloaded
306
- #: controllers/controller-admin.php:317
307
  msgid "Sure, no problem!"
308
  msgstr "Na klar, kein Problem!"
309
 
310
  # @ wp-table-reloaded
311
- #: controllers/controller-admin.php:318
312
  msgid "I already donated."
313
  msgstr "Ich habe schon gespendet."
314
 
315
  # @ wp-table-reloaded
316
- #: controllers/controller-admin.php:319
317
  msgid "No, thanks. Don't ask again."
318
  msgstr "Nein, Danke. Frag nicht nochmal."
319
 
320
  # @ wp-table-reloaded
321
- #: controllers/controller-admin.php:347
322
  #, php-format
323
  msgid "Table &quot;%s&quot; added successfully."
324
  msgstr "Tabelle &quot;%s&quot; erfolgreich hinzugefügt."
325
 
326
  # @ wp-table-reloaded
327
- #: controllers/controller-admin.php:378
328
  #, php-format
329
  msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
330
  msgstr "Tabelle erfolgreich bearbeitet. Die Tabelle hat jetzt die ID %s. Bereits verwendete Shortcodes sollten entsprechend angepasst werden."
331
 
332
  # @ wp-table-reloaded
333
- #: controllers/controller-admin.php:380
334
  #, php-format
335
  msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
336
  msgstr "Die Tabellen-ID konnte nicht von %s in %s geändert werden, da bereits eine Tabelle mit dieser ID existiert."
337
 
338
  # @ wp-table-reloaded
339
- #: controllers/controller-admin.php:383
340
  msgid "Table edited successfully."
341
  msgstr "Tabelle erfolgreich bearbeitet."
342
 
343
  # @ wp-table-reloaded
344
- #: controllers/controller-admin.php:430
345
  msgid "Rows swapped successfully."
346
  msgstr "Zeilen erfolgreich getauscht."
347
 
348
  # @ wp-table-reloaded
349
- #: controllers/controller-admin.php:451
350
  msgid "Columns swapped successfully."
351
  msgstr "Spalten erfolgreich getauscht."
352
 
353
  # @ wp-table-reloaded
354
- #: controllers/controller-admin.php:480
355
  msgid "Table sorted successfully."
356
  msgstr "Tabelle erfolgreich sortiert."
357
 
358
  # @ wp-table-reloaded
359
- #: controllers/controller-admin.php:501
360
  msgid "Row moved successfully."
361
  msgstr "Zeile erfolgreich verschoben."
362
 
363
  # @ wp-table-reloaded
364
- #: controllers/controller-admin.php:526
365
  msgid "Column moved successfully."
366
  msgstr "Spalte erfolgreich verschoben."
367
 
368
  # @ wp-table-reloaded
369
- #: controllers/controller-admin.php:534
370
  msgid "Row could not be deleted."
371
  msgid_plural "Rows could not be deleted."
372
  msgstr[0] "Zeile konnte nicht gelöscht werden."
373
  msgstr[1] "Zeilen konnten nicht gelöscht werden."
374
 
375
  # @ wp-table-reloaded
376
- #: controllers/controller-admin.php:543
377
  msgid "Row deleted successfully."
378
  msgid_plural "Rows deleted successfully."
379
  msgstr[0] "Zeile erfolgreich gelöscht."
380
  msgstr[1] "Zeilen erfolgreich gelöscht."
381
 
382
  # @ wp-table-reloaded
383
- #: controllers/controller-admin.php:553
384
  msgid "Column could not be deleted."
385
  msgid_plural "Columns could not be deleted."
386
  msgstr[0] "Spalte konnte nicht gelöscht werden."
387
  msgstr[1] "Spalten konnten nicht gelöscht werden."
388
 
389
  # @ wp-table-reloaded
390
- #: controllers/controller-admin.php:566
391
  msgid "Column deleted successfully."
392
  msgid_plural "Columns deleted successfully."
393
  msgstr[0] "Spalte erfolgreich gelöscht."
394
  msgstr[1] "Spalten erfolgreich gelöscht."
395
 
396
  # @ wp-table-reloaded
397
- #: controllers/controller-admin.php:589
398
  msgid "Row inserted successfully."
399
  msgid_plural "Rows inserted successfully."
400
  msgstr[0] "Zeile erfolgreich eingefügt."
401
  msgstr[1] "Zeilen erfolgreich eingefügt."
402
 
403
  # @ wp-table-reloaded
404
- #: controllers/controller-admin.php:616
405
  msgid "Column inserted successfully."
406
  msgid_plural "Columns inserted successfully."
407
  msgstr[0] "Spalte erfolgreich eingefügt."
408
  msgstr[1] "Spalten erfolgreich eingefügt."
409
 
410
  # @ wp-table-reloaded
411
- #: controllers/controller-admin.php:631
412
  msgid "Row added successfully."
413
  msgid_plural "Rows added successfully."
414
  msgstr[0] "Zeile erfolgreich angefügt."
415
  msgstr[1] "Zeilen erfolgreich angefügt."
416
 
417
  # @ wp-table-reloaded
418
- #: controllers/controller-admin.php:645
419
  msgid "Column added successfully."
420
  msgid_plural "Columns added successfully."
421
  msgstr[0] "Spalte erfolgreich angefügt."
422
  msgstr[1] "Spalten erfolgreich angefügt."
423
 
424
  # @ wp-table-reloaded
425
- #: controllers/controller-admin.php:652
426
  msgid "Could not add Custom Data Field, because you did not enter a name."
427
  msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil kein Name eingegeben wurde."
428
 
429
  # @ wp-table-reloaded
430
- #: controllers/controller-admin.php:657
431
  msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
432
  msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil der eingegebene Name bereits reserviert ist."
433
 
434
  # @ wp-table-reloaded
435
- #: controllers/controller-admin.php:663
436
  msgid "Could not add Custom Data Field, because the name contained illegal characters."
437
  msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil der Name verbotene Zeichen enthält."
438
 
439
  # @ wp-table-reloaded
440
- #: controllers/controller-admin.php:667
441
  msgid "Could not add Custom Data Field, because a Field with that name already exists."
442
  msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil ein Feld mit diesem Namen bereits existiert."
443
 
444
  # @ wp-table-reloaded
445
- #: controllers/controller-admin.php:673
446
  msgid "Custom Data Field added successfully."
447
  msgstr "Benutzerdefiniertes Datenfeld erfolgreich hinzugefügt."
448
 
449
  # @ wp-table-reloaded
450
- #: controllers/controller-admin.php:713
451
- #: controllers/controller-admin.php:769
452
  msgid "Copy of"
453
  msgstr "Kopie von"
454
 
455
  # @ wp-table-reloaded
456
- #: controllers/controller-admin.php:717
457
  msgid "Table copied successfully."
458
  msgid_plural "Tables copied successfully."
459
  msgstr[0] "Tabelle erfolgreich kopiert."
460
  msgstr[1] "Tabellen erfolgreich kopiert."
461
 
462
  # @ wp-table-reloaded
463
- #: controllers/controller-admin.php:723
464
  msgid "Table deleted successfully."
465
  msgid_plural "Tables deleted successfully."
466
  msgstr[0] "Tabelle erfolgreich gelöscht."
467
  msgstr[1] "Tabellen erfolgreich gelöscht."
468
 
469
  # @ wp-table-reloaded
470
- #: controllers/controller-admin.php:744
471
- #: controllers/controller-admin.php:899
472
- #: controllers/controller-admin.php:937
473
  msgid "Table imported successfully."
474
  msgid_plural "Tables imported successfully."
475
  msgstr[0] "Tabelle erfolgreich importiert."
476
  msgstr[1] "Tabellen erfolgreich importiert."
477
 
478
  # @ wp-table-reloaded
479
- #: controllers/controller-admin.php:751
480
  msgid "You did not select any tables!"
481
  msgstr "Du hast keine Tabellen ausgewählt."
482
 
483
  # @ wp-table-reloaded
484
- #: controllers/controller-admin.php:774
485
  #, php-format
486
  msgid "Table &quot;%s&quot; copied successfully."
487
  msgstr "Tabelle &quot;%s&quot; erfolgreich kopiert."
488
 
489
  # @ wp-table-reloaded
490
- #: controllers/controller-admin.php:792
491
  #, php-format
492
  msgid "Table &quot;%s&quot; deleted successfully."
493
  msgstr "Tabelle &quot;%s&quot; erfolgreich gelöscht."
494
 
495
  # @ wp-table-reloaded
496
- #: controllers/controller-admin.php:800
497
  msgid "Custom Data Field deleted successfully."
498
  msgstr "Benutzerdefiniertes Datenfeld erfolgreich gelöscht."
499
 
500
  # @ wp-table-reloaded
501
- #: controllers/controller-admin.php:802
502
  msgid "Custom Data Field could not be deleted."
503
  msgstr "Benutzerdefiniertes Datenfeld konnte nicht gelöscht werden."
504
 
505
  # @ wp-table-reloaded
506
- #: controllers/controller-admin.php:808
507
  msgid "Delete failed."
508
  msgstr "Löschen fehlgeschlagen."
509
 
510
  # @ wp-table-reloaded
511
- #: controllers/controller-admin.php:840
512
- #: controllers/controller-admin.php:850
513
- #: controllers/controller-admin.php:861
514
  msgid "Imported Table"
515
  msgstr "Importierte Tabelle"
516
 
517
  # @ wp-table-reloaded
518
- #: controllers/controller-admin.php:841
519
- #: controllers/controller-admin.php:862
520
  #, php-format
521
  msgid "from %s"
522
  msgstr "von %s"
523
 
524
  # @ wp-table-reloaded
525
- #: controllers/controller-admin.php:851
526
  msgid "via form"
527
  msgstr "via Eingabefeld"
528
 
529
  # @ wp-table-reloaded
530
- #: controllers/controller-admin.php:878
531
- #: controllers/controller-admin.php:915
532
  msgid "Table could not be imported."
533
  msgstr "Tabelle konnte nicht importiert werden."
534
 
535
  # @ wp-table-reloaded
536
- #: controllers/controller-admin.php:895
537
  #, php-format
538
  msgid "Table %s (%s) replaced successfully."
539
  msgstr "Tabelle %s (%s) erfolgreich ersetzt."
540
 
541
  # @ wp-table-reloaded
542
- #: controllers/controller-admin.php:945
543
- #: controllers/controller-admin.php:1138
544
  msgid "You do not have sufficient rights to perform this action."
545
  msgstr "Du verfügst nicht über ausreichende Rechte, um diese Aktion auszuführen."
546
 
547
  # @ wp-table-reloaded
548
- #: controllers/controller-admin.php:952
549
  msgid "You did not upload a WP-Table Reloaded dump file."
550
  msgstr "Du hast keine WP-Table Reloaded Dump-Datei hochgeladen."
551
 
552
  # @ wp-table-reloaded
553
- #: controllers/controller-admin.php:961
554
  msgid "The uploaded dump file is empty. Please upload a valid dump file."
555
  msgstr "Die hochgeladene Dump-Datei ist leer. Bitte lade eine vollständige Datei hoch."
556
 
557
  # @ wp-table-reloaded
558
- #: controllers/controller-admin.php:990
559
  msgid "All Tables, Settings and Options were successfully imported."
560
  msgstr "Alle Tabellen, Einstellungen und Optionen wurden erfolgreich importiert."
561
 
562
  # @ wp-table-reloaded
563
- #: controllers/controller-admin.php:1019
564
  #, php-format
565
  msgid "Table &quot;%s&quot; exported successfully."
566
  msgstr "Tabelle &quot;%s&quot; erfolgreich exportiert."
567
 
568
  # @ wp-table-reloaded
569
- #: controllers/controller-admin.php:1064
570
  #: views/view-options.php:232
571
  msgid "You do not have sufficient rights to access the Plugin Options."
572
  msgstr "Du verfügst nicht über ausreichende Rechte, um die Plugin-Einstellungen zu bearbeiten."
573
 
574
  # @ wp-table-reloaded
575
- #: controllers/controller-admin.php:1119
576
  msgid "Options saved successfully."
577
  msgstr "Einstellungen erfolgreich gespeichert."
578
 
579
  # @ wp-table-reloaded
580
- #: controllers/controller-admin.php:1122
581
  #, php-format
582
  msgid "<a href=\"%s\">Click here to Proceed.</a>"
583
  msgstr "<a href=\"%s\">Klicke hier, um fortzufahren.</a>"
584
 
585
  # @ wp-table-reloaded
586
- #: controllers/controller-admin.php:1188
587
  msgid "There is no table with this ID!"
588
  msgstr "Es ist keine Tabelle mit dieser ID vorhanden!"
589
 
590
  # @ wp-table-reloaded
591
- #: controllers/controller-admin.php:1225
592
  msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
593
  msgstr "Vielen Dank! Deine Spende leistet einen wichtigen Beitrag für die weitere Entwicklung von WP-Table Reloaded!"
594
 
595
  # @ wp-table-reloaded
596
- #: controllers/controller-admin.php:1227
597
  #, php-format
598
  msgid "No problem! I still hope you enjoy the benefits that WP-Table Reloaded brings to you. If you should want to change your mind, you'll always find the &quot;%s&quot; button on the <a href=\"%s\">WP-Table Reloaded website</a>."
599
  msgstr "Kein Problem! Ich hoffe trotzdem, dass dir WP-Table Reloaded mit seinen Funktionen die Arbeit leichter macht. Falls du deine Meinung ändern solltest, findest du den &quot;%s&quot;-Link auch auf der <a href=\"%s\">Plugin-Webseite</a>."
600
 
601
  # @ wp-table-reloaded
602
- #: controllers/controller-admin.php:1227
603
- #: controllers/controller-admin.php:1655
604
  msgid "Donate"
605
  msgstr "Spenden"
606
 
607
  # @ wp-table-reloaded
608
- #: controllers/controller-admin.php:1250
609
- #: controllers/controller-admin.php:1257
610
  msgid "List of Tables"
611
  msgstr "Liste der Tabellen"
612
 
613
  # @ wp-table-reloaded
614
- #. #-#-#-#-# plugin.pot (WP-Table Reloaded 1.7-beta1) #-#-#-#-#
615
- #. Plugin Name of an extension
616
- #: controllers/controller-admin.php:1250
617
- #: controllers/controller-admin.php:1254
618
- #: controllers/controller-admin.php:1256
619
  msgid "WP-Table Reloaded"
620
  msgstr "WP-Table Reloaded"
621
 
622
  # @ wp-table-reloaded
623
- #: controllers/controller-admin.php:1251
624
- #: controllers/controller-admin.php:1287
625
  msgid "Add new Table"
626
  msgstr "Neue Tabelle anlegen"
627
 
628
  # @ wp-table-reloaded
629
- #: controllers/controller-admin.php:1252
630
- #: controllers/controller-admin.php:1288
631
  msgid "Import a Table"
632
  msgstr "Eine Tabelle importieren"
633
 
634
  # @ wp-table-reloaded
635
- #: controllers/controller-admin.php:1253
636
- #: controllers/controller-admin.php:1289
637
  msgid "Export a Table"
638
  msgstr "Eine Tabelle exportieren"
639
 
640
  # @ wp-table-reloaded
641
- #: controllers/controller-admin.php:1254
642
- #: controllers/controller-admin.php:1295
643
  #: views/view-edit.php:342
644
  #: views/view-edit.php:357
645
  #: views/view-export.php:10
@@ -647,229 +637,229 @@ msgid "Plugin Options"
647
  msgstr "Plugin-Einstellungen"
648
 
649
  # @ wp-table-reloaded
650
- #: controllers/controller-admin.php:1255
651
  msgid "About WP-Table Reloaded"
652
  msgstr "Über WP-Table Reloaded"
653
 
654
  # @ wp-table-reloaded
655
- #: controllers/controller-admin.php:1263
656
  #, php-format
657
  msgid "Edit Table &quot;%s&quot; (ID %s)"
658
  msgstr "Tabelle &quot;%s&quot; (ID %s) bearbeiten"
659
 
660
  # @ wp-table-reloaded
661
- #: controllers/controller-admin.php:1264
662
  #, php-format
663
  msgid "Preview of Table &quot;%s&quot; (ID %s)"
664
  msgstr "Vorschau der Tabelle &quot;%s&quot; (ID %s)"
665
 
666
  # @ wp-table-reloaded
667
- #: controllers/controller-admin.php:1286
668
  msgid "List Tables"
669
  msgstr "Liste der Tabellen"
670
 
671
  # @ wp-table-reloaded
672
- #: controllers/controller-admin.php:1296
673
  msgid "About the plugin"
674
  msgstr "Über das Plugin"
675
 
676
  # @ wp-table-reloaded
677
- #: controllers/controller-admin.php:1651
678
  msgid "WP-Table Reloaded Plugin Page"
679
  msgstr "Plugin-Seite von WP-Table Reloaded"
680
 
681
  # @ wp-table-reloaded
682
- #: controllers/controller-admin.php:1651
683
  msgid "Plugin Page"
684
  msgstr "Plugin-Seite"
685
 
686
  # @ wp-table-reloaded
687
- #: controllers/controller-admin.php:1652
688
  msgid "Frequently Asked Questions"
689
  msgstr "Häufig gestellte Fragen"
690
 
691
  # @ wp-table-reloaded
692
- #: controllers/controller-admin.php:1652
693
  msgid "FAQ"
694
  msgstr "FAQ"
695
 
696
  # @ wp-table-reloaded
697
- #: controllers/controller-admin.php:1653
698
  msgid "Support"
699
  msgstr "Unterstützung"
700
 
701
  # @ wp-table-reloaded
702
- #: controllers/controller-admin.php:1654
703
  msgid "Plugin Documentation"
704
  msgstr "Plugin-Dokumentation"
705
 
706
  # @ wp-table-reloaded
707
- #: controllers/controller-admin.php:1654
708
  msgid "Documentation"
709
  msgstr "Dokumentation"
710
 
711
  # @ wp-table-reloaded
712
- #: controllers/controller-admin.php:1655
713
  msgid "Support WP-Table Reloaded with your donation!"
714
  msgstr "Unterstütze WP-Table Reloaded mit deiner Spende!"
715
 
716
  # @ wp-table-reloaded
717
- #: controllers/controller-admin.php:1694
718
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
719
  msgstr "Möchtest du diese Option wirklich aktivieren? Du solltest dies erst unmittelbar vor der Deaktivierung zum Zwecke der Deinstallation tun!"
720
 
721
  # @ wp-table-reloaded
722
- #: controllers/controller-admin.php:1695
723
  msgid "URL of link to insert"
724
  msgstr "URL des einzufügenden Links"
725
 
726
  # @ wp-table-reloaded
727
- #: controllers/controller-admin.php:1696
728
  msgid "Text of link"
729
  msgstr "Text des Links"
730
 
731
  # @ wp-table-reloaded
732
- #: controllers/controller-admin.php:1697
733
  msgid "To insert the following HTML code for a link into a cell, just click the cell after closing this dialog."
734
  msgstr "Um den folgenden HTML-Code für einen Link in eine Tabellenzelle einzufügen, klicke einfach nach dem Schließen des Dialoges auf die Zelle."
735
 
736
  # @ wp-table-reloaded
737
- #: controllers/controller-admin.php:1698
738
  msgid "To insert an image, click &quot;OK&quot; and then click into the cell into which you want to insert the image."
739
  msgstr "Um ein Bild einzufügen, klicke auf &quot;OK&quot; und klicke dann in die Zelle, in die du das Bild einfügen möchtest."
740
 
741
  # @ wp-table-reloaded
742
- #: controllers/controller-admin.php:1698
743
  msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
744
  msgstr "Wähle dann das Bild in der sich öffnenden Medien-Bibliothek, lade dort ein neues Bild hoch oder gib die URL des Bildes ein."
745
 
746
  # @ wp-table-reloaded
747
- #: controllers/controller-admin.php:1698
748
  #, php-format
749
  msgid "Click the &quot;%s&quot; button to insert the image."
750
  msgstr "Klicke auf die &quot;%s&quot;-Schaltfläche, um das Bild einzufügen."
751
 
752
- #: controllers/controller-admin.php:1698
753
  msgid "Insert into Post"
754
  msgstr ""
755
 
756
  # @ wp-table-reloaded
757
- #: controllers/controller-admin.php:1699
758
  msgid "To combine cells within a row, click into the cell to the right of the cell that has the content the combined cells shall have."
759
  msgstr "Um Zellen innerhalb einer Zeile zu verbinden, klicke in die Zelle rechts von der Zelle mit dem Inhalt für die verbundene Zelle."
760
 
761
  # @ wp-table-reloaded
762
- #: controllers/controller-admin.php:1700
763
  msgid "To combine cells within a column, click into the cell below the cell that has the content the combined cells shall have."
764
  msgstr "Um Zellen innerhalb einer Spalte zu verbinden, klicke in die Zelle unterhalb der Zelle mit dem Inhalt für die verbundene Zelle."
765
 
766
  # @ wp-table-reloaded
767
- #: controllers/controller-admin.php:1701
768
  msgid "Do you want to copy the selected tables?"
769
  msgstr "Möchtest du die ausgewählten Tabellen kopieren?"
770
 
771
  # @ wp-table-reloaded
772
- #: controllers/controller-admin.php:1702
773
  msgid "The selected tables and all content will be erased. Do you really want to delete them?"
774
  msgstr "Die ausgewählten Tabellen und alle Inhalte werden gelöscht. Willst du diese wirklich löschen?"
775
 
776
  # @ wp-table-reloaded
777
- #: controllers/controller-admin.php:1703
778
  msgid "Do you really want to import the selected tables from the wp-Table plugin?"
779
  msgstr "Möchtest du die ausgewählten Tabellen aus dem Plugin wp-Table importieren?"
780
 
781
  # @ wp-table-reloaded
782
- #: controllers/controller-admin.php:1704
783
  msgid "Do you want to copy this table?"
784
  msgstr "Möchtest du diese Tabelle kopieren?"
785
 
786
  # @ wp-table-reloaded
787
- #: controllers/controller-admin.php:1705
788
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
789
  msgstr "Die gesamte Tabelle und alle Inhalte werden gelöscht. Möchtest du dies wirklich?"
790
 
791
  # @ wp-table-reloaded
792
- #: controllers/controller-admin.php:1706
793
  msgid "Do you really want to delete the selected rows?"
794
  msgstr "Möchtest du die ausgewählten Zeilen wirklich löschen?"
795
 
796
  # @ wp-table-reloaded
797
- #: controllers/controller-admin.php:1707
798
  msgid "Do you really want to delete the selected columns?"
799
  msgstr "Möchtest du die ausgewählten Spalten wirklich löschen?"
800
 
801
  # @ wp-table-reloaded
802
- #: controllers/controller-admin.php:1708
803
- #: controllers/controller-admin.php:1712
804
- #: controllers/controller-admin.php:1714
805
  msgid "You have not selected any rows."
806
  msgstr "Du hast keine Zeilen ausgewählt."
807
 
808
  # @ wp-table-reloaded
809
- #: controllers/controller-admin.php:1709
810
- #: controllers/controller-admin.php:1713
811
- #: controllers/controller-admin.php:1715
812
  msgid "You have not selected any columns."
813
  msgstr "Du hast keine Spalten ausgewählt."
814
 
815
  # @ wp-table-reloaded
816
- #: controllers/controller-admin.php:1710
817
  msgid "You can not delete all rows of the table at once!"
818
  msgstr "Du kannst nicht alle Tabellenzeilen auf einmal löschen!"
819
 
820
  # @ wp-table-reloaded
821
- #: controllers/controller-admin.php:1711
822
  msgid "You can not delete all columns of the table at once!"
823
  msgstr "Du kannst nicht alle Tabellenspalten auf einmal löschen!"
824
 
825
  # @ wp-table-reloaded
826
- #: controllers/controller-admin.php:1716
827
  msgid "Do you really want to import this table from the wp-Table plugin?"
828
  msgstr "Möchtest du diese Tabelle wirklich aus dem Plugin wp-Table importieren?"
829
 
830
  # @ wp-table-reloaded
831
- #: controllers/controller-admin.php:1717
832
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
833
  msgstr "Möchtest du das Plugin wirklich deinstallieren und ALLE Daten löschen?"
834
 
835
  # @ wp-table-reloaded
836
- #: controllers/controller-admin.php:1718
837
  msgid "Are you really sure?"
838
  msgstr "Bist du wirklich sicher?"
839
 
840
  # @ wp-table-reloaded
841
- #: controllers/controller-admin.php:1719
842
  msgid "Do you really want to change the ID of the table?"
843
  msgstr "Möchtest du die ID der Tabelle wirklich ändern?"
844
 
845
  # @ wp-table-reloaded
846
- #: controllers/controller-admin.php:1720
847
  msgid "To show this Custom Data Field, use this shortcode:"
848
  msgstr "Um dieses Benutzerdefinierte Datenfeld anzuzeigen, nutze diesen Shortcode:"
849
 
850
  # @ wp-table-reloaded
851
- #: controllers/controller-admin.php:1721
852
  msgid "To show this table, use this shortcode:"
853
  msgstr "Um diese Tabelle anzuzeigen, nutze diesen Shortcode:"
854
 
855
  # @ wp-table-reloaded
856
- #: controllers/controller-admin.php:1722
857
  msgid "Warning: You will lose all current Tables and Settings! You should create a backup first. Be warned!"
858
  msgstr "Warnung: Du verlierst alle aktuellen Tabellen und Einstellungen! Du solltest erst eine Sicherung anlegen. Sei gewarnt!"
859
 
860
  # @ wp-table-reloaded
861
- #: controllers/controller-admin.php:1723
862
  msgid "You have made changes to the content of this table and not yet saved them."
863
  msgstr "Du hast Inhalte dieser Tabelle geändert, aber noch nicht gespeichert."
864
 
865
  # @ wp-table-reloaded
866
- #: controllers/controller-admin.php:1723
867
  #, php-format
868
  msgid "You should first click &quot;%s&quot; or they will be lost if you navigate away from this page."
869
  msgstr "Du solltest zunächst auf &quot;%s&quot; klicken, um keine Daten und Änderungen zu verlieren, wenn du diese Seite verlässt."
870
 
871
  # @ wp-table-reloaded
872
- #: controllers/controller-admin.php:1723
873
  #: views/view-edit.php:41
874
  #: views/view-edit.php:253
875
  #: views/view-edit.php:405
@@ -878,29 +868,29 @@ msgid "Update Changes"
878
  msgstr "Änderungen speichern"
879
 
880
  # @ wp-table-reloaded
881
- #: controllers/controller-admin.php:1766
882
  #: views/view-about.php:14
883
  #: views/view-list.php:2
884
  msgid "Table"
885
  msgstr "Tabelle"
886
 
887
  # @ wp-table-reloaded
888
- #: controllers/controller-admin.php:1767
889
  msgid "Insert a Table"
890
  msgstr "Eine Tabelle einfügen"
891
 
892
  # @ wp-table-reloaded
893
- #: controllers/controller-admin.php:1828
894
  msgid "Please wait..."
895
  msgstr "Bitte warten..."
896
 
897
  # @ wp-table-reloaded
898
- #: controllers/controller-admin.php:1829
899
  msgid "Show _MENU_ Tables"
900
  msgstr "Zeige _MENU_ Tabellen"
901
 
902
  # @ wp-table-reloaded
903
- #: controllers/controller-admin.php:1830
904
  #: views/view-ajax_list.php:53
905
  #: views/view-export.php:71
906
  #: views/view-list.php:88
@@ -908,37 +898,37 @@ msgid "No tables were found."
908
  msgstr "Es wurden keine Tabellen gefunden."
909
 
910
  # @ wp-table-reloaded
911
- #: controllers/controller-admin.php:1831
912
  msgid "_START_ to _END_ of _TOTAL_ Tables"
913
  msgstr "_START_ bis _END_ von _TOTAL_ Tabellen"
914
 
915
  # @ wp-table-reloaded
916
- #: controllers/controller-admin.php:1832
917
  msgid "(filtered from _MAX_ Tables)"
918
  msgstr "(gefiltert aus _MAX_ Tabellen)"
919
 
920
  # @ wp-table-reloaded
921
- #: controllers/controller-admin.php:1833
922
  msgid "Filter:"
923
  msgstr "Filtern:"
924
 
925
  # @ wp-table-reloaded
926
- #: controllers/controller-admin.php:1834
927
  msgid "First"
928
  msgstr "Erste"
929
 
930
  # @ wp-table-reloaded
931
- #: controllers/controller-admin.php:1835
932
  msgid "Back"
933
  msgstr "zur&uuml;ck"
934
 
935
  # @ wp-table-reloaded
936
- #: controllers/controller-admin.php:1836
937
  msgid "Next"
938
  msgstr "n&auml;chste"
939
 
940
  # @ wp-table-reloaded
941
- #: controllers/controller-admin.php:1837
942
  msgid "Last"
943
  msgstr "Letzte"
944
 
@@ -1029,75 +1019,75 @@ msgid "Please see the <a href=\"%s\">documentation</a> for a list of these selec
1029
  msgstr "Bitte beachte dazu die Liste dieser Selektoren und die Styling-Beispiele in der <a href=\"%s\">Dokumentation</a>."
1030
 
1031
  # @ wp-table-reloaded
1032
- #: views/view-about.php:20
1033
  msgid "More Information and Documentation"
1034
  msgstr "Weitere Informationen und Dokumentation"
1035
 
1036
  # @ wp-table-reloaded
1037
- #: views/view-about.php:27
1038
  msgid "Help and Support"
1039
  msgstr "Hilfe und Unterstützung"
1040
 
1041
  # @ wp-table-reloaded
1042
- #: views/view-about.php:29
1043
  #, php-format
1044
  msgid "If you do not find an answer there, please <a href=\"%s\">open a new thread</a> in the WordPress Support Forums with the tag &quot;wp-table-reloaded&quot;."
1045
  msgstr "Wenn du dort keine Antwort findest, öffne bitte <a href=\"%s\">ein neues Thema</a> im WordPress-Support-Forum mit dem Schlagwort &quot;wp-table-reloaded&quot;."
1046
 
1047
  # @ wp-table-reloaded
1048
- #: views/view-about.php:34
1049
  msgid "Author and License"
1050
  msgstr "Autor und Lizenz"
1051
 
1052
  # @ wp-table-reloaded
1053
- #: views/view-about.php:36
1054
  #, php-format
1055
  msgid "This plugin was written by <a href=\"%s\">Tobias B&auml;thge</a>."
1056
  msgstr "Das Plugin WP-Table Reloaded wurde von <a href=\"%s\">Tobias B&auml;thge</a> programmiert."
1057
 
1058
  # @ wp-table-reloaded
1059
- #: views/view-about.php:36
1060
  msgid "It is licensed as Free Software under GPL 2."
1061
  msgstr "Es steht als <em>Freie Software</em> unter GPL 2."
1062
 
1063
  # @ wp-table-reloaded
1064
- #: views/view-about.php:36
1065
  #, php-format
1066
  msgid "Please rate the plugin in the <a href=\"%s\">WordPress Plugin Directory</a>."
1067
  msgstr "Bitte bewerte das Plugin im <a href=\"%s\">WordPress-Plugin-Verzeichnis</a>."
1068
 
1069
  # @ wp-table-reloaded
1070
- #: views/view-about.php:36
1071
  msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
1072
  msgstr "Spenden und gute Bewertungen ermutigen mich, das Plugin weiterzuentwickeln and unzählige Stunden Support zu leisten. Ich bin für jeden Betrag dankbar! Vielen Dank!"
1073
 
1074
  # @ wp-table-reloaded
1075
- #: views/view-about.php:41
1076
  msgid "Credits and Thanks"
1077
  msgstr "Danksagungen"
1078
 
1079
  # @ wp-table-reloaded
1080
- #: views/view-about.php:44
1081
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
1082
  msgstr "Danke an <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> für das Plugin wp-Table,"
1083
 
1084
  # @ wp-table-reloaded
1085
- #: views/view-about.php:45
1086
  msgid "Allan Jardine for the <a href=\"http://www.datatables.net/\">DataTables jQuery plugin</a>,"
1087
  msgstr "Allan Jardine für das <a href=\"http://www.datatables.net/\">DataTables jQuery-Plugin,</a>"
1088
 
1089
  # @ wp-table-reloaded
1090
- #: views/view-about.php:46
1091
  msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
1092
  msgstr "Christian Bach für das <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
1093
 
1094
  # @ wp-table-reloaded
1095
- #: views/view-about.php:47
1096
  msgid "Soeren Krings for its extension <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
1097
  msgstr "Soeren Krings für die Erweiterung <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
1098
 
1099
  # @ wp-table-reloaded
1100
- #: views/view-about.php:48
1101
  msgid "the submitters of translations:"
1102
  msgstr "die Übersetzer:"
1103
 
@@ -2470,19 +2460,19 @@ msgid "All tables, data and options were deleted. You may now manually remove th
2470
  msgstr "Alle Tabellen, Plugin-Daten und -Einstellungen wurden aus der Datenbank entfernt. Du kannst die Dateien des Plugins jetzt manuell aus dem Plugin-Unterordner auf deinem Server löschen oder dazu den \"Löschen\"-Link auf der WordPress-Plugins-Seite nutzen."
2471
 
2472
  # @ wp-table-reloaded
2473
- #. Plugin URI of an extension
2474
  msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2475
  msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2476
 
2477
- #. Description of an extension
2478
  msgid "This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML."
2479
  msgstr "Dieses Plugin erlaubt die komfortable Verwaltung von Tabellen in WordPress. Dafür werden keine HTML-Kenntnisse benötigt. Die Daten werden in einer Eingabemaske eingegeben und mittels eines Shortcodes in Artikel, Seiten oder Text-Widgets eingebunden. Zusätzlich können einer Tabelle mit einer JavaScript-Bibliothek weitere Fähigkeiten, wie Sortieren, Paginierung und Filterung hinzugefügt werden."
2480
 
2481
- #. Author of an extension
2482
  msgid "Tobias B&auml;thge"
2483
  msgstr "Tobias B&auml;thge"
2484
 
2485
- #. Author URI of an extension
2486
  msgid "http://tobias.baethge.com/"
2487
  msgstr "http://tobias.baethge.com/"
2488
 
2
  msgstr ""
3
  "Project-Id-Version: WP-Table Reloaded\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
5
+ "POT-Creation-Date: 2010-08-05 13:22+0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Tobias Baethge <wordpress@tobias.baethge.com>\n"
8
  "Language-Team: \n"
62
 
63
  # @ wp-table-reloaded
64
  #: classes/helper.class.php:40
65
+ #: views/view-about.php:21
66
  #, php-format
67
  msgid "More information about WP-Table Reloaded can be found on the <a href=\"%s\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress Plugin Directory</a>."
68
  msgstr "Weitere Informationen über WP-Table Reloaded findest du auf der <a href=\"%s\">Plugin-Webseite</a> oder auf der zugehörigen Seite im <a href=\"%s\">WordPress Plugin-Verzeichnis</a>."
69
 
70
  # @ wp-table-reloaded
71
  #: classes/helper.class.php:41
72
+ #: views/view-about.php:21
73
  #, php-format
74
  msgid "For technical information, see the <a href=\"%s\">documentation</a>."
75
  msgstr "Technische Informationen befinden sich in der <a href=\"%s\">Dokumentation</a>."
76
 
77
  # @ wp-table-reloaded
78
  #: classes/helper.class.php:42
79
+ #: views/view-about.php:28
80
  #, php-format
81
  msgid "<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress Support Forums</a>."
82
  msgstr "<a href=\"%s\">Unterstützung</a> bekommst du im <a href=\"%s\">WordPress Support-Forum</a>."
83
 
84
  # @ wp-table-reloaded
85
  #: classes/helper.class.php:43
86
+ #: views/view-about.php:28
87
  #, php-format
88
  msgid "Before asking for support, please carefully read the <a href=\"%s\">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums."
89
  msgstr "Bevor du um Hilfe bittest, lies bitte die <a href=\"%s\">Häufig gestellten Fragen (FAQ)</a> gründlich, in denen du Antworten auf die gängigsten Fragen findest, und nutze die Suche des Forums."
90
 
91
  # @ wp-table-reloaded
92
  #: classes/helper.class.php:44
93
+ #: views/view-about.php:35
94
  #, php-format
95
  msgid "If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is recommended."
96
  msgstr "Wenn dir das Plugin gefällt, wird eine <strong><a href=\"%s\">Spende</a></strong> empfohlen."
150
  msgstr "Hilfe"
151
 
152
  # @ wp-table-reloaded
153
+ #: classes/render.class.php:141
154
  #: views/view-list.php:60
155
  msgid "Edit"
156
  msgstr "Bearbeiten"
157
 
158
+ # @ wp-table-reloaded
159
  #: controllers/controller-admin.php:256
160
+ #, fuzzy
161
+ msgid "Belarusian"
162
+ msgstr "Weißrussisch"
163
+
164
+ #: controllers/controller-admin.php:257
165
  msgid "Czech"
166
  msgstr "Tschechisch"
167
 
168
  # @ wp-table-reloaded
169
+ #: controllers/controller-admin.php:258
170
  msgid "German"
171
  msgstr "Deutsch"
172
 
173
  # @ wp-table-reloaded
174
+ #: controllers/controller-admin.php:259
175
  msgid "English"
176
  msgstr "Englisch"
177
 
178
  # @ wp-table-reloaded
179
+ #: controllers/controller-admin.php:260
180
  msgid "Spanish"
181
  msgstr "Spanisch"
182
 
183
  # @ wp-table-reloaded
184
+ #: controllers/controller-admin.php:261
185
  msgid "Finnish"
186
  msgstr "Finnisch"
187
 
188
  # @ wp-table-reloaded
189
+ #: controllers/controller-admin.php:262
190
+ msgid "French"
191
+ msgstr "Französisch"
192
+
193
+ # @ wp-table-reloaded
194
+ #: controllers/controller-admin.php:263
195
  msgid "Hindi"
196
  msgstr "Hindi"
197
 
198
  # @ wp-table-reloaded
199
+ #: controllers/controller-admin.php:264
200
  msgid "Italian"
201
  msgstr "Italienisch"
202
 
203
  # @ wp-table-reloaded
204
+ #: controllers/controller-admin.php:265
205
  msgid "Japanese"
206
  msgstr "Japanisch"
207
 
208
  # @ wp-table-reloaded
209
+ #: controllers/controller-admin.php:266
210
+ msgid "Polish"
211
+ msgstr "Polnisch"
212
 
213
  # @ wp-table-reloaded
214
+ #: controllers/controller-admin.php:267
215
+ msgid "Brazilian Portuguese"
216
+ msgstr "Brasilianisches Portugiesisch"
217
 
218
  # @ wp-table-reloaded
219
+ #: controllers/controller-admin.php:268
220
  msgid "Russian"
221
  msgstr "Russisch"
222
 
223
  # @ wp-table-reloaded
224
+ #: controllers/controller-admin.php:269
225
  msgid "Slovak"
226
  msgstr "Slowakisch"
227
 
228
  # @ wp-table-reloaded
229
+ #: controllers/controller-admin.php:270
230
  msgid "Swedish"
231
  msgstr "Schwedisch"
232
 
 
 
 
 
 
 
233
  #: controllers/controller-admin.php:271
234
+ msgid "Ukrainian"
235
+ msgstr "Ukrainisch"
236
 
237
  # @ wp-table-reloaded
238
  #: controllers/controller-admin.php:272
239
+ msgid "Chinese (Simplified)"
240
+ msgstr "Chinesisch (vereinfacht)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
 
242
  # @ wp-table-reloaded
243
+ #: controllers/controller-admin.php:302
244
  #, php-format
245
  msgid "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s\">documentation</a>, and the <a href=\"%s\">support</a> section."
246
  msgstr "Willkommen bei WP-Table Reloaded %s. Wenn du irgendwelche Fragen oder Probleme hast, lies bitte die <a href=\"%s\">FAQ,</a> die <a href=\"%s\">Dokumentation</a> und den Abschnitt <a href=\"%s\">Hilfe und Unterstützung</a>."
247
 
248
  # @ wp-table-reloaded
249
+ #: controllers/controller-admin.php:303
250
  #, php-format
251
  msgid "Thank you for upgrading to WP-Table Reloaded %s."
252
  msgstr "Danke, dass du auf WP-Table Reloaded %s aktualisiert hast."
253
 
254
  # @ wp-table-reloaded
255
+ #: controllers/controller-admin.php:303
256
+ msgid "This version includes several enhancements, like an updated DataTables library, several enhancements to certain features and a few small bug fixes."
257
+ msgstr "Diese Version beinhaltet eine aktualisierte DataTables-JavaScript-Bibliothek und mehrere Funktionisverbesserungen sowie Fehlerbehebungen."
258
 
259
  # @ wp-table-reloaded
260
+ #: controllers/controller-admin.php:303
261
  #, php-format
262
  msgid "Please read the <a href=\"%s\">release announcement</a> for more information."
263
  msgstr "Bitte lies die <a href=\"%s\">Release-Ankündigung</a> für weitere Informationen."
264
 
265
  # @ wp-table-reloaded
266
+ #: controllers/controller-admin.php:303
267
  #, php-format
268
  msgid "If you like the new features and enhancements, I would appreciate a small <a href=\"%s\">donation</a>. Thank you."
269
  msgstr "Wenn dir die neuen Funktionen und Verbesserungen gefallen, freue ich mich über eine kleine <a href=\"%s\">Spende</a>. Dankeschön."
270
 
271
  # @ wp-table-reloaded
272
+ #: controllers/controller-admin.php:308
273
  msgid "Hide this message"
274
  msgstr "Meldung ausblenden"
275
 
276
  # @ wp-table-reloaded
277
+ #: controllers/controller-admin.php:316
278
  msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago."
279
  msgstr "Vielen Dank, dass du dieses Plugin nutzt! Du hast WP-Table Reloaded vor mehr als einem Monat installiert."
280
 
281
  # @ wp-table-reloaded
282
+ #: controllers/controller-admin.php:316
283
  #, php-format
284
  msgid "If it works and you are satisfied with the results of managing your %s table, isn't it worth at least one dollar or euro?"
285
  msgid_plural "If it works and you are satisfied with the results of managing your %s tables, isn't it worth at least one dollar or euro?"
287
  msgstr[1] "Wenn das Plugin funktioniert, und du mit den Ergebnissen der Verwaltung deiner %s Tabellen zufrieden bist, ist dir das nicht einen Euro wert?"
288
 
289
  # @ wp-table-reloaded
290
+ #: controllers/controller-admin.php:317
291
  #, php-format
292
  msgid "<a href=\"%s\">Donations</a> help me to continue support and development of this <i>free</i> software - things for which I spend countless hours of my free time! Thank you!"
293
  msgstr "<a href=\"%s\">Spenden</a> helfen mir, Hilfe und Unterstützung bei der Nutzung zu bieten und die Entwicklung dieser <i>freien</i> Software fortzuführen - Dinge, für die ich unzählige Stunden meiner Freizeit aufbringe! Danke!"
294
 
295
  # @ wp-table-reloaded
296
+ #: controllers/controller-admin.php:318
297
  msgid "Sure, no problem!"
298
  msgstr "Na klar, kein Problem!"
299
 
300
  # @ wp-table-reloaded
301
+ #: controllers/controller-admin.php:319
302
  msgid "I already donated."
303
  msgstr "Ich habe schon gespendet."
304
 
305
  # @ wp-table-reloaded
306
+ #: controllers/controller-admin.php:320
307
  msgid "No, thanks. Don't ask again."
308
  msgstr "Nein, Danke. Frag nicht nochmal."
309
 
310
  # @ wp-table-reloaded
311
+ #: controllers/controller-admin.php:348
312
  #, php-format
313
  msgid "Table &quot;%s&quot; added successfully."
314
  msgstr "Tabelle &quot;%s&quot; erfolgreich hinzugefügt."
315
 
316
  # @ wp-table-reloaded
317
+ #: controllers/controller-admin.php:379
318
  #, php-format
319
  msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
320
  msgstr "Tabelle erfolgreich bearbeitet. Die Tabelle hat jetzt die ID %s. Bereits verwendete Shortcodes sollten entsprechend angepasst werden."
321
 
322
  # @ wp-table-reloaded
323
+ #: controllers/controller-admin.php:381
324
  #, php-format
325
  msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
326
  msgstr "Die Tabellen-ID konnte nicht von %s in %s geändert werden, da bereits eine Tabelle mit dieser ID existiert."
327
 
328
  # @ wp-table-reloaded
329
+ #: controllers/controller-admin.php:384
330
  msgid "Table edited successfully."
331
  msgstr "Tabelle erfolgreich bearbeitet."
332
 
333
  # @ wp-table-reloaded
334
+ #: controllers/controller-admin.php:431
335
  msgid "Rows swapped successfully."
336
  msgstr "Zeilen erfolgreich getauscht."
337
 
338
  # @ wp-table-reloaded
339
+ #: controllers/controller-admin.php:452
340
  msgid "Columns swapped successfully."
341
  msgstr "Spalten erfolgreich getauscht."
342
 
343
  # @ wp-table-reloaded
344
+ #: controllers/controller-admin.php:493
345
  msgid "Table sorted successfully."
346
  msgstr "Tabelle erfolgreich sortiert."
347
 
348
  # @ wp-table-reloaded
349
+ #: controllers/controller-admin.php:514
350
  msgid "Row moved successfully."
351
  msgstr "Zeile erfolgreich verschoben."
352
 
353
  # @ wp-table-reloaded
354
+ #: controllers/controller-admin.php:539
355
  msgid "Column moved successfully."
356
  msgstr "Spalte erfolgreich verschoben."
357
 
358
  # @ wp-table-reloaded
359
+ #: controllers/controller-admin.php:547
360
  msgid "Row could not be deleted."
361
  msgid_plural "Rows could not be deleted."
362
  msgstr[0] "Zeile konnte nicht gelöscht werden."
363
  msgstr[1] "Zeilen konnten nicht gelöscht werden."
364
 
365
  # @ wp-table-reloaded
366
+ #: controllers/controller-admin.php:556
367
  msgid "Row deleted successfully."
368
  msgid_plural "Rows deleted successfully."
369
  msgstr[0] "Zeile erfolgreich gelöscht."
370
  msgstr[1] "Zeilen erfolgreich gelöscht."
371
 
372
  # @ wp-table-reloaded
373
+ #: controllers/controller-admin.php:566
374
  msgid "Column could not be deleted."
375
  msgid_plural "Columns could not be deleted."
376
  msgstr[0] "Spalte konnte nicht gelöscht werden."
377
  msgstr[1] "Spalten konnten nicht gelöscht werden."
378
 
379
  # @ wp-table-reloaded
380
+ #: controllers/controller-admin.php:579
381
  msgid "Column deleted successfully."
382
  msgid_plural "Columns deleted successfully."
383
  msgstr[0] "Spalte erfolgreich gelöscht."
384
  msgstr[1] "Spalten erfolgreich gelöscht."
385
 
386
  # @ wp-table-reloaded
387
+ #: controllers/controller-admin.php:602
388
  msgid "Row inserted successfully."
389
  msgid_plural "Rows inserted successfully."
390
  msgstr[0] "Zeile erfolgreich eingefügt."
391
  msgstr[1] "Zeilen erfolgreich eingefügt."
392
 
393
  # @ wp-table-reloaded
394
+ #: controllers/controller-admin.php:629
395
  msgid "Column inserted successfully."
396
  msgid_plural "Columns inserted successfully."
397
  msgstr[0] "Spalte erfolgreich eingefügt."
398
  msgstr[1] "Spalten erfolgreich eingefügt."
399
 
400
  # @ wp-table-reloaded
401
+ #: controllers/controller-admin.php:644
402
  msgid "Row added successfully."
403
  msgid_plural "Rows added successfully."
404
  msgstr[0] "Zeile erfolgreich angefügt."
405
  msgstr[1] "Zeilen erfolgreich angefügt."
406
 
407
  # @ wp-table-reloaded
408
+ #: controllers/controller-admin.php:658
409
  msgid "Column added successfully."
410
  msgid_plural "Columns added successfully."
411
  msgstr[0] "Spalte erfolgreich angefügt."
412
  msgstr[1] "Spalten erfolgreich angefügt."
413
 
414
  # @ wp-table-reloaded
415
+ #: controllers/controller-admin.php:665
416
  msgid "Could not add Custom Data Field, because you did not enter a name."
417
  msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil kein Name eingegeben wurde."
418
 
419
  # @ wp-table-reloaded
420
+ #: controllers/controller-admin.php:670
421
  msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
422
  msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil der eingegebene Name bereits reserviert ist."
423
 
424
  # @ wp-table-reloaded
425
+ #: controllers/controller-admin.php:676
426
  msgid "Could not add Custom Data Field, because the name contained illegal characters."
427
  msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil der Name verbotene Zeichen enthält."
428
 
429
  # @ wp-table-reloaded
430
+ #: controllers/controller-admin.php:680
431
  msgid "Could not add Custom Data Field, because a Field with that name already exists."
432
  msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil ein Feld mit diesem Namen bereits existiert."
433
 
434
  # @ wp-table-reloaded
435
+ #: controllers/controller-admin.php:686
436
  msgid "Custom Data Field added successfully."
437
  msgstr "Benutzerdefiniertes Datenfeld erfolgreich hinzugefügt."
438
 
439
  # @ wp-table-reloaded
440
+ #: controllers/controller-admin.php:726
441
+ #: controllers/controller-admin.php:782
442
  msgid "Copy of"
443
  msgstr "Kopie von"
444
 
445
  # @ wp-table-reloaded
446
+ #: controllers/controller-admin.php:730
447
  msgid "Table copied successfully."
448
  msgid_plural "Tables copied successfully."
449
  msgstr[0] "Tabelle erfolgreich kopiert."
450
  msgstr[1] "Tabellen erfolgreich kopiert."
451
 
452
  # @ wp-table-reloaded
453
+ #: controllers/controller-admin.php:736
454
  msgid "Table deleted successfully."
455
  msgid_plural "Tables deleted successfully."
456
  msgstr[0] "Tabelle erfolgreich gelöscht."
457
  msgstr[1] "Tabellen erfolgreich gelöscht."
458
 
459
  # @ wp-table-reloaded
460
+ #: controllers/controller-admin.php:757
461
+ #: controllers/controller-admin.php:912
462
+ #: controllers/controller-admin.php:950
463
  msgid "Table imported successfully."
464
  msgid_plural "Tables imported successfully."
465
  msgstr[0] "Tabelle erfolgreich importiert."
466
  msgstr[1] "Tabellen erfolgreich importiert."
467
 
468
  # @ wp-table-reloaded
469
+ #: controllers/controller-admin.php:764
470
  msgid "You did not select any tables!"
471
  msgstr "Du hast keine Tabellen ausgewählt."
472
 
473
  # @ wp-table-reloaded
474
+ #: controllers/controller-admin.php:787
475
  #, php-format
476
  msgid "Table &quot;%s&quot; copied successfully."
477
  msgstr "Tabelle &quot;%s&quot; erfolgreich kopiert."
478
 
479
  # @ wp-table-reloaded
480
+ #: controllers/controller-admin.php:805
481
  #, php-format
482
  msgid "Table &quot;%s&quot; deleted successfully."
483
  msgstr "Tabelle &quot;%s&quot; erfolgreich gelöscht."
484
 
485
  # @ wp-table-reloaded
486
+ #: controllers/controller-admin.php:813
487
  msgid "Custom Data Field deleted successfully."
488
  msgstr "Benutzerdefiniertes Datenfeld erfolgreich gelöscht."
489
 
490
  # @ wp-table-reloaded
491
+ #: controllers/controller-admin.php:815
492
  msgid "Custom Data Field could not be deleted."
493
  msgstr "Benutzerdefiniertes Datenfeld konnte nicht gelöscht werden."
494
 
495
  # @ wp-table-reloaded
496
+ #: controllers/controller-admin.php:821
497
  msgid "Delete failed."
498
  msgstr "Löschen fehlgeschlagen."
499
 
500
  # @ wp-table-reloaded
501
+ #: controllers/controller-admin.php:853
502
+ #: controllers/controller-admin.php:863
503
+ #: controllers/controller-admin.php:874
504
  msgid "Imported Table"
505
  msgstr "Importierte Tabelle"
506
 
507
  # @ wp-table-reloaded
508
+ #: controllers/controller-admin.php:854
509
+ #: controllers/controller-admin.php:875
510
  #, php-format
511
  msgid "from %s"
512
  msgstr "von %s"
513
 
514
  # @ wp-table-reloaded
515
+ #: controllers/controller-admin.php:864
516
  msgid "via form"
517
  msgstr "via Eingabefeld"
518
 
519
  # @ wp-table-reloaded
520
+ #: controllers/controller-admin.php:891
521
+ #: controllers/controller-admin.php:928
522
  msgid "Table could not be imported."
523
  msgstr "Tabelle konnte nicht importiert werden."
524
 
525
  # @ wp-table-reloaded
526
+ #: controllers/controller-admin.php:908
527
  #, php-format
528
  msgid "Table %s (%s) replaced successfully."
529
  msgstr "Tabelle %s (%s) erfolgreich ersetzt."
530
 
531
  # @ wp-table-reloaded
532
+ #: controllers/controller-admin.php:958
533
+ #: controllers/controller-admin.php:1151
534
  msgid "You do not have sufficient rights to perform this action."
535
  msgstr "Du verfügst nicht über ausreichende Rechte, um diese Aktion auszuführen."
536
 
537
  # @ wp-table-reloaded
538
+ #: controllers/controller-admin.php:965
539
  msgid "You did not upload a WP-Table Reloaded dump file."
540
  msgstr "Du hast keine WP-Table Reloaded Dump-Datei hochgeladen."
541
 
542
  # @ wp-table-reloaded
543
+ #: controllers/controller-admin.php:974
544
  msgid "The uploaded dump file is empty. Please upload a valid dump file."
545
  msgstr "Die hochgeladene Dump-Datei ist leer. Bitte lade eine vollständige Datei hoch."
546
 
547
  # @ wp-table-reloaded
548
+ #: controllers/controller-admin.php:1003
549
  msgid "All Tables, Settings and Options were successfully imported."
550
  msgstr "Alle Tabellen, Einstellungen und Optionen wurden erfolgreich importiert."
551
 
552
  # @ wp-table-reloaded
553
+ #: controllers/controller-admin.php:1032
554
  #, php-format
555
  msgid "Table &quot;%s&quot; exported successfully."
556
  msgstr "Tabelle &quot;%s&quot; erfolgreich exportiert."
557
 
558
  # @ wp-table-reloaded
559
+ #: controllers/controller-admin.php:1077
560
  #: views/view-options.php:232
561
  msgid "You do not have sufficient rights to access the Plugin Options."
562
  msgstr "Du verfügst nicht über ausreichende Rechte, um die Plugin-Einstellungen zu bearbeiten."
563
 
564
  # @ wp-table-reloaded
565
+ #: controllers/controller-admin.php:1132
566
  msgid "Options saved successfully."
567
  msgstr "Einstellungen erfolgreich gespeichert."
568
 
569
  # @ wp-table-reloaded
570
+ #: controllers/controller-admin.php:1135
571
  #, php-format
572
  msgid "<a href=\"%s\">Click here to Proceed.</a>"
573
  msgstr "<a href=\"%s\">Klicke hier, um fortzufahren.</a>"
574
 
575
  # @ wp-table-reloaded
576
+ #: controllers/controller-admin.php:1201
577
  msgid "There is no table with this ID!"
578
  msgstr "Es ist keine Tabelle mit dieser ID vorhanden!"
579
 
580
  # @ wp-table-reloaded
581
+ #: controllers/controller-admin.php:1238
582
  msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
583
  msgstr "Vielen Dank! Deine Spende leistet einen wichtigen Beitrag für die weitere Entwicklung von WP-Table Reloaded!"
584
 
585
  # @ wp-table-reloaded
586
+ #: controllers/controller-admin.php:1240
587
  #, php-format
588
  msgid "No problem! I still hope you enjoy the benefits that WP-Table Reloaded brings to you. If you should want to change your mind, you'll always find the &quot;%s&quot; button on the <a href=\"%s\">WP-Table Reloaded website</a>."
589
  msgstr "Kein Problem! Ich hoffe trotzdem, dass dir WP-Table Reloaded mit seinen Funktionen die Arbeit leichter macht. Falls du deine Meinung ändern solltest, findest du den &quot;%s&quot;-Link auch auf der <a href=\"%s\">Plugin-Webseite</a>."
590
 
591
  # @ wp-table-reloaded
592
+ #: controllers/controller-admin.php:1240
593
+ #: controllers/controller-admin.php:1670
594
  msgid "Donate"
595
  msgstr "Spenden"
596
 
597
  # @ wp-table-reloaded
598
+ #: controllers/controller-admin.php:1263
599
+ #: controllers/controller-admin.php:1270
600
  msgid "List of Tables"
601
  msgstr "Liste der Tabellen"
602
 
603
  # @ wp-table-reloaded
604
+ #. #-#-#-#-# plugin.pot (WP-Table Reloaded 1.8) #-#-#-#-#
605
+ #. Plugin Name of the plugin/theme
606
+ #: controllers/controller-admin.php:1263
607
+ #: controllers/controller-admin.php:1267
608
+ #: controllers/controller-admin.php:1269
609
  msgid "WP-Table Reloaded"
610
  msgstr "WP-Table Reloaded"
611
 
612
  # @ wp-table-reloaded
613
+ #: controllers/controller-admin.php:1264
614
+ #: controllers/controller-admin.php:1300
615
  msgid "Add new Table"
616
  msgstr "Neue Tabelle anlegen"
617
 
618
  # @ wp-table-reloaded
619
+ #: controllers/controller-admin.php:1265
620
+ #: controllers/controller-admin.php:1301
621
  msgid "Import a Table"
622
  msgstr "Eine Tabelle importieren"
623
 
624
  # @ wp-table-reloaded
625
+ #: controllers/controller-admin.php:1266
626
+ #: controllers/controller-admin.php:1302
627
  msgid "Export a Table"
628
  msgstr "Eine Tabelle exportieren"
629
 
630
  # @ wp-table-reloaded
631
+ #: controllers/controller-admin.php:1267
632
+ #: controllers/controller-admin.php:1309
633
  #: views/view-edit.php:342
634
  #: views/view-edit.php:357
635
  #: views/view-export.php:10
637
  msgstr "Plugin-Einstellungen"
638
 
639
  # @ wp-table-reloaded
640
+ #: controllers/controller-admin.php:1268
641
  msgid "About WP-Table Reloaded"
642
  msgstr "Über WP-Table Reloaded"
643
 
644
  # @ wp-table-reloaded
645
+ #: controllers/controller-admin.php:1276
646
  #, php-format
647
  msgid "Edit Table &quot;%s&quot; (ID %s)"
648
  msgstr "Tabelle &quot;%s&quot; (ID %s) bearbeiten"
649
 
650
  # @ wp-table-reloaded
651
+ #: controllers/controller-admin.php:1277
652
  #, php-format
653
  msgid "Preview of Table &quot;%s&quot; (ID %s)"
654
  msgstr "Vorschau der Tabelle &quot;%s&quot; (ID %s)"
655
 
656
  # @ wp-table-reloaded
657
+ #: controllers/controller-admin.php:1299
658
  msgid "List Tables"
659
  msgstr "Liste der Tabellen"
660
 
661
  # @ wp-table-reloaded
662
+ #: controllers/controller-admin.php:1310
663
  msgid "About the plugin"
664
  msgstr "Über das Plugin"
665
 
666
  # @ wp-table-reloaded
667
+ #: controllers/controller-admin.php:1666
668
  msgid "WP-Table Reloaded Plugin Page"
669
  msgstr "Plugin-Seite von WP-Table Reloaded"
670
 
671
  # @ wp-table-reloaded
672
+ #: controllers/controller-admin.php:1666
673
  msgid "Plugin Page"
674
  msgstr "Plugin-Seite"
675
 
676
  # @ wp-table-reloaded
677
+ #: controllers/controller-admin.php:1667
678
  msgid "Frequently Asked Questions"
679
  msgstr "Häufig gestellte Fragen"
680
 
681
  # @ wp-table-reloaded
682
+ #: controllers/controller-admin.php:1667
683
  msgid "FAQ"
684
  msgstr "FAQ"
685
 
686
  # @ wp-table-reloaded
687
+ #: controllers/controller-admin.php:1668
688
  msgid "Support"
689
  msgstr "Unterstützung"
690
 
691
  # @ wp-table-reloaded
692
+ #: controllers/controller-admin.php:1669
693
  msgid "Plugin Documentation"
694
  msgstr "Plugin-Dokumentation"
695
 
696
  # @ wp-table-reloaded
697
+ #: controllers/controller-admin.php:1669
698
  msgid "Documentation"
699
  msgstr "Dokumentation"
700
 
701
  # @ wp-table-reloaded
702
+ #: controllers/controller-admin.php:1670
703
  msgid "Support WP-Table Reloaded with your donation!"
704
  msgstr "Unterstütze WP-Table Reloaded mit deiner Spende!"
705
 
706
  # @ wp-table-reloaded
707
+ #: controllers/controller-admin.php:1709
708
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
709
  msgstr "Möchtest du diese Option wirklich aktivieren? Du solltest dies erst unmittelbar vor der Deaktivierung zum Zwecke der Deinstallation tun!"
710
 
711
  # @ wp-table-reloaded
712
+ #: controllers/controller-admin.php:1710
713
  msgid "URL of link to insert"
714
  msgstr "URL des einzufügenden Links"
715
 
716
  # @ wp-table-reloaded
717
+ #: controllers/controller-admin.php:1711
718
  msgid "Text of link"
719
  msgstr "Text des Links"
720
 
721
  # @ wp-table-reloaded
722
+ #: controllers/controller-admin.php:1712
723
  msgid "To insert the following HTML code for a link into a cell, just click the cell after closing this dialog."
724
  msgstr "Um den folgenden HTML-Code für einen Link in eine Tabellenzelle einzufügen, klicke einfach nach dem Schließen des Dialoges auf die Zelle."
725
 
726
  # @ wp-table-reloaded
727
+ #: controllers/controller-admin.php:1713
728
  msgid "To insert an image, click &quot;OK&quot; and then click into the cell into which you want to insert the image."
729
  msgstr "Um ein Bild einzufügen, klicke auf &quot;OK&quot; und klicke dann in die Zelle, in die du das Bild einfügen möchtest."
730
 
731
  # @ wp-table-reloaded
732
+ #: controllers/controller-admin.php:1713
733
  msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
734
  msgstr "Wähle dann das Bild in der sich öffnenden Medien-Bibliothek, lade dort ein neues Bild hoch oder gib die URL des Bildes ein."
735
 
736
  # @ wp-table-reloaded
737
+ #: controllers/controller-admin.php:1713
738
  #, php-format
739
  msgid "Click the &quot;%s&quot; button to insert the image."
740
  msgstr "Klicke auf die &quot;%s&quot;-Schaltfläche, um das Bild einzufügen."
741
 
742
+ #: controllers/controller-admin.php:1713
743
  msgid "Insert into Post"
744
  msgstr ""
745
 
746
  # @ wp-table-reloaded
747
+ #: controllers/controller-admin.php:1714
748
  msgid "To combine cells within a row, click into the cell to the right of the cell that has the content the combined cells shall have."
749
  msgstr "Um Zellen innerhalb einer Zeile zu verbinden, klicke in die Zelle rechts von der Zelle mit dem Inhalt für die verbundene Zelle."
750
 
751
  # @ wp-table-reloaded
752
+ #: controllers/controller-admin.php:1715
753
  msgid "To combine cells within a column, click into the cell below the cell that has the content the combined cells shall have."
754
  msgstr "Um Zellen innerhalb einer Spalte zu verbinden, klicke in die Zelle unterhalb der Zelle mit dem Inhalt für die verbundene Zelle."
755
 
756
  # @ wp-table-reloaded
757
+ #: controllers/controller-admin.php:1716
758
  msgid "Do you want to copy the selected tables?"
759
  msgstr "Möchtest du die ausgewählten Tabellen kopieren?"
760
 
761
  # @ wp-table-reloaded
762
+ #: controllers/controller-admin.php:1717
763
  msgid "The selected tables and all content will be erased. Do you really want to delete them?"
764
  msgstr "Die ausgewählten Tabellen und alle Inhalte werden gelöscht. Willst du diese wirklich löschen?"
765
 
766
  # @ wp-table-reloaded
767
+ #: controllers/controller-admin.php:1718
768
  msgid "Do you really want to import the selected tables from the wp-Table plugin?"
769
  msgstr "Möchtest du die ausgewählten Tabellen aus dem Plugin wp-Table importieren?"
770
 
771
  # @ wp-table-reloaded
772
+ #: controllers/controller-admin.php:1719
773
  msgid "Do you want to copy this table?"
774
  msgstr "Möchtest du diese Tabelle kopieren?"
775
 
776
  # @ wp-table-reloaded
777
+ #: controllers/controller-admin.php:1720
778
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
779
  msgstr "Die gesamte Tabelle und alle Inhalte werden gelöscht. Möchtest du dies wirklich?"
780
 
781
  # @ wp-table-reloaded
782
+ #: controllers/controller-admin.php:1721
783
  msgid "Do you really want to delete the selected rows?"
784
  msgstr "Möchtest du die ausgewählten Zeilen wirklich löschen?"
785
 
786
  # @ wp-table-reloaded
787
+ #: controllers/controller-admin.php:1722
788
  msgid "Do you really want to delete the selected columns?"
789
  msgstr "Möchtest du die ausgewählten Spalten wirklich löschen?"
790
 
791
  # @ wp-table-reloaded
792
+ #: controllers/controller-admin.php:1723
793
+ #: controllers/controller-admin.php:1727
794
+ #: controllers/controller-admin.php:1729
795
  msgid "You have not selected any rows."
796
  msgstr "Du hast keine Zeilen ausgewählt."
797
 
798
  # @ wp-table-reloaded
799
+ #: controllers/controller-admin.php:1724
800
+ #: controllers/controller-admin.php:1728
801
+ #: controllers/controller-admin.php:1730
802
  msgid "You have not selected any columns."
803
  msgstr "Du hast keine Spalten ausgewählt."
804
 
805
  # @ wp-table-reloaded
806
+ #: controllers/controller-admin.php:1725
807
  msgid "You can not delete all rows of the table at once!"
808
  msgstr "Du kannst nicht alle Tabellenzeilen auf einmal löschen!"
809
 
810
  # @ wp-table-reloaded
811
+ #: controllers/controller-admin.php:1726
812
  msgid "You can not delete all columns of the table at once!"
813
  msgstr "Du kannst nicht alle Tabellenspalten auf einmal löschen!"
814
 
815
  # @ wp-table-reloaded
816
+ #: controllers/controller-admin.php:1731
817
  msgid "Do you really want to import this table from the wp-Table plugin?"
818
  msgstr "Möchtest du diese Tabelle wirklich aus dem Plugin wp-Table importieren?"
819
 
820
  # @ wp-table-reloaded
821
+ #: controllers/controller-admin.php:1732
822
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
823
  msgstr "Möchtest du das Plugin wirklich deinstallieren und ALLE Daten löschen?"
824
 
825
  # @ wp-table-reloaded
826
+ #: controllers/controller-admin.php:1733
827
  msgid "Are you really sure?"
828
  msgstr "Bist du wirklich sicher?"
829
 
830
  # @ wp-table-reloaded
831
+ #: controllers/controller-admin.php:1734
832
  msgid "Do you really want to change the ID of the table?"
833
  msgstr "Möchtest du die ID der Tabelle wirklich ändern?"
834
 
835
  # @ wp-table-reloaded
836
+ #: controllers/controller-admin.php:1735
837
  msgid "To show this Custom Data Field, use this shortcode:"
838
  msgstr "Um dieses Benutzerdefinierte Datenfeld anzuzeigen, nutze diesen Shortcode:"
839
 
840
  # @ wp-table-reloaded
841
+ #: controllers/controller-admin.php:1736
842
  msgid "To show this table, use this shortcode:"
843
  msgstr "Um diese Tabelle anzuzeigen, nutze diesen Shortcode:"
844
 
845
  # @ wp-table-reloaded
846
+ #: controllers/controller-admin.php:1737
847
  msgid "Warning: You will lose all current Tables and Settings! You should create a backup first. Be warned!"
848
  msgstr "Warnung: Du verlierst alle aktuellen Tabellen und Einstellungen! Du solltest erst eine Sicherung anlegen. Sei gewarnt!"
849
 
850
  # @ wp-table-reloaded
851
+ #: controllers/controller-admin.php:1738
852
  msgid "You have made changes to the content of this table and not yet saved them."
853
  msgstr "Du hast Inhalte dieser Tabelle geändert, aber noch nicht gespeichert."
854
 
855
  # @ wp-table-reloaded
856
+ #: controllers/controller-admin.php:1738
857
  #, php-format
858
  msgid "You should first click &quot;%s&quot; or they will be lost if you navigate away from this page."
859
  msgstr "Du solltest zunächst auf &quot;%s&quot; klicken, um keine Daten und Änderungen zu verlieren, wenn du diese Seite verlässt."
860
 
861
  # @ wp-table-reloaded
862
+ #: controllers/controller-admin.php:1738
863
  #: views/view-edit.php:41
864
  #: views/view-edit.php:253
865
  #: views/view-edit.php:405
868
  msgstr "Änderungen speichern"
869
 
870
  # @ wp-table-reloaded
871
+ #: controllers/controller-admin.php:1781
872
  #: views/view-about.php:14
873
  #: views/view-list.php:2
874
  msgid "Table"
875
  msgstr "Tabelle"
876
 
877
  # @ wp-table-reloaded
878
+ #: controllers/controller-admin.php:1782
879
  msgid "Insert a Table"
880
  msgstr "Eine Tabelle einfügen"
881
 
882
  # @ wp-table-reloaded
883
+ #: controllers/controller-admin.php:1843
884
  msgid "Please wait..."
885
  msgstr "Bitte warten..."
886
 
887
  # @ wp-table-reloaded
888
+ #: controllers/controller-admin.php:1844
889
  msgid "Show _MENU_ Tables"
890
  msgstr "Zeige _MENU_ Tabellen"
891
 
892
  # @ wp-table-reloaded
893
+ #: controllers/controller-admin.php:1845
894
  #: views/view-ajax_list.php:53
895
  #: views/view-export.php:71
896
  #: views/view-list.php:88
898
  msgstr "Es wurden keine Tabellen gefunden."
899
 
900
  # @ wp-table-reloaded
901
+ #: controllers/controller-admin.php:1846
902
  msgid "_START_ to _END_ of _TOTAL_ Tables"
903
  msgstr "_START_ bis _END_ von _TOTAL_ Tabellen"
904
 
905
  # @ wp-table-reloaded
906
+ #: controllers/controller-admin.php:1847
907
  msgid "(filtered from _MAX_ Tables)"
908
  msgstr "(gefiltert aus _MAX_ Tabellen)"
909
 
910
  # @ wp-table-reloaded
911
+ #: controllers/controller-admin.php:1848
912
  msgid "Filter:"
913
  msgstr "Filtern:"
914
 
915
  # @ wp-table-reloaded
916
+ #: controllers/controller-admin.php:1849
917
  msgid "First"
918
  msgstr "Erste"
919
 
920
  # @ wp-table-reloaded
921
+ #: controllers/controller-admin.php:1850
922
  msgid "Back"
923
  msgstr "zur&uuml;ck"
924
 
925
  # @ wp-table-reloaded
926
+ #: controllers/controller-admin.php:1851
927
  msgid "Next"
928
  msgstr "n&auml;chste"
929
 
930
  # @ wp-table-reloaded
931
+ #: controllers/controller-admin.php:1852
932
  msgid "Last"
933
  msgstr "Letzte"
934
 
1019
  msgstr "Bitte beachte dazu die Liste dieser Selektoren und die Styling-Beispiele in der <a href=\"%s\">Dokumentation</a>."
1020
 
1021
  # @ wp-table-reloaded
1022
+ #: views/view-about.php:19
1023
  msgid "More Information and Documentation"
1024
  msgstr "Weitere Informationen und Dokumentation"
1025
 
1026
  # @ wp-table-reloaded
1027
+ #: views/view-about.php:26
1028
  msgid "Help and Support"
1029
  msgstr "Hilfe und Unterstützung"
1030
 
1031
  # @ wp-table-reloaded
1032
+ #: views/view-about.php:28
1033
  #, php-format
1034
  msgid "If you do not find an answer there, please <a href=\"%s\">open a new thread</a> in the WordPress Support Forums with the tag &quot;wp-table-reloaded&quot;."
1035
  msgstr "Wenn du dort keine Antwort findest, öffne bitte <a href=\"%s\">ein neues Thema</a> im WordPress-Support-Forum mit dem Schlagwort &quot;wp-table-reloaded&quot;."
1036
 
1037
  # @ wp-table-reloaded
1038
+ #: views/view-about.php:33
1039
  msgid "Author and License"
1040
  msgstr "Autor und Lizenz"
1041
 
1042
  # @ wp-table-reloaded
1043
+ #: views/view-about.php:35
1044
  #, php-format
1045
  msgid "This plugin was written by <a href=\"%s\">Tobias B&auml;thge</a>."
1046
  msgstr "Das Plugin WP-Table Reloaded wurde von <a href=\"%s\">Tobias B&auml;thge</a> programmiert."
1047
 
1048
  # @ wp-table-reloaded
1049
+ #: views/view-about.php:35
1050
  msgid "It is licensed as Free Software under GPL 2."
1051
  msgstr "Es steht als <em>Freie Software</em> unter GPL 2."
1052
 
1053
  # @ wp-table-reloaded
1054
+ #: views/view-about.php:35
1055
  #, php-format
1056
  msgid "Please rate the plugin in the <a href=\"%s\">WordPress Plugin Directory</a>."
1057
  msgstr "Bitte bewerte das Plugin im <a href=\"%s\">WordPress-Plugin-Verzeichnis</a>."
1058
 
1059
  # @ wp-table-reloaded
1060
+ #: views/view-about.php:35
1061
  msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
1062
  msgstr "Spenden und gute Bewertungen ermutigen mich, das Plugin weiterzuentwickeln and unzählige Stunden Support zu leisten. Ich bin für jeden Betrag dankbar! Vielen Dank!"
1063
 
1064
  # @ wp-table-reloaded
1065
+ #: views/view-about.php:40
1066
  msgid "Credits and Thanks"
1067
  msgstr "Danksagungen"
1068
 
1069
  # @ wp-table-reloaded
1070
+ #: views/view-about.php:43
1071
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
1072
  msgstr "Danke an <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> für das Plugin wp-Table,"
1073
 
1074
  # @ wp-table-reloaded
1075
+ #: views/view-about.php:44
1076
  msgid "Allan Jardine for the <a href=\"http://www.datatables.net/\">DataTables jQuery plugin</a>,"
1077
  msgstr "Allan Jardine für das <a href=\"http://www.datatables.net/\">DataTables jQuery-Plugin,</a>"
1078
 
1079
  # @ wp-table-reloaded
1080
+ #: views/view-about.php:45
1081
  msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
1082
  msgstr "Christian Bach für das <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
1083
 
1084
  # @ wp-table-reloaded
1085
+ #: views/view-about.php:46
1086
  msgid "Soeren Krings for its extension <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
1087
  msgstr "Soeren Krings für die Erweiterung <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
1088
 
1089
  # @ wp-table-reloaded
1090
+ #: views/view-about.php:47
1091
  msgid "the submitters of translations:"
1092
  msgstr "die Übersetzer:"
1093
 
2460
  msgstr "Alle Tabellen, Plugin-Daten und -Einstellungen wurden aus der Datenbank entfernt. Du kannst die Dateien des Plugins jetzt manuell aus dem Plugin-Unterordner auf deinem Server löschen oder dazu den \"Löschen\"-Link auf der WordPress-Plugins-Seite nutzen."
2461
 
2462
  # @ wp-table-reloaded
2463
+ #. Plugin URI of the plugin/theme
2464
  msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2465
  msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2466
 
2467
+ #. Description of the plugin/theme
2468
  msgid "This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML."
2469
  msgstr "Dieses Plugin erlaubt die komfortable Verwaltung von Tabellen in WordPress. Dafür werden keine HTML-Kenntnisse benötigt. Die Daten werden in einer Eingabemaske eingegeben und mittels eines Shortcodes in Artikel, Seiten oder Text-Widgets eingebunden. Zusätzlich können einer Tabelle mit einer JavaScript-Bibliothek weitere Fähigkeiten, wie Sortieren, Paginierung und Filterung hinzugefügt werden."
2470
 
2471
+ #. Author of the plugin/theme
2472
  msgid "Tobias B&auml;thge"
2473
  msgstr "Tobias B&auml;thge"
2474
 
2475
+ #. Author URI of the plugin/theme
2476
  msgid "http://tobias.baethge.com/"
2477
  msgstr "http://tobias.baethge.com/"
2478
 
languages/wp-table-reloaded-pl_PL.mo ADDED
Binary file
languages/wp-table-reloaded-pl_PL.po ADDED
@@ -0,0 +1,2445 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Table Reloaded v1.7\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2010-05-01 20:46+0100\n"
7
+ "Last-Translator: Marek Miśkiewicz <powisle@powisle.waw.pl>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Polish\n"
14
+ "X-Poedit-Country: POLAND\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: ../\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #@ wp-table-reloaded
22
+ #: classes/export.class.php:28
23
+ #: classes/import.class.php:36
24
+ msgid "CSV - Character-Separated Values"
25
+ msgstr "CSV - Comma Separated Values"
26
+
27
+ #@ wp-table-reloaded
28
+ #: classes/export.class.php:29
29
+ #: classes/import.class.php:37
30
+ msgid "HTML - Hypertext Markup Language"
31
+ msgstr "HTML - Hypertext Markup Language"
32
+
33
+ #@ wp-table-reloaded
34
+ #: classes/export.class.php:30
35
+ #: classes/import.class.php:38
36
+ msgid "XML - eXtended Markup Language"
37
+ msgstr "XML - eXtended Markup Language"
38
+
39
+ #@ wp-table-reloaded
40
+ #: classes/export.class.php:33
41
+ msgid "; (semicolon)"
42
+ msgstr "; (średnik)"
43
+
44
+ #@ wp-table-reloaded
45
+ #: classes/export.class.php:34
46
+ msgid ", (comma)"
47
+ msgstr ", (przecinek)"
48
+
49
+ #@ wp-table-reloaded
50
+ #: classes/export.class.php:35
51
+ msgid ": (colon)"
52
+ msgstr ": (dwukropek)"
53
+
54
+ #@ wp-table-reloaded
55
+ #: classes/export.class.php:36
56
+ msgid ". (dot)"
57
+ msgstr ". (kropka)"
58
+
59
+ #@ wp-table-reloaded
60
+ #: classes/export.class.php:37
61
+ msgid "| (pipe)"
62
+ msgstr "| (pionowa kreska)"
63
+
64
+ #@ wp-table-reloaded
65
+ #: classes/helper.class.php:40
66
+ #: views/view-about.php:21
67
+ #, php-format
68
+ msgid "More information about WP-Table Reloaded can be found on the <a href=\"%s\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress Plugin Directory</a>."
69
+ msgstr "Więcej na temat wtyczki WP-Table Reloaded można znaleźć na stronie <a href=\"%s\">wtyczki</a> lub <a href=\"%s\">w katalogu wtyczek WordPress</a>."
70
+
71
+ #@ wp-table-reloaded
72
+ #: classes/helper.class.php:41
73
+ #: views/view-about.php:21
74
+ #, php-format
75
+ msgid "For technical information, see the <a href=\"%s\">documentation</a>."
76
+ msgstr "W celu uzyskania technicznych informacji, sprawdź <a href=\"%s\">dokumentację</a>."
77
+
78
+ #@ wp-table-reloaded
79
+ #: classes/helper.class.php:42
80
+ #: views/view-about.php:28
81
+ #, php-format
82
+ msgid "<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress Support Forums</a>."
83
+ msgstr "<a href=\"%s\">Wsparcie</a> prowadzone poprzez <a href=\"%s\">forum WordPress</a>."
84
+
85
+ #@ wp-table-reloaded
86
+ #: classes/helper.class.php:43
87
+ #: views/view-about.php:28
88
+ #, php-format
89
+ msgid "Before asking for support, please carefully read the <a href=\"%s\">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums."
90
+ msgstr "Zanim poprosisz o wsparcie, przeczytaj uważnie sekcję <a href=\"%s\">FAQ</a> gdzie znajdziesz odpowiedzi na najczęściej zadawane pytania lub poszukaj odpowiedzi na forum."
91
+
92
+ #@ wp-table-reloaded
93
+ #: classes/helper.class.php:44
94
+ #: views/view-about.php:35
95
+ #, php-format
96
+ msgid "If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is recommended."
97
+ msgstr "Jeżeli jesteś zadowolony z wtyczki, <a href=\"%s\"><strong>darowizna</strong></a> jest mile widziana."
98
+
99
+ #@ wp-table-reloaded
100
+ #: classes/helper.class.php:74
101
+ msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
102
+ msgstr "Dziękuję za korzystanie z wtyczki <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
103
+
104
+ #@ wp-table-reloaded
105
+ #: classes/helper.class.php:74
106
+ #, php-format
107
+ msgid "Support the plugin with your <a href=\"%s\">donation</a>!"
108
+ msgstr "Wesprzyj wtyczkę swoją <a href=\"%s\">darowizną</a>!"
109
+
110
+ #@ wp-table-reloaded
111
+ #: classes/helper.class.php:104
112
+ #: classes/helper.class.php:109
113
+ msgid "Table cells can span across more than one column or row."
114
+ msgstr "Komórki w tabeli mogą być rozszerzone na więcej niż jedną kolumnę lub wiersz."
115
+
116
+ #@ wp-table-reloaded
117
+ #: classes/helper.class.php:104
118
+ msgid "Combining consecutive cells within the same row is called \"colspanning\"."
119
+ msgstr "Łączenie kolejnych komórek w tym samym wierszu nazywamy \"colspanning\" (\"scalaniem\")."
120
+
121
+ #@ wp-table-reloaded
122
+ #: classes/helper.class.php:104
123
+ msgid "To combine cells, add the keyword #colspan# to the cell to the right of the one with the content for the combined cell by using the corresponding button."
124
+ msgstr "W celu połączenia komórek, dodaj wyrażenie #colspan# do komórki po prawej stronie przy użyciu właściwego przycisku."
125
+
126
+ #@ wp-table-reloaded
127
+ #: classes/helper.class.php:104
128
+ #: classes/helper.class.php:109
129
+ msgid "Repeat this to add the keyword to all cells that shall be connected."
130
+ msgstr "Powtórz czynność w celu dodania wyrażenia do wszystkich komórek, które mają być połączone."
131
+
132
+ #@ wp-table-reloaded
133
+ #: classes/helper.class.php:104
134
+ #: classes/helper.class.php:109
135
+ msgid "Be aware that the JavaScript libraries will not work on tables which have combined cells."
136
+ msgstr "Biblioteki JavaScript nie są obsługiwane na tabelach, które mają połączone komórki."
137
+
138
+ #@ wp-table-reloaded
139
+ #: classes/helper.class.php:109
140
+ msgid "Combining consecutive cells within the same column is called \"rowspanning\"."
141
+ msgstr "Łączenie kolejnych komórek w ramach tej samej kolumny nazywamy \"rowspanning\"."
142
+
143
+ #@ wp-table-reloaded
144
+ #: classes/helper.class.php:109
145
+ msgid "To combine cells, add the keyword #rowspan# to the cell below the one with the content for the combined cell by using the corresponding button."
146
+ msgstr "Aby połączyć komórki, dodaj wyrażenie #rowspan# do komórki poniżej przy użyciu odpowiedniego przycisku."
147
+
148
+ #@ wp-table-reloaded
149
+ #: classes/helper.class.php:118
150
+ msgid "Help"
151
+ msgstr "Pomoc"
152
+
153
+ #@ wp-table-reloaded
154
+ #: classes/render.class.php:140
155
+ #: views/view-list.php:60
156
+ msgid "Edit"
157
+ msgstr "Edycja"
158
+
159
+ #@ wp-table-reloaded
160
+ #: controllers/controller-admin.php:257
161
+ msgid "German"
162
+ msgstr "Niemiecki"
163
+
164
+ #@ wp-table-reloaded
165
+ #: controllers/controller-admin.php:258
166
+ msgid "English"
167
+ msgstr "Angielski"
168
+
169
+ #@ wp-table-reloaded
170
+ #: controllers/controller-admin.php:259
171
+ msgid "Spanish"
172
+ msgstr "Hiszpański"
173
+
174
+ #@ wp-table-reloaded
175
+ #: controllers/controller-admin.php:260
176
+ msgid "Finnish"
177
+ msgstr "Fiński"
178
+
179
+ #@ wp-table-reloaded
180
+ #: controllers/controller-admin.php:261
181
+ msgid "French"
182
+ msgstr "Francuski"
183
+
184
+ #@ wp-table-reloaded
185
+ #: controllers/controller-admin.php:262
186
+ msgid "Hindi"
187
+ msgstr "Hindi"
188
+
189
+ #@ wp-table-reloaded
190
+ #: controllers/controller-admin.php:263
191
+ msgid "Italian"
192
+ msgstr "Włoski"
193
+
194
+ #@ wp-table-reloaded
195
+ #: controllers/controller-admin.php:264
196
+ msgid "Japanese"
197
+ msgstr "Japoński"
198
+
199
+ #@ wp-table-reloaded
200
+ #: controllers/controller-admin.php:265
201
+ msgid "Brazilian Portuguese"
202
+ msgstr "Portugalski"
203
+
204
+ #@ wp-table-reloaded
205
+ #: controllers/controller-admin.php:266
206
+ msgid "Russian"
207
+ msgstr "Rosyjski"
208
+
209
+ #@ wp-table-reloaded
210
+ #: controllers/controller-admin.php:267
211
+ msgid "Slovak"
212
+ msgstr "Słowacki"
213
+
214
+ #@ wp-table-reloaded
215
+ #: controllers/controller-admin.php:268
216
+ msgid "Swedish"
217
+ msgstr "Szwedzki"
218
+
219
+ #@ wp-table-reloaded
220
+ #: controllers/controller-admin.php:269
221
+ msgid "Ukrainian"
222
+ msgstr "Ukraiński"
223
+
224
+ #@ wp-table-reloaded
225
+ #: controllers/controller-admin.php:270
226
+ msgid "Chinese (Simplified)"
227
+ msgstr "Chiński (uproszczony)"
228
+
229
+ #@ wp-table-reloaded
230
+ #: controllers/controller-admin.php:302
231
+ #, php-format
232
+ msgid "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s\">documentation</a>, and the <a href=\"%s\">support</a> section."
233
+ msgstr "Witam użytkowników wtyczki WP-Table Reloaded %s. Jeżeli napotkasz na jakiekolwiek problemy, odnieś się do sekcji<a href=\"%s\">FAQ</a>, <a href=\"%s\">dokumentacji</a>, wsparcia na <a href=\"%s\">forum</a>."
234
+
235
+ #@ wp-table-reloaded
236
+ #: controllers/controller-admin.php:303
237
+ #, php-format
238
+ msgid "Thank you for upgrading to WP-Table Reloaded %s."
239
+ msgstr "Dziękuję za aktualizację WP-Table Reloaded %s."
240
+
241
+ #@ wp-table-reloaded
242
+ #: controllers/controller-admin.php:303
243
+ msgid "This version includes several enhancements, like an updated DataTables library, a &quot;Table&quot; button in the toolbar of the visual editor, and several other things."
244
+ msgstr "Ta wersja zawiera wiele nowych funkcjonalności jak zaktualizowana biblioteka DataTables, przycisk &quot;Table&quot; w narzędziach edytora oraz wiele innych."
245
+
246
+ #@ wp-table-reloaded
247
+ #: controllers/controller-admin.php:303
248
+ #, php-format
249
+ msgid "Please read the <a href=\"%s\">release announcement</a> for more information."
250
+ msgstr "Dowiedz się więcej o <a href=\"%s\">nowej wersji</a>."
251
+
252
+ #@ wp-table-reloaded
253
+ #: controllers/controller-admin.php:303
254
+ #, php-format
255
+ msgid "If you like the new features and enhancements, I would appreciate a small <a href=\"%s\">donation</a>. Thank you."
256
+ msgstr "Jeżeli podobają Ci się nowe funkcjonalności, byłbym wdzięczny za małą <a href=\"%s\">darowiznę</a>. Dziękuję."
257
+
258
+ #@ wp-table-reloaded
259
+ #: controllers/controller-admin.php:308
260
+ msgid "Hide this message"
261
+ msgstr "Ukryj tę wiadomość"
262
+
263
+ #@ wp-table-reloaded
264
+ #: controllers/controller-admin.php:316
265
+ msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago."
266
+ msgstr "Dziękuję za korzystanie z wtyczki! Zainstalowałeś wtyczkę WP-Table Reloaded ponad miesiąc temu."
267
+
268
+ #@ wp-table-reloaded
269
+ #: controllers/controller-admin.php:316
270
+ #, php-format
271
+ msgid "If it works and you are satisfied with the results of managing your %s table, isn't it worth at least one dollar or euro?"
272
+ msgid_plural "If it works and you are satisfied with the results of managing your %s tables, isn't it worth at least one dollar or euro?"
273
+ msgstr[0] "Jeżeli wtyczka pracuje poprawnie i dobrze zarządza Twoją %s tabelą, może warto przekazać chociaż 1 dolar lub 1 euro darownizy?"
274
+ msgstr[1] "Jeżeli wtyczka pracuje poprawnie i dobrze zarządza Twoimi %s tabelami, może warto przekazać chociaż 1 dolar lub 1 euro darownizy?"
275
+
276
+ #@ wp-table-reloaded
277
+ #: controllers/controller-admin.php:317
278
+ #, php-format
279
+ msgid "<a href=\"%s\">Donations</a> help me to continue support and development of this <i>free</i> software - things for which I spend countless hours of my free time! Thank you!"
280
+ msgstr "<a href=\"%s\">Darowizna</a> pomaga mi nad dalszym rozwojem tego <i>darmowego</i> oprogramowania - dla którego poświęcam swój wolny czas! Dziekuję!"
281
+
282
+ #@ wp-table-reloaded
283
+ #: controllers/controller-admin.php:318
284
+ msgid "Sure, no problem!"
285
+ msgstr "Oczywiście, nie ma problemu!"
286
+
287
+ #@ wp-table-reloaded
288
+ #: controllers/controller-admin.php:319
289
+ msgid "I already donated."
290
+ msgstr "Już przekazałem darowiznę."
291
+
292
+ #@ wp-table-reloaded
293
+ #: controllers/controller-admin.php:320
294
+ msgid "No, thanks. Don't ask again."
295
+ msgstr "Nie dziękuję. Nie przypominaj mi o tym ponownie."
296
+
297
+ #@ wp-table-reloaded
298
+ #: controllers/controller-admin.php:348
299
+ #, php-format
300
+ msgid "Table &quot;%s&quot; added successfully."
301
+ msgstr "Tabelę &quot;%s&quot; dodano pomyślnie."
302
+
303
+ #@ wp-table-reloaded
304
+ #: controllers/controller-admin.php:379
305
+ #, php-format
306
+ msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
307
+ msgstr "Tabelę edytowano pomyślnie. Tablica ma teraz ID %s. Musisz poprawić istniejące kody we wpisach i na stronach."
308
+
309
+ #@ wp-table-reloaded
310
+ #: controllers/controller-admin.php:381
311
+ #, php-format
312
+ msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
313
+ msgstr "Nie można zmienić ID z %s na %s ponieważ istnieje już tabela z tym numerem ID."
314
+
315
+ #@ wp-table-reloaded
316
+ #: controllers/controller-admin.php:384
317
+ msgid "Table edited successfully."
318
+ msgstr "Tabela edytowana pomyślnie."
319
+
320
+ #@ wp-table-reloaded
321
+ #: controllers/controller-admin.php:431
322
+ msgid "Rows swapped successfully."
323
+ msgstr "Wiersze zamienione pomyślnie."
324
+
325
+ #@ wp-table-reloaded
326
+ #: controllers/controller-admin.php:452
327
+ msgid "Columns swapped successfully."
328
+ msgstr "Kolumny zamienione pomyślnie."
329
+
330
+ #@ wp-table-reloaded
331
+ #: controllers/controller-admin.php:481
332
+ msgid "Table sorted successfully."
333
+ msgstr "Tabela posortowana pomyślnie."
334
+
335
+ #@ wp-table-reloaded
336
+ #: controllers/controller-admin.php:502
337
+ msgid "Row moved successfully."
338
+ msgstr "Wiersz przeniesiony pomyślnie."
339
+
340
+ #@ wp-table-reloaded
341
+ #: controllers/controller-admin.php:527
342
+ msgid "Column moved successfully."
343
+ msgstr "Kolumna przeniesiona pomyślnie."
344
+
345
+ #@ wp-table-reloaded
346
+ #: controllers/controller-admin.php:535
347
+ msgid "Row could not be deleted."
348
+ msgid_plural "Rows could not be deleted."
349
+ msgstr[0] "Wiersz nie mógł zostać usunięty."
350
+ msgstr[1] "Wiersze nie mogły zostać usunięte."
351
+
352
+ #@ wp-table-reloaded
353
+ #: controllers/controller-admin.php:544
354
+ msgid "Row deleted successfully."
355
+ msgid_plural "Rows deleted successfully."
356
+ msgstr[0] "Wiersz usunięto pomyślnie."
357
+ msgstr[1] "Wiersze usunięto pomyślnie."
358
+
359
+ #@ wp-table-reloaded
360
+ #: controllers/controller-admin.php:554
361
+ msgid "Column could not be deleted."
362
+ msgid_plural "Columns could not be deleted."
363
+ msgstr[0] "Kolumna nie mogła zostać usunięta."
364
+ msgstr[1] "Kolumny nie mogły zostać usunięte."
365
+
366
+ #@ wp-table-reloaded
367
+ #: controllers/controller-admin.php:567
368
+ msgid "Column deleted successfully."
369
+ msgid_plural "Columns deleted successfully."
370
+ msgstr[0] "Kolumnę usunięto pomyślnie."
371
+ msgstr[1] "Kolumny usunięto pomyślnie."
372
+
373
+ #@ wp-table-reloaded
374
+ #: controllers/controller-admin.php:590
375
+ msgid "Row inserted successfully."
376
+ msgid_plural "Rows inserted successfully."
377
+ msgstr[0] "Wiersz wstawiono pomyślnie."
378
+ msgstr[1] "Wiersze wstawiono pomyślnie."
379
+
380
+ #@ wp-table-reloaded
381
+ #: controllers/controller-admin.php:617
382
+ msgid "Column inserted successfully."
383
+ msgid_plural "Columns inserted successfully."
384
+ msgstr[0] "Kolumnę wstawiono pomyślnie."
385
+ msgstr[1] "Kolumny wstawiono pomyślnie."
386
+
387
+ #@ wp-table-reloaded
388
+ #: controllers/controller-admin.php:632
389
+ msgid "Row added successfully."
390
+ msgid_plural "Rows added successfully."
391
+ msgstr[0] "Wiersz dodano pomyślnie."
392
+ msgstr[1] "Wiersze dodano pomyślnie."
393
+
394
+ #@ wp-table-reloaded
395
+ #: controllers/controller-admin.php:646
396
+ msgid "Column added successfully."
397
+ msgid_plural "Columns added successfully."
398
+ msgstr[0] "Kolumnę dodano pomyślnie."
399
+ msgstr[1] "Kolumny dodano pomyślnie."
400
+
401
+ #@ wp-table-reloaded
402
+ #: controllers/controller-admin.php:653
403
+ msgid "Could not add Custom Data Field, because you did not enter a name."
404
+ msgstr "Nie można dodać Własnego Pola Danych ponieważ nie wprowadzono nazwy."
405
+
406
+ #@ wp-table-reloaded
407
+ #: controllers/controller-admin.php:658
408
+ msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
409
+ msgstr "Nie można dodać Własnego Pola Danych ponieważ wprowadzona nazwa jest już zarezerwowana."
410
+
411
+ #@ wp-table-reloaded
412
+ #: controllers/controller-admin.php:664
413
+ msgid "Could not add Custom Data Field, because the name contained illegal characters."
414
+ msgstr "Nie można dodać Własnego Pola Danych ponieważ wprowadzona nazwa zawiera niedozwolone znaki."
415
+
416
+ #@ wp-table-reloaded
417
+ #: controllers/controller-admin.php:668
418
+ msgid "Could not add Custom Data Field, because a Field with that name already exists."
419
+ msgstr "Nie można dodać Własnego Pola Danych ponieważ takie pole już istnieje."
420
+
421
+ #@ wp-table-reloaded
422
+ #: controllers/controller-admin.php:674
423
+ msgid "Custom Data Field added successfully."
424
+ msgstr "Własne Pole Danych dodano pomyślnie."
425
+
426
+ #@ wp-table-reloaded
427
+ #: controllers/controller-admin.php:714
428
+ #: controllers/controller-admin.php:770
429
+ msgid "Copy of"
430
+ msgstr "Kopia"
431
+
432
+ #@ wp-table-reloaded
433
+ #: controllers/controller-admin.php:718
434
+ msgid "Table copied successfully."
435
+ msgid_plural "Tables copied successfully."
436
+ msgstr[0] "Tabelę skopiowano pomyślnie."
437
+ msgstr[1] "Tabele skopiowano pomyślnie."
438
+
439
+ #@ wp-table-reloaded
440
+ #: controllers/controller-admin.php:724
441
+ msgid "Table deleted successfully."
442
+ msgid_plural "Tables deleted successfully."
443
+ msgstr[0] "Tabelę usunięto pomyślnie."
444
+ msgstr[1] "Tabele usunięto pomyślnie."
445
+
446
+ #@ wp-table-reloaded
447
+ #: controllers/controller-admin.php:745
448
+ #: controllers/controller-admin.php:900
449
+ #: controllers/controller-admin.php:938
450
+ msgid "Table imported successfully."
451
+ msgid_plural "Tables imported successfully."
452
+ msgstr[0] "Tabelę zaimportowano pomyślnie."
453
+ msgstr[1] "Tabele zaimportowano pomyślnie."
454
+
455
+ #@ wp-table-reloaded
456
+ #: controllers/controller-admin.php:752
457
+ msgid "You did not select any tables!"
458
+ msgstr "Nie zaznaczyłeś żadnej tabeli!"
459
+
460
+ #@ wp-table-reloaded
461
+ #: controllers/controller-admin.php:775
462
+ #, php-format
463
+ msgid "Table &quot;%s&quot; copied successfully."
464
+ msgstr "Tabelę &quot;%s&quot; skopiowano pomyślnie."
465
+
466
+ #@ wp-table-reloaded
467
+ #: controllers/controller-admin.php:793
468
+ #, php-format
469
+ msgid "Table &quot;%s&quot; deleted successfully."
470
+ msgstr "Tabelę &quot;%s&quot; usunięto pomyślnie."
471
+
472
+ #@ wp-table-reloaded
473
+ #: controllers/controller-admin.php:801
474
+ msgid "Custom Data Field deleted successfully."
475
+ msgstr "Własne Pole Danych usunięto pomyślnie."
476
+
477
+ #@ wp-table-reloaded
478
+ #: controllers/controller-admin.php:803
479
+ msgid "Custom Data Field could not be deleted."
480
+ msgstr "Nie można usunąć Własnego Pola Danych."
481
+
482
+ #@ wp-table-reloaded
483
+ #: controllers/controller-admin.php:809
484
+ msgid "Delete failed."
485
+ msgstr "Usunięcie nie powiodło się."
486
+
487
+ #@ wp-table-reloaded
488
+ #: controllers/controller-admin.php:841
489
+ #: controllers/controller-admin.php:851
490
+ #: controllers/controller-admin.php:862
491
+ msgid "Imported Table"
492
+ msgstr "Zaimportowana tabela"
493
+
494
+ #@ wp-table-reloaded
495
+ #: controllers/controller-admin.php:842
496
+ #: controllers/controller-admin.php:863
497
+ #, php-format
498
+ msgid "from %s"
499
+ msgstr "z %s"
500
+
501
+ #@ wp-table-reloaded
502
+ #: controllers/controller-admin.php:852
503
+ msgid "via form"
504
+ msgstr "przez formularz"
505
+
506
+ #@ wp-table-reloaded
507
+ #: controllers/controller-admin.php:879
508
+ #: controllers/controller-admin.php:916
509
+ msgid "Table could not be imported."
510
+ msgstr "Tabela nie mogła zostać zaimportowana."
511
+
512
+ #@ wp-table-reloaded
513
+ #: controllers/controller-admin.php:896
514
+ #, php-format
515
+ msgid "Table %s (%s) replaced successfully."
516
+ msgstr "Tabela %s (%s) zastąpiona pomyślnie."
517
+
518
+ #@ wp-table-reloaded
519
+ #: controllers/controller-admin.php:946
520
+ #: controllers/controller-admin.php:1139
521
+ msgid "You do not have sufficient rights to perform this action."
522
+ msgstr "Nie masz wystarczających uprawnień."
523
+
524
+ #@ wp-table-reloaded
525
+ #: controllers/controller-admin.php:953
526
+ msgid "You did not upload a WP-Table Reloaded dump file."
527
+ msgstr "Nie wgrałeś pliku zrzutu bazy WP-Table Reloaded."
528
+
529
+ #@ wp-table-reloaded
530
+ #: controllers/controller-admin.php:962
531
+ msgid "The uploaded dump file is empty. Please upload a valid dump file."
532
+ msgstr "Wgrany plik zrzutu jest pusty. Wgraj właściwy plik zrzutu."
533
+
534
+ #@ wp-table-reloaded
535
+ #: controllers/controller-admin.php:991
536
+ msgid "All Tables, Settings and Options were successfully imported."
537
+ msgstr "Wszystkie tabele, ustawienia i opcje zostały pomyślnie zaimportowane."
538
+
539
+ #@ wp-table-reloaded
540
+ #: controllers/controller-admin.php:1020
541
+ #, php-format
542
+ msgid "Table &quot;%s&quot; exported successfully."
543
+ msgstr "Tabelę &quot;%s&quot; eksportowano pomyślnie."
544
+
545
+ #@ wp-table-reloaded
546
+ #: controllers/controller-admin.php:1065
547
+ #: views/view-options.php:232
548
+ msgid "You do not have sufficient rights to access the Plugin Options."
549
+ msgstr "Nie masz wystarczających uprawnień aby edytować opcje wtyczki."
550
+
551
+ #@ wp-table-reloaded
552
+ #: controllers/controller-admin.php:1120
553
+ msgid "Options saved successfully."
554
+ msgstr "Opcje zachowano pomyślnie."
555
+
556
+ #@ wp-table-reloaded
557
+ #: controllers/controller-admin.php:1123
558
+ #, php-format
559
+ msgid "<a href=\"%s\">Click here to Proceed.</a>"
560
+ msgstr "<a href=\"%s\">Kilknij aby kontynuować.</a>"
561
+
562
+ #@ wp-table-reloaded
563
+ #: controllers/controller-admin.php:1189
564
+ msgid "There is no table with this ID!"
565
+ msgstr "Brak tabeli z podanym ID!"
566
+
567
+ #@ wp-table-reloaded
568
+ #: controllers/controller-admin.php:1226
569
+ msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
570
+ msgstr "Dziękuję bardzo! Jestem bardzo wdzięczny za Twoją darowiznę. Przyczyniłeś się do dalszego rozwoju WP-Table Reloaded!"
571
+
572
+ #@ wp-table-reloaded
573
+ #: controllers/controller-admin.php:1228
574
+ #, php-format
575
+ msgid "No problem! I still hope you enjoy the benefits that WP-Table Reloaded brings to you. If you should want to change your mind, you'll always find the &quot;%s&quot; button on the <a href=\"%s\">WP-Table Reloaded website</a>."
576
+ msgstr "Nie ma problemu! Mam nadzieję, że bedziesz zadowolony z korzystania z wtyczki WP-Table Reloaded. Jeżeli zmienisz zdanie, znajdziesz właściwy &quot;%s&quot; przycisk na <a href=\"%s\">stronie WP-Table Reload</a>."
577
+
578
+ #@ wp-table-reloaded
579
+ #: controllers/controller-admin.php:1228
580
+ #: controllers/controller-admin.php:1656
581
+ msgid "Donate"
582
+ msgstr "Przekaż darowiznę"
583
+
584
+ #@ wp-table-reloaded
585
+ #: controllers/controller-admin.php:1251
586
+ #: controllers/controller-admin.php:1258
587
+ msgid "List of Tables"
588
+ msgstr "Wykaz tabel"
589
+
590
+ #@ wp-table-reloaded
591
+ #: controllers/controller-admin.php:1251
592
+ #: controllers/controller-admin.php:1255
593
+ #: controllers/controller-admin.php:1257
594
+ msgid "WP-Table Reloaded"
595
+ msgstr "WP-Table Reloaded"
596
+
597
+ #@ wp-table-reloaded
598
+ #: controllers/controller-admin.php:1252
599
+ #: controllers/controller-admin.php:1288
600
+ msgid "Add new Table"
601
+ msgstr "Dodanie nowej tabeli"
602
+
603
+ #@ wp-table-reloaded
604
+ #: controllers/controller-admin.php:1253
605
+ #: controllers/controller-admin.php:1289
606
+ msgid "Import a Table"
607
+ msgstr "Import tabeli"
608
+
609
+ #@ wp-table-reloaded
610
+ #: controllers/controller-admin.php:1254
611
+ #: controllers/controller-admin.php:1290
612
+ msgid "Export a Table"
613
+ msgstr "Eksport tabeli"
614
+
615
+ #@ wp-table-reloaded
616
+ #: controllers/controller-admin.php:1255
617
+ #: controllers/controller-admin.php:1296
618
+ #: views/view-edit.php:342
619
+ #: views/view-edit.php:357
620
+ #: views/view-export.php:10
621
+ msgid "Plugin Options"
622
+ msgstr "Opcje wtyczki"
623
+
624
+ #@ wp-table-reloaded
625
+ #: controllers/controller-admin.php:1256
626
+ msgid "About WP-Table Reloaded"
627
+ msgstr "O wtyczce WP-Table Reloaded"
628
+
629
+ #@ wp-table-reloaded
630
+ #: controllers/controller-admin.php:1264
631
+ #, php-format
632
+ msgid "Edit Table &quot;%s&quot; (ID %s)"
633
+ msgstr "Edycja tabeli &quot;%s&quot; (ID %s)"
634
+
635
+ #@ wp-table-reloaded
636
+ #: controllers/controller-admin.php:1265
637
+ #, php-format
638
+ msgid "Preview of Table &quot;%s&quot; (ID %s)"
639
+ msgstr "Podgląd tabeli &quot;%s&quot; (ID %s)"
640
+
641
+ #@ wp-table-reloaded
642
+ #: controllers/controller-admin.php:1287
643
+ msgid "List Tables"
644
+ msgstr "Pokaż tabele"
645
+
646
+ #@ wp-table-reloaded
647
+ #: controllers/controller-admin.php:1297
648
+ msgid "About the plugin"
649
+ msgstr "O wtyczce"
650
+
651
+ #@ wp-table-reloaded
652
+ #: controllers/controller-admin.php:1652
653
+ msgid "WP-Table Reloaded Plugin Page"
654
+ msgstr "Strona wtyczki WP-Table Reloaded"
655
+
656
+ #@ wp-table-reloaded
657
+ #: controllers/controller-admin.php:1652
658
+ msgid "Plugin Page"
659
+ msgstr "Strona wtyczki"
660
+
661
+ #@ wp-table-reloaded
662
+ #: controllers/controller-admin.php:1653
663
+ msgid "Frequently Asked Questions"
664
+ msgstr "Najczęściej zadawane pytania (FAQ)"
665
+
666
+ #@ wp-table-reloaded
667
+ #: controllers/controller-admin.php:1653
668
+ msgid "FAQ"
669
+ msgstr "FAQ"
670
+
671
+ #@ wp-table-reloaded
672
+ #: controllers/controller-admin.php:1654
673
+ msgid "Support"
674
+ msgstr "Wsparcie"
675
+
676
+ #@ wp-table-reloaded
677
+ #: controllers/controller-admin.php:1655
678
+ msgid "Plugin Documentation"
679
+ msgstr "Dokumentacja dotycząca wtyczki"
680
+
681
+ #@ wp-table-reloaded
682
+ #: controllers/controller-admin.php:1655
683
+ msgid "Documentation"
684
+ msgstr "Dokumentacja"
685
+
686
+ #@ wp-table-reloaded
687
+ #: controllers/controller-admin.php:1656
688
+ msgid "Support WP-Table Reloaded with your donation!"
689
+ msgstr "Wesprzyj WP-Table Reloaded swoją darowizną!"
690
+
691
+ #@ wp-table-reloaded
692
+ #: controllers/controller-admin.php:1695
693
+ msgid "Do you really want to activate this? You should only do that right before uninstallation!"
694
+ msgstr "Na pewno chcesz to aktywować? Powinieneś zrobić to tylko przez odinstalowaniem!"
695
+
696
+ #@ wp-table-reloaded
697
+ #: controllers/controller-admin.php:1696
698
+ msgid "URL of link to insert"
699
+ msgstr "URL linku"
700
+
701
+ #@ wp-table-reloaded
702
+ #: controllers/controller-admin.php:1697
703
+ msgid "Text of link"
704
+ msgstr "Tekst linku"
705
+
706
+ #@ wp-table-reloaded
707
+ #: controllers/controller-admin.php:1698
708
+ msgid "To insert the following HTML code for a link into a cell, just click the cell after closing this dialog."
709
+ msgstr "Aby wstawić link HTML do komórki, kliknij komórkę po zamknięciu tego okna dialogowego."
710
+
711
+ #@ wp-table-reloaded
712
+ #: controllers/controller-admin.php:1699
713
+ msgid "To insert an image, click &quot;OK&quot; and then click into the cell into which you want to insert the image."
714
+ msgstr "Aby wstawić obraz, naciśnij &quot;OK&quot; a następnie kliknij w komórce, do której chcesz wstawić obraz."
715
+
716
+ #@ wp-table-reloaded
717
+ #: controllers/controller-admin.php:1699
718
+ msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
719
+ msgstr "Otworzona zostanie biblioteka mediów, z której będziesz mógł wybrać właściwy obraz lub wstawić URL do obrazu."
720
+
721
+ #@ wp-table-reloaded
722
+ #: controllers/controller-admin.php:1699
723
+ #, php-format
724
+ msgid "Click the &quot;%s&quot; button to insert the image."
725
+ msgstr "Naciśnij &quot;%s&quot; przycisk aby wstawić obraz."
726
+
727
+ #: controllers/controller-admin.php:1699
728
+ msgid "Insert into Post"
729
+ msgstr "Wstaw do wpisu"
730
+
731
+ #@ wp-table-reloaded
732
+ #: controllers/controller-admin.php:1700
733
+ msgid "To combine cells within a row, click into the cell to the right of the cell that has the content the combined cells shall have."
734
+ msgstr "Aby połączyć komórki w wierszu i zachować zawartość komórki kliknij w komórce po prawej stronie komórki z zawartością."
735
+
736
+ #@ wp-table-reloaded
737
+ #: controllers/controller-admin.php:1701
738
+ msgid "To combine cells within a column, click into the cell below the cell that has the content the combined cells shall have."
739
+ msgstr "Aby połączyć komórki w kolumnie i zachować zawartość komórki kliknij w komórce poniżej komórki z zawartością."
740
+
741
+ #@ wp-table-reloaded
742
+ #: controllers/controller-admin.php:1702
743
+ msgid "Do you want to copy the selected tables?"
744
+ msgstr "Chcesz skopiować wybrane tabele?"
745
+
746
+ #@ wp-table-reloaded
747
+ #: controllers/controller-admin.php:1703
748
+ msgid "The selected tables and all content will be erased. Do you really want to delete them?"
749
+ msgstr "Wybrane tabele i cała zawartość zostanie usunięta. Na pewno chcesz je usunąć?"
750
+
751
+ #@ wp-table-reloaded
752
+ #: controllers/controller-admin.php:1704
753
+ msgid "Do you really want to import the selected tables from the wp-Table plugin?"
754
+ msgstr "Na pewno chcesz zaimportować zaznaczone tabele z wtyczki wp-Table?"
755
+
756
+ #@ wp-table-reloaded
757
+ #: controllers/controller-admin.php:1705
758
+ msgid "Do you want to copy this table?"
759
+ msgstr "Chcesz skopiować tę tabelę?"
760
+
761
+ #@ wp-table-reloaded
762
+ #: controllers/controller-admin.php:1706
763
+ msgid "The complete table and all content will be erased. Do you really want to delete it?"
764
+ msgstr "Cała tabela i jej zawartość zostaną skasowane. Na pewno chcesz ją usunąć?"
765
+
766
+ #@ wp-table-reloaded
767
+ #: controllers/controller-admin.php:1707
768
+ msgid "Do you really want to delete the selected rows?"
769
+ msgstr "Na pewno chcesz usunąć zaznaczone wiersze?"
770
+
771
+ #@ wp-table-reloaded
772
+ #: controllers/controller-admin.php:1708
773
+ msgid "Do you really want to delete the selected columns?"
774
+ msgstr "Na pewno chcesz usunąć zaznaczone kolumny?"
775
+
776
+ #@ wp-table-reloaded
777
+ #: controllers/controller-admin.php:1709
778
+ #: controllers/controller-admin.php:1713
779
+ #: controllers/controller-admin.php:1715
780
+ msgid "You have not selected any rows."
781
+ msgstr "Nie zaznaczono żadnych wierszy."
782
+
783
+ #@ wp-table-reloaded
784
+ #: controllers/controller-admin.php:1710
785
+ #: controllers/controller-admin.php:1714
786
+ #: controllers/controller-admin.php:1716
787
+ msgid "You have not selected any columns."
788
+ msgstr "Nie zaznaczono żadnych kolumn."
789
+
790
+ #@ wp-table-reloaded
791
+ #: controllers/controller-admin.php:1711
792
+ msgid "You can not delete all rows of the table at once!"
793
+ msgstr "Nie można od razu usunąć wszystkich wierszy w tabeli."
794
+
795
+ #@ wp-table-reloaded
796
+ #: controllers/controller-admin.php:1712
797
+ msgid "You can not delete all columns of the table at once!"
798
+ msgstr "Nie można od razu usunąć wszystkich kolumn w tabeli."
799
+
800
+ #@ wp-table-reloaded
801
+ #: controllers/controller-admin.php:1717
802
+ msgid "Do you really want to import this table from the wp-Table plugin?"
803
+ msgstr "Na pewno chcesz zaimportować tę tabelę z wtyczki wp-Table?"
804
+
805
+ #@ wp-table-reloaded
806
+ #: controllers/controller-admin.php:1718
807
+ msgid "Do you really want to uninstall the plugin and delete ALL data?"
808
+ msgstr "Na pewno chcesz odinstalować wtyczkę i skasować WSZYSTKIE dane?"
809
+
810
+ #@ wp-table-reloaded
811
+ #: controllers/controller-admin.php:1719
812
+ msgid "Are you really sure?"
813
+ msgstr "Jesteś pewien?"
814
+
815
+ #@ wp-table-reloaded
816
+ #: controllers/controller-admin.php:1720
817
+ msgid "Do you really want to change the ID of the table?"
818
+ msgstr "Na pewno chcesz zmienić numer ID tej tablicy?"
819
+
820
+ #@ wp-table-reloaded
821
+ #: controllers/controller-admin.php:1721
822
+ msgid "To show this Custom Data Field, use this shortcode:"
823
+ msgstr "Aby wstawić Własne Pole Danych użyj następującego kodu:"
824
+
825
+ #@ wp-table-reloaded
826
+ #: controllers/controller-admin.php:1722
827
+ msgid "To show this table, use this shortcode:"
828
+ msgstr "Aby wstawić tabelę użyj następującego kodu:"
829
+
830
+ #@ wp-table-reloaded
831
+ #: controllers/controller-admin.php:1723
832
+ msgid "Warning: You will lose all current Tables and Settings! You should create a backup first. Be warned!"
833
+ msgstr "Uwaga: Stracisz wszystki tabele i ustawienia! Powinieneś najpierw utworzyć kopię bezpieczeństwa!"
834
+
835
+ #@ wp-table-reloaded
836
+ #: controllers/controller-admin.php:1724
837
+ msgid "You have made changes to the content of this table and not yet saved them."
838
+ msgstr "Zostały wprowadzone zmiany w zawartości tabeli, które nie zostały jeszcze zapisane."
839
+
840
+ #@ wp-table-reloaded
841
+ #: controllers/controller-admin.php:1724
842
+ #, php-format
843
+ msgid "You should first click &quot;%s&quot; or they will be lost if you navigate away from this page."
844
+ msgstr "Powinieneś najpierw kliknąć &quot;%s&quot; w przeciwnym przypadku dane zostaną utracone po wyjściu strony."
845
+
846
+ #@ wp-table-reloaded
847
+ #: controllers/controller-admin.php:1724
848
+ #: views/view-edit.php:41
849
+ #: views/view-edit.php:253
850
+ #: views/view-edit.php:405
851
+ #: views/view-edit.php:456
852
+ msgid "Update Changes"
853
+ msgstr "Zachowaj zmiany"
854
+
855
+ #@ wp-table-reloaded
856
+ #: controllers/controller-admin.php:1768
857
+ msgid "Insert a Table"
858
+ msgstr "Wstaw tabelę"
859
+
860
+ #@ wp-table-reloaded
861
+ #: controllers/controller-admin.php:1829
862
+ msgid "Please wait..."
863
+ msgstr "Proszę czekać..."
864
+
865
+ #@ wp-table-reloaded
866
+ #: controllers/controller-admin.php:1830
867
+ msgid "Show _MENU_ Tables"
868
+ msgstr "Pokaż _MENU_ Tabel"
869
+
870
+ #@ wp-table-reloaded
871
+ #: controllers/controller-admin.php:1831
872
+ #: views/view-ajax_list.php:53
873
+ #: views/view-export.php:71
874
+ #: views/view-list.php:88
875
+ msgid "No tables were found."
876
+ msgstr "Nie znaleziono żadnych tabel."
877
+
878
+ #@ wp-table-reloaded
879
+ #: controllers/controller-admin.php:1832
880
+ msgid "_START_ to _END_ of _TOTAL_ Tables"
881
+ msgstr "_START_ do _END_ z _TOTAL_ Tabel"
882
+
883
+ #@ wp-table-reloaded
884
+ #: controllers/controller-admin.php:1833
885
+ msgid "(filtered from _MAX_ Tables)"
886
+ msgstr "(filtr dla _MAX_ Tabel)"
887
+
888
+ #@ wp-table-reloaded
889
+ #: controllers/controller-admin.php:1834
890
+ msgid "Filter:"
891
+ msgstr "Filtr:"
892
+
893
+ #@ wp-table-reloaded
894
+ #: controllers/controller-admin.php:1835
895
+ msgid "First"
896
+ msgstr "Pierwsza"
897
+
898
+ #@ wp-table-reloaded
899
+ #: controllers/controller-admin.php:1836
900
+ msgid "Back"
901
+ msgstr "Poprzednia"
902
+
903
+ #@ wp-table-reloaded
904
+ #: controllers/controller-admin.php:1837
905
+ msgid "Next"
906
+ msgstr "Następna"
907
+
908
+ #@ wp-table-reloaded
909
+ #: controllers/controller-admin.php:1838
910
+ msgid "Last"
911
+ msgstr "Ostatnia"
912
+
913
+ #@ wp-table-reloaded
914
+ #: views/view-about.php:5
915
+ msgid "Plugin Purpose"
916
+ msgstr "Cel wtyczki"
917
+
918
+ #@ wp-table-reloaded
919
+ #: views/view-about.php:7
920
+ msgid "WP-Table Reloaded allows you to create and manage tables in the admin-area of WordPress."
921
+ msgstr "WP-Table Reloaded pozwala na tworzenie i zarządzanie tabelami w panelu administracyjnym WordPress."
922
+
923
+ #@ wp-table-reloaded
924
+ #: views/view-about.php:7
925
+ msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
926
+ msgstr "Te tabele mogą zawierać teksty, wartości i kod HTML (np. w celu wstawienia obrazów lub linków)."
927
+
928
+ #@ wp-table-reloaded
929
+ #: views/view-about.php:7
930
+ msgid "You can then show the tables in your posts, on your pages or in text-widgets by using a shortcode."
931
+ msgstr "Można wstawiać tabele do wpisów, stron lub w obszarze widget przy użyciu kodu."
932
+
933
+ #@ wp-table-reloaded
934
+ #: views/view-about.php:7
935
+ msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
936
+ msgstr "Jeżeli chcesz wstawić swoje tabele gdziekolwiek w swoim temacie, możesz użyć funkcji template tag."
937
+
938
+ #@ wp-table-reloaded
939
+ #: views/view-about.php:12
940
+ msgid "Usage"
941
+ msgstr "Użycie wtyczki"
942
+
943
+ #@ wp-table-reloaded
944
+ #: views/view-about.php:14
945
+ msgid "At first you should add or import a table."
946
+ msgstr "Najpierw dodaj lub zaimportuj tabelę."
947
+
948
+ #@ wp-table-reloaded
949
+ #: views/view-about.php:14
950
+ msgid "This means that you either let the plugin create an empty table for you or that you load an existing table from either a CSV, XML or HTML file."
951
+ msgstr "Oznacza to, że utworzyłeś pustą tabelę lub załadowałeś pustą tabelę z plików CSV, XML lub HTML."
952
+
953
+ #@ wp-table-reloaded
954
+ #: views/view-about.php:14
955
+ msgid "Then you can edit your data or change the structure of your table (e.g. by inserting or deleting rows or columns, swaping rows or columns or sorting them) and select specific table options like alternating row colors or whether to print the name or description, if you want."
956
+ msgstr "Możesz edytować dane lub zmienić strukturę tabeli (np. wstawiając lub usuwając wiersze lub kolumny, zamieniając wiersze lub kolumny lub sortując je) i zastosować różnego rodzaju opcje jak kolory tła czy opcje drukowania."
957
+
958
+ #@ wp-table-reloaded
959
+ #: views/view-about.php:14
960
+ msgid "To easily add a link or an image to a cell, use the provided buttons. Those will ask you for the URL and a title. Then you can click into a cell and the corresponding HTML will be added to it for you."
961
+ msgstr "Aby łatwo dodać link lub zdjęcie do komórki użyj przedstawionego przycisku. Zostaniesz zapytany o URL i tytuł. Wtedy możesz kliknąć w komórce i właściwy kod HTML zostanie dodany."
962
+
963
+ #@ wp-table-reloaded
964
+ #: views/view-about.php:14
965
+ #: views/view-ajax_preview.php:5
966
+ #: views/view-edit.php:9
967
+ #: views/view-list.php:2
968
+ #, php-format
969
+ msgid "To insert the table into a page, post or text-widget, copy the shortcode <strong>[table id=%s /]</strong> and paste it into the corresponding place in the editor."
970
+ msgstr "Aby wstawić tabelę na stronie, we wpisie lub w tekstowym obszarze widget, skopiuj kod <strong>[table id=%s /]</strong> i wklej we właściwe miejsce w edytorze."
971
+
972
+ #@ wp-table-reloaded
973
+ #: views/view-about.php:14
974
+ #, php-format
975
+ msgid "You can also select the desired table from a list (after clicking the button &quot;%s&quot; in the editor toolbar) and the corresponding shortcode will be added for you."
976
+ msgstr "Możesz wybrać tabelę z listy (po kliknięciu &quot;%s&quot; w edytorze) a właściwy kod zostanie wstawiony."
977
+
978
+ #@ wp-table-reloaded
979
+ #: views/view-about.php:14
980
+ #: views/view-list.php:2
981
+ msgid "Table"
982
+ msgstr "Tabela"
983
+
984
+ #@ wp-table-reloaded
985
+ #: views/view-about.php:14
986
+ msgid "Tables can be styled by changing and adding CSS commands."
987
+ msgstr "Można zmienić styl tabeli poprzez zmiany w pliku CSS."
988
+
989
+ #@ wp-table-reloaded
990
+ #: views/view-about.php:14
991
+ msgid "The plugin ships with default CSS Stylesheets, which can be customized with own code or replaced with other Stylesheets."
992
+ msgstr "Wtyczka zawiera domyślny plik CSS, który może być edytowany lub zastąpiony własnym."
993
+
994
+ #@ wp-table-reloaded
995
+ #: views/view-about.php:14
996
+ msgid "For this, each table is given certain CSS classes that can be used as CSS selectors."
997
+ msgstr "Każdej tabeli przypisywany jest właściwy styl CSS."
998
+
999
+ #@ wp-table-reloaded
1000
+ #: views/view-about.php:14
1001
+ #, php-format
1002
+ msgid "Please see the <a href=\"%s\">documentation</a> for a list of these selectors and for styling examples."
1003
+ msgstr "Zobacz <a href=\"%s\">dokumentację</a> gdzie zamieszczono przykładowe rozwiązania styli CSS."
1004
+
1005
+ #@ wp-table-reloaded
1006
+ #: views/view-about.php:19
1007
+ msgid "More Information and Documentation"
1008
+ msgstr "Więcej informacji i dokumentacja"
1009
+
1010
+ #@ wp-table-reloaded
1011
+ #: views/view-about.php:26
1012
+ msgid "Help and Support"
1013
+ msgstr "Pomoc i wsparcie"
1014
+
1015
+ #@ wp-table-reloaded
1016
+ #: views/view-about.php:28
1017
+ #, php-format
1018
+ msgid "If you do not find an answer there, please <a href=\"%s\">open a new thread</a> in the WordPress Support Forums with the tag &quot;wp-table-reloaded&quot;."
1019
+ msgstr "Jeżeli nie znajdziesz tam odpowiedzi na swoje pytanie, proszę <a href=\"%s\">utworzyć nowy wątek</a> na forum WordPress Support umieszczając tag &quot;wp-table-reloaded&quot;."
1020
+
1021
+ #@ wp-table-reloaded
1022
+ #: views/view-about.php:33
1023
+ msgid "Author and License"
1024
+ msgstr "Autor i licencja"
1025
+
1026
+ #@ wp-table-reloaded
1027
+ #: views/view-about.php:35
1028
+ #, php-format
1029
+ msgid "This plugin was written by <a href=\"%s\">Tobias B&auml;thge</a>."
1030
+ msgstr "Ta wtyczka została stworzona przez <a href=\"%s\">Tobias B&auml;thge</a>."
1031
+
1032
+ #@ wp-table-reloaded
1033
+ #: views/view-about.php:35
1034
+ msgid "It is licensed as Free Software under GPL 2."
1035
+ msgstr "Jest to darmowe oprogramowanie na licencji GPL 2."
1036
+
1037
+ #@ wp-table-reloaded
1038
+ #: views/view-about.php:35
1039
+ #, php-format
1040
+ msgid "Please rate the plugin in the <a href=\"%s\">WordPress Plugin Directory</a>."
1041
+ msgstr "Oceń działanie wtyczki w katalogu wtyczek <a href=\"%s\">WordPress</a>."
1042
+
1043
+ #@ wp-table-reloaded
1044
+ #: views/view-about.php:35
1045
+ msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
1046
+ msgstr "Darowizny oraz dobre oceny zachęcają do dalszych prac nad rozwojem wtyczki. Każda wartość darowizny jest mile widziana! Dziękuję!"
1047
+
1048
+ #@ wp-table-reloaded
1049
+ #: views/view-about.php:40
1050
+ msgid "Credits and Thanks"
1051
+ msgstr "Podziękowania dla"
1052
+
1053
+ #@ wp-table-reloaded
1054
+ #: views/view-about.php:43
1055
+ msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
1056
+ msgstr "Podziękowania dla <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> za wtyczkę wp-Table,"
1057
+
1058
+ #@ wp-table-reloaded
1059
+ #: views/view-about.php:44
1060
+ msgid "Allan Jardine for the <a href=\"http://www.datatables.net/\">DataTables jQuery plugin</a>,"
1061
+ msgstr "Allan Jardine za <a href=\"http://www.datatables.net/\">wtyczkę DataTables jQuery</a>,"
1062
+
1063
+ #@ wp-table-reloaded
1064
+ #: views/view-about.php:45
1065
+ msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
1066
+ msgstr "Christian Bach za <a href=\"http://www.tablesorter.com/\">wtyczkę Tablesorter jQuery</a>,"
1067
+
1068
+ #@ wp-table-reloaded
1069
+ #: views/view-about.php:46
1070
+ msgid "Soeren Krings for its extension <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
1071
+ msgstr "Soeren Krings za jego <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
1072
+
1073
+ #@ wp-table-reloaded
1074
+ #: views/view-about.php:47
1075
+ msgid "the submitters of translations:"
1076
+ msgstr "tłumaczom:"
1077
+
1078
+ #@ wp-table-reloaded
1079
+ #: views/view-about.php:76
1080
+ #, php-format
1081
+ msgid "%s (thanks to %s)"
1082
+ msgstr "%s (dzięki %s)"
1083
+
1084
+ #@ wp-table-reloaded
1085
+ #: views/view-about.php:79
1086
+ msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
1087
+ msgstr "oraz wszystkim wspierającym, darczyńcom, oceniającym i użytkownikom wtyczki!"
1088
+
1089
+ #@ wp-table-reloaded
1090
+ #: views/view-about.php:85
1091
+ msgid "Debug and Version Information"
1092
+ msgstr "Informacje o wersji"
1093
+
1094
+ #@ wp-table-reloaded
1095
+ #: views/view-about.php:85
1096
+ #: views/view-edit.php:15
1097
+ #: views/view-edit.php:51
1098
+ #: views/view-edit.php:104
1099
+ #: views/view-edit.php:262
1100
+ #: views/view-edit.php:353
1101
+ #: views/view-edit.php:414
1102
+ #: views/view-options.php:19
1103
+ #: views/view-options.php:70
1104
+ #: views/view-options.php:87
1105
+ #: views/view-options.php:184
1106
+ #: views/view-options.php:195
1107
+ msgctxt "expand"
1108
+ msgid "Hide"
1109
+ msgstr "Ukryj"
1110
+
1111
+ #@ wp-table-reloaded
1112
+ #: views/view-about.php:85
1113
+ #: views/view-edit.php:15
1114
+ #: views/view-edit.php:51
1115
+ #: views/view-edit.php:104
1116
+ #: views/view-edit.php:262
1117
+ #: views/view-edit.php:353
1118
+ #: views/view-edit.php:414
1119
+ #: views/view-options.php:19
1120
+ #: views/view-options.php:70
1121
+ #: views/view-options.php:87
1122
+ #: views/view-options.php:184
1123
+ #: views/view-options.php:195
1124
+ msgid "Expand"
1125
+ msgstr "Rozwiń"
1126
+
1127
+ #@ wp-table-reloaded
1128
+ #: views/view-about.php:88
1129
+ msgid "You are using the following versions of the software."
1130
+ msgstr "Używasz następującej wersji oprogramowania."
1131
+
1132
+ #@ wp-table-reloaded
1133
+ #: views/view-about.php:88
1134
+ msgid "Please provide this information in bug reports."
1135
+ msgstr "Uwzględnij tę informację w raporcie o błędach."
1136
+
1137
+ #@ wp-table-reloaded
1138
+ #: views/view-about.php:91
1139
+ msgid "Plugin installed"
1140
+ msgstr "Wtyczka zainstalowana"
1141
+
1142
+ #@ wp-table-reloaded
1143
+ #: views/view-add.php:4
1144
+ msgid "To add a new table, enter its name, a description (optional) and the number of rows and columns."
1145
+ msgstr "Aby wstawić nową tabelę, wstaw jej nazwę, opis (opcjonalnie) oraz liczbę wierszy i kolumn."
1146
+
1147
+ #@ wp-table-reloaded
1148
+ #: views/view-add.php:4
1149
+ msgid "You may also add, insert or delete rows and columns later."
1150
+ msgstr "Później możesz również dodać, wstawić lub usunąć wiersze lub kolumny."
1151
+
1152
+ #@ wp-table-reloaded
1153
+ #: views/view-add.php:13
1154
+ #: views/view-ajax_list.php:14
1155
+ #: views/view-ajax_list.php:22
1156
+ #: views/view-edit.php:23
1157
+ #: views/view-edit.php:283
1158
+ #: views/view-import.php:99
1159
+ #: views/view-import.php:108
1160
+ #: views/view-list.php:15
1161
+ #: views/view-list.php:25
1162
+ msgid "Table Name"
1163
+ msgstr "Nazwa tabeli"
1164
+
1165
+ #@ wp-table-reloaded
1166
+ #: views/view-add.php:14
1167
+ msgid "Enter Table Name"
1168
+ msgstr "Wprowadź nazwę tabeli"
1169
+
1170
+ #@ wp-table-reloaded
1171
+ #: views/view-add.php:17
1172
+ #: views/view-ajax_list.php:15
1173
+ #: views/view-ajax_list.php:23
1174
+ #: views/view-edit.php:27
1175
+ #: views/view-import.php:100
1176
+ #: views/view-import.php:109
1177
+ #: views/view-list.php:16
1178
+ #: views/view-list.php:26
1179
+ msgid "Description"
1180
+ msgstr "Opis"
1181
+
1182
+ #@ wp-table-reloaded
1183
+ #: views/view-add.php:18
1184
+ msgid "Enter Description"
1185
+ msgstr "Wstaw opis"
1186
+
1187
+ #@ wp-table-reloaded
1188
+ #: views/view-add.php:21
1189
+ msgid "Number of Rows"
1190
+ msgstr "Liczba wierszy"
1191
+
1192
+ #@ wp-table-reloaded
1193
+ #: views/view-add.php:25
1194
+ msgid "Number of Columns"
1195
+ msgstr "Liczba kolumn"
1196
+
1197
+ #@ wp-table-reloaded
1198
+ #: views/view-add.php:32
1199
+ msgid "Add Table"
1200
+ msgstr "Dodaj tabelę"
1201
+
1202
+ #@ wp-table-reloaded
1203
+ #: views/view-ajax_list.php:3
1204
+ #: views/view-list.php:2
1205
+ msgid "This is a list of all available tables."
1206
+ msgstr "To wykaz dostępnych tabel."
1207
+
1208
+ #@ wp-table-reloaded
1209
+ #: views/view-ajax_list.php:3
1210
+ msgid "You may insert a table into a post or page here."
1211
+ msgstr "Tu można wstawić tabelę do wpisu lub na stronę."
1212
+
1213
+ #@ wp-table-reloaded
1214
+ #: views/view-ajax_list.php:4
1215
+ #, php-format
1216
+ msgid "Click the &quot;%s&quot; link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=&lt;ID&gt; /]</strong>)."
1217
+ msgstr "Kliknij link &quot;%s&quot; pod wybraną tabelą aby wstawić właściwy kod do edytora (<strong>[table id=&lt;ID&gt; /]</strong>)."
1218
+
1219
+ #@ wp-table-reloaded
1220
+ #: views/view-ajax_list.php:4
1221
+ #: views/view-ajax_list.php:44
1222
+ msgid "Insert"
1223
+ msgstr "Wstaw"
1224
+
1225
+ #@ wp-table-reloaded
1226
+ #: views/view-ajax_list.php:13
1227
+ #: views/view-ajax_list.php:21
1228
+ #: views/view-import.php:98
1229
+ #: views/view-import.php:107
1230
+ #: views/view-list.php:13
1231
+ #: views/view-list.php:23
1232
+ msgid "ID"
1233
+ msgstr "ID"
1234
+
1235
+ #@ wp-table-reloaded
1236
+ #: views/view-ajax_list.php:16
1237
+ #: views/view-ajax_list.php:24
1238
+ #: views/view-edit.php:426
1239
+ #: views/view-import.php:101
1240
+ #: views/view-import.php:110
1241
+ msgid "Action"
1242
+ msgstr "Działanie"
1243
+
1244
+ #@ wp-table-reloaded
1245
+ #: views/view-ajax_preview.php:3
1246
+ msgid "This is a preview of your table."
1247
+ msgstr "To jest podgląd Twojej tabeli."
1248
+
1249
+ #@ wp-table-reloaded
1250
+ #: views/view-ajax_preview.php:4
1251
+ msgid "Because of CSS styling, the table might look different on your page!"
1252
+ msgstr "Ze względu na style CSS, tabela na Twojej stronie może wyglądać inaczej!"
1253
+
1254
+ #@ wp-table-reloaded
1255
+ #: views/view-ajax_preview.php:4
1256
+ msgid "The JavaScript libraries are also not available in this preview."
1257
+ msgstr "Biblioteki JavaScript nie są dostepne w tym podglądzie."
1258
+
1259
+ #@ wp-table-reloaded
1260
+ #: views/view-edit.php:8
1261
+ msgid "On this page, you can edit the content of the table."
1262
+ msgstr "Na tej stronie można edytować zawartość tabeli."
1263
+
1264
+ #@ wp-table-reloaded
1265
+ #: views/view-edit.php:8
1266
+ msgid "It is also possible to change the table structure by inserting, deleting, moving, and swapping columns and rows."
1267
+ msgstr "Możliwa jest zmiana struktury tabeli poprzez wstawianie, usuwanie i zamianę kolumn i wierszy."
1268
+
1269
+ #@ wp-table-reloaded
1270
+ #: views/view-edit.php:15
1271
+ msgid "Table Information"
1272
+ msgstr "Informacje o tabeli"
1273
+
1274
+ #@ wp-table-reloaded
1275
+ #: views/view-edit.php:19
1276
+ msgid "Table ID"
1277
+ msgstr "ID tabeli"
1278
+
1279
+ #@ wp-table-reloaded
1280
+ #: views/view-edit.php:32
1281
+ #: views/view-list.php:17
1282
+ #: views/view-list.php:27
1283
+ msgid "Last Modified"
1284
+ msgstr "Ostatnio zmodyfikowano"
1285
+
1286
+ #@ wp-table-reloaded
1287
+ #: views/view-edit.php:33
1288
+ #: views/view-list.php:44
1289
+ msgid "by"
1290
+ msgstr "przez"
1291
+
1292
+ #@ wp-table-reloaded
1293
+ #: views/view-edit.php:42
1294
+ #: views/view-edit.php:254
1295
+ #: views/view-edit.php:406
1296
+ #: views/view-edit.php:457
1297
+ msgid "Save and go back"
1298
+ msgstr "Zapisz i powróć"
1299
+
1300
+ #@ wp-table-reloaded
1301
+ #: views/view-edit.php:45
1302
+ #: views/view-edit.php:257
1303
+ #: views/view-edit.php:409
1304
+ #: views/view-edit.php:460
1305
+ #: views/view-options.php:65
1306
+ #: views/view-options.php:171
1307
+ msgid "Cancel"
1308
+ msgstr "Zrezygnuj"
1309
+
1310
+ #@ wp-table-reloaded
1311
+ #: views/view-edit.php:51
1312
+ msgid "Table Contents"
1313
+ msgstr "Zawartość tabeli"
1314
+
1315
+ #@ wp-table-reloaded
1316
+ #: views/view-edit.php:104
1317
+ msgid "Data Manipulation"
1318
+ msgstr "Zmiana danych"
1319
+
1320
+ #@ wp-table-reloaded
1321
+ #: views/view-edit.php:114
1322
+ #: views/view-options.php:55
1323
+ msgid "Insert Link"
1324
+ msgstr "Wstaw link"
1325
+
1326
+ #@ wp-table-reloaded
1327
+ #: views/view-edit.php:115
1328
+ msgid "Insert Image"
1329
+ msgstr "Wstaw obraz"
1330
+
1331
+ #@ wp-table-reloaded
1332
+ #: views/view-edit.php:124
1333
+ msgid "ascending"
1334
+ msgstr "rosnąco"
1335
+
1336
+ #@ wp-table-reloaded
1337
+ #: views/view-edit.php:125
1338
+ msgid "descending"
1339
+ msgstr "malejąco"
1340
+
1341
+ #@ wp-table-reloaded
1342
+ #: views/view-edit.php:128
1343
+ #, php-format
1344
+ msgid "Sort table by column %s in %s order"
1345
+ msgstr "Sortowanie tabeli na podstawie kolumny %s %s"
1346
+
1347
+ #@ wp-table-reloaded
1348
+ #: views/view-edit.php:130
1349
+ msgid "Sort"
1350
+ msgstr "Sortuj"
1351
+
1352
+ #@ wp-table-reloaded
1353
+ #: views/view-edit.php:135
1354
+ #: views/view-edit.php:139
1355
+ msgctxt "item"
1356
+ msgid "Hide"
1357
+ msgstr "Ukryj"
1358
+
1359
+ #@ wp-table-reloaded
1360
+ #: views/view-edit.php:136
1361
+ #: views/view-edit.php:140
1362
+ msgctxt "item"
1363
+ msgid "Unhide"
1364
+ msgstr "Odkryj"
1365
+
1366
+ #@ wp-table-reloaded
1367
+ #: views/view-edit.php:137
1368
+ #, php-format
1369
+ msgctxt "hide_unhide"
1370
+ msgid "Selected rows: %s %s"
1371
+ msgstr "Wybrane wiersze: %s %s"
1372
+
1373
+ #@ wp-table-reloaded
1374
+ #: views/view-edit.php:141
1375
+ #, php-format
1376
+ msgctxt "hide_unhide"
1377
+ msgid "Selected columns: %s %s"
1378
+ msgstr "Wybrane kolumny: %s %s"
1379
+
1380
+ #@ wp-table-reloaded
1381
+ #: views/view-edit.php:144
1382
+ msgid "Combine cells in a row:"
1383
+ msgstr "Połącz komórki w wierszu:"
1384
+
1385
+ #@ wp-table-reloaded
1386
+ #: views/view-edit.php:145
1387
+ msgid "Add colspan"
1388
+ msgstr "Dodaj colspan (scalanie)"
1389
+
1390
+ #@ wp-table-reloaded
1391
+ #: views/view-edit.php:148
1392
+ msgid "Combine cells in a column:"
1393
+ msgstr "Połącz komórki w kolumnie:"
1394
+
1395
+ #@ wp-table-reloaded
1396
+ #: views/view-edit.php:149
1397
+ msgid "Add rowspan"
1398
+ msgstr "Dodaj rowspan (scalony wiersz)"
1399
+
1400
+ #@ wp-table-reloaded
1401
+ #: views/view-edit.php:155
1402
+ msgid "Insert row"
1403
+ msgstr "Wstaw wiersz"
1404
+
1405
+ #@ wp-table-reloaded
1406
+ #: views/view-edit.php:156
1407
+ #: views/view-edit.php:160
1408
+ #: views/view-list.php:65
1409
+ msgid "Delete"
1410
+ msgstr "Usuń"
1411
+
1412
+ #@ wp-table-reloaded
1413
+ #: views/view-edit.php:157
1414
+ #, php-format
1415
+ msgctxt "insert_delete"
1416
+ msgid "Selected rows: %s %s"
1417
+ msgstr "Wybrane wiersze: %s %s"
1418
+
1419
+ #@ wp-table-reloaded
1420
+ #: views/view-edit.php:159
1421
+ msgid "Insert column"
1422
+ msgstr "Wstaw kolumnę"
1423
+
1424
+ #@ wp-table-reloaded
1425
+ #: views/view-edit.php:161
1426
+ #, php-format
1427
+ msgctxt "insert_delete"
1428
+ msgid "Selected columns: %s %s"
1429
+ msgstr "Wybrane kolumny: %s %s"
1430
+
1431
+ #@ wp-table-reloaded
1432
+ #: views/view-edit.php:171
1433
+ #, php-format
1434
+ msgid "Add %s row(s)"
1435
+ msgstr "Dodanie %s wiersza(wierszy)"
1436
+
1437
+ #@ wp-table-reloaded
1438
+ #: views/view-edit.php:172
1439
+ #: views/view-edit.php:175
1440
+ #: views/view-edit.php:451
1441
+ msgid "Add"
1442
+ msgstr "Dodanie"
1443
+
1444
+ #@ wp-table-reloaded
1445
+ #: views/view-edit.php:174
1446
+ #, php-format
1447
+ msgid "Add %s column(s)"
1448
+ msgstr "Dodanie %s kolumny (kolumn)"
1449
+
1450
+ #@ wp-table-reloaded
1451
+ #: views/view-edit.php:189
1452
+ #, php-format
1453
+ msgid "Swap rows %s and %s"
1454
+ msgstr "Zamień wiersze %s i %s"
1455
+
1456
+ #@ wp-table-reloaded
1457
+ #: views/view-edit.php:191
1458
+ #: views/view-edit.php:206
1459
+ msgid "Swap"
1460
+ msgstr "Zamień"
1461
+
1462
+ #@ wp-table-reloaded
1463
+ #: views/view-edit.php:204
1464
+ #, php-format
1465
+ msgid "Swap columns %s and %s"
1466
+ msgstr "Zamiana kolumny %s i %s"
1467
+
1468
+ #@ wp-table-reloaded
1469
+ #: views/view-edit.php:219
1470
+ #: views/view-edit.php:239
1471
+ msgid "before"
1472
+ msgstr "przed"
1473
+
1474
+ #@ wp-table-reloaded
1475
+ #: views/view-edit.php:220
1476
+ #: views/view-edit.php:240
1477
+ msgid "after"
1478
+ msgstr "po"
1479
+
1480
+ #@ wp-table-reloaded
1481
+ #: views/view-edit.php:223
1482
+ #, php-format
1483
+ msgid "Move row %s %s row %s"
1484
+ msgstr "Przesunięcie wiersza %s %s wiersz %s"
1485
+
1486
+ #@ wp-table-reloaded
1487
+ #: views/view-edit.php:225
1488
+ #: views/view-edit.php:245
1489
+ msgid "Move"
1490
+ msgstr "Przesuń"
1491
+
1492
+ #@ wp-table-reloaded
1493
+ #: views/view-edit.php:243
1494
+ #, php-format
1495
+ msgid "Move column %s %s column %s"
1496
+ msgstr "Przesunięcie kolumny %s %s kolumnę %s"
1497
+
1498
+ #@ wp-table-reloaded
1499
+ #: views/view-edit.php:262
1500
+ msgid "Table Styling Options"
1501
+ msgstr "Opcje stylu tabeli"
1502
+
1503
+ #@ wp-table-reloaded
1504
+ #: views/view-edit.php:264
1505
+ msgid "These settings will only be used for this table."
1506
+ msgstr "Te ustawienia są dostępne tylko dla tej tabeli."
1507
+
1508
+ #@ wp-table-reloaded
1509
+ #: views/view-edit.php:267
1510
+ msgid "Alternating row colors"
1511
+ msgstr "Inne kolory wierszy"
1512
+
1513
+ #@ wp-table-reloaded
1514
+ #: views/view-edit.php:268
1515
+ msgid "Every second row has an alternating background color."
1516
+ msgstr "Przeciwny kolor tła dla co drugiego wiersza."
1517
+
1518
+ #@ wp-table-reloaded
1519
+ #: views/view-edit.php:271
1520
+ msgid "Row Highlighting"
1521
+ msgstr "Podświetlenie wiersza"
1522
+
1523
+ #@ wp-table-reloaded
1524
+ #: views/view-edit.php:272
1525
+ msgid "Highlight a row by changing its background color while the mouse cursor hovers above it."
1526
+ msgstr "Podświetlenie wiersza polegające na zmianie koloru tła po najechaniu na niego myszką."
1527
+
1528
+ #@ wp-table-reloaded
1529
+ #: views/view-edit.php:275
1530
+ msgid "Table head"
1531
+ msgstr "Nagłówek tabeli"
1532
+
1533
+ #@ wp-table-reloaded
1534
+ #: views/view-edit.php:276
1535
+ msgid "The first row of your table is the table head (HTML tags &lt;thead&gt; and &lt;th&gt;)."
1536
+ msgstr "Pierwszy wiersz tabeli jest jej nagłówkiem (HTML tags &lt;thead&gt; and &lt;th&gt;)."
1537
+
1538
+ #@ wp-table-reloaded
1539
+ #: views/view-edit.php:279
1540
+ msgid "Table footer"
1541
+ msgstr "Stopka tabeli"
1542
+
1543
+ #@ wp-table-reloaded
1544
+ #: views/view-edit.php:280
1545
+ msgid "The last row of your table is the table footer (HTML tags &lt;tfoot&gt; and &lt;th&gt;)."
1546
+ msgstr "Ostatni wiersz tabeli jest jej stopką (HTML tags &lt;tfoot&gt; and &lt;th&gt;)."
1547
+
1548
+ #@ wp-table-reloaded
1549
+ #: views/view-edit.php:289
1550
+ #: views/view-edit.php:306
1551
+ msgid "above"
1552
+ msgstr "powyżej"
1553
+
1554
+ #@ wp-table-reloaded
1555
+ #: views/view-edit.php:291
1556
+ #: views/view-edit.php:308
1557
+ msgid "below"
1558
+ msgstr "poniżej"
1559
+
1560
+ #@ wp-table-reloaded
1561
+ #: views/view-edit.php:294
1562
+ #, php-format
1563
+ msgid "The Table Name shall be written %s the table (HTML tag &lt;h2&gt;)."
1564
+ msgstr "Nazwa tabeli będzie widoczna %s tabeli (HTML tag &lt;h2&gt;)."
1565
+
1566
+ #@ wp-table-reloaded
1567
+ #: views/view-edit.php:300
1568
+ msgid "Table Description"
1569
+ msgstr "Opis tabeli"
1570
+
1571
+ #@ wp-table-reloaded
1572
+ #: views/view-edit.php:311
1573
+ #, php-format
1574
+ msgid "The Table Description shall be written %s the table."
1575
+ msgstr "Opis tabeli będzie widoczny %s tabeli."
1576
+
1577
+ #@ wp-table-reloaded
1578
+ #: views/view-edit.php:317
1579
+ msgid "Use JavaScript library"
1580
+ msgstr "Użyj biblioteki JavaScript"
1581
+
1582
+ #@ wp-table-reloaded
1583
+ #: views/view-edit.php:323
1584
+ #: views/view-edit.php:327
1585
+ #: views/view-edit.php:339
1586
+ msgid "You can change further settings for this library below."
1587
+ msgstr "Poniżej możesz zmienić pozostałe ustawienia dla tej biblioteki."
1588
+
1589
+ #@ wp-table-reloaded
1590
+ #: views/view-edit.php:331
1591
+ #: views/view-edit.php:335
1592
+ msgid "The table will then be sortable by the visitor."
1593
+ msgstr "Tablica wtedy będzie mogła być sortowana przez użytkownika."
1594
+
1595
+ #@ wp-table-reloaded
1596
+ #: views/view-edit.php:342
1597
+ #, php-format
1598
+ msgid "Yes, use the &quot;%s&quot; JavaScript library with this table."
1599
+ msgstr "Tak, użyj &quot;%s&quot; bibliotekę JavaScript dla tej tabeli."
1600
+
1601
+ #@ wp-table-reloaded
1602
+ #: views/view-edit.php:342
1603
+ #, php-format
1604
+ msgid "You must enable the use of a JavaScript library on the &quot;%s&quot; screen first."
1605
+ msgstr "Najpierw należy włączyć bibliotekę JavaScript w &quot;%s&quot; "
1606
+
1607
+ #@ wp-table-reloaded
1608
+ #: views/view-edit.php:353
1609
+ msgid "DataTables JavaScript Features"
1610
+ msgstr "Funkcjonalności JavaScript dla tabel."
1611
+
1612
+ #@ wp-table-reloaded
1613
+ #: views/view-edit.php:355
1614
+ msgid "You can enable certain features for the DataTables JavaScript library here."
1615
+ msgstr "Tu można włączyć niektóre opcje biblioteki JavaScript dla tabel."
1616
+
1617
+ #@ wp-table-reloaded
1618
+ #: views/view-edit.php:355
1619
+ msgid "More information on these features can be found on the <a href=\"http://www.datatables.net/\">DataTables website</a>."
1620
+ msgstr "Więcej informacji na temat tej opcji można znaleźć na <a href=\"http://www.datatables.net/\">stronie DataTables</a>."
1621
+
1622
+ #@ wp-table-reloaded
1623
+ #: views/view-edit.php:357
1624
+ #, php-format
1625
+ msgid "You can currently not change these options, because you have not enabled the &quot;DataTables&quot; or the &quot;DataTables+TableTools&quot; JavaScript library on the &quot;%s&quot; screen."
1626
+ msgstr "Nie można obecnie zmienić tych ustawień ponieważ nie włączono &quot;DataTables&quot; lub &quot;DataTables+TableTools&quot; biblioteki JavaScript w &quot;%s&quot;"
1627
+
1628
+ #@ wp-table-reloaded
1629
+ #: views/view-edit.php:357
1630
+ msgid "It is not possible to use these features with the &quot;Tablesorter&quot; or &quot;Tablesorter Extended&quot; libraries."
1631
+ msgstr "Nie można użyć tych funkcjonalności z bibliotekami &quot;Tablesorter&quot; lub &quot;Tablesorter Extended&quot; ."
1632
+
1633
+ #@ wp-table-reloaded
1634
+ #: views/view-edit.php:361
1635
+ msgid "Sorting"
1636
+ msgstr "Sortowanie"
1637
+
1638
+ #@ wp-table-reloaded
1639
+ #: views/view-edit.php:362
1640
+ msgid "Yes, enable sorting of table data by the visitor."
1641
+ msgstr "Tak, włącz możliwość sortowania tabeli przez użytkownika."
1642
+
1643
+ #@ wp-table-reloaded
1644
+ #: views/view-edit.php:365
1645
+ msgid "Pagination"
1646
+ msgstr "Paginacja (wyświetlanie tylko określonej liczby wierszy)"
1647
+
1648
+ #@ wp-table-reloaded
1649
+ #: views/view-edit.php:370
1650
+ msgid "Yes, enable pagination (showing only a certain number of rows) of the table by the visitor."
1651
+ msgstr "Tak, włącz paginację (wyświetlanie określonej liczby wierszy) tabeli przez użytkowników."
1652
+
1653
+ #@ wp-table-reloaded
1654
+ #: views/view-edit.php:372
1655
+ #, php-format
1656
+ msgid "Show %1$s rows of the table per page."
1657
+ msgstr "Pokaż %1$s wierszy tabeli na stronie."
1658
+
1659
+ #@ wp-table-reloaded
1660
+ #: views/view-edit.php:378
1661
+ msgid "Length Change"
1662
+ msgstr "Zmiana długości"
1663
+
1664
+ #@ wp-table-reloaded
1665
+ #: views/view-edit.php:379
1666
+ msgid "Yes, allow the visitor to change the number of rows shown when using pagination."
1667
+ msgstr "Tak, pozwól użytkownikom zmieniać liczbę wierszy przy użyciu paginacji."
1668
+
1669
+ #@ wp-table-reloaded
1670
+ #: views/view-edit.php:382
1671
+ msgid "Filtering"
1672
+ msgstr "Filtr"
1673
+
1674
+ #@ wp-table-reloaded
1675
+ #: views/view-edit.php:383
1676
+ msgid "Yes, enable the visitor to filter or search the table. Only rows with the search word in them are shown."
1677
+ msgstr "Tak, pozwól użytkownikom filtrować lub przeszukiwać tabelę. Tylko wiersze zawierające szukane słowo zostaną wyświetlone."
1678
+
1679
+ #@ wp-table-reloaded
1680
+ #: views/view-edit.php:386
1681
+ msgid "Info Bar"
1682
+ msgstr "Baner informacyjny"
1683
+
1684
+ #@ wp-table-reloaded
1685
+ #: views/view-edit.php:387
1686
+ msgid "Yes, show the table information display. This shows information and statistics about the currently visible data, including filtering."
1687
+ msgstr "Tak, pokaż informacje o tabeli. Wyświetlone zostaną informacje i statystyki o obecnie widocznych danych łącznie z zastosowanymi filtrami."
1688
+
1689
+ #@ wp-table-reloaded
1690
+ #: views/view-edit.php:390
1691
+ msgid "TableTools"
1692
+ msgstr "Narzędzia tabeli"
1693
+
1694
+ #@ wp-table-reloaded
1695
+ #: views/view-edit.php:392
1696
+ msgid "Yes, activate the TableTools functions (Copy to Clipboard, Save to CSV, Save to XLS, Print Table) for this table."
1697
+ msgstr "Tak, aktywuj narzędzia tabeli (Kopiuj do schowka, zapisz jako CSV, zapisz jako XLS, drukuj tabelę) dla tej tabeli."
1698
+
1699
+ #@ wp-table-reloaded
1700
+ #: views/view-edit.php:393
1701
+ msgid "This option can only be used with the &quot;DataTables+TableTools&quot; JavaScript library."
1702
+ msgstr "Ta opcja może zostać użyta tylko z bibliotekami JavaScript &quot;DataTables+TableTools&quot; "
1703
+
1704
+ #@ wp-table-reloaded
1705
+ #: views/view-edit.php:397
1706
+ msgid "Custom Commands"
1707
+ msgstr "Własne polecenia"
1708
+
1709
+ #@ wp-table-reloaded
1710
+ #: views/view-edit.php:398
1711
+ msgid "Enter additional DataTables JavaScript parameters that will be included with the script call here."
1712
+ msgstr "Wprowadź dodatkowe parametry DataTables JavaScript, które zostaną w skrypcie."
1713
+
1714
+ #@ wp-table-reloaded
1715
+ #: views/view-edit.php:398
1716
+ msgid "For advanced use only. Read the <a href=\"http://www.datatables.net/\">DataTables documentation</a> before."
1717
+ msgstr "Dla zaawasowanych użytkowników. Przed użyciem przeczytaj <a href=\"http://www.datatables.net/\">dokumentację DataTables </a>."
1718
+
1719
+ #@ wp-table-reloaded
1720
+ #: views/view-edit.php:414
1721
+ msgid "Custom Data Fields"
1722
+ msgstr "Własne Pola Danych"
1723
+
1724
+ #@ wp-table-reloaded
1725
+ #: views/view-edit.php:416
1726
+ msgid "Custom Data Fields can be used to add extra metadata to a table."
1727
+ msgstr "Własne Pola Danych mogą zostać użyte w celu dodania dodatkowych danych meta do tablicy."
1728
+
1729
+ #@ wp-table-reloaded
1730
+ #: views/view-edit.php:416
1731
+ msgid "For example, this could be information about the source or the creator of the data."
1732
+ msgstr "Na przykład, może być to informacja o źródle danych."
1733
+
1734
+ #@ wp-table-reloaded
1735
+ #: views/view-edit.php:418
1736
+ #, php-format
1737
+ msgid "You can show this data in the same way as tables by using the shortcode <strong>[table-info id=%s field=\"&lt;field-name&gt;\" /]</strong>."
1738
+ msgstr "Można pokazać te dane w taki sam sposób jak tabele przy użyciu kodu <strong>[table-info id=%s field=\"&lt;field-name&gt;\" /]</strong>."
1739
+
1740
+ #@ wp-table-reloaded
1741
+ #: views/view-edit.php:424
1742
+ msgid "Field Name"
1743
+ msgstr "Nazwa pola"
1744
+
1745
+ #@ wp-table-reloaded
1746
+ #: views/view-edit.php:425
1747
+ msgid "Value"
1748
+ msgstr "Wartość"
1749
+
1750
+ #@ wp-table-reloaded
1751
+ #: views/view-edit.php:439
1752
+ msgid "Delete Field"
1753
+ msgstr "Usuń pole"
1754
+
1755
+ #@ wp-table-reloaded
1756
+ #: views/view-edit.php:441
1757
+ msgid "View shortcode"
1758
+ msgstr "Zobacz kod"
1759
+
1760
+ #@ wp-table-reloaded
1761
+ #: views/view-edit.php:450
1762
+ msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
1763
+ msgstr "Aby dodać nowe Własne Pole Danych wprowadź nazwę (tylko małe litery, liczby, _ and -)."
1764
+
1765
+ #@ wp-table-reloaded
1766
+ #: views/view-edit.php:451
1767
+ msgid "Custom Data Field Name"
1768
+ msgstr "Nazwa Własnego Pola Danych"
1769
+
1770
+ #@ wp-table-reloaded
1771
+ #: views/view-edit.php:465
1772
+ msgid "Other actions"
1773
+ msgstr "Inne działania"
1774
+
1775
+ #@ wp-table-reloaded
1776
+ #: views/view-edit.php:468
1777
+ msgid "Delete Table"
1778
+ msgstr "Usuń tabelę"
1779
+
1780
+ #@ wp-table-reloaded
1781
+ #: views/view-edit.php:469
1782
+ #: views/view-export.php:59
1783
+ msgid "Export Table"
1784
+ msgstr "Eksport tabeli"
1785
+
1786
+ #@ wp-table-reloaded
1787
+ #: views/view-export.php:10
1788
+ msgid "It is recommended to export and backup the data of important tables regularly."
1789
+ msgstr "Zalecany jest regularne wykonywanie kopii bezpieczeństwa."
1790
+
1791
+ #@ wp-table-reloaded
1792
+ #: views/view-export.php:10
1793
+ msgid "Select the table, the desired export format and (for CSV only) a delimiter."
1794
+ msgstr "Wybierz tabelę, żądany format eksportu danych i (tylko dla plików CSV) znak rozdzielenia danych."
1795
+
1796
+ #@ wp-table-reloaded
1797
+ #: views/view-export.php:10
1798
+ msgid "You may choose to download the export file. Otherwise it will be shown on this page."
1799
+ msgstr "Wybierz w celu pobrania eksportowanego pliku."
1800
+
1801
+ #@ wp-table-reloaded
1802
+ #: views/view-export.php:10
1803
+ msgid "Be aware that only the table data, but no options or settings are exported."
1804
+ msgstr "Bądź świadomy, że tylko dane tabeli, nie opcje lub ustawienia są eksportowane."
1805
+
1806
+ #@ wp-table-reloaded
1807
+ #: views/view-export.php:10
1808
+ #, php-format
1809
+ msgid "To backup all tables, including their settings, at once use the &quot;%s&quot; button in the &quot;%s&quot;."
1810
+ msgstr "W celu utworzenia kopii bezpieczeństwa wszystkich tabeli, ustawień użyj przycisku &quot;%s&quot; w &quot;%s&quot;."
1811
+
1812
+ #@ wp-table-reloaded
1813
+ #: views/view-export.php:10
1814
+ #: views/view-options.php:189
1815
+ msgid "Create and Download Dump File"
1816
+ msgstr "Utwórz i pobierz plik zrzutu bazy"
1817
+
1818
+ #@ wp-table-reloaded
1819
+ #: views/view-export.php:18
1820
+ msgid "Select Table to Export"
1821
+ msgstr "Wybierz tabelę do eksportu"
1822
+
1823
+ #@ wp-table-reloaded
1824
+ #: views/view-export.php:33
1825
+ msgid "Select Export Format"
1826
+ msgstr "Wybierz format eksportu"
1827
+
1828
+ #@ wp-table-reloaded
1829
+ #: views/view-export.php:43
1830
+ msgid "Select Delimiter to use"
1831
+ msgstr "Wybierz znak rozdzielenia danych"
1832
+
1833
+ #@ wp-table-reloaded
1834
+ #: views/view-export.php:50
1835
+ msgid "Only needed for CSV export."
1836
+ msgstr "Tylko w przypadku eksportu do pliku CSV."
1837
+
1838
+ #@ wp-table-reloaded
1839
+ #: views/view-export.php:53
1840
+ msgid "Download file"
1841
+ msgstr "Pobierz plik"
1842
+
1843
+ #@ wp-table-reloaded
1844
+ #: views/view-export.php:54
1845
+ msgid "Yes, I want to download the export file."
1846
+ msgstr "Tak, chcę pobrać eksportowany plik."
1847
+
1848
+ #@ wp-table-reloaded
1849
+ #: views/view-export.php:71
1850
+ #: views/view-list.php:88
1851
+ #, php-format
1852
+ msgid "You should <a href=\"%s\">add</a> or <a href=\"%s\">import</a> a table to get started!"
1853
+ msgstr "Powinieneś <a href=\"%s\">dodać</a> lub <a href=\"%s\">zaimportować</a> tabelę aby zacząć!"
1854
+
1855
+ #@ wp-table-reloaded
1856
+ #: views/view-import.php:3
1857
+ msgid "WP-Table Reloaded can import tables from existing data."
1858
+ msgstr "WP-Table Reloaded może zaimportować tabele z istniejących danych."
1859
+
1860
+ #@ wp-table-reloaded
1861
+ #: views/view-import.php:3
1862
+ msgid "This may be a CSV, XML or HTML file, each with a certain structure."
1863
+ msgstr "Może to być plik CSV, XML lub HTML, każdy we właściwej strukturze."
1864
+
1865
+ #@ wp-table-reloaded
1866
+ #: views/view-import.php:3
1867
+ msgid "To import an existing table, please select its format and the source for the import."
1868
+ msgstr "Aby importować istniejącą tabelę, proszę wybrać jej format i źródło importu."
1869
+
1870
+ #@ wp-table-reloaded
1871
+ #: views/view-import.php:3
1872
+ msgid "You can also decide, if you want to import it as a new table or replace an existing table."
1873
+ msgstr "Możesz również wybrać czy chcesz zaimportować plik jako nową tabelę czy zastąpić istniejącą."
1874
+
1875
+ #@ wp-table-reloaded
1876
+ #: views/view-import.php:10
1877
+ msgid "Select Import Format"
1878
+ msgstr "Wybierz format importu"
1879
+
1880
+ #@ wp-table-reloaded
1881
+ #: views/view-import.php:21
1882
+ msgid "Add or Replace Table?"
1883
+ msgstr "Dodać czy zamienić tabelę?"
1884
+
1885
+ #@ wp-table-reloaded
1886
+ #: views/view-import.php:23
1887
+ msgid "Add as new Table"
1888
+ msgstr "Dodaj jako nową tabelę"
1889
+
1890
+ #@ wp-table-reloaded
1891
+ #: views/view-import.php:24
1892
+ msgid "Replace existing Table"
1893
+ msgstr "Zamień istniejącą tabelę"
1894
+
1895
+ #@ wp-table-reloaded
1896
+ #: views/view-import.php:28
1897
+ msgid "Select existing Table to Replace"
1898
+ msgstr "Wybierz istniejącą tabelę w celu jej zamiany"
1899
+
1900
+ #@ wp-table-reloaded
1901
+ #: views/view-import.php:44
1902
+ msgid "Select source for Import"
1903
+ msgstr "Wybierz źródło importu"
1904
+
1905
+ #@ wp-table-reloaded
1906
+ #: views/view-import.php:46
1907
+ msgid "File upload"
1908
+ msgstr "Wgranie pliku"
1909
+
1910
+ #@ wp-table-reloaded
1911
+ #: views/view-import.php:47
1912
+ msgid "URL"
1913
+ msgstr "URL"
1914
+
1915
+ #@ wp-table-reloaded
1916
+ #: views/view-import.php:48
1917
+ msgid "Manual input"
1918
+ msgstr "Ręczne wprowadzenie"
1919
+
1920
+ #@ wp-table-reloaded
1921
+ #: views/view-import.php:49
1922
+ msgid "File on server"
1923
+ msgstr "Plik na serwerze"
1924
+
1925
+ #@ wp-table-reloaded
1926
+ #: views/view-import.php:53
1927
+ msgid "Select File with Table to Import"
1928
+ msgstr "Wybierz plik z tabelą do importu"
1929
+
1930
+ #@ wp-table-reloaded
1931
+ #: views/view-import.php:57
1932
+ msgid "URL to Import Table from"
1933
+ msgstr "URL do importowanej tabeli"
1934
+
1935
+ #@ wp-table-reloaded
1936
+ #: views/view-import.php:61
1937
+ msgid "Path to file on server"
1938
+ msgstr "Ścieżka do pliku na serwerze"
1939
+
1940
+ #@ wp-table-reloaded
1941
+ #: views/view-import.php:65
1942
+ msgid "Paste data with Table to Import"
1943
+ msgstr "Wklej dane tabeli do importu"
1944
+
1945
+ #@ wp-table-reloaded
1946
+ #: views/view-import.php:71
1947
+ msgid "Import Table"
1948
+ msgstr "Import tabeli"
1949
+
1950
+ #@ wp-table-reloaded
1951
+ #: views/view-import.php:85
1952
+ msgid "Import from original wp-Table plugin"
1953
+ msgstr "Import z wtyczki wp-Table"
1954
+
1955
+ #@ wp-table-reloaded
1956
+ #: views/view-import.php:131
1957
+ msgid "Import"
1958
+ msgstr "Import"
1959
+
1960
+ #@ wp-table-reloaded
1961
+ #: views/view-import.php:139
1962
+ #: views/view-list.php:79
1963
+ msgid "Bulk actions:"
1964
+ msgstr "Masowe działania:"
1965
+
1966
+ #@ wp-table-reloaded
1967
+ #: views/view-import.php:139
1968
+ msgid "Import Tables"
1969
+ msgstr "Import tabeli"
1970
+
1971
+ #@ wp-table-reloaded
1972
+ #: views/view-import.php:145
1973
+ msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
1974
+ msgstr "Wygląda jakby wtyczka wp-Table była zainstalowana ale nie znaleziono w niej tabel."
1975
+
1976
+ #@ wp-table-reloaded
1977
+ #: views/view-list.php:2
1978
+ msgid "You may add, edit, copy, delete or preview tables here."
1979
+ msgstr "Tu można dodawać, edytować, usuwać lub podejrzeć tabele."
1980
+
1981
+ #@ wp-table-reloaded
1982
+ #: views/view-list.php:2
1983
+ msgid "Each table has a unique ID that needs to be adjusted in that shortcode."
1984
+ msgstr "Każda tabela ma unikalny numer ID, który należy dodać we wklejanym kodzie."
1985
+
1986
+ #@ wp-table-reloaded
1987
+ #: views/view-list.php:2
1988
+ #, php-format
1989
+ msgid "You can also click the button &quot;%s&quot; in the editor toolbar to select and insert a table."
1990
+ msgstr "Można również kliknąć przycisk &quot;%s&quot; bezpośrednio w edytorze aby wybrać i wstawić tabelę."
1991
+
1992
+ #@ wp-table-reloaded
1993
+ #: views/view-list.php:39
1994
+ msgid "(no name)"
1995
+ msgstr "(brak nazwy)"
1996
+
1997
+ #@ wp-table-reloaded
1998
+ #: views/view-list.php:40
1999
+ msgid "(no description)"
2000
+ msgstr "(brak opisu)"
2001
+
2002
+ #@ wp-table-reloaded
2003
+ #: views/view-list.php:58
2004
+ #, php-format
2005
+ msgid "Edit %s"
2006
+ msgstr "Edytuj %s"
2007
+
2008
+ #@ wp-table-reloaded
2009
+ #: views/view-list.php:62
2010
+ msgid "Shortcode"
2011
+ msgstr "Kod"
2012
+
2013
+ #@ wp-table-reloaded
2014
+ #: views/view-list.php:63
2015
+ msgid "Copy"
2016
+ msgstr "Kopiuj"
2017
+
2018
+ #@ wp-table-reloaded
2019
+ #: views/view-list.php:64
2020
+ msgid "Export"
2021
+ msgstr "Eksport"
2022
+
2023
+ #@ wp-table-reloaded
2024
+ #: views/view-list.php:66
2025
+ #, php-format
2026
+ msgid "Preview of Table %s"
2027
+ msgstr "Podgląd tabeli %s"
2028
+
2029
+ #@ wp-table-reloaded
2030
+ #: views/view-list.php:67
2031
+ msgid "Preview"
2032
+ msgstr "Podgląd"
2033
+
2034
+ #@ wp-table-reloaded
2035
+ #: views/view-list.php:79
2036
+ msgid "Copy Tables"
2037
+ msgstr "Kopiuj tabele"
2038
+
2039
+ #@ wp-table-reloaded
2040
+ #: views/view-list.php:79
2041
+ msgid "Delete Tables"
2042
+ msgstr "Usuń tabele"
2043
+
2044
+ #@ wp-table-reloaded
2045
+ #: views/view-options.php:3
2046
+ msgid "WP-Table Reloaded has several options which affect the plugin behavior in different areas."
2047
+ msgstr "WP-Table Reloaded ma wiele dostępnych opcji."
2048
+
2049
+ #@ wp-table-reloaded
2050
+ #: views/view-options.php:4
2051
+ msgid "Frontend Options influence the output and used features of tables in pages, posts or text-widgets."
2052
+ msgstr "Opcje wyglądu wpływają na sposób wyświetlania tabeli we wpisach, na stronach i tekstowym obszarze widget."
2053
+
2054
+ #@ wp-table-reloaded
2055
+ #: views/view-options.php:4
2056
+ #, php-format
2057
+ msgid "The Backend Options control the plugin's admin area, e.g. the &quot;%s&quot; screen."
2058
+ msgstr "Opcje administracyjne kontrolują zachowania wtyczki, np. obraz &quot;%s&quot; screen."
2059
+
2060
+ #@ wp-table-reloaded
2061
+ #: views/view-options.php:4
2062
+ #: views/view-options.php:55
2063
+ #: views/view-options.php:75
2064
+ #: views/view-options.php:79
2065
+ msgid "Edit Table"
2066
+ msgstr "Edytuj tabelę"
2067
+
2068
+ #@ wp-table-reloaded
2069
+ #: views/view-options.php:4
2070
+ msgid "Administrators have access to further Admin Options."
2071
+ msgstr "Do dalszych opcji mają dostęp administratorzy."
2072
+
2073
+ #@ wp-table-reloaded
2074
+ #: views/view-options.php:19
2075
+ msgid "Frontend Options"
2076
+ msgstr "Opcje wyglądu"
2077
+
2078
+ #@ wp-table-reloaded
2079
+ #: views/view-options.php:23
2080
+ msgid "JavaScript library"
2081
+ msgstr "Biblioteka JavaScript"
2082
+
2083
+ #@ wp-table-reloaded
2084
+ #: views/view-options.php:24
2085
+ msgid "Yes, enable the use of a JavaScript library."
2086
+ msgstr "Tak, włącz bibliotekę JavaScript."
2087
+
2088
+ #@ wp-table-reloaded
2089
+ #: views/view-options.php:24
2090
+ msgid "WP-Table Reloaded includes three JavaScript libraries that can add useful features, like sorting, pagination, and filtering, to a table."
2091
+ msgstr "WP-Table Reloaded zawiera trzy biblioteki JavaScript, które mogą dodać nowe funkcjonalności jak sortowanie, paginacja i filtrowanie tabeli."
2092
+
2093
+ #@ wp-table-reloaded
2094
+ #: views/view-options.php:28
2095
+ msgid "Select the library to use:"
2096
+ msgstr "Wybierz, którą bibliotekę chcesz użyć:"
2097
+
2098
+ #@ wp-table-reloaded
2099
+ #: views/view-options.php:29
2100
+ #: views/view-options.php:127
2101
+ msgid "recommended"
2102
+ msgstr "rekomendowane"
2103
+
2104
+ #@ wp-table-reloaded
2105
+ #: views/view-options.php:33
2106
+ #, php-format
2107
+ msgid "(You can read more about each library's features on the <a href=\"%s\">plugin's website</a>.)"
2108
+ msgstr "(Można dowiedzieć się więcej na temat każdej z bilbiotek na <a href=\"%s\">stronie wtyczki</a>.)"
2109
+
2110
+ #@ wp-table-reloaded
2111
+ #: views/view-options.php:36
2112
+ msgid "Default CSS"
2113
+ msgstr "Domyślny styl CSS"
2114
+
2115
+ #@ wp-table-reloaded
2116
+ #: views/view-options.php:38
2117
+ msgid "Yes, include and load the plugin's default CSS Stylesheets. This is highly recommended, if you use one of the JavaScript libraries!"
2118
+ msgstr "Tak, zastosuj i załaduj domyślny styl CSS wtyczki. Zalecane, jeżeli korzystasz z bibliotek JavaScript!"
2119
+
2120
+ #@ wp-table-reloaded
2121
+ #: views/view-options.php:42
2122
+ msgid "Custom CSS"
2123
+ msgstr "Własny styl CSS"
2124
+
2125
+ #@ wp-table-reloaded
2126
+ #: views/view-options.php:44
2127
+ msgid "Yes, include and load the following custom CSS commands."
2128
+ msgstr "Tak, zastosuj i załaduj następujący własny kod styli CSS."
2129
+
2130
+ #@ wp-table-reloaded
2131
+ #: views/view-options.php:44
2132
+ msgid "This should be used to change the table layout and styling."
2133
+ msgstr "Należy zastosować w celu zmiany układu i wyglądu tabeli."
2134
+
2135
+ #@ wp-table-reloaded
2136
+ #: views/view-options.php:50
2137
+ #, php-format
2138
+ msgid "You can get styling examples from the <a href=\"%s\">FAQ</a>."
2139
+ msgstr "Przykłady użycia styli CSS można znaleźć w sekcji <a href=\"%s\">FAQ</a>."
2140
+
2141
+ #@ wp-table-reloaded
2142
+ #: views/view-options.php:50
2143
+ #, php-format
2144
+ msgid "Information on available CSS selectors can be found in the <a href=\"%s\">documentation</a>."
2145
+ msgstr "Informację o dostępnych selektorach CSS można znaleźć w <a href=\"%s\">dokumentacji</a>."
2146
+
2147
+ #@ wp-table-reloaded
2148
+ #: views/view-options.php:54
2149
+ msgid "Links in new window"
2150
+ msgstr "Linki w nowym oknie"
2151
+
2152
+ #@ wp-table-reloaded
2153
+ #: views/view-options.php:55
2154
+ #, php-format
2155
+ msgid "Yes, open links that are inserted with the &quot;%s&quot; button on the &quot;%s&quot; screen in a new browser window <strong>from now on</strong>."
2156
+ msgstr "Tak, otwórz linki, które zostały wstawione poprzez przycisk the &quot;%s&quot; na obrazie &quot;%s&quot; w nowym oknie <strong>od teraz</strong>."
2157
+
2158
+ #@ wp-table-reloaded
2159
+ #: views/view-options.php:62
2160
+ #: views/view-options.php:168
2161
+ msgid "Save Options"
2162
+ msgstr "Zapisz opcje"
2163
+
2164
+ #@ wp-table-reloaded
2165
+ #: views/view-options.php:70
2166
+ msgid "Backend Options"
2167
+ msgstr "Opcje ustawień"
2168
+
2169
+ #@ wp-table-reloaded
2170
+ #: views/view-options.php:74
2171
+ msgid "Exit warning"
2172
+ msgstr "Ostrzeżenie o wyjściu"
2173
+
2174
+ #@ wp-table-reloaded
2175
+ #: views/view-options.php:75
2176
+ #, php-format
2177
+ msgid "Yes, show a warning message, if I leave the &quot;%s&quot; screen and have not yet saved my changes."
2178
+ msgstr "Tak, pokaż ostrzeżenie jeżeli opuszczę &quot;%s&quot; ekran bez zapisywania zmian."
2179
+
2180
+ #@ wp-table-reloaded
2181
+ #: views/view-options.php:78
2182
+ msgid "Growing textareas"
2183
+ msgstr "Powiększanie tekstu"
2184
+
2185
+ #@ wp-table-reloaded
2186
+ #: views/view-options.php:79
2187
+ #, php-format
2188
+ msgid "Yes, enlarge the textareas on the &quot;%s&quot; screen when they are focussed."
2189
+ msgstr "Tak, powiększ obszar tekstu na obrazie &quot;%s&quot; przy zbliżeniu."
2190
+
2191
+ #@ wp-table-reloaded
2192
+ #: views/view-options.php:87
2193
+ msgid "Admin Options"
2194
+ msgstr "Opcje administratora"
2195
+
2196
+ #@ wp-table-reloaded
2197
+ #: views/view-options.php:89
2198
+ #: views/view-options.php:209
2199
+ #: views/view-options.php:223
2200
+ msgid "This area are only available to site administrators!"
2201
+ msgstr "Ta sekcja jest dostępna tylko dla administratora!"
2202
+
2203
+ #@ wp-table-reloaded
2204
+ #: views/view-options.php:89
2205
+ msgid "You can therefore not change these options."
2206
+ msgstr "Nie możesz dlatego zmienić tych ustawień."
2207
+
2208
+ #@ wp-table-reloaded
2209
+ #: views/view-options.php:94
2210
+ msgid "Plugin Access"
2211
+ msgstr "Dostęp do wtyczki"
2212
+
2213
+ #@ wp-table-reloaded
2214
+ #: views/view-options.php:95
2215
+ msgid "To access WP-Table Reloaded, a user needs to be:"
2216
+ msgstr "Aby mieć dostęp do wtyczki użytkownik musi być zarejestrowany jako:"
2217
+
2218
+ #: views/view-options.php:96
2219
+ #: views/view-options.php:107
2220
+ msgctxt "User role"
2221
+ msgid "Administrator"
2222
+ msgstr "Administrator"
2223
+
2224
+ #: views/view-options.php:97
2225
+ #: views/view-options.php:108
2226
+ msgctxt "User role"
2227
+ msgid "Editor"
2228
+ msgstr "Redaktor"
2229
+
2230
+ #: views/view-options.php:98
2231
+ #: views/view-options.php:109
2232
+ msgctxt "User role"
2233
+ msgid "Author"
2234
+ msgstr "Autor"
2235
+
2236
+ #: views/view-options.php:99
2237
+ msgctxt "User role"
2238
+ msgid "Contributor"
2239
+ msgstr "Współtwórca"
2240
+
2241
+ #@ wp-table-reloaded
2242
+ #: views/view-options.php:105
2243
+ msgid "Plugin Options Access"
2244
+ msgstr "Opcje dostępu do wtyczki"
2245
+
2246
+ #@ wp-table-reloaded
2247
+ #: views/view-options.php:106
2248
+ msgid "To access the Plugin Options of WP-Table Reloaded, a user needs to be:"
2249
+ msgstr "Aby mieć dostęp do ustawień wtyczki użytkownik musi być zarejestrowany jako:"
2250
+
2251
+ #@ wp-table-reloaded
2252
+ #: views/view-options.php:110
2253
+ msgid "Admin Options, Dump file Import, and Manual Plugin Uninstall are always accessible by Administrators only, regardless of this setting."
2254
+ msgstr "Opcje administracyjne, import zrzutu bazy oraz ręczna możliwość odinstalowania wtyczki są zawsze dostępne tylko dla Administratora, bez względu na te ustawienia."
2255
+
2256
+ #@ wp-table-reloaded
2257
+ #: views/view-options.php:114
2258
+ msgid "Plugin Language"
2259
+ msgstr "Język wtyczki"
2260
+
2261
+ #@ wp-table-reloaded
2262
+ #: views/view-options.php:115
2263
+ msgid "WP-Table Reloaded shall be shown in this language:"
2264
+ msgstr "Wtyczka WP-Table Reloaded ma korzystać z języka:"
2265
+
2266
+ #@ wp-table-reloaded
2267
+ #: views/view-options.php:116
2268
+ #, php-format
2269
+ msgid "WordPress Default (currently %s)"
2270
+ msgstr "Domyślne ustawienia WordPress (obecnie %s)"
2271
+
2272
+ #@ wp-table-reloaded
2273
+ #: views/view-options.php:125
2274
+ msgid "Admin menu entry"
2275
+ msgstr "Menu Administratora"
2276
+
2277
+ #@ wp-table-reloaded
2278
+ #: views/view-options.php:126
2279
+ msgid "WP-Table Reloaded shall be shown in this section of the admin menu:"
2280
+ msgstr "Wtyczka WP-Table Reloaded ma być wyświetlona w następującej sekcji kokpitu:"
2281
+
2282
+ #: views/view-options.php:127
2283
+ msgid "Tools"
2284
+ msgstr "Narzędzia"
2285
+
2286
+ #: views/view-options.php:128
2287
+ msgid "Posts"
2288
+ msgstr "Wpisy"
2289
+
2290
+ #: views/view-options.php:138
2291
+ msgid "Pages"
2292
+ msgstr "Strony"
2293
+
2294
+ #: views/view-options.php:139
2295
+ msgid "Plugins"
2296
+ msgstr "Wtyczki"
2297
+
2298
+ #: views/view-options.php:140
2299
+ msgid "Settings"
2300
+ msgstr "Ustawienia"
2301
+
2302
+ #: views/view-options.php:141
2303
+ msgid "Dashboard"
2304
+ msgstr "Kokpit"
2305
+
2306
+ #@ wp-table-reloaded
2307
+ #: views/view-options.php:142
2308
+ msgid "Top-Level"
2309
+ msgstr "Górny poziom"
2310
+
2311
+ #@ wp-table-reloaded
2312
+ #: views/view-options.php:147
2313
+ msgid "Frontend Edit Link"
2314
+ msgstr "Link Edit"
2315
+
2316
+ #@ wp-table-reloaded
2317
+ #: views/view-options.php:148
2318
+ msgid "Yes, show an \"Edit\" link to users with sufficient rights near every table on the frontend."
2319
+ msgstr "Tak, widoczny dla uprawnionych użytkowników na górze tabeli link \"Edit\" ."
2320
+
2321
+ #@ wp-table-reloaded
2322
+ #: views/view-options.php:152
2323
+ msgid "WordPress Search"
2324
+ msgstr "Wyszukiwarka WordPress"
2325
+
2326
+ #@ wp-table-reloaded
2327
+ #: views/view-options.php:153
2328
+ msgid "Yes, the WordPress Search shall also find posts and pages that contain the search term inside a table."
2329
+ msgstr "Tak, wyszukiwarka WordPress pod kątem szukanej frazy ma również sprawdzać wstawione do stron i wpisów tabele."
2330
+
2331
+ #@ wp-table-reloaded
2332
+ #: views/view-options.php:157
2333
+ msgid "Remove upon Deactivation"
2334
+ msgstr "Usuń po deaktywacji"
2335
+
2336
+ #@ wp-table-reloaded
2337
+ #: views/view-options.php:158
2338
+ msgid "Yes, remove all plugin related data from the database when the plugin is deactivated."
2339
+ msgstr "Tak, należy usunąć wszystkie dane związane z wtyczką z bazy danych po deaktywacji wtyczki."
2340
+
2341
+ #@ wp-table-reloaded
2342
+ #: views/view-options.php:158
2343
+ msgid "Should be activated directly before deactivation only!"
2344
+ msgstr "Powinno być aktywowane wyłącznie bezpośrednio przez deaktywowaniem!"
2345
+
2346
+ #@ wp-table-reloaded
2347
+ #: views/view-options.php:178
2348
+ msgid "WP-Table Reloaded Data Export and Backup"
2349
+ msgstr "Dane eksportu i kopii bezpieczeństwa WP-Table Reloaded"
2350
+
2351
+ #@ wp-table-reloaded
2352
+ #: views/view-options.php:181
2353
+ msgid "WP-Table Reloaded can export and import a so-called dump file that contains all tables, their settings and the plugin's options."
2354
+ msgstr "WP-Table Reloaded może eksportować albo importować tak zwany zrzut bazy, który zawiera wszystkie tabele, ich ustawienia oraz opcje wtyczki."
2355
+
2356
+ #@ wp-table-reloaded
2357
+ #: views/view-options.php:181
2358
+ msgid "This file can be used as a backup or to move all data to another WordPress site."
2359
+ msgstr "Ten plik może zostać użyty jako kopia bezpieczeństwa albo w celu przeniesienia danych do innej strony WordPress."
2360
+
2361
+ #@ wp-table-reloaded
2362
+ #: views/view-options.php:184
2363
+ msgid "Export a dump file"
2364
+ msgstr "Eksport zrzutu bazy."
2365
+
2366
+ #@ wp-table-reloaded
2367
+ #: views/view-options.php:186
2368
+ msgid "To export all Tables and their settings, click the button below to generate and download a dump file."
2369
+ msgstr "Aby eksportować wszystkie tabele i ich ustawienia, należy nacisnąć przycisk poniżej w celu generacji zrzutu bazy."
2370
+
2371
+ #@ wp-table-reloaded
2372
+ #: views/view-options.php:186
2373
+ msgid "<strong>Warning</strong>: Do <strong>not</strong> edit the content of that file under any circumstances as you will destroy the file!"
2374
+ msgstr "<strong>Uwaga</strong>: <strong>Edycja</strong> zawartości pliku może spowodować jego uszkodzenie!"
2375
+
2376
+ #@ wp-table-reloaded
2377
+ #: views/view-options.php:195
2378
+ msgid "Import a dump file"
2379
+ msgstr "Import zrzutu bazy"
2380
+
2381
+ #@ wp-table-reloaded
2382
+ #: views/view-options.php:197
2383
+ msgid "To import a WP-Table Reloaded dump file and restore the included data, upload the file from your computer."
2384
+ msgstr "Aby zaimportować zrzut bazy WP-Table Reloaded i przywrócić zawarte w nim dane, należy pobrać plik ze swojego komputera."
2385
+
2386
+ #@ wp-table-reloaded
2387
+ #: views/view-options.php:197
2388
+ msgid "All current data of this WP-Table Reloaded installation (Tables, Options, Settings) <strong>WILL BE OVERWRITTEN</strong> with the data from the file!"
2389
+ msgstr "Wszystkie dane wtyczki (tabele, opcje, ustawienia) <strong>ZOSTANĄ NADPISANE</strong>!"
2390
+
2391
+ #@ wp-table-reloaded
2392
+ #: views/view-options.php:197
2393
+ msgid "Do not proceed, if you do not understand this!"
2394
+ msgstr "Nie kontynuuj, jeżeli nie jest to dla Ciebie zrozumiałe!"
2395
+
2396
+ #@ wp-table-reloaded
2397
+ #: views/view-options.php:197
2398
+ msgid "It is highly recommended to export and backup the data of this installation before importing another dump file (see above)."
2399
+ msgstr "Zalecany jest eksport i utworzenie kopii bezpieczeństwa istniejącej instalacji przed wgraniem nowego zrzutu bazy (patrz powyżej)."
2400
+
2401
+ #@ wp-table-reloaded
2402
+ #: views/view-options.php:203
2403
+ msgid "Select Dump File"
2404
+ msgstr "Wybór pliku zrzutu bazy"
2405
+
2406
+ #@ wp-table-reloaded
2407
+ #: views/view-options.php:205
2408
+ msgid "Import Dump File"
2409
+ msgstr "Import pliku zrzutu bazy"
2410
+
2411
+ #@ wp-table-reloaded
2412
+ #: views/view-options.php:215
2413
+ msgid "Manually Uninstall WP-Table Reloaded"
2414
+ msgstr "Ręcznie odinstaluj WP-Table Reloaded"
2415
+
2416
+ #@ wp-table-reloaded
2417
+ #: views/view-options.php:217
2418
+ msgid "Uninstalling <strong>will permanently delete</strong> all tables, data, and options, that belong to WP-Table Reloaded from the database, including all tables you added or imported."
2419
+ msgstr "Odinstalowanie <strong>na zawsze usunie</strong> wszystkie tabele, dane i ustawienia związane z WP-Table Reloaded z bazy danych, łącznie z tabelami, które zostały dodane lub zaimportowane."
2420
+
2421
+ #@ wp-table-reloaded
2422
+ #: views/view-options.php:217
2423
+ msgid "You will manually need to remove the plugin's files from the plugin folder afterwards."
2424
+ msgstr "Będziesz musiał potem ręcznie usunąć folder wtyczki z katalogu wtyczek."
2425
+
2426
+ #@ wp-table-reloaded
2427
+ #: views/view-options.php:217
2428
+ msgid "Be very careful with this and only click the button if you know what you are doing!"
2429
+ msgstr "Bądź ostrożny i użyj tego przycisku tylko jeżeli wiesz co robisz!"
2430
+
2431
+ #@ wp-table-reloaded
2432
+ #: views/view-options.php:221
2433
+ msgid "Uninstall Plugin WP-Table Reloaded"
2434
+ msgstr "Odinstaluj wtyczkę WP-Table Reloaded"
2435
+
2436
+ #@ wp-table-reloaded
2437
+ #: views/view-uninstall.php:3
2438
+ msgid "Plugin deactivated successfully."
2439
+ msgstr "Wtyczka została wyłączona pomyślnie."
2440
+
2441
+ #@ wp-table-reloaded
2442
+ #: views/view-uninstall.php:4
2443
+ msgid "All tables, data and options were deleted. You may now manually remove the plugin's subfolder from your WordPress plugin folder or use the \"Delete\" link on the Plugins page."
2444
+ msgstr "Wszystkie tabele, dane oraz ustawienia zostały usunięte. Można teraz ręcznie skasować folder wtyczki z katalogu wtyczek na serwerze lub użyć przycisku \"Delete\" na Twojej stronie wtyczek w kokpicie."
2445
+
languages/wp-table-reloaded-zh_CN.mo CHANGED
Binary file
languages/wp-table-reloaded-zh_CN.po CHANGED
@@ -1,20 +1,20 @@
1
- # Translation of the WordPress plugin WP-Table Reloaded 1.7-beta1 by Tobias B&auml;thge.
2
  # Copyright (C) 2010 Tobias B&auml;thge
3
  # This file is distributed under the same license as the WP-Table Reloaded package.
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
  #
6
  msgid ""
7
  msgstr ""
8
- "Project-Id-Version: WP-Table Reloaded 1.7-beta1\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
10
- "POT-Creation-Date: 2010-03-04 21:16+0000\n"
11
- "PO-Revision-Date: 2010-03-07 08:59+0800\n"
12
  "Last-Translator: lonelicloud <haoxian.zeng@gmail.com>\n"
13
- "Language-Team: http://cnzhx.net/ <info@cnzhx.net>\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
  "X-Poedit-Language: Chinese\n"
19
  "X-Poedit-Country: CHINA\n"
20
 
@@ -54,38 +54,38 @@ msgid "| (pipe)"
54
  msgstr "| (通道符)"
55
 
56
  #: classes/helper.class.php:40
57
- #: views/view-about.php:22
58
  #, php-format
59
  msgid "More information about WP-Table Reloaded can be found on the <a href=\"%s\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress Plugin Directory</a>."
60
- msgstr "关于 WP-Table Reloaded 的更多信息请参考该 <a href=\"%s\">插件网站</a> 或者 <a href=\"%s\">WordPress插件目录</a> 上的相关页面。"
61
 
62
  #: classes/helper.class.php:41
63
- #: views/view-about.php:22
64
  #, php-format
65
  msgid "For technical information, see the <a href=\"%s\">documentation</a>."
66
  msgstr "技术文档请参考 <a href=\"%s\">文档</a>。"
67
 
68
  #: classes/helper.class.php:42
69
- #: views/view-about.php:29
70
  #, php-format
71
  msgid "<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress Support Forums</a>."
72
  msgstr "对该插件的<a href=\"%s\">支持</a> 由 <a href=\"%s\">WordPress支持论坛</a> 提供。"
73
 
74
  #: classes/helper.class.php:43
75
- #: views/view-about.php:29
76
  #, php-format
77
  msgid "Before asking for support, please carefully read the <a href=\"%s\">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums."
78
  msgstr "在寻求帮助之前,请仔细阅读 <a href=\"%s\">常见问题</a> ,您可能能够找到常见问题的解答,如果还不能解答您的疑问,请在论坛中搜索。"
79
 
80
  #: classes/helper.class.php:44
81
- #: views/view-about.php:36
82
  #, php-format
83
  msgid "If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is recommended."
84
  msgstr "如果您喜欢这个插件,请考虑通过 <a href=\"%s\"><strong>捐助</strong></a> 来支持插件的开发。"
85
 
86
  #: classes/helper.class.php:74
87
  msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
88
- msgstr "感谢使用 <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>。"
89
 
90
  #: classes/helper.class.php:74
91
  #, php-format
@@ -127,598 +127,590 @@ msgstr "要合并单元格,请使用相应的按钮将代码 #rowspan# 插入
127
  msgid "Help"
128
  msgstr "帮助"
129
 
130
- #: classes/render.class.php:140
131
  #: views/view-list.php:60
132
  msgid "Edit"
133
  msgstr "编辑"
134
 
135
  #: controllers/controller-admin.php:256
 
 
 
 
136
  msgid "Czech"
137
  msgstr "捷克语"
138
 
139
- #: controllers/controller-admin.php:257
140
  msgid "German"
141
  msgstr "德语"
142
 
143
- #: controllers/controller-admin.php:258
144
  msgid "English"
145
  msgstr "英语"
146
 
147
- #: controllers/controller-admin.php:259
148
  msgid "Spanish"
149
  msgstr "西班牙语"
150
 
151
- #: controllers/controller-admin.php:260
152
  msgid "Finnish"
153
  msgstr "芬兰语"
154
 
155
- #: controllers/controller-admin.php:261
 
 
 
 
156
  msgid "Hindi"
157
  msgstr "北印度语"
158
 
159
- #: controllers/controller-admin.php:262
160
  msgid "Italian"
161
  msgstr "意大利语"
162
 
163
- #: controllers/controller-admin.php:263
164
  msgid "Japanese"
165
  msgstr "日语"
166
 
167
- #: controllers/controller-admin.php:264
 
 
 
 
168
  msgid "Brazilian Portuguese"
169
  msgstr "巴西葡萄牙语"
170
 
171
- #: controllers/controller-admin.php:265
172
- msgid "Chinese (Simplified)"
173
- msgstr "中文(简体)"
174
-
175
- #: controllers/controller-admin.php:266
176
  msgid "Russian"
177
  msgstr "俄语"
178
 
179
- #: controllers/controller-admin.php:267
180
  msgid "Slovak"
181
  msgstr "斯洛伐克语"
182
 
183
- #: controllers/controller-admin.php:268
184
  msgid "Swedish"
185
  msgstr "瑞典语"
186
 
187
- #: controllers/controller-admin.php:270
188
- msgid "Albanian"
189
- msgstr "阿尔巴尼亚语"
190
-
191
  #: controllers/controller-admin.php:271
192
- msgid "Belorussian"
193
- msgstr "白俄罗斯语"
194
 
195
  #: controllers/controller-admin.php:272
196
- msgid "Estonian"
197
- msgstr "爱沙尼亚语"
198
-
199
- #: controllers/controller-admin.php:273
200
- msgid "French"
201
- msgstr "法语"
202
-
203
- #: controllers/controller-admin.php:274
204
- msgid "Polish"
205
- msgstr "波兰语"
206
-
207
- #: controllers/controller-admin.php:275
208
- msgid "Turkish"
209
- msgstr "土耳其语"
210
 
211
- #: controllers/controller-admin.php:301
212
  #, php-format
213
  msgid "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s\">documentation</a>, and the <a href=\"%s\">support</a> section."
214
- msgstr "欢迎来到 WP-Table Reloaded %s。如果您有任何疑问或问题,请参考 <a href=\"%s\">FAQ</a>,<a href=\"%s\">文档</a>或 <a href=\"%s\">支持</a> 页面。"
215
 
216
- #: controllers/controller-admin.php:302
217
  #, php-format
218
  msgid "Thank you for upgrading to WP-Table Reloaded %s."
219
  msgstr "谢谢,您已经升级到 WP-Table Reloaded %s。"
220
 
221
- #: controllers/controller-admin.php:302
222
- msgid "This version includes several enhancements, like an updated DataTables library, a &quot;Table&quot; button in the toolbar of the visual editor, and several other things."
223
- msgstr "该版本包含数项改进,如更新的数据表库,在可视编辑器的工具条上添加 &quot;表格&quot; 按钮,以及其它几项新特性等。"
224
 
225
- #: controllers/controller-admin.php:302
226
  #, php-format
227
  msgid "Please read the <a href=\"%s\">release announcement</a> for more information."
228
  msgstr "请阅读 <a href=\"%s\">发行说明</a> 获取更多信息。"
229
 
230
- #: controllers/controller-admin.php:302
231
  #, php-format
232
  msgid "If you like the new features and enhancements, I would appreciate a small <a href=\"%s\">donation</a>. Thank you."
233
  msgstr "如果您喜欢这些新特性和改进,请 <a href=\"%s\">捐助</a> 一小笔资金。谢谢!"
234
 
235
- #: controllers/controller-admin.php:307
236
  msgid "Hide this message"
237
  msgstr "隐藏信息"
238
 
239
- #: controllers/controller-admin.php:315
240
  msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago."
241
  msgstr "感谢您使用该插件!您安装 WP-Table Reloaded 已经有一个多月了。"
242
 
243
- #: controllers/controller-admin.php:315
244
  #, php-format
245
  msgid "If it works and you are satisfied with the results of managing your %s table, isn't it worth at least one dollar or euro?"
246
  msgid_plural "If it works and you are satisfied with the results of managing your %s tables, isn't it worth at least one dollar or euro?"
247
- msgstr[0] "如果它运行良好,而您又非常满意用它来管理您的 %s 表格,难道这还不值至少 1 美元或欧元吗?"
248
- msgstr[1] "如果它运行良好,而您又非常满意用它来管理您的 %s 表格,难道这还不值至少 1 美元或欧元吗?"
249
 
250
- #: controllers/controller-admin.php:316
251
  #, php-format
252
  msgid "<a href=\"%s\">Donations</a> help me to continue support and development of this <i>free</i> software - things for which I spend countless hours of my free time! Thank you!"
253
  msgstr "请通过<a href=\"%s\">捐助</a> 帮助我继续支持和改进这个 <i>免费</i> 软件 - 为了这个软件我已经牺牲了数不清的休息时间!谢谢!"
254
 
255
- #: controllers/controller-admin.php:317
256
  msgid "Sure, no problem!"
257
  msgstr "当然,没问题!"
258
 
259
- #: controllers/controller-admin.php:318
260
  msgid "I already donated."
261
  msgstr "已经捐助过了。"
262
 
263
- #: controllers/controller-admin.php:319
264
  msgid "No, thanks. Don't ask again."
265
  msgstr "不,谢谢。不要再提醒了。"
266
 
267
- #: controllers/controller-admin.php:347
268
  #, php-format
269
  msgid "Table &quot;%s&quot; added successfully."
270
  msgstr "成功添加表格 &quot;%s&quot; 。"
271
 
272
- #: controllers/controller-admin.php:378
273
  #, php-format
274
  msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
275
  msgstr "成功编辑表格。这个表格的新ID是 %s。您可能需要调整以前的相应代码来使它正确运行。"
276
 
277
- #: controllers/controller-admin.php:380
278
  #, php-format
279
  msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
280
  msgstr "该ID不能从 %s 更改为 %s,因为新ID已经被另一个表格使用。"
281
 
282
- #: controllers/controller-admin.php:383
283
  msgid "Table edited successfully."
284
  msgstr "成功编辑表格。"
285
 
286
- #: controllers/controller-admin.php:430
287
  msgid "Rows swapped successfully."
288
  msgstr "成功交换行。"
289
 
290
- #: controllers/controller-admin.php:451
291
  msgid "Columns swapped successfully."
292
  msgstr "成功交换列。"
293
 
294
- #: controllers/controller-admin.php:480
295
  msgid "Table sorted successfully."
296
  msgstr "表格排序成功。"
297
 
298
- #: controllers/controller-admin.php:501
299
  msgid "Row moved successfully."
300
  msgstr "成功移动行。"
301
 
302
- #: controllers/controller-admin.php:526
303
  msgid "Column moved successfully."
304
  msgstr "成功移动列。"
305
 
306
- #: controllers/controller-admin.php:534
307
  msgid "Row could not be deleted."
308
  msgid_plural "Rows could not be deleted."
309
  msgstr[0] "不能删除该行。"
310
  msgstr[1] "不能删除这些行。"
311
 
312
- #: controllers/controller-admin.php:543
313
  msgid "Row deleted successfully."
314
  msgid_plural "Rows deleted successfully."
315
  msgstr[0] "成功删除行。"
316
  msgstr[1] "成功删除行。"
317
 
318
- #: controllers/controller-admin.php:553
319
  msgid "Column could not be deleted."
320
  msgid_plural "Columns could not be deleted."
321
  msgstr[0] "不能删除该列。"
322
  msgstr[1] "不能删除这些行列。"
323
 
324
- #: controllers/controller-admin.php:566
325
  msgid "Column deleted successfully."
326
  msgid_plural "Columns deleted successfully."
327
  msgstr[0] "成功删除列。"
328
  msgstr[1] "成功删除列。"
329
 
330
- #: controllers/controller-admin.php:589
331
  msgid "Row inserted successfully."
332
  msgid_plural "Rows inserted successfully."
333
  msgstr[0] "成功插入行。"
334
  msgstr[1] "成功插入行。"
335
 
336
- #: controllers/controller-admin.php:616
337
  msgid "Column inserted successfully."
338
  msgid_plural "Columns inserted successfully."
339
  msgstr[0] "成功插入列。"
340
  msgstr[1] "成功插入列。"
341
 
342
- #: controllers/controller-admin.php:631
343
  msgid "Row added successfully."
344
  msgid_plural "Rows added successfully."
345
  msgstr[0] "成功添加行。"
346
  msgstr[1] "成功添加行。"
347
 
348
- #: controllers/controller-admin.php:645
349
  msgid "Column added successfully."
350
  msgid_plural "Columns added successfully."
351
  msgstr[0] "成功添加列。"
352
  msgstr[1] "成功添加列。"
353
 
354
- #: controllers/controller-admin.php:652
355
  msgid "Could not add Custom Data Field, because you did not enter a name."
356
  msgstr "不能加入自定义数据域,因为您还没有输入名称。"
357
 
358
- #: controllers/controller-admin.php:657
359
  msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
360
  msgstr "不能加入自定义数据域,因为您输入的名称是其它表格数据的保留名称。"
361
 
362
- #: controllers/controller-admin.php:663
363
  msgid "Could not add Custom Data Field, because the name contained illegal characters."
364
  msgstr "不能加入自定义数据域,因为您输入的名称中包含有非法字符。"
365
 
366
- #: controllers/controller-admin.php:667
367
  msgid "Could not add Custom Data Field, because a Field with that name already exists."
368
  msgstr "不能加入自定义数据域,因为已经有一个同名的域。"
369
 
370
- #: controllers/controller-admin.php:673
371
  msgid "Custom Data Field added successfully."
372
  msgstr "成功添加自定义数据域。"
373
 
374
- #: controllers/controller-admin.php:713
375
- #: controllers/controller-admin.php:769
376
  msgid "Copy of"
377
  msgstr "复制"
378
 
379
- #: controllers/controller-admin.php:717
380
  msgid "Table copied successfully."
381
  msgid_plural "Tables copied successfully."
382
  msgstr[0] "成功编辑表格。"
383
  msgstr[1] "成功编辑表格。"
384
 
385
- #: controllers/controller-admin.php:723
386
  msgid "Table deleted successfully."
387
  msgid_plural "Tables deleted successfully."
388
  msgstr[0] "成功删除表格。"
389
  msgstr[1] "成功删除表格。"
390
 
391
- #: controllers/controller-admin.php:744
392
- #: controllers/controller-admin.php:899
393
- #: controllers/controller-admin.php:937
394
  msgid "Table imported successfully."
395
  msgid_plural "Tables imported successfully."
396
  msgstr[0] "成功导入表格。"
397
  msgstr[1] "成功导入表格。"
398
 
399
- #: controllers/controller-admin.php:751
400
  msgid "You did not select any tables!"
401
  msgstr "您没有选中任何表格!"
402
 
403
- #: controllers/controller-admin.php:774
404
  #, php-format
405
  msgid "Table &quot;%s&quot; copied successfully."
406
  msgstr "成功复制表格 &quot;%s&quot;。"
407
 
408
- #: controllers/controller-admin.php:792
409
  #, php-format
410
  msgid "Table &quot;%s&quot; deleted successfully."
411
  msgstr "成功删除表格 &quot;%s&quot;。"
412
 
413
- #: controllers/controller-admin.php:800
414
  msgid "Custom Data Field deleted successfully."
415
  msgstr "成功删除自定义数据域。"
416
 
417
- #: controllers/controller-admin.php:802
418
  msgid "Custom Data Field could not be deleted."
419
  msgstr "该自定义数据域无法删除。"
420
 
421
- #: controllers/controller-admin.php:808
422
  msgid "Delete failed."
423
  msgstr "删除失败。"
424
 
425
- #: controllers/controller-admin.php:840
426
- #: controllers/controller-admin.php:850
427
- #: controllers/controller-admin.php:861
428
  msgid "Imported Table"
429
  msgstr "导入表格"
430
 
431
- #: controllers/controller-admin.php:841
432
- #: controllers/controller-admin.php:862
433
  #, php-format
434
  msgid "from %s"
435
  msgstr "自 %s"
436
 
437
- #: controllers/controller-admin.php:851
438
  msgid "via form"
439
  msgstr "经由形式"
440
 
441
- #: controllers/controller-admin.php:878
442
- #: controllers/controller-admin.php:915
443
  msgid "Table could not be imported."
444
  msgstr "无法导入该表格。"
445
 
446
- #: controllers/controller-admin.php:895
447
  #, php-format
448
  msgid "Table %s (%s) replaced successfully."
449
  msgstr "成功替换表格 %s (%s)。"
450
 
451
- #: controllers/controller-admin.php:945
452
- #: controllers/controller-admin.php:1138
453
  msgid "You do not have sufficient rights to perform this action."
454
  msgstr "您没有足够的权限来完成此操作。"
455
 
456
- #: controllers/controller-admin.php:952
457
  msgid "You did not upload a WP-Table Reloaded dump file."
458
- msgstr "您还没有上传 WP-Table Reloaded 存放文件。"
459
 
460
- #: controllers/controller-admin.php:961
461
  msgid "The uploaded dump file is empty. Please upload a valid dump file."
462
- msgstr "您上传的存放文件是空的。请上传一个有效的存放文件。"
463
 
464
- #: controllers/controller-admin.php:990
465
  msgid "All Tables, Settings and Options were successfully imported."
466
  msgstr "成功导入所有表格、设置和选项。"
467
 
468
- #: controllers/controller-admin.php:1019
469
  #, php-format
470
  msgid "Table &quot;%s&quot; exported successfully."
471
  msgstr "成功导出表格 &quot;%s&quot;。"
472
 
473
- #: controllers/controller-admin.php:1064
474
  #: views/view-options.php:232
475
  msgid "You do not have sufficient rights to access the Plugin Options."
476
  msgstr "您没有足够的权限来访问插件选项。"
477
 
478
- #: controllers/controller-admin.php:1119
479
  msgid "Options saved successfully."
480
  msgstr "成功保存选项。"
481
 
482
- #: controllers/controller-admin.php:1122
483
  #, php-format
484
  msgid "<a href=\"%s\">Click here to Proceed.</a>"
485
  msgstr "<a href=\"%s\">单击这里执行操作。</a>"
486
 
487
- #: controllers/controller-admin.php:1188
488
  msgid "There is no table with this ID!"
489
  msgstr "不存在该ID的表格。"
490
 
491
- #: controllers/controller-admin.php:1225
492
  msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
493
  msgstr "非常感谢您的捐赠!您为 WP-Table Reloaded 的进一步开发增添了力量!"
494
 
495
- #: controllers/controller-admin.php:1227
496
  #, php-format
497
  msgid "No problem! I still hope you enjoy the benefits that WP-Table Reloaded brings to you. If you should want to change your mind, you'll always find the &quot;%s&quot; button on the <a href=\"%s\">WP-Table Reloaded website</a>."
498
  msgstr "没关系!我仍然希望您能够享受 WP-Table Reloaded 带给您的便利。如果您改变了主意,还可以找到 &quot;%s&quot; 按钮,只需访问 <a href=\"%s\">WP-Table Reloaded 网站</a>。"
499
 
500
- #: controllers/controller-admin.php:1227
501
- #: controllers/controller-admin.php:1655
502
  msgid "Donate"
503
  msgstr "捐助"
504
 
505
- #: controllers/controller-admin.php:1250
506
- #: controllers/controller-admin.php:1257
507
  msgid "List of Tables"
508
  msgstr "表格列表"
509
 
510
- #. #-#-#-#-# plugin.pot (WP-Table Reloaded 1.7-beta1) #-#-#-#-#
511
- #. Plugin Name of an extension
512
- #: controllers/controller-admin.php:1250
513
- #: controllers/controller-admin.php:1254
514
- #: controllers/controller-admin.php:1256
515
  msgid "WP-Table Reloaded"
516
- msgstr "WP-Table Reloaded"
517
 
518
- #: controllers/controller-admin.php:1251
519
- #: controllers/controller-admin.php:1287
520
  msgid "Add new Table"
521
  msgstr "增加表格"
522
 
523
- #: controllers/controller-admin.php:1252
524
- #: controllers/controller-admin.php:1288
525
  msgid "Import a Table"
526
  msgstr "导入表格"
527
 
528
- #: controllers/controller-admin.php:1253
529
- #: controllers/controller-admin.php:1289
530
  msgid "Export a Table"
531
  msgstr "导出表格"
532
 
533
- #: controllers/controller-admin.php:1254
534
- #: controllers/controller-admin.php:1295
535
  #: views/view-edit.php:342
536
  #: views/view-edit.php:357
537
  #: views/view-export.php:10
538
  msgid "Plugin Options"
539
  msgstr "插件选项"
540
 
541
- #: controllers/controller-admin.php:1255
542
  msgid "About WP-Table Reloaded"
543
  msgstr "关于 WP-Table Reloaded"
544
 
545
- #: controllers/controller-admin.php:1263
546
  #, php-format
547
  msgid "Edit Table &quot;%s&quot; (ID %s)"
548
  msgstr "编辑表格 &quot;%s&quot; (ID %s)"
549
 
550
- #: controllers/controller-admin.php:1264
551
  #, php-format
552
  msgid "Preview of Table &quot;%s&quot; (ID %s)"
553
  msgstr "预览表格 &quot;%s&quot; (ID %s)"
554
 
555
- #: controllers/controller-admin.php:1286
556
  msgid "List Tables"
557
  msgstr "所有表格"
558
 
559
- #: controllers/controller-admin.php:1296
560
  msgid "About the plugin"
561
  msgstr "关于该插件"
562
 
563
- #: controllers/controller-admin.php:1651
564
  msgid "WP-Table Reloaded Plugin Page"
565
  msgstr "WP-Table Reloaded 插件页面"
566
 
567
- #: controllers/controller-admin.php:1651
568
  msgid "Plugin Page"
569
  msgstr "插件页面"
570
 
571
- #: controllers/controller-admin.php:1652
572
  msgid "Frequently Asked Questions"
573
  msgstr "常见问题"
574
 
575
- #: controllers/controller-admin.php:1652
576
  msgid "FAQ"
577
  msgstr "FAQ"
578
 
579
- #: controllers/controller-admin.php:1653
580
  msgid "Support"
581
  msgstr "支持"
582
 
583
- #: controllers/controller-admin.php:1654
584
  msgid "Plugin Documentation"
585
  msgstr "插件文档"
586
 
587
- #: controllers/controller-admin.php:1654
588
  msgid "Documentation"
589
  msgstr "文档"
590
 
591
- #: controllers/controller-admin.php:1655
592
  msgid "Support WP-Table Reloaded with your donation!"
593
  msgstr "通过您的捐助来支持 WP-Table Reloaded!"
594
 
595
- #: controllers/controller-admin.php:1694
596
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
597
  msgstr "您真的想激活这个吗?您应该在卸载之前才进行这个操作!"
598
 
599
- #: controllers/controller-admin.php:1695
600
  msgid "URL of link to insert"
601
  msgstr "插入的链接地址"
602
 
603
- #: controllers/controller-admin.php:1696
604
  msgid "Text of link"
605
  msgstr "链接说明"
606
 
607
- #: controllers/controller-admin.php:1697
608
  msgid "To insert the following HTML code for a link into a cell, just click the cell after closing this dialog."
609
  msgstr "要将下面的HTML链接代码插入一个单元格,只需在关闭该对话框后单击您要插入的表格单元。"
610
 
611
- #: controllers/controller-admin.php:1698
612
  msgid "To insert an image, click &quot;OK&quot; and then click into the cell into which you want to insert the image."
613
  msgstr "要插入一幅图片,单击&quot;OK&quot;,然后点击进入您要插入图片的单元格。"
614
 
615
- #: controllers/controller-admin.php:1698
616
  msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
617
  msgstr "这将会打开媒体库,您可以从中选择想要插入的图片,或者插入图片URL地址。"
618
 
619
- #: controllers/controller-admin.php:1698
620
  #, php-format
621
  msgid "Click the &quot;%s&quot; button to insert the image."
622
  msgstr "单击 &quot;%s&quot; 按钮来插入图片。"
623
 
624
- #: controllers/controller-admin.php:1698
625
  msgid "Insert into Post"
626
  msgstr "嵌入到文章"
627
 
628
- #: controllers/controller-admin.php:1699
629
  msgid "To combine cells within a row, click into the cell to the right of the cell that has the content the combined cells shall have."
630
  msgstr "要合并一行里的多个单元格,点击进入紧接其右的那一个单元格。"
631
 
632
- #: controllers/controller-admin.php:1700
633
  msgid "To combine cells within a column, click into the cell below the cell that has the content the combined cells shall have."
634
  msgstr "要合并一列里的多个单元格,点击进入紧接其下的那一个单元格。"
635
 
636
- #: controllers/controller-admin.php:1701
637
  msgid "Do you want to copy the selected tables?"
638
  msgstr "您想复制选中的表格吗?"
639
 
640
- #: controllers/controller-admin.php:1702
641
  msgid "The selected tables and all content will be erased. Do you really want to delete them?"
642
  msgstr "选中表格和其中的所有数据都将被清除。您真的要删除吗?"
643
 
644
- #: controllers/controller-admin.php:1703
645
  msgid "Do you really want to import the selected tables from the wp-Table plugin?"
646
  msgstr "您真的要从wp-Table插件中导入选定的表格吗?"
647
 
648
- #: controllers/controller-admin.php:1704
649
  msgid "Do you want to copy this table?"
650
  msgstr "您想复制这个表格吗?"
651
 
652
- #: controllers/controller-admin.php:1705
653
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
654
  msgstr "整个表格和其中的所有内容都将被清除。您真的要删除吗?"
655
 
656
- #: controllers/controller-admin.php:1706
657
  msgid "Do you really want to delete the selected rows?"
658
  msgstr "您真的要删除选定的行吗?"
659
 
660
- #: controllers/controller-admin.php:1707
661
  msgid "Do you really want to delete the selected columns?"
662
  msgstr "您真的要删除选定的列吗?"
663
 
664
- #: controllers/controller-admin.php:1708
665
- #: controllers/controller-admin.php:1712
666
- #: controllers/controller-admin.php:1714
667
  msgid "You have not selected any rows."
668
  msgstr "您还没有选定任何行。"
669
 
670
- #: controllers/controller-admin.php:1709
671
- #: controllers/controller-admin.php:1713
672
- #: controllers/controller-admin.php:1715
673
  msgid "You have not selected any columns."
674
  msgstr "您还没有选定任何列。"
675
 
676
- #: controllers/controller-admin.php:1710
677
  msgid "You can not delete all rows of the table at once!"
678
  msgstr "您不能一次删除表格中的所有行!"
679
 
680
- #: controllers/controller-admin.php:1711
681
  msgid "You can not delete all columns of the table at once!"
682
  msgstr "您不能一次删除表格中的所有列!"
683
 
684
- #: controllers/controller-admin.php:1716
685
  msgid "Do you really want to import this table from the wp-Table plugin?"
686
  msgstr "您真的要从wp-Table插件中导入该表格吗?"
687
 
688
- #: controllers/controller-admin.php:1717
689
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
690
  msgstr "您真的要卸载该插件并删除<strong>所有</strong>数据吗?"
691
 
692
- #: controllers/controller-admin.php:1718
693
  msgid "Are you really sure?"
694
  msgstr "您确定吗?"
695
 
696
- #: controllers/controller-admin.php:1719
697
  msgid "Do you really want to change the ID of the table?"
698
  msgstr "您真的要更改该表格的ID吗?"
699
 
700
- #: controllers/controller-admin.php:1720
701
  msgid "To show this Custom Data Field, use this shortcode:"
702
  msgstr "要显示该自定义数据域,请使用下面的代码:"
703
 
704
- #: controllers/controller-admin.php:1721
705
  msgid "To show this table, use this shortcode:"
706
  msgstr "要显示该表格,请使用下面的代码:"
707
 
708
- #: controllers/controller-admin.php:1722
709
  msgid "Warning: You will lose all current Tables and Settings! You should create a backup first. Be warned!"
710
  msgstr "警告:您将会丢失当前的所有表格和设置!在操作之前您应该先进行备份。请谨慎操作!"
711
 
712
- #: controllers/controller-admin.php:1723
713
  msgid "You have made changes to the content of this table and not yet saved them."
714
  msgstr "您更改了当前表格的内容但是还没有保存。"
715
 
716
- #: controllers/controller-admin.php:1723
717
  #, php-format
718
  msgid "You should first click &quot;%s&quot; or they will be lost if you navigate away from this page."
719
  msgstr "您应该先单击 &quot;%s&quot; 否则您离开该页面时将丢失所有未保存的数据。"
720
 
721
- #: controllers/controller-admin.php:1723
722
  #: views/view-edit.php:41
723
  #: views/view-edit.php:253
724
  #: views/view-edit.php:405
@@ -726,56 +718,56 @@ msgstr "您应该先单击 &quot;%s&quot; 否则您离开该页面时将丢失
726
  msgid "Update Changes"
727
  msgstr "保存更改"
728
 
729
- #: controllers/controller-admin.php:1766
730
  #: views/view-about.php:14
731
  #: views/view-list.php:2
732
  msgid "Table"
733
  msgstr "表格"
734
 
735
- #: controllers/controller-admin.php:1767
736
  msgid "Insert a Table"
737
  msgstr "插入表格"
738
 
739
- #: controllers/controller-admin.php:1828
740
  msgid "Please wait..."
741
  msgstr "请稍等……"
742
 
743
- #: controllers/controller-admin.php:1829
744
  msgid "Show _MENU_ Tables"
745
  msgstr "显示表格_MENU_"
746
 
747
- #: controllers/controller-admin.php:1830
748
  #: views/view-ajax_list.php:53
749
  #: views/view-export.php:71
750
  #: views/view-list.php:88
751
  msgid "No tables were found."
752
  msgstr "没有找到表格。"
753
 
754
- #: controllers/controller-admin.php:1831
755
  msgid "_START_ to _END_ of _TOTAL_ Tables"
756
  msgstr "从_START_到_END_一共_TOTAL_个表格"
757
 
758
- #: controllers/controller-admin.php:1832
759
  msgid "(filtered from _MAX_ Tables)"
760
  msgstr "(从_MAX_个表格中筛选出)"
761
 
762
- #: controllers/controller-admin.php:1833
763
  msgid "Filter:"
764
  msgstr "筛选:"
765
 
766
- #: controllers/controller-admin.php:1834
767
  msgid "First"
768
  msgstr "第一"
769
 
770
- #: controllers/controller-admin.php:1835
771
  msgid "Back"
772
  msgstr "后退"
773
 
774
- #: controllers/controller-admin.php:1836
775
  msgid "Next"
776
  msgstr "下一个"
777
 
778
- #: controllers/controller-admin.php:1837
779
  msgid "Last"
780
  msgstr "最后一个"
781
 
@@ -785,7 +777,7 @@ msgstr "插件功能"
785
 
786
  #: views/view-about.php:7
787
  msgid "WP-Table Reloaded allows you to create and manage tables in the admin-area of WordPress."
788
- msgstr "WP-Table Reloaded 允许您在 WordPress 管理后台创建和管理表格。"
789
 
790
  #: views/view-about.php:7
791
  msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
@@ -849,62 +841,62 @@ msgstr "为此,每个表格都被赋予一个 CSS 类作为 CSS 样式选择
849
  msgid "Please see the <a href=\"%s\">documentation</a> for a list of these selectors and for styling examples."
850
  msgstr "请参考 <a href=\"%s\">文档</a> 获取选择器信息和示例。"
851
 
852
- #: views/view-about.php:20
853
  msgid "More Information and Documentation"
854
  msgstr "更多信息和文档"
855
 
856
- #: views/view-about.php:27
857
  msgid "Help and Support"
858
  msgstr "帮助与支持"
859
 
860
- #: views/view-about.php:29
861
  #, php-format
862
  msgid "If you do not find an answer there, please <a href=\"%s\">open a new thread</a> in the WordPress Support Forums with the tag &quot;wp-table-reloaded&quot;."
863
- msgstr "如果您在这里找不到答案,请在WordPress支持论坛 <a href=\"%s\">新建一个话题</a>,并给话题加上 &quot;wp-table-reloaded&quot; 标签。"
864
 
865
- #: views/view-about.php:34
866
  msgid "Author and License"
867
  msgstr "作者和授权"
868
 
869
- #: views/view-about.php:36
870
  #, php-format
871
  msgid "This plugin was written by <a href=\"%s\">Tobias B&auml;thge</a>."
872
  msgstr "该插件由 <a href=\"%s\">Tobias B&auml;thge</a>编写。"
873
 
874
- #: views/view-about.php:36
875
  msgid "It is licensed as Free Software under GPL 2."
876
  msgstr "遵照 GPL 2 发行为自由软件。"
877
 
878
- #: views/view-about.php:36
879
  #, php-format
880
  msgid "Please rate the plugin in the <a href=\"%s\">WordPress Plugin Directory</a>."
881
  msgstr "请通过 <a href=\"%s\">WordPress 插件目录</a> 为该插件评分。"
882
 
883
- #: views/view-about.php:36
884
  msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
885
  msgstr "捐助和好的评级会激励我进一步开发该插件,并提供更多的支持。不管多少都好!谢谢!"
886
 
887
- #: views/view-about.php:41
888
  msgid "Credits and Thanks"
889
  msgstr "鸣谢"
890
 
891
- #: views/view-about.php:44
892
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
893
  msgstr "感谢 <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> 开发的 wp-Table 插件原型,"
894
 
895
- #: views/view-about.php:45
896
  msgid "Allan Jardine for the <a href=\"http://www.datatables.net/\">DataTables jQuery plugin</a>,"
897
  msgstr "Allan Jardine 开发的 <a href=\"http://www.datatables.net/\">DataTables jQuery plugin</a>,"
898
 
899
- #: views/view-about.php:46
900
  msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
901
  msgstr "Christian Bach 开发的 <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
902
 
903
- #: views/view-about.php:47
904
  msgid "Soeren Krings for its extension <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
905
  msgstr "Soeren Krings 的扩展 <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
906
 
907
- #: views/view-about.php:48
908
  msgid "the submitters of translations:"
909
  msgstr "翻译人员:"
910
 
@@ -1057,11 +1049,11 @@ msgstr "表格预览"
1057
 
1058
  #: views/view-ajax_preview.php:4
1059
  msgid "Because of CSS styling, the table might look different on your page!"
1060
- msgstr "因为 CSS 样式问题,表格在您的页面上可能看起来不太一样!"
1061
 
1062
  #: views/view-ajax_preview.php:4
1063
  msgid "The JavaScript libraries are also not available in this preview."
1064
- msgstr "JavaScript 库在预览中不可用。"
1065
 
1066
  #: views/view-edit.php:8
1067
  msgid "On this page, you can edit the content of the table."
@@ -1705,7 +1697,7 @@ msgstr "删除表格"
1705
 
1706
  #: views/view-options.php:3
1707
  msgid "WP-Table Reloaded has several options which affect the plugin behavior in different areas."
1708
- msgstr "WP-Table Reloaded 的选项能使得它在不同位置可以有不同的特征。"
1709
 
1710
  #: views/view-options.php:4
1711
  msgid "Frontend Options influence the output and used features of tables in pages, posts or text-widgets."
@@ -2037,22 +2029,31 @@ msgstr "成功停用插件。"
2037
  msgid "All tables, data and options were deleted. You may now manually remove the plugin's subfolder from your WordPress plugin folder or use the \"Delete\" link on the Plugins page."
2038
  msgstr "所有表格、数据和选项都已经删除。现在,您可以从 WordPress 插件文件夹手工删除,或者点击插件页面的 \"删除\" 链接以删除该插件的安装文件夹。"
2039
 
2040
- #. Plugin URI of an extension
2041
  msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2042
  msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2043
 
2044
- #. Description of an extension
2045
  msgid "This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML."
2046
  msgstr "该插件让您能够通过WordPress的管理控制台轻松创建和管理表格。方便的后台管理让您可以轻松操作表格数据。您还可以使用一小段代码或者利用模板标记功能将表格嵌入文章、页面或者文本小工具中。支持从CSV、XML和HTML文档导入表格,或者将表格导出为CSV、XML和HTML文档。"
2047
 
2048
- #. Author of an extension
2049
  msgid "Tobias B&auml;thge"
2050
  msgstr "Tobias B&auml;thge"
2051
 
2052
- #. Author URI of an extension
2053
  msgid "http://tobias.baethge.com/"
2054
  msgstr "http://tobias.baethge.com/"
2055
 
 
 
 
 
 
 
 
 
 
2056
  #~ msgid ""
2057
  #~ "Among other things, this version adds support for \"colspan\" and "
2058
  #~ "\"rowspan\" of table cells and enables the WP Search to search through "
1
+ # Translation of the WordPress plugin WP-Table Reloaded 1.8 by Tobias B&auml;thge.
2
  # Copyright (C) 2010 Tobias B&auml;thge
3
  # This file is distributed under the same license as the WP-Table Reloaded package.
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
  #
6
  msgid ""
7
  msgstr ""
8
+ "Project-Id-Version: WP-Table Reloaded 1.8\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
10
+ "POT-Creation-Date: 2010-08-05 13:22+0000\n"
11
+ "PO-Revision-Date: 2010-08-17 21:14+0800\n"
12
  "Last-Translator: lonelicloud <haoxian.zeng@gmail.com>\n"
13
+ "Language-Team: Haoxian Zeng\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=2; plural=n!=1;\n"
18
  "X-Poedit-Language: Chinese\n"
19
  "X-Poedit-Country: CHINA\n"
20
 
54
  msgstr "| (通道符)"
55
 
56
  #: classes/helper.class.php:40
57
+ #: views/view-about.php:21
58
  #, php-format
59
  msgid "More information about WP-Table Reloaded can be found on the <a href=\"%s\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress Plugin Directory</a>."
60
+ msgstr "关于 WP-Table Reloaded 的更多信息请参考该 <a href=\"%s\">插件网站</a> 或者 <a href=\"%s\">WordPress插件目录</a> 上的相关页面。中文文档请访问 <a href=\"http://cnzhx.net/\">不存在的空间</a>。"
61
 
62
  #: classes/helper.class.php:41
63
+ #: views/view-about.php:21
64
  #, php-format
65
  msgid "For technical information, see the <a href=\"%s\">documentation</a>."
66
  msgstr "技术文档请参考 <a href=\"%s\">文档</a>。"
67
 
68
  #: classes/helper.class.php:42
69
+ #: views/view-about.php:28
70
  #, php-format
71
  msgid "<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress Support Forums</a>."
72
  msgstr "对该插件的<a href=\"%s\">支持</a> 由 <a href=\"%s\">WordPress支持论坛</a> 提供。"
73
 
74
  #: classes/helper.class.php:43
75
+ #: views/view-about.php:28
76
  #, php-format
77
  msgid "Before asking for support, please carefully read the <a href=\"%s\">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums."
78
  msgstr "在寻求帮助之前,请仔细阅读 <a href=\"%s\">常见问题</a> ,您可能能够找到常见问题的解答,如果还不能解答您的疑问,请在论坛中搜索。"
79
 
80
  #: classes/helper.class.php:44
81
+ #: views/view-about.php:35
82
  #, php-format
83
  msgid "If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is recommended."
84
  msgstr "如果您喜欢这个插件,请考虑通过 <a href=\"%s\"><strong>捐助</strong></a> 来支持插件的开发。"
85
 
86
  #: classes/helper.class.php:74
87
  msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
88
+ msgstr "感谢使用 <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>(<a href=\"http://cnzhx.net/wordpress-plugins/wp-table-reloaded/\">WordPress表格</a>)。"
89
 
90
  #: classes/helper.class.php:74
91
  #, php-format
127
  msgid "Help"
128
  msgstr "帮助"
129
 
130
+ #: classes/render.class.php:141
131
  #: views/view-list.php:60
132
  msgid "Edit"
133
  msgstr "编辑"
134
 
135
  #: controllers/controller-admin.php:256
136
+ msgid "Belarusian"
137
+ msgstr "白俄罗斯语"
138
+
139
+ #: controllers/controller-admin.php:257
140
  msgid "Czech"
141
  msgstr "捷克语"
142
 
143
+ #: controllers/controller-admin.php:258
144
  msgid "German"
145
  msgstr "德语"
146
 
147
+ #: controllers/controller-admin.php:259
148
  msgid "English"
149
  msgstr "英语"
150
 
151
+ #: controllers/controller-admin.php:260
152
  msgid "Spanish"
153
  msgstr "西班牙语"
154
 
155
+ #: controllers/controller-admin.php:261
156
  msgid "Finnish"
157
  msgstr "芬兰语"
158
 
159
+ #: controllers/controller-admin.php:262
160
+ msgid "French"
161
+ msgstr "法语"
162
+
163
+ #: controllers/controller-admin.php:263
164
  msgid "Hindi"
165
  msgstr "北印度语"
166
 
167
+ #: controllers/controller-admin.php:264
168
  msgid "Italian"
169
  msgstr "意大利语"
170
 
171
+ #: controllers/controller-admin.php:265
172
  msgid "Japanese"
173
  msgstr "日语"
174
 
175
+ #: controllers/controller-admin.php:266
176
+ msgid "Polish"
177
+ msgstr "波兰语"
178
+
179
+ #: controllers/controller-admin.php:267
180
  msgid "Brazilian Portuguese"
181
  msgstr "巴西葡萄牙语"
182
 
183
+ #: controllers/controller-admin.php:268
 
 
 
 
184
  msgid "Russian"
185
  msgstr "俄语"
186
 
187
+ #: controllers/controller-admin.php:269
188
  msgid "Slovak"
189
  msgstr "斯洛伐克语"
190
 
191
+ #: controllers/controller-admin.php:270
192
  msgid "Swedish"
193
  msgstr "瑞典语"
194
 
 
 
 
 
195
  #: controllers/controller-admin.php:271
196
+ msgid "Ukrainian"
197
+ msgstr "乌克兰语"
198
 
199
  #: controllers/controller-admin.php:272
200
+ msgid "Chinese (Simplified)"
201
+ msgstr "中文(简体)"
 
 
 
 
 
 
 
 
 
 
 
 
202
 
203
+ #: controllers/controller-admin.php:302
204
  #, php-format
205
  msgid "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s\">documentation</a>, and the <a href=\"%s\">support</a> section."
206
+ msgstr "欢迎使用 WP-Table Reloaded %s。如果您有任何疑问或问题,请参考 <a href=\"%s\">FAQ</a>,<a href=\"%s\">文档</a>或 <a href=\"%s\">支持</a> 页面。"
207
 
208
+ #: controllers/controller-admin.php:303
209
  #, php-format
210
  msgid "Thank you for upgrading to WP-Table Reloaded %s."
211
  msgstr "谢谢,您已经升级到 WP-Table Reloaded %s。"
212
 
213
+ #: controllers/controller-admin.php:303
214
+ msgid "This version includes several enhancements, like an updated DataTables library, several enhancements to certain features and a few small bug fixes."
215
+ msgstr "该版本包含一些功能增强,如更新版本的数据表库,对几项特色功能的改进,以及几个小的错误修正。"
216
 
217
+ #: controllers/controller-admin.php:303
218
  #, php-format
219
  msgid "Please read the <a href=\"%s\">release announcement</a> for more information."
220
  msgstr "请阅读 <a href=\"%s\">发行说明</a> 获取更多信息。"
221
 
222
+ #: controllers/controller-admin.php:303
223
  #, php-format
224
  msgid "If you like the new features and enhancements, I would appreciate a small <a href=\"%s\">donation</a>. Thank you."
225
  msgstr "如果您喜欢这些新特性和改进,请 <a href=\"%s\">捐助</a> 一小笔资金。谢谢!"
226
 
227
+ #: controllers/controller-admin.php:308
228
  msgid "Hide this message"
229
  msgstr "隐藏信息"
230
 
231
+ #: controllers/controller-admin.php:316
232
  msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago."
233
  msgstr "感谢您使用该插件!您安装 WP-Table Reloaded 已经有一个多月了。"
234
 
235
+ #: controllers/controller-admin.php:316
236
  #, php-format
237
  msgid "If it works and you are satisfied with the results of managing your %s table, isn't it worth at least one dollar or euro?"
238
  msgid_plural "If it works and you are satisfied with the results of managing your %s tables, isn't it worth at least one dollar or euro?"
239
+ msgstr[0] "如果它运行良好,而您又非常满意用它来管理您的 %s 表格,难道这还不值至少 1 美元吗?"
240
+ msgstr[1] "如果它运行良好,而您又非常满意用它来管理您的 %s 表格,难道这还不值至少 1 美元吗?"
241
 
242
+ #: controllers/controller-admin.php:317
243
  #, php-format
244
  msgid "<a href=\"%s\">Donations</a> help me to continue support and development of this <i>free</i> software - things for which I spend countless hours of my free time! Thank you!"
245
  msgstr "请通过<a href=\"%s\">捐助</a> 帮助我继续支持和改进这个 <i>免费</i> 软件 - 为了这个软件我已经牺牲了数不清的休息时间!谢谢!"
246
 
247
+ #: controllers/controller-admin.php:318
248
  msgid "Sure, no problem!"
249
  msgstr "当然,没问题!"
250
 
251
+ #: controllers/controller-admin.php:319
252
  msgid "I already donated."
253
  msgstr "已经捐助过了。"
254
 
255
+ #: controllers/controller-admin.php:320
256
  msgid "No, thanks. Don't ask again."
257
  msgstr "不,谢谢。不要再提醒了。"
258
 
259
+ #: controllers/controller-admin.php:348
260
  #, php-format
261
  msgid "Table &quot;%s&quot; added successfully."
262
  msgstr "成功添加表格 &quot;%s&quot; 。"
263
 
264
+ #: controllers/controller-admin.php:379
265
  #, php-format
266
  msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
267
  msgstr "成功编辑表格。这个表格的新ID是 %s。您可能需要调整以前的相应代码来使它正确运行。"
268
 
269
+ #: controllers/controller-admin.php:381
270
  #, php-format
271
  msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
272
  msgstr "该ID不能从 %s 更改为 %s,因为新ID已经被另一个表格使用。"
273
 
274
+ #: controllers/controller-admin.php:384
275
  msgid "Table edited successfully."
276
  msgstr "成功编辑表格。"
277
 
278
+ #: controllers/controller-admin.php:431
279
  msgid "Rows swapped successfully."
280
  msgstr "成功交换行。"
281
 
282
+ #: controllers/controller-admin.php:452
283
  msgid "Columns swapped successfully."
284
  msgstr "成功交换列。"
285
 
286
+ #: controllers/controller-admin.php:493
287
  msgid "Table sorted successfully."
288
  msgstr "表格排序成功。"
289
 
290
+ #: controllers/controller-admin.php:514
291
  msgid "Row moved successfully."
292
  msgstr "成功移动行。"
293
 
294
+ #: controllers/controller-admin.php:539
295
  msgid "Column moved successfully."
296
  msgstr "成功移动列。"
297
 
298
+ #: controllers/controller-admin.php:547
299
  msgid "Row could not be deleted."
300
  msgid_plural "Rows could not be deleted."
301
  msgstr[0] "不能删除该行。"
302
  msgstr[1] "不能删除这些行。"
303
 
304
+ #: controllers/controller-admin.php:556
305
  msgid "Row deleted successfully."
306
  msgid_plural "Rows deleted successfully."
307
  msgstr[0] "成功删除行。"
308
  msgstr[1] "成功删除行。"
309
 
310
+ #: controllers/controller-admin.php:566
311
  msgid "Column could not be deleted."
312
  msgid_plural "Columns could not be deleted."
313
  msgstr[0] "不能删除该列。"
314
  msgstr[1] "不能删除这些行列。"
315
 
316
+ #: controllers/controller-admin.php:579
317
  msgid "Column deleted successfully."
318
  msgid_plural "Columns deleted successfully."
319
  msgstr[0] "成功删除列。"
320
  msgstr[1] "成功删除列。"
321
 
322
+ #: controllers/controller-admin.php:602
323
  msgid "Row inserted successfully."
324
  msgid_plural "Rows inserted successfully."
325
  msgstr[0] "成功插入行。"
326
  msgstr[1] "成功插入行。"
327
 
328
+ #: controllers/controller-admin.php:629
329
  msgid "Column inserted successfully."
330
  msgid_plural "Columns inserted successfully."
331
  msgstr[0] "成功插入列。"
332
  msgstr[1] "成功插入列。"
333
 
334
+ #: controllers/controller-admin.php:644
335
  msgid "Row added successfully."
336
  msgid_plural "Rows added successfully."
337
  msgstr[0] "成功添加行。"
338
  msgstr[1] "成功添加行。"
339
 
340
+ #: controllers/controller-admin.php:658
341
  msgid "Column added successfully."
342
  msgid_plural "Columns added successfully."
343
  msgstr[0] "成功添加列。"
344
  msgstr[1] "成功添加列。"
345
 
346
+ #: controllers/controller-admin.php:665
347
  msgid "Could not add Custom Data Field, because you did not enter a name."
348
  msgstr "不能加入自定义数据域,因为您还没有输入名称。"
349
 
350
+ #: controllers/controller-admin.php:670
351
  msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
352
  msgstr "不能加入自定义数据域,因为您输入的名称是其它表格数据的保留名称。"
353
 
354
+ #: controllers/controller-admin.php:676
355
  msgid "Could not add Custom Data Field, because the name contained illegal characters."
356
  msgstr "不能加入自定义数据域,因为您输入的名称中包含有非法字符。"
357
 
358
+ #: controllers/controller-admin.php:680
359
  msgid "Could not add Custom Data Field, because a Field with that name already exists."
360
  msgstr "不能加入自定义数据域,因为已经有一个同名的域。"
361
 
362
+ #: controllers/controller-admin.php:686
363
  msgid "Custom Data Field added successfully."
364
  msgstr "成功添加自定义数据域。"
365
 
366
+ #: controllers/controller-admin.php:726
367
+ #: controllers/controller-admin.php:782
368
  msgid "Copy of"
369
  msgstr "复制"
370
 
371
+ #: controllers/controller-admin.php:730
372
  msgid "Table copied successfully."
373
  msgid_plural "Tables copied successfully."
374
  msgstr[0] "成功编辑表格。"
375
  msgstr[1] "成功编辑表格。"
376
 
377
+ #: controllers/controller-admin.php:736
378
  msgid "Table deleted successfully."
379
  msgid_plural "Tables deleted successfully."
380
  msgstr[0] "成功删除表格。"
381
  msgstr[1] "成功删除表格。"
382
 
383
+ #: controllers/controller-admin.php:757
384
+ #: controllers/controller-admin.php:912
385
+ #: controllers/controller-admin.php:950
386
  msgid "Table imported successfully."
387
  msgid_plural "Tables imported successfully."
388
  msgstr[0] "成功导入表格。"
389
  msgstr[1] "成功导入表格。"
390
 
391
+ #: controllers/controller-admin.php:764
392
  msgid "You did not select any tables!"
393
  msgstr "您没有选中任何表格!"
394
 
395
+ #: controllers/controller-admin.php:787
396
  #, php-format
397
  msgid "Table &quot;%s&quot; copied successfully."
398
  msgstr "成功复制表格 &quot;%s&quot;。"
399
 
400
+ #: controllers/controller-admin.php:805
401
  #, php-format
402
  msgid "Table &quot;%s&quot; deleted successfully."
403
  msgstr "成功删除表格 &quot;%s&quot;。"
404
 
405
+ #: controllers/controller-admin.php:813
406
  msgid "Custom Data Field deleted successfully."
407
  msgstr "成功删除自定义数据域。"
408
 
409
+ #: controllers/controller-admin.php:815
410
  msgid "Custom Data Field could not be deleted."
411
  msgstr "该自定义数据域无法删除。"
412
 
413
+ #: controllers/controller-admin.php:821
414
  msgid "Delete failed."
415
  msgstr "删除失败。"
416
 
417
+ #: controllers/controller-admin.php:853
418
+ #: controllers/controller-admin.php:863
419
+ #: controllers/controller-admin.php:874
420
  msgid "Imported Table"
421
  msgstr "导入表格"
422
 
423
+ #: controllers/controller-admin.php:854
424
+ #: controllers/controller-admin.php:875
425
  #, php-format
426
  msgid "from %s"
427
  msgstr "自 %s"
428
 
429
+ #: controllers/controller-admin.php:864
430
  msgid "via form"
431
  msgstr "经由形式"
432
 
433
+ #: controllers/controller-admin.php:891
434
+ #: controllers/controller-admin.php:928
435
  msgid "Table could not be imported."
436
  msgstr "无法导入该表格。"
437
 
438
+ #: controllers/controller-admin.php:908
439
  #, php-format
440
  msgid "Table %s (%s) replaced successfully."
441
  msgstr "成功替换表格 %s (%s)。"
442
 
443
+ #: controllers/controller-admin.php:958
444
+ #: controllers/controller-admin.php:1151
445
  msgid "You do not have sufficient rights to perform this action."
446
  msgstr "您没有足够的权限来完成此操作。"
447
 
448
+ #: controllers/controller-admin.php:965
449
  msgid "You did not upload a WP-Table Reloaded dump file."
450
+ msgstr "您还没有上传 WP-Table Reloaded 备份文件。"
451
 
452
+ #: controllers/controller-admin.php:974
453
  msgid "The uploaded dump file is empty. Please upload a valid dump file."
454
+ msgstr "您上传的存放文件是空的。请上传一个有效的备份文件。"
455
 
456
+ #: controllers/controller-admin.php:1003
457
  msgid "All Tables, Settings and Options were successfully imported."
458
  msgstr "成功导入所有表格、设置和选项。"
459
 
460
+ #: controllers/controller-admin.php:1032
461
  #, php-format
462
  msgid "Table &quot;%s&quot; exported successfully."
463
  msgstr "成功导出表格 &quot;%s&quot;。"
464
 
465
+ #: controllers/controller-admin.php:1077
466
  #: views/view-options.php:232
467
  msgid "You do not have sufficient rights to access the Plugin Options."
468
  msgstr "您没有足够的权限来访问插件选项。"
469
 
470
+ #: controllers/controller-admin.php:1132
471
  msgid "Options saved successfully."
472
  msgstr "成功保存选项。"
473
 
474
+ #: controllers/controller-admin.php:1135
475
  #, php-format
476
  msgid "<a href=\"%s\">Click here to Proceed.</a>"
477
  msgstr "<a href=\"%s\">单击这里执行操作。</a>"
478
 
479
+ #: controllers/controller-admin.php:1201
480
  msgid "There is no table with this ID!"
481
  msgstr "不存在该ID的表格。"
482
 
483
+ #: controllers/controller-admin.php:1238
484
  msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
485
  msgstr "非常感谢您的捐赠!您为 WP-Table Reloaded 的进一步开发增添了力量!"
486
 
487
+ #: controllers/controller-admin.php:1240
488
  #, php-format
489
  msgid "No problem! I still hope you enjoy the benefits that WP-Table Reloaded brings to you. If you should want to change your mind, you'll always find the &quot;%s&quot; button on the <a href=\"%s\">WP-Table Reloaded website</a>."
490
  msgstr "没关系!我仍然希望您能够享受 WP-Table Reloaded 带给您的便利。如果您改变了主意,还可以找到 &quot;%s&quot; 按钮,只需访问 <a href=\"%s\">WP-Table Reloaded 网站</a>。"
491
 
492
+ #: controllers/controller-admin.php:1240
493
+ #: controllers/controller-admin.php:1670
494
  msgid "Donate"
495
  msgstr "捐助"
496
 
497
+ #: controllers/controller-admin.php:1263
498
+ #: controllers/controller-admin.php:1270
499
  msgid "List of Tables"
500
  msgstr "表格列表"
501
 
502
+ #. #-#-#-#-# plugin.pot (WP-Table Reloaded 1.8) #-#-#-#-#
503
+ #. Plugin Name of the plugin/theme
504
+ #: controllers/controller-admin.php:1263
505
+ #: controllers/controller-admin.php:1267
506
+ #: controllers/controller-admin.php:1269
507
  msgid "WP-Table Reloaded"
508
+ msgstr "WordPress表格"
509
 
510
+ #: controllers/controller-admin.php:1264
511
+ #: controllers/controller-admin.php:1300
512
  msgid "Add new Table"
513
  msgstr "增加表格"
514
 
515
+ #: controllers/controller-admin.php:1265
516
+ #: controllers/controller-admin.php:1301
517
  msgid "Import a Table"
518
  msgstr "导入表格"
519
 
520
+ #: controllers/controller-admin.php:1266
521
+ #: controllers/controller-admin.php:1302
522
  msgid "Export a Table"
523
  msgstr "导出表格"
524
 
525
+ #: controllers/controller-admin.php:1267
526
+ #: controllers/controller-admin.php:1309
527
  #: views/view-edit.php:342
528
  #: views/view-edit.php:357
529
  #: views/view-export.php:10
530
  msgid "Plugin Options"
531
  msgstr "插件选项"
532
 
533
+ #: controllers/controller-admin.php:1268
534
  msgid "About WP-Table Reloaded"
535
  msgstr "关于 WP-Table Reloaded"
536
 
537
+ #: controllers/controller-admin.php:1276
538
  #, php-format
539
  msgid "Edit Table &quot;%s&quot; (ID %s)"
540
  msgstr "编辑表格 &quot;%s&quot; (ID %s)"
541
 
542
+ #: controllers/controller-admin.php:1277
543
  #, php-format
544
  msgid "Preview of Table &quot;%s&quot; (ID %s)"
545
  msgstr "预览表格 &quot;%s&quot; (ID %s)"
546
 
547
+ #: controllers/controller-admin.php:1299
548
  msgid "List Tables"
549
  msgstr "所有表格"
550
 
551
+ #: controllers/controller-admin.php:1310
552
  msgid "About the plugin"
553
  msgstr "关于该插件"
554
 
555
+ #: controllers/controller-admin.php:1666
556
  msgid "WP-Table Reloaded Plugin Page"
557
  msgstr "WP-Table Reloaded 插件页面"
558
 
559
+ #: controllers/controller-admin.php:1666
560
  msgid "Plugin Page"
561
  msgstr "插件页面"
562
 
563
+ #: controllers/controller-admin.php:1667
564
  msgid "Frequently Asked Questions"
565
  msgstr "常见问题"
566
 
567
+ #: controllers/controller-admin.php:1667
568
  msgid "FAQ"
569
  msgstr "FAQ"
570
 
571
+ #: controllers/controller-admin.php:1668
572
  msgid "Support"
573
  msgstr "支持"
574
 
575
+ #: controllers/controller-admin.php:1669
576
  msgid "Plugin Documentation"
577
  msgstr "插件文档"
578
 
579
+ #: controllers/controller-admin.php:1669
580
  msgid "Documentation"
581
  msgstr "文档"
582
 
583
+ #: controllers/controller-admin.php:1670
584
  msgid "Support WP-Table Reloaded with your donation!"
585
  msgstr "通过您的捐助来支持 WP-Table Reloaded!"
586
 
587
+ #: controllers/controller-admin.php:1709
588
  msgid "Do you really want to activate this? You should only do that right before uninstallation!"
589
  msgstr "您真的想激活这个吗?您应该在卸载之前才进行这个操作!"
590
 
591
+ #: controllers/controller-admin.php:1710
592
  msgid "URL of link to insert"
593
  msgstr "插入的链接地址"
594
 
595
+ #: controllers/controller-admin.php:1711
596
  msgid "Text of link"
597
  msgstr "链接说明"
598
 
599
+ #: controllers/controller-admin.php:1712
600
  msgid "To insert the following HTML code for a link into a cell, just click the cell after closing this dialog."
601
  msgstr "要将下面的HTML链接代码插入一个单元格,只需在关闭该对话框后单击您要插入的表格单元。"
602
 
603
+ #: controllers/controller-admin.php:1713
604
  msgid "To insert an image, click &quot;OK&quot; and then click into the cell into which you want to insert the image."
605
  msgstr "要插入一幅图片,单击&quot;OK&quot;,然后点击进入您要插入图片的单元格。"
606
 
607
+ #: controllers/controller-admin.php:1713
608
  msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
609
  msgstr "这将会打开媒体库,您可以从中选择想要插入的图片,或者插入图片URL地址。"
610
 
611
+ #: controllers/controller-admin.php:1713
612
  #, php-format
613
  msgid "Click the &quot;%s&quot; button to insert the image."
614
  msgstr "单击 &quot;%s&quot; 按钮来插入图片。"
615
 
616
+ #: controllers/controller-admin.php:1713
617
  msgid "Insert into Post"
618
  msgstr "嵌入到文章"
619
 
620
+ #: controllers/controller-admin.php:1714
621
  msgid "To combine cells within a row, click into the cell to the right of the cell that has the content the combined cells shall have."
622
  msgstr "要合并一行里的多个单元格,点击进入紧接其右的那一个单元格。"
623
 
624
+ #: controllers/controller-admin.php:1715
625
  msgid "To combine cells within a column, click into the cell below the cell that has the content the combined cells shall have."
626
  msgstr "要合并一列里的多个单元格,点击进入紧接其下的那一个单元格。"
627
 
628
+ #: controllers/controller-admin.php:1716
629
  msgid "Do you want to copy the selected tables?"
630
  msgstr "您想复制选中的表格吗?"
631
 
632
+ #: controllers/controller-admin.php:1717
633
  msgid "The selected tables and all content will be erased. Do you really want to delete them?"
634
  msgstr "选中表格和其中的所有数据都将被清除。您真的要删除吗?"
635
 
636
+ #: controllers/controller-admin.php:1718
637
  msgid "Do you really want to import the selected tables from the wp-Table plugin?"
638
  msgstr "您真的要从wp-Table插件中导入选定的表格吗?"
639
 
640
+ #: controllers/controller-admin.php:1719
641
  msgid "Do you want to copy this table?"
642
  msgstr "您想复制这个表格吗?"
643
 
644
+ #: controllers/controller-admin.php:1720
645
  msgid "The complete table and all content will be erased. Do you really want to delete it?"
646
  msgstr "整个表格和其中的所有内容都将被清除。您真的要删除吗?"
647
 
648
+ #: controllers/controller-admin.php:1721
649
  msgid "Do you really want to delete the selected rows?"
650
  msgstr "您真的要删除选定的行吗?"
651
 
652
+ #: controllers/controller-admin.php:1722
653
  msgid "Do you really want to delete the selected columns?"
654
  msgstr "您真的要删除选定的列吗?"
655
 
656
+ #: controllers/controller-admin.php:1723
657
+ #: controllers/controller-admin.php:1727
658
+ #: controllers/controller-admin.php:1729
659
  msgid "You have not selected any rows."
660
  msgstr "您还没有选定任何行。"
661
 
662
+ #: controllers/controller-admin.php:1724
663
+ #: controllers/controller-admin.php:1728
664
+ #: controllers/controller-admin.php:1730
665
  msgid "You have not selected any columns."
666
  msgstr "您还没有选定任何列。"
667
 
668
+ #: controllers/controller-admin.php:1725
669
  msgid "You can not delete all rows of the table at once!"
670
  msgstr "您不能一次删除表格中的所有行!"
671
 
672
+ #: controllers/controller-admin.php:1726
673
  msgid "You can not delete all columns of the table at once!"
674
  msgstr "您不能一次删除表格中的所有列!"
675
 
676
+ #: controllers/controller-admin.php:1731
677
  msgid "Do you really want to import this table from the wp-Table plugin?"
678
  msgstr "您真的要从wp-Table插件中导入该表格吗?"
679
 
680
+ #: controllers/controller-admin.php:1732
681
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
682
  msgstr "您真的要卸载该插件并删除<strong>所有</strong>数据吗?"
683
 
684
+ #: controllers/controller-admin.php:1733
685
  msgid "Are you really sure?"
686
  msgstr "您确定吗?"
687
 
688
+ #: controllers/controller-admin.php:1734
689
  msgid "Do you really want to change the ID of the table?"
690
  msgstr "您真的要更改该表格的ID吗?"
691
 
692
+ #: controllers/controller-admin.php:1735
693
  msgid "To show this Custom Data Field, use this shortcode:"
694
  msgstr "要显示该自定义数据域,请使用下面的代码:"
695
 
696
+ #: controllers/controller-admin.php:1736
697
  msgid "To show this table, use this shortcode:"
698
  msgstr "要显示该表格,请使用下面的代码:"
699
 
700
+ #: controllers/controller-admin.php:1737
701
  msgid "Warning: You will lose all current Tables and Settings! You should create a backup first. Be warned!"
702
  msgstr "警告:您将会丢失当前的所有表格和设置!在操作之前您应该先进行备份。请谨慎操作!"
703
 
704
+ #: controllers/controller-admin.php:1738
705
  msgid "You have made changes to the content of this table and not yet saved them."
706
  msgstr "您更改了当前表格的内容但是还没有保存。"
707
 
708
+ #: controllers/controller-admin.php:1738
709
  #, php-format
710
  msgid "You should first click &quot;%s&quot; or they will be lost if you navigate away from this page."
711
  msgstr "您应该先单击 &quot;%s&quot; 否则您离开该页面时将丢失所有未保存的数据。"
712
 
713
+ #: controllers/controller-admin.php:1738
714
  #: views/view-edit.php:41
715
  #: views/view-edit.php:253
716
  #: views/view-edit.php:405
718
  msgid "Update Changes"
719
  msgstr "保存更改"
720
 
721
+ #: controllers/controller-admin.php:1781
722
  #: views/view-about.php:14
723
  #: views/view-list.php:2
724
  msgid "Table"
725
  msgstr "表格"
726
 
727
+ #: controllers/controller-admin.php:1782
728
  msgid "Insert a Table"
729
  msgstr "插入表格"
730
 
731
+ #: controllers/controller-admin.php:1843
732
  msgid "Please wait..."
733
  msgstr "请稍等……"
734
 
735
+ #: controllers/controller-admin.php:1844
736
  msgid "Show _MENU_ Tables"
737
  msgstr "显示表格_MENU_"
738
 
739
+ #: controllers/controller-admin.php:1845
740
  #: views/view-ajax_list.php:53
741
  #: views/view-export.php:71
742
  #: views/view-list.php:88
743
  msgid "No tables were found."
744
  msgstr "没有找到表格。"
745
 
746
+ #: controllers/controller-admin.php:1846
747
  msgid "_START_ to _END_ of _TOTAL_ Tables"
748
  msgstr "从_START_到_END_一共_TOTAL_个表格"
749
 
750
+ #: controllers/controller-admin.php:1847
751
  msgid "(filtered from _MAX_ Tables)"
752
  msgstr "(从_MAX_个表格中筛选出)"
753
 
754
+ #: controllers/controller-admin.php:1848
755
  msgid "Filter:"
756
  msgstr "筛选:"
757
 
758
+ #: controllers/controller-admin.php:1849
759
  msgid "First"
760
  msgstr "第一"
761
 
762
+ #: controllers/controller-admin.php:1850
763
  msgid "Back"
764
  msgstr "后退"
765
 
766
+ #: controllers/controller-admin.php:1851
767
  msgid "Next"
768
  msgstr "下一个"
769
 
770
+ #: controllers/controller-admin.php:1852
771
  msgid "Last"
772
  msgstr "最后一个"
773
 
777
 
778
  #: views/view-about.php:7
779
  msgid "WP-Table Reloaded allows you to create and manage tables in the admin-area of WordPress."
780
+ msgstr "WP-Table Reloaded(中文名称:WordPress表格) 允许您在 WordPress 管理后台创建和管理表格。"
781
 
782
  #: views/view-about.php:7
783
  msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
841
  msgid "Please see the <a href=\"%s\">documentation</a> for a list of these selectors and for styling examples."
842
  msgstr "请参考 <a href=\"%s\">文档</a> 获取选择器信息和示例。"
843
 
844
+ #: views/view-about.php:19
845
  msgid "More Information and Documentation"
846
  msgstr "更多信息和文档"
847
 
848
+ #: views/view-about.php:26
849
  msgid "Help and Support"
850
  msgstr "帮助与支持"
851
 
852
+ #: views/view-about.php:28
853
  #, php-format
854
  msgid "If you do not find an answer there, please <a href=\"%s\">open a new thread</a> in the WordPress Support Forums with the tag &quot;wp-table-reloaded&quot;."
855
+ msgstr "如果您在这里找不到答案,请在WordPress支持论坛 <a href=\"%s\">新建一个话题</a>,并给话题加上 &quot;wp-table-reloaded&quot; 标签。或者到< href=\"http://cnzhx.net/bbs/\">中文支持论坛</a>发表新话题。"
856
 
857
+ #: views/view-about.php:33
858
  msgid "Author and License"
859
  msgstr "作者和授权"
860
 
861
+ #: views/view-about.php:35
862
  #, php-format
863
  msgid "This plugin was written by <a href=\"%s\">Tobias B&auml;thge</a>."
864
  msgstr "该插件由 <a href=\"%s\">Tobias B&auml;thge</a>编写。"
865
 
866
+ #: views/view-about.php:35
867
  msgid "It is licensed as Free Software under GPL 2."
868
  msgstr "遵照 GPL 2 发行为自由软件。"
869
 
870
+ #: views/view-about.php:35
871
  #, php-format
872
  msgid "Please rate the plugin in the <a href=\"%s\">WordPress Plugin Directory</a>."
873
  msgstr "请通过 <a href=\"%s\">WordPress 插件目录</a> 为该插件评分。"
874
 
875
+ #: views/view-about.php:35
876
  msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
877
  msgstr "捐助和好的评级会激励我进一步开发该插件,并提供更多的支持。不管多少都好!谢谢!"
878
 
879
+ #: views/view-about.php:40
880
  msgid "Credits and Thanks"
881
  msgstr "鸣谢"
882
 
883
+ #: views/view-about.php:43
884
  msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
885
  msgstr "感谢 <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> 开发的 wp-Table 插件原型,"
886
 
887
+ #: views/view-about.php:44
888
  msgid "Allan Jardine for the <a href=\"http://www.datatables.net/\">DataTables jQuery plugin</a>,"
889
  msgstr "Allan Jardine 开发的 <a href=\"http://www.datatables.net/\">DataTables jQuery plugin</a>,"
890
 
891
+ #: views/view-about.php:45
892
  msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
893
  msgstr "Christian Bach 开发的 <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
894
 
895
+ #: views/view-about.php:46
896
  msgid "Soeren Krings for its extension <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
897
  msgstr "Soeren Krings 的扩展 <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
898
 
899
+ #: views/view-about.php:47
900
  msgid "the submitters of translations:"
901
  msgstr "翻译人员:"
902
 
1049
 
1050
  #: views/view-ajax_preview.php:4
1051
  msgid "Because of CSS styling, the table might look different on your page!"
1052
+ msgstr "因为 CSS 样式问题,表格在您的页面上看起来可能不太一样!"
1053
 
1054
  #: views/view-ajax_preview.php:4
1055
  msgid "The JavaScript libraries are also not available in this preview."
1056
+ msgstr "预览时无法使用 JavaScript 库。"
1057
 
1058
  #: views/view-edit.php:8
1059
  msgid "On this page, you can edit the content of the table."
1697
 
1698
  #: views/view-options.php:3
1699
  msgid "WP-Table Reloaded has several options which affect the plugin behavior in different areas."
1700
+ msgstr "WP-Table Reloaded 有一些选项能够设定它在不同位置上的运行方式。"
1701
 
1702
  #: views/view-options.php:4
1703
  msgid "Frontend Options influence the output and used features of tables in pages, posts or text-widgets."
2029
  msgid "All tables, data and options were deleted. You may now manually remove the plugin's subfolder from your WordPress plugin folder or use the \"Delete\" link on the Plugins page."
2030
  msgstr "所有表格、数据和选项都已经删除。现在,您可以从 WordPress 插件文件夹手工删除,或者点击插件页面的 \"删除\" 链接以删除该插件的安装文件夹。"
2031
 
2032
+ #. Plugin URI of the plugin/theme
2033
  msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2034
  msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
2035
 
2036
+ #. Description of the plugin/theme
2037
  msgid "This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML."
2038
  msgstr "该插件让您能够通过WordPress的管理控制台轻松创建和管理表格。方便的后台管理让您可以轻松操作表格数据。您还可以使用一小段代码或者利用模板标记功能将表格嵌入文章、页面或者文本小工具中。支持从CSV、XML和HTML文档导入表格,或者将表格导出为CSV、XML和HTML文档。"
2039
 
2040
+ #. Author of the plugin/theme
2041
  msgid "Tobias B&auml;thge"
2042
  msgstr "Tobias B&auml;thge"
2043
 
2044
+ #. Author URI of the plugin/theme
2045
  msgid "http://tobias.baethge.com/"
2046
  msgstr "http://tobias.baethge.com/"
2047
 
2048
+ #~ msgid "Albanian"
2049
+ #~ msgstr "阿尔巴尼亚语"
2050
+
2051
+ #~ msgid "Estonian"
2052
+ #~ msgstr "爱沙尼亚语"
2053
+
2054
+ #~ msgid "Turkish"
2055
+ #~ msgstr "土耳其语"
2056
+
2057
  #~ msgid ""
2058
  #~ "Among other things, this version adds support for \"colspan\" and "
2059
  #~ "\"rowspan\" of table cells and enables the WP Search to search through "
languages/wp-table-reloaded.pot CHANGED
@@ -1,4 +1,4 @@
1
- # Translation of the WordPress plugin WP-Table Reloaded 1.7 by Tobias B&auml;thge.
2
  # Copyright (C) 2010 Tobias B&auml;thge
3
  # This file is distributed under the same license as the WP-Table Reloaded package.
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
@@ -6,9 +6,9 @@
6
  #, fuzzy
7
  msgid ""
8
  msgstr ""
9
- "Project-Id-Version: WP-Table Reloaded 1.7\n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
11
- "POT-Creation-Date: 2010-03-16 18:32+0000\n"
12
  "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -135,63 +135,75 @@ msgstr ""
135
  msgid "Help"
136
  msgstr ""
137
 
138
- #: classes/render.class.php:140 views/view-list.php:60
139
  msgid "Edit"
140
  msgstr ""
141
 
142
  #: controllers/controller-admin.php:256
143
- msgid "Czech"
144
  msgstr ""
145
 
146
  #: controllers/controller-admin.php:257
147
- msgid "German"
148
  msgstr ""
149
 
150
  #: controllers/controller-admin.php:258
151
- msgid "English"
152
  msgstr ""
153
 
154
  #: controllers/controller-admin.php:259
155
- msgid "Spanish"
156
  msgstr ""
157
 
158
  #: controllers/controller-admin.php:260
159
- msgid "Finnish"
160
  msgstr ""
161
 
162
  #: controllers/controller-admin.php:261
163
- msgid "French"
164
  msgstr ""
165
 
166
  #: controllers/controller-admin.php:262
167
- msgid "Hindi"
168
  msgstr ""
169
 
170
  #: controllers/controller-admin.php:263
171
- msgid "Italian"
172
  msgstr ""
173
 
174
  #: controllers/controller-admin.php:264
175
- msgid "Japanese"
176
  msgstr ""
177
 
178
  #: controllers/controller-admin.php:265
179
- msgid "Brazilian Portuguese"
180
  msgstr ""
181
 
182
  #: controllers/controller-admin.php:266
183
- msgid "Russian"
184
  msgstr ""
185
 
186
  #: controllers/controller-admin.php:267
187
- msgid "Slovak"
188
  msgstr ""
189
 
190
  #: controllers/controller-admin.php:268
191
- msgid "Swedish"
192
  msgstr ""
193
 
194
  #: controllers/controller-admin.php:269
 
 
 
 
 
 
 
 
 
 
 
 
195
  msgid "Chinese (Simplified)"
196
  msgstr ""
197
 
@@ -211,8 +223,7 @@ msgstr ""
211
  #: controllers/controller-admin.php:303
212
  msgid ""
213
  "This version includes several enhancements, like an updated DataTables "
214
- "library, a &quot;Table&quot; button in the toolbar of the visual editor, and "
215
- "several other things."
216
  msgstr ""
217
 
218
  #: controllers/controller-admin.php:303
@@ -300,209 +311,209 @@ msgstr ""
300
  msgid "Columns swapped successfully."
301
  msgstr ""
302
 
303
- #: controllers/controller-admin.php:481
304
  msgid "Table sorted successfully."
305
  msgstr ""
306
 
307
- #: controllers/controller-admin.php:502
308
  msgid "Row moved successfully."
309
  msgstr ""
310
 
311
- #: controllers/controller-admin.php:527
312
  msgid "Column moved successfully."
313
  msgstr ""
314
 
315
- #: controllers/controller-admin.php:535
316
  msgid "Row could not be deleted."
317
  msgid_plural "Rows could not be deleted."
318
  msgstr[0] ""
319
  msgstr[1] ""
320
 
321
- #: controllers/controller-admin.php:544
322
  msgid "Row deleted successfully."
323
  msgid_plural "Rows deleted successfully."
324
  msgstr[0] ""
325
  msgstr[1] ""
326
 
327
- #: controllers/controller-admin.php:554
328
  msgid "Column could not be deleted."
329
  msgid_plural "Columns could not be deleted."
330
  msgstr[0] ""
331
  msgstr[1] ""
332
 
333
- #: controllers/controller-admin.php:567
334
  msgid "Column deleted successfully."
335
  msgid_plural "Columns deleted successfully."
336
  msgstr[0] ""
337
  msgstr[1] ""
338
 
339
- #: controllers/controller-admin.php:590
340
  msgid "Row inserted successfully."
341
  msgid_plural "Rows inserted successfully."
342
  msgstr[0] ""
343
  msgstr[1] ""
344
 
345
- #: controllers/controller-admin.php:617
346
  msgid "Column inserted successfully."
347
  msgid_plural "Columns inserted successfully."
348
  msgstr[0] ""
349
  msgstr[1] ""
350
 
351
- #: controllers/controller-admin.php:632
352
  msgid "Row added successfully."
353
  msgid_plural "Rows added successfully."
354
  msgstr[0] ""
355
  msgstr[1] ""
356
 
357
- #: controllers/controller-admin.php:646
358
  msgid "Column added successfully."
359
  msgid_plural "Columns added successfully."
360
  msgstr[0] ""
361
  msgstr[1] ""
362
 
363
- #: controllers/controller-admin.php:653
364
  msgid "Could not add Custom Data Field, because you did not enter a name."
365
  msgstr ""
366
 
367
- #: controllers/controller-admin.php:658
368
  msgid ""
369
  "Could not add Custom Data Field, because the name you entered is reserved "
370
  "for other table data."
371
  msgstr ""
372
 
373
- #: controllers/controller-admin.php:664
374
  msgid ""
375
  "Could not add Custom Data Field, because the name contained illegal "
376
  "characters."
377
  msgstr ""
378
 
379
- #: controllers/controller-admin.php:668
380
  msgid ""
381
  "Could not add Custom Data Field, because a Field with that name already "
382
  "exists."
383
  msgstr ""
384
 
385
- #: controllers/controller-admin.php:674
386
  msgid "Custom Data Field added successfully."
387
  msgstr ""
388
 
389
- #: controllers/controller-admin.php:714 controllers/controller-admin.php:770
390
  msgid "Copy of"
391
  msgstr ""
392
 
393
- #: controllers/controller-admin.php:718
394
  msgid "Table copied successfully."
395
  msgid_plural "Tables copied successfully."
396
  msgstr[0] ""
397
  msgstr[1] ""
398
 
399
- #: controllers/controller-admin.php:724
400
  msgid "Table deleted successfully."
401
  msgid_plural "Tables deleted successfully."
402
  msgstr[0] ""
403
  msgstr[1] ""
404
 
405
- #: controllers/controller-admin.php:745 controllers/controller-admin.php:900
406
- #: controllers/controller-admin.php:938
407
  msgid "Table imported successfully."
408
  msgid_plural "Tables imported successfully."
409
  msgstr[0] ""
410
  msgstr[1] ""
411
 
412
- #: controllers/controller-admin.php:752
413
  msgid "You did not select any tables!"
414
  msgstr ""
415
 
416
- #: controllers/controller-admin.php:775
417
  #, php-format
418
  msgid "Table &quot;%s&quot; copied successfully."
419
  msgstr ""
420
 
421
- #: controllers/controller-admin.php:793
422
  #, php-format
423
  msgid "Table &quot;%s&quot; deleted successfully."
424
  msgstr ""
425
 
426
- #: controllers/controller-admin.php:801
427
  msgid "Custom Data Field deleted successfully."
428
  msgstr ""
429
 
430
- #: controllers/controller-admin.php:803
431
  msgid "Custom Data Field could not be deleted."
432
  msgstr ""
433
 
434
- #: controllers/controller-admin.php:809
435
  msgid "Delete failed."
436
  msgstr ""
437
 
438
- #: controllers/controller-admin.php:841 controllers/controller-admin.php:851
439
- #: controllers/controller-admin.php:862
440
  msgid "Imported Table"
441
  msgstr ""
442
 
443
- #: controllers/controller-admin.php:842 controllers/controller-admin.php:863
444
  #, php-format
445
  msgid "from %s"
446
  msgstr ""
447
 
448
- #: controllers/controller-admin.php:852
449
  msgid "via form"
450
  msgstr ""
451
 
452
- #: controllers/controller-admin.php:879 controllers/controller-admin.php:916
453
  msgid "Table could not be imported."
454
  msgstr ""
455
 
456
- #: controllers/controller-admin.php:896
457
  #, php-format
458
  msgid "Table %s (%s) replaced successfully."
459
  msgstr ""
460
 
461
- #: controllers/controller-admin.php:946 controllers/controller-admin.php:1139
462
  msgid "You do not have sufficient rights to perform this action."
463
  msgstr ""
464
 
465
- #: controllers/controller-admin.php:953
466
  msgid "You did not upload a WP-Table Reloaded dump file."
467
  msgstr ""
468
 
469
- #: controllers/controller-admin.php:962
470
  msgid "The uploaded dump file is empty. Please upload a valid dump file."
471
  msgstr ""
472
 
473
- #: controllers/controller-admin.php:991
474
  msgid "All Tables, Settings and Options were successfully imported."
475
  msgstr ""
476
 
477
- #: controllers/controller-admin.php:1020
478
  #, php-format
479
  msgid "Table &quot;%s&quot; exported successfully."
480
  msgstr ""
481
 
482
- #: controllers/controller-admin.php:1065 views/view-options.php:232
483
  msgid "You do not have sufficient rights to access the Plugin Options."
484
  msgstr ""
485
 
486
- #: controllers/controller-admin.php:1120
487
  msgid "Options saved successfully."
488
  msgstr ""
489
 
490
- #: controllers/controller-admin.php:1123
491
  #, php-format
492
  msgid "<a href=\"%s\">Click here to Proceed.</a>"
493
  msgstr ""
494
 
495
- #: controllers/controller-admin.php:1189
496
  msgid "There is no table with this ID!"
497
  msgstr ""
498
 
499
- #: controllers/controller-admin.php:1226
500
  msgid ""
501
  "Thank you very much! Your donation is highly appreciated. You just "
502
  "contributed to the further development of WP-Table Reloaded!"
503
  msgstr ""
504
 
505
- #: controllers/controller-admin.php:1228
506
  #, php-format
507
  msgid ""
508
  "No problem! I still hope you enjoy the benefits that WP-Table Reloaded "
@@ -511,290 +522,290 @@ msgid ""
511
  "a>."
512
  msgstr ""
513
 
514
- #: controllers/controller-admin.php:1228 controllers/controller-admin.php:1656
515
  msgid "Donate"
516
  msgstr ""
517
 
518
- #: controllers/controller-admin.php:1251 controllers/controller-admin.php:1258
519
  msgid "List of Tables"
520
  msgstr ""
521
 
522
- #. #-#-#-#-# plugin.pot (WP-Table Reloaded 1.7) #-#-#-#-#
523
  #. Plugin Name of the plugin/theme
524
- #: controllers/controller-admin.php:1251 controllers/controller-admin.php:1255
525
- #: controllers/controller-admin.php:1257
526
  msgid "WP-Table Reloaded"
527
  msgstr ""
528
 
529
- #: controllers/controller-admin.php:1252 controllers/controller-admin.php:1288
530
  msgid "Add new Table"
531
  msgstr ""
532
 
533
- #: controllers/controller-admin.php:1253 controllers/controller-admin.php:1289
534
  msgid "Import a Table"
535
  msgstr ""
536
 
537
- #: controllers/controller-admin.php:1254 controllers/controller-admin.php:1290
538
  msgid "Export a Table"
539
  msgstr ""
540
 
541
- #: controllers/controller-admin.php:1255 controllers/controller-admin.php:1296
542
  #: views/view-edit.php:342 views/view-edit.php:357 views/view-export.php:10
543
  msgid "Plugin Options"
544
  msgstr ""
545
 
546
- #: controllers/controller-admin.php:1256
547
  msgid "About WP-Table Reloaded"
548
  msgstr ""
549
 
550
- #: controllers/controller-admin.php:1264
551
  #, php-format
552
  msgid "Edit Table &quot;%s&quot; (ID %s)"
553
  msgstr ""
554
 
555
- #: controllers/controller-admin.php:1265
556
  #, php-format
557
  msgid "Preview of Table &quot;%s&quot; (ID %s)"
558
  msgstr ""
559
 
560
- #: controllers/controller-admin.php:1287
561
  msgid "List Tables"
562
  msgstr ""
563
 
564
- #: controllers/controller-admin.php:1297
565
  msgid "About the plugin"
566
  msgstr ""
567
 
568
- #: controllers/controller-admin.php:1652
569
  msgid "WP-Table Reloaded Plugin Page"
570
  msgstr ""
571
 
572
- #: controllers/controller-admin.php:1652
573
  msgid "Plugin Page"
574
  msgstr ""
575
 
576
- #: controllers/controller-admin.php:1653
577
  msgid "Frequently Asked Questions"
578
  msgstr ""
579
 
580
- #: controllers/controller-admin.php:1653
581
  msgid "FAQ"
582
  msgstr ""
583
 
584
- #: controllers/controller-admin.php:1654
585
  msgid "Support"
586
  msgstr ""
587
 
588
- #: controllers/controller-admin.php:1655
589
  msgid "Plugin Documentation"
590
  msgstr ""
591
 
592
- #: controllers/controller-admin.php:1655
593
  msgid "Documentation"
594
  msgstr ""
595
 
596
- #: controllers/controller-admin.php:1656
597
  msgid "Support WP-Table Reloaded with your donation!"
598
  msgstr ""
599
 
600
- #: controllers/controller-admin.php:1695
601
  msgid ""
602
  "Do you really want to activate this? You should only do that right before "
603
  "uninstallation!"
604
  msgstr ""
605
 
606
- #: controllers/controller-admin.php:1696
607
  msgid "URL of link to insert"
608
  msgstr ""
609
 
610
- #: controllers/controller-admin.php:1697
611
  msgid "Text of link"
612
  msgstr ""
613
 
614
- #: controllers/controller-admin.php:1698
615
  msgid ""
616
  "To insert the following HTML code for a link into a cell, just click the "
617
  "cell after closing this dialog."
618
  msgstr ""
619
 
620
- #: controllers/controller-admin.php:1699
621
  msgid ""
622
  "To insert an image, click &quot;OK&quot; and then click into the cell into "
623
  "which you want to insert the image."
624
  msgstr ""
625
 
626
- #: controllers/controller-admin.php:1699
627
  msgid ""
628
  "The Media Library will open, from which you can select the desired image or "
629
  "insert the image URL."
630
  msgstr ""
631
 
632
- #: controllers/controller-admin.php:1699
633
  #, php-format
634
  msgid "Click the &quot;%s&quot; button to insert the image."
635
  msgstr ""
636
 
637
- #: controllers/controller-admin.php:1699
638
  msgid "Insert into Post"
639
  msgstr ""
640
 
641
- #: controllers/controller-admin.php:1700
642
  msgid ""
643
  "To combine cells within a row, click into the cell to the right of the cell "
644
  "that has the content the combined cells shall have."
645
  msgstr ""
646
 
647
- #: controllers/controller-admin.php:1701
648
  msgid ""
649
  "To combine cells within a column, click into the cell below the cell that "
650
  "has the content the combined cells shall have."
651
  msgstr ""
652
 
653
- #: controllers/controller-admin.php:1702
654
  msgid "Do you want to copy the selected tables?"
655
  msgstr ""
656
 
657
- #: controllers/controller-admin.php:1703
658
  msgid ""
659
  "The selected tables and all content will be erased. Do you really want to "
660
  "delete them?"
661
  msgstr ""
662
 
663
- #: controllers/controller-admin.php:1704
664
  msgid ""
665
  "Do you really want to import the selected tables from the wp-Table plugin?"
666
  msgstr ""
667
 
668
- #: controllers/controller-admin.php:1705
669
  msgid "Do you want to copy this table?"
670
  msgstr ""
671
 
672
- #: controllers/controller-admin.php:1706
673
  msgid ""
674
  "The complete table and all content will be erased. Do you really want to "
675
  "delete it?"
676
  msgstr ""
677
 
678
- #: controllers/controller-admin.php:1707
679
  msgid "Do you really want to delete the selected rows?"
680
  msgstr ""
681
 
682
- #: controllers/controller-admin.php:1708
683
  msgid "Do you really want to delete the selected columns?"
684
  msgstr ""
685
 
686
- #: controllers/controller-admin.php:1709 controllers/controller-admin.php:1713
687
- #: controllers/controller-admin.php:1715
688
  msgid "You have not selected any rows."
689
  msgstr ""
690
 
691
- #: controllers/controller-admin.php:1710 controllers/controller-admin.php:1714
692
- #: controllers/controller-admin.php:1716
693
  msgid "You have not selected any columns."
694
  msgstr ""
695
 
696
- #: controllers/controller-admin.php:1711
697
  msgid "You can not delete all rows of the table at once!"
698
  msgstr ""
699
 
700
- #: controllers/controller-admin.php:1712
701
  msgid "You can not delete all columns of the table at once!"
702
  msgstr ""
703
 
704
- #: controllers/controller-admin.php:1717
705
  msgid "Do you really want to import this table from the wp-Table plugin?"
706
  msgstr ""
707
 
708
- #: controllers/controller-admin.php:1718
709
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
710
  msgstr ""
711
 
712
- #: controllers/controller-admin.php:1719
713
  msgid "Are you really sure?"
714
  msgstr ""
715
 
716
- #: controllers/controller-admin.php:1720
717
  msgid "Do you really want to change the ID of the table?"
718
  msgstr ""
719
 
720
- #: controllers/controller-admin.php:1721
721
  msgid "To show this Custom Data Field, use this shortcode:"
722
  msgstr ""
723
 
724
- #: controllers/controller-admin.php:1722
725
  msgid "To show this table, use this shortcode:"
726
  msgstr ""
727
 
728
- #: controllers/controller-admin.php:1723
729
  msgid ""
730
  "Warning: You will lose all current Tables and Settings! You should create a "
731
  "backup first. Be warned!"
732
  msgstr ""
733
 
734
- #: controllers/controller-admin.php:1724
735
  msgid ""
736
  "You have made changes to the content of this table and not yet saved them."
737
  msgstr ""
738
 
739
- #: controllers/controller-admin.php:1724
740
  #, php-format
741
  msgid ""
742
  "You should first click &quot;%s&quot; or they will be lost if you navigate "
743
  "away from this page."
744
  msgstr ""
745
 
746
- #: controllers/controller-admin.php:1724 views/view-edit.php:41
747
  #: views/view-edit.php:253 views/view-edit.php:405 views/view-edit.php:456
748
  msgid "Update Changes"
749
  msgstr ""
750
 
751
- #: controllers/controller-admin.php:1767 views/view-about.php:14
752
  #: views/view-list.php:2
753
  msgid "Table"
754
  msgstr ""
755
 
756
- #: controllers/controller-admin.php:1768
757
  msgid "Insert a Table"
758
  msgstr ""
759
 
760
- #: controllers/controller-admin.php:1829
761
  msgid "Please wait..."
762
  msgstr ""
763
 
764
- #: controllers/controller-admin.php:1830
765
  msgid "Show _MENU_ Tables"
766
  msgstr ""
767
 
768
- #: controllers/controller-admin.php:1831 views/view-ajax_list.php:53
769
  #: views/view-export.php:71 views/view-list.php:88
770
  msgid "No tables were found."
771
  msgstr ""
772
 
773
- #: controllers/controller-admin.php:1832
774
  msgid "_START_ to _END_ of _TOTAL_ Tables"
775
  msgstr ""
776
 
777
- #: controllers/controller-admin.php:1833
778
  msgid "(filtered from _MAX_ Tables)"
779
  msgstr ""
780
 
781
- #: controllers/controller-admin.php:1834
782
  msgid "Filter:"
783
  msgstr ""
784
 
785
- #: controllers/controller-admin.php:1835
786
  msgid "First"
787
  msgstr ""
788
 
789
- #: controllers/controller-admin.php:1836
790
  msgid "Back"
791
  msgstr ""
792
 
793
- #: controllers/controller-admin.php:1837
794
  msgid "Next"
795
  msgstr ""
796
 
797
- #: controllers/controller-admin.php:1838
798
  msgid "Last"
799
  msgstr ""
800
 
1
+ # Translation of the WordPress plugin WP-Table Reloaded 1.8 by Tobias B&auml;thge.
2
  # Copyright (C) 2010 Tobias B&auml;thge
3
  # This file is distributed under the same license as the WP-Table Reloaded package.
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
6
  #, fuzzy
7
  msgid ""
8
  msgstr ""
9
+ "Project-Id-Version: WP-Table Reloaded 1.8\n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
11
+ "POT-Creation-Date: 2010-08-05 13:22+0000\n"
12
  "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
135
  msgid "Help"
136
  msgstr ""
137
 
138
+ #: classes/render.class.php:141 views/view-list.php:60
139
  msgid "Edit"
140
  msgstr ""
141
 
142
  #: controllers/controller-admin.php:256
143
+ msgid "Belarusian"
144
  msgstr ""
145
 
146
  #: controllers/controller-admin.php:257
147
+ msgid "Czech"
148
  msgstr ""
149
 
150
  #: controllers/controller-admin.php:258
151
+ msgid "German"
152
  msgstr ""
153
 
154
  #: controllers/controller-admin.php:259
155
+ msgid "English"
156
  msgstr ""
157
 
158
  #: controllers/controller-admin.php:260
159
+ msgid "Spanish"
160
  msgstr ""
161
 
162
  #: controllers/controller-admin.php:261
163
+ msgid "Finnish"
164
  msgstr ""
165
 
166
  #: controllers/controller-admin.php:262
167
+ msgid "French"
168
  msgstr ""
169
 
170
  #: controllers/controller-admin.php:263
171
+ msgid "Hindi"
172
  msgstr ""
173
 
174
  #: controllers/controller-admin.php:264
175
+ msgid "Italian"
176
  msgstr ""
177
 
178
  #: controllers/controller-admin.php:265
179
+ msgid "Japanese"
180
  msgstr ""
181
 
182
  #: controllers/controller-admin.php:266
183
+ msgid "Polish"
184
  msgstr ""
185
 
186
  #: controllers/controller-admin.php:267
187
+ msgid "Brazilian Portuguese"
188
  msgstr ""
189
 
190
  #: controllers/controller-admin.php:268
191
+ msgid "Russian"
192
  msgstr ""
193
 
194
  #: controllers/controller-admin.php:269
195
+ msgid "Slovak"
196
+ msgstr ""
197
+
198
+ #: controllers/controller-admin.php:270
199
+ msgid "Swedish"
200
+ msgstr ""
201
+
202
+ #: controllers/controller-admin.php:271
203
+ msgid "Ukrainian"
204
+ msgstr ""
205
+
206
+ #: controllers/controller-admin.php:272
207
  msgid "Chinese (Simplified)"
208
  msgstr ""
209
 
223
  #: controllers/controller-admin.php:303
224
  msgid ""
225
  "This version includes several enhancements, like an updated DataTables "
226
+ "library, several enhancements to certain features and a few small bug fixes."
 
227
  msgstr ""
228
 
229
  #: controllers/controller-admin.php:303
311
  msgid "Columns swapped successfully."
312
  msgstr ""
313
 
314
+ #: controllers/controller-admin.php:493
315
  msgid "Table sorted successfully."
316
  msgstr ""
317
 
318
+ #: controllers/controller-admin.php:514
319
  msgid "Row moved successfully."
320
  msgstr ""
321
 
322
+ #: controllers/controller-admin.php:539
323
  msgid "Column moved successfully."
324
  msgstr ""
325
 
326
+ #: controllers/controller-admin.php:547
327
  msgid "Row could not be deleted."
328
  msgid_plural "Rows could not be deleted."
329
  msgstr[0] ""
330
  msgstr[1] ""
331
 
332
+ #: controllers/controller-admin.php:556
333
  msgid "Row deleted successfully."
334
  msgid_plural "Rows deleted successfully."
335
  msgstr[0] ""
336
  msgstr[1] ""
337
 
338
+ #: controllers/controller-admin.php:566
339
  msgid "Column could not be deleted."
340
  msgid_plural "Columns could not be deleted."
341
  msgstr[0] ""
342
  msgstr[1] ""
343
 
344
+ #: controllers/controller-admin.php:579
345
  msgid "Column deleted successfully."
346
  msgid_plural "Columns deleted successfully."
347
  msgstr[0] ""
348
  msgstr[1] ""
349
 
350
+ #: controllers/controller-admin.php:602
351
  msgid "Row inserted successfully."
352
  msgid_plural "Rows inserted successfully."
353
  msgstr[0] ""
354
  msgstr[1] ""
355
 
356
+ #: controllers/controller-admin.php:629
357
  msgid "Column inserted successfully."
358
  msgid_plural "Columns inserted successfully."
359
  msgstr[0] ""
360
  msgstr[1] ""
361
 
362
+ #: controllers/controller-admin.php:644
363
  msgid "Row added successfully."
364
  msgid_plural "Rows added successfully."
365
  msgstr[0] ""
366
  msgstr[1] ""
367
 
368
+ #: controllers/controller-admin.php:658
369
  msgid "Column added successfully."
370
  msgid_plural "Columns added successfully."
371
  msgstr[0] ""
372
  msgstr[1] ""
373
 
374
+ #: controllers/controller-admin.php:665
375
  msgid "Could not add Custom Data Field, because you did not enter a name."
376
  msgstr ""
377
 
378
+ #: controllers/controller-admin.php:670
379
  msgid ""
380
  "Could not add Custom Data Field, because the name you entered is reserved "
381
  "for other table data."
382
  msgstr ""
383
 
384
+ #: controllers/controller-admin.php:676
385
  msgid ""
386
  "Could not add Custom Data Field, because the name contained illegal "
387
  "characters."
388
  msgstr ""
389
 
390
+ #: controllers/controller-admin.php:680
391
  msgid ""
392
  "Could not add Custom Data Field, because a Field with that name already "
393
  "exists."
394
  msgstr ""
395
 
396
+ #: controllers/controller-admin.php:686
397
  msgid "Custom Data Field added successfully."
398
  msgstr ""
399
 
400
+ #: controllers/controller-admin.php:726 controllers/controller-admin.php:782
401
  msgid "Copy of"
402
  msgstr ""
403
 
404
+ #: controllers/controller-admin.php:730
405
  msgid "Table copied successfully."
406
  msgid_plural "Tables copied successfully."
407
  msgstr[0] ""
408
  msgstr[1] ""
409
 
410
+ #: controllers/controller-admin.php:736
411
  msgid "Table deleted successfully."
412
  msgid_plural "Tables deleted successfully."
413
  msgstr[0] ""
414
  msgstr[1] ""
415
 
416
+ #: controllers/controller-admin.php:757 controllers/controller-admin.php:912
417
+ #: controllers/controller-admin.php:950
418
  msgid "Table imported successfully."
419
  msgid_plural "Tables imported successfully."
420
  msgstr[0] ""
421
  msgstr[1] ""
422
 
423
+ #: controllers/controller-admin.php:764
424
  msgid "You did not select any tables!"
425
  msgstr ""
426
 
427
+ #: controllers/controller-admin.php:787
428
  #, php-format
429
  msgid "Table &quot;%s&quot; copied successfully."
430
  msgstr ""
431
 
432
+ #: controllers/controller-admin.php:805
433
  #, php-format
434
  msgid "Table &quot;%s&quot; deleted successfully."
435
  msgstr ""
436
 
437
+ #: controllers/controller-admin.php:813
438
  msgid "Custom Data Field deleted successfully."
439
  msgstr ""
440
 
441
+ #: controllers/controller-admin.php:815
442
  msgid "Custom Data Field could not be deleted."
443
  msgstr ""
444
 
445
+ #: controllers/controller-admin.php:821
446
  msgid "Delete failed."
447
  msgstr ""
448
 
449
+ #: controllers/controller-admin.php:853 controllers/controller-admin.php:863
450
+ #: controllers/controller-admin.php:874
451
  msgid "Imported Table"
452
  msgstr ""
453
 
454
+ #: controllers/controller-admin.php:854 controllers/controller-admin.php:875
455
  #, php-format
456
  msgid "from %s"
457
  msgstr ""
458
 
459
+ #: controllers/controller-admin.php:864
460
  msgid "via form"
461
  msgstr ""
462
 
463
+ #: controllers/controller-admin.php:891 controllers/controller-admin.php:928
464
  msgid "Table could not be imported."
465
  msgstr ""
466
 
467
+ #: controllers/controller-admin.php:908
468
  #, php-format
469
  msgid "Table %s (%s) replaced successfully."
470
  msgstr ""
471
 
472
+ #: controllers/controller-admin.php:958 controllers/controller-admin.php:1151
473
  msgid "You do not have sufficient rights to perform this action."
474
  msgstr ""
475
 
476
+ #: controllers/controller-admin.php:965
477
  msgid "You did not upload a WP-Table Reloaded dump file."
478
  msgstr ""
479
 
480
+ #: controllers/controller-admin.php:974
481
  msgid "The uploaded dump file is empty. Please upload a valid dump file."
482
  msgstr ""
483
 
484
+ #: controllers/controller-admin.php:1003
485
  msgid "All Tables, Settings and Options were successfully imported."
486
  msgstr ""
487
 
488
+ #: controllers/controller-admin.php:1032
489
  #, php-format
490
  msgid "Table &quot;%s&quot; exported successfully."
491
  msgstr ""
492
 
493
+ #: controllers/controller-admin.php:1077 views/view-options.php:232
494
  msgid "You do not have sufficient rights to access the Plugin Options."
495
  msgstr ""
496
 
497
+ #: controllers/controller-admin.php:1132
498
  msgid "Options saved successfully."
499
  msgstr ""
500
 
501
+ #: controllers/controller-admin.php:1135
502
  #, php-format
503
  msgid "<a href=\"%s\">Click here to Proceed.</a>"
504
  msgstr ""
505
 
506
+ #: controllers/controller-admin.php:1201
507
  msgid "There is no table with this ID!"
508
  msgstr ""
509
 
510
+ #: controllers/controller-admin.php:1238
511
  msgid ""
512
  "Thank you very much! Your donation is highly appreciated. You just "
513
  "contributed to the further development of WP-Table Reloaded!"
514
  msgstr ""
515
 
516
+ #: controllers/controller-admin.php:1240
517
  #, php-format
518
  msgid ""
519
  "No problem! I still hope you enjoy the benefits that WP-Table Reloaded "
522
  "a>."
523
  msgstr ""
524
 
525
+ #: controllers/controller-admin.php:1240 controllers/controller-admin.php:1670
526
  msgid "Donate"
527
  msgstr ""
528
 
529
+ #: controllers/controller-admin.php:1263 controllers/controller-admin.php:1270
530
  msgid "List of Tables"
531
  msgstr ""
532
 
533
+ #. #-#-#-#-# plugin.pot (WP-Table Reloaded 1.8) #-#-#-#-#
534
  #. Plugin Name of the plugin/theme
535
+ #: controllers/controller-admin.php:1263 controllers/controller-admin.php:1267
536
+ #: controllers/controller-admin.php:1269
537
  msgid "WP-Table Reloaded"
538
  msgstr ""
539
 
540
+ #: controllers/controller-admin.php:1264 controllers/controller-admin.php:1300
541
  msgid "Add new Table"
542
  msgstr ""
543
 
544
+ #: controllers/controller-admin.php:1265 controllers/controller-admin.php:1301
545
  msgid "Import a Table"
546
  msgstr ""
547
 
548
+ #: controllers/controller-admin.php:1266 controllers/controller-admin.php:1302
549
  msgid "Export a Table"
550
  msgstr ""
551
 
552
+ #: controllers/controller-admin.php:1267 controllers/controller-admin.php:1309
553
  #: views/view-edit.php:342 views/view-edit.php:357 views/view-export.php:10
554
  msgid "Plugin Options"
555
  msgstr ""
556
 
557
+ #: controllers/controller-admin.php:1268
558
  msgid "About WP-Table Reloaded"
559
  msgstr ""
560
 
561
+ #: controllers/controller-admin.php:1276
562
  #, php-format
563
  msgid "Edit Table &quot;%s&quot; (ID %s)"
564
  msgstr ""
565
 
566
+ #: controllers/controller-admin.php:1277
567
  #, php-format
568
  msgid "Preview of Table &quot;%s&quot; (ID %s)"
569
  msgstr ""
570
 
571
+ #: controllers/controller-admin.php:1299
572
  msgid "List Tables"
573
  msgstr ""
574
 
575
+ #: controllers/controller-admin.php:1310
576
  msgid "About the plugin"
577
  msgstr ""
578
 
579
+ #: controllers/controller-admin.php:1666
580
  msgid "WP-Table Reloaded Plugin Page"
581
  msgstr ""
582
 
583
+ #: controllers/controller-admin.php:1666
584
  msgid "Plugin Page"
585
  msgstr ""
586
 
587
+ #: controllers/controller-admin.php:1667
588
  msgid "Frequently Asked Questions"
589
  msgstr ""
590
 
591
+ #: controllers/controller-admin.php:1667
592
  msgid "FAQ"
593
  msgstr ""
594
 
595
+ #: controllers/controller-admin.php:1668
596
  msgid "Support"
597
  msgstr ""
598
 
599
+ #: controllers/controller-admin.php:1669
600
  msgid "Plugin Documentation"
601
  msgstr ""
602
 
603
+ #: controllers/controller-admin.php:1669
604
  msgid "Documentation"
605
  msgstr ""
606
 
607
+ #: controllers/controller-admin.php:1670
608
  msgid "Support WP-Table Reloaded with your donation!"
609
  msgstr ""
610
 
611
+ #: controllers/controller-admin.php:1709
612
  msgid ""
613
  "Do you really want to activate this? You should only do that right before "
614
  "uninstallation!"
615
  msgstr ""
616
 
617
+ #: controllers/controller-admin.php:1710
618
  msgid "URL of link to insert"
619
  msgstr ""
620
 
621
+ #: controllers/controller-admin.php:1711
622
  msgid "Text of link"
623
  msgstr ""
624
 
625
+ #: controllers/controller-admin.php:1712
626
  msgid ""
627
  "To insert the following HTML code for a link into a cell, just click the "
628
  "cell after closing this dialog."
629
  msgstr ""
630
 
631
+ #: controllers/controller-admin.php:1713
632
  msgid ""
633
  "To insert an image, click &quot;OK&quot; and then click into the cell into "
634
  "which you want to insert the image."
635
  msgstr ""
636
 
637
+ #: controllers/controller-admin.php:1713
638
  msgid ""
639
  "The Media Library will open, from which you can select the desired image or "
640
  "insert the image URL."
641
  msgstr ""
642
 
643
+ #: controllers/controller-admin.php:1713
644
  #, php-format
645
  msgid "Click the &quot;%s&quot; button to insert the image."
646
  msgstr ""
647
 
648
+ #: controllers/controller-admin.php:1713
649
  msgid "Insert into Post"
650
  msgstr ""
651
 
652
+ #: controllers/controller-admin.php:1714
653
  msgid ""
654
  "To combine cells within a row, click into the cell to the right of the cell "
655
  "that has the content the combined cells shall have."
656
  msgstr ""
657
 
658
+ #: controllers/controller-admin.php:1715
659
  msgid ""
660
  "To combine cells within a column, click into the cell below the cell that "
661
  "has the content the combined cells shall have."
662
  msgstr ""
663
 
664
+ #: controllers/controller-admin.php:1716
665
  msgid "Do you want to copy the selected tables?"
666
  msgstr ""
667
 
668
+ #: controllers/controller-admin.php:1717
669
  msgid ""
670
  "The selected tables and all content will be erased. Do you really want to "
671
  "delete them?"
672
  msgstr ""
673
 
674
+ #: controllers/controller-admin.php:1718
675
  msgid ""
676
  "Do you really want to import the selected tables from the wp-Table plugin?"
677
  msgstr ""
678
 
679
+ #: controllers/controller-admin.php:1719
680
  msgid "Do you want to copy this table?"
681
  msgstr ""
682
 
683
+ #: controllers/controller-admin.php:1720
684
  msgid ""
685
  "The complete table and all content will be erased. Do you really want to "
686
  "delete it?"
687
  msgstr ""
688
 
689
+ #: controllers/controller-admin.php:1721
690
  msgid "Do you really want to delete the selected rows?"
691
  msgstr ""
692
 
693
+ #: controllers/controller-admin.php:1722
694
  msgid "Do you really want to delete the selected columns?"
695
  msgstr ""
696
 
697
+ #: controllers/controller-admin.php:1723 controllers/controller-admin.php:1727
698
+ #: controllers/controller-admin.php:1729
699
  msgid "You have not selected any rows."
700
  msgstr ""
701
 
702
+ #: controllers/controller-admin.php:1724 controllers/controller-admin.php:1728
703
+ #: controllers/controller-admin.php:1730
704
  msgid "You have not selected any columns."
705
  msgstr ""
706
 
707
+ #: controllers/controller-admin.php:1725
708
  msgid "You can not delete all rows of the table at once!"
709
  msgstr ""
710
 
711
+ #: controllers/controller-admin.php:1726
712
  msgid "You can not delete all columns of the table at once!"
713
  msgstr ""
714
 
715
+ #: controllers/controller-admin.php:1731
716
  msgid "Do you really want to import this table from the wp-Table plugin?"
717
  msgstr ""
718
 
719
+ #: controllers/controller-admin.php:1732
720
  msgid "Do you really want to uninstall the plugin and delete ALL data?"
721
  msgstr ""
722
 
723
+ #: controllers/controller-admin.php:1733
724
  msgid "Are you really sure?"
725
  msgstr ""
726
 
727
+ #: controllers/controller-admin.php:1734
728
  msgid "Do you really want to change the ID of the table?"
729
  msgstr ""
730
 
731
+ #: controllers/controller-admin.php:1735
732
  msgid "To show this Custom Data Field, use this shortcode:"
733
  msgstr ""
734
 
735
+ #: controllers/controller-admin.php:1736
736
  msgid "To show this table, use this shortcode:"
737
  msgstr ""
738
 
739
+ #: controllers/controller-admin.php:1737
740
  msgid ""
741
  "Warning: You will lose all current Tables and Settings! You should create a "
742
  "backup first. Be warned!"
743
  msgstr ""
744
 
745
+ #: controllers/controller-admin.php:1738
746
  msgid ""
747
  "You have made changes to the content of this table and not yet saved them."
748
  msgstr ""
749
 
750
+ #: controllers/controller-admin.php:1738
751
  #, php-format
752
  msgid ""
753
  "You should first click &quot;%s&quot; or they will be lost if you navigate "
754
  "away from this page."
755
  msgstr ""
756
 
757
+ #: controllers/controller-admin.php:1738 views/view-edit.php:41
758
  #: views/view-edit.php:253 views/view-edit.php:405 views/view-edit.php:456
759
  msgid "Update Changes"
760
  msgstr ""
761
 
762
+ #: controllers/controller-admin.php:1781 views/view-about.php:14
763
  #: views/view-list.php:2
764
  msgid "Table"
765
  msgstr ""
766
 
767
+ #: controllers/controller-admin.php:1782
768
  msgid "Insert a Table"
769
  msgstr ""
770
 
771
+ #: controllers/controller-admin.php:1843
772
  msgid "Please wait..."
773
  msgstr ""
774
 
775
+ #: controllers/controller-admin.php:1844
776
  msgid "Show _MENU_ Tables"
777
  msgstr ""
778
 
779
+ #: controllers/controller-admin.php:1845 views/view-ajax_list.php:53
780
  #: views/view-export.php:71 views/view-list.php:88
781
  msgid "No tables were found."
782
  msgstr ""
783
 
784
+ #: controllers/controller-admin.php:1846
785
  msgid "_START_ to _END_ of _TOTAL_ Tables"
786
  msgstr ""
787
 
788
+ #: controllers/controller-admin.php:1847
789
  msgid "(filtered from _MAX_ Tables)"
790
  msgstr ""
791
 
792
+ #: controllers/controller-admin.php:1848
793
  msgid "Filter:"
794
  msgstr ""
795
 
796
+ #: controllers/controller-admin.php:1849
797
  msgid "First"
798
  msgstr ""
799
 
800
+ #: controllers/controller-admin.php:1850
801
  msgid "Back"
802
  msgstr ""
803
 
804
+ #: controllers/controller-admin.php:1851
805
  msgid "Next"
806
  msgstr ""
807
 
808
+ #: controllers/controller-admin.php:1852
809
  msgid "Last"
810
  msgstr ""
811
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: TobiasBg
3
  Donate link: http://tobias.baethge.com/donate/
4
  Tags: html,table,data,editor,csv,import,export,excel,widget,admin,sidebar
5
  Requires at least: 2.8
6
- Tested up to: 3.0
7
- Stable tag: 1.7
8
 
9
  WP-Table Reloaded lets you manage tables in a comfortable backend in WP's admin area, without any knowledge of HTML, and can add valuable features.
10
 
@@ -15,14 +15,14 @@ WP-Table Reloaded enables you to create and manage tables in your WP's admin are
15
  = More information =
16
  Please see the English plugin website http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ .
17
 
18
- If you like this plugin, please rate it here in the WordPress Plugin Directory or make a [donation](http://tobias.baethge.com/donate/). Thank you!
19
 
20
  = Informationen auf Deutsch =
21
  Dieses Plugin erlaubt die komfortable Verwaltung von Tabellen in WordPress. Daf&uuml;r werden keine HTML-Kenntnisse ben&ouml;tigt. Die Daten werden in einer Eingabemaske eingegeben und mittels eines Shortcodes in Artikel, Seiten oder Text-Widgets eingebunden. Zus&auml;tzlich k&ouml;nnen einer Tabelle mit einer JavaScript-Bibliothek weitere F&auml;higkeiten, wie Sortieren, Paginierung und Filterung hinzugef&uuml;gt werden.
22
 
23
  Weitere Informationen auf Deutsch: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/
24
 
25
- Wenn dir das Plugin gef&auml;llt, bewerte es bitte hier im WordPress Plugin Directory oder [spende](http://tobias.baethge.com/donate/). Danke!
26
 
27
  == Screenshots ==
28
 
@@ -57,12 +57,7 @@ If WP-Table Reloaded finds the wp-Table database tables, it can import the found
57
 
58
  = Support? =
59
 
60
- If you find a bug or have a feature request, please don't hesitate to tell me about it.
61
- You would help a lot if you could add an issue ticket in the [issue tracker on Google Code](http://code.google.com/p/wp-table-reloaded/).
62
- Feature requests may also posted in the comments on the plugin website.
63
-
64
- For other help or support questions (especially with CSS), please use the [WordPress Support Forums](http://wordpress.org/support/). Please [open a new topic](http://wordpress.org/tags/wp-table-reloaded) there (with the tag "wp-table-reloaded") and email me a link to the thread (or post it as a comment on the plugin website). Thank you!
65
- You may also make feature requests using this method! Don't be shy!
66
 
67
  = Requirements? =
68
 
@@ -71,7 +66,7 @@ In short: WordPress 2.8 or higher
71
  = Languages and Localization? =
72
 
73
  The plugin currently includes the following languages:
74
- Brazilian Portuguese, Chinese (Simplified), Czech, English, Finnish, French, German, Hindi, Italian, Japanese, Russian, Slovak, Spanish, Swedish, and Ukrainian.
75
 
76
  I'd really appreciate it, if you would translate the plugin into your language! Using Heiko Rabe's WordPress plugin [Codestyling Localization](http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en/) that really is as easy as pie. Just install the plugin, add your language, create the .po-file, translate the strings in the comfortable editor and create the .mo-file. It will automatically be saved in WP-Table Reloaded's plugin folder. If you send me the .mo- and .po-file, I will gladly include them into future plugin releases.
77
  There is also a .pot-file available to use in the "languages" subfolder. Of course you can also use poEdit as your editor, which also works nicely.
@@ -95,9 +90,8 @@ You may also add certain features (like sorting, pagination, filtering, alternat
95
  == Acknowledgements ==
96
 
97
  Thanks go to [Alex Rabe](http://alexrabe.boelinger.com/) for the initial wp-Table plugin!
98
- Thanks go to [Allan Jardine](http://www.datatables.net/) for the DataTables-jQuery-plugin.
99
- Thanks go to [Christian Bach](http://tablesorter.com/docs/) for the TableSorter-jQuery-plugin.
100
- Thanks go to [S&ouml;ren Krings](http://tablesorter.openwerk.de/) for the TableSorter-Extended-jQuery-plugin.
101
  Thanks to all language file translators!
102
  Thanks to every donor, supporter and bug reporter!
103
 
@@ -110,6 +104,23 @@ I'm also happy about [donations](http://tobias.baethge.com/donate/) or something
110
 
111
  == Changelog ==
112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  = Version 1.7 =
114
  * feature: add "Table" button to the visual editor (TinyMCE)
115
  * feature: update DataTables JavaScript library to version 1.6.2, including TableTools
@@ -218,6 +229,9 @@ I'm also happy about [donations](http://tobias.baethge.com/donate/) or something
218
 
219
  == Upgrade Notice ==
220
 
 
 
 
221
  = 1.7 =
222
  This upgrade includes an updated DataTables library, adds a "Table" button in the toolbar of the visual editor, and enhances several other things.
223
 
3
  Donate link: http://tobias.baethge.com/donate/
4
  Tags: html,table,data,editor,csv,import,export,excel,widget,admin,sidebar
5
  Requires at least: 2.8
6
+ Tested up to: 3.0.4
7
+ Stable tag: 1.8
8
 
9
  WP-Table Reloaded lets you manage tables in a comfortable backend in WP's admin area, without any knowledge of HTML, and can add valuable features.
10
 
15
  = More information =
16
  Please see the English plugin website http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ .
17
 
18
+ If you like this plugin, please rate it here in the WordPress Plugin Directory, make a [donation](http://tobias.baethge.com/donate/), or [flattr it](https://flattr.com/thing/118856/WP-Table-Reloaded). Thank you!
19
 
20
  = Informationen auf Deutsch =
21
  Dieses Plugin erlaubt die komfortable Verwaltung von Tabellen in WordPress. Daf&uuml;r werden keine HTML-Kenntnisse ben&ouml;tigt. Die Daten werden in einer Eingabemaske eingegeben und mittels eines Shortcodes in Artikel, Seiten oder Text-Widgets eingebunden. Zus&auml;tzlich k&ouml;nnen einer Tabelle mit einer JavaScript-Bibliothek weitere F&auml;higkeiten, wie Sortieren, Paginierung und Filterung hinzugef&uuml;gt werden.
22
 
23
  Weitere Informationen auf Deutsch: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/
24
 
25
+ Wenn dir das Plugin gef&auml;llt, bewerte es bitte hier im WordPress Plugin Directory, [spende](http://tobias.baethge.com/donate/) oder [&quot;flattere&quot;](https://flattr.com/thing/118856/WP-Table-Reloaded). Danke!
26
 
27
  == Screenshots ==
28
 
57
 
58
  = Support? =
59
 
60
+ For support questions, bug reports, or feature requests, please use the [WordPress Support Forums](http://wordpress.org/tags/wp-table-reloaded). Please [search](http://wordpress.org/support/) through the forums first, then [open a new thread](http://wordpress.org/tags/wp-table-reloaded) with the tag "wp-table-reloaded". Thank you!
 
 
 
 
 
61
 
62
  = Requirements? =
63
 
66
  = Languages and Localization? =
67
 
68
  The plugin currently includes the following languages:
69
+ Belarusian, Brazilian Portuguese, Chinese (Simplified), Czech, English, Finnish, French, German, Hindi, Italian, Japanese, Polish, Russian, Slovak, Spanish, Swedish, and Ukrainian.
70
 
71
  I'd really appreciate it, if you would translate the plugin into your language! Using Heiko Rabe's WordPress plugin [Codestyling Localization](http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en/) that really is as easy as pie. Just install the plugin, add your language, create the .po-file, translate the strings in the comfortable editor and create the .mo-file. It will automatically be saved in WP-Table Reloaded's plugin folder. If you send me the .mo- and .po-file, I will gladly include them into future plugin releases.
72
  There is also a .pot-file available to use in the "languages" subfolder. Of course you can also use poEdit as your editor, which also works nicely.
90
  == Acknowledgements ==
91
 
92
  Thanks go to [Alex Rabe](http://alexrabe.boelinger.com/) for the initial wp-Table plugin!
93
+ Special thanks go to [Allan Jardine](http://www.datatables.net/) for the DataTables-jQuery-plugin.
94
+ Thanks go to [Christian Bach](http://tablesorter.com/docs/) for the TableSorter-jQuery-plugin and to [S&ouml;ren Krings](http://tablesorter.openwerk.de/) for the TableSorter-Extended-jQuery-plugin.
 
95
  Thanks to all language file translators!
96
  Thanks to every donor, supporter and bug reporter!
97
 
104
 
105
  == Changelog ==
106
 
107
+ = Version 1.8 =
108
+ * feature: Updated JavaScript libraries to DataTables 1.7 and TableTools 1.1.4
109
+ * enhancement: Template tag functions now accept strings and arrays for passing parameters
110
+ * enhancement: Backwards compatibility for deprecated functions, don't use deprecated functions anymore
111
+ * enhancement: Sort on "Edit" screen no longer moves header or footer row, if they are activated
112
+ * enhancement: Added plugin filter hook to change table content prior to rendering
113
+ * enhancement: Added "summary" attribute filter for &lt;table&gt; HTML element
114
+ * enhancement: RTL-languages supported in frontend CSS
115
+ * enhancement: Adjusted default CSS for new default theme "TwentyTen"
116
+ * bugfix: Fixed search to not find table IDs with the same beginning
117
+ * bugfix: Fixed problem with certain call-by-reference functions in certain versions of PHP
118
+ * bugfix: valid HTML on "Plugin Options" screen
119
+ * bugfix: Fixed notice due to not initialized variable
120
+ * bugfix: Fixed DataTables translations for Danish and Norwegian
121
+ * languages: Added Polish and Belarusian
122
+ * languages: Added Romanian for DataTables
123
+
124
  = Version 1.7 =
125
  * feature: add "Table" button to the visual editor (TinyMCE)
126
  * feature: update DataTables JavaScript library to version 1.6.2, including TableTools
229
 
230
  == Upgrade Notice ==
231
 
232
+ = 1.8 =
233
+ This upgrade includes an updated DataTables library, enhances several features and fixes a few small issues.
234
+
235
  = 1.7 =
236
  This upgrade includes an updated DataTables library, adds a "Table" button in the toolbar of the visual editor, and enhances several other things.
237
 
views/view-about.php CHANGED
@@ -47,6 +47,7 @@
47
  <?php _e( 'the submitters of translations:', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
48
  <?php
49
  $credits_links = array(
 
50
  'cs_CZ' => '<a href="http://separatista.net/">Separatista</a>',
51
  'es_ES' => '<a href="http://halles.cl/">Matias Halles</a>', // <a href="http://theindependentproject.com/">Alejandro Urrutia</a>
52
  'fi_FI' => 'Jaakko',
@@ -54,16 +55,15 @@
54
  'hi_IN' => '<a href="http://outshinesolutions.com/">Outshine Solutions</a>',
55
  'it_IT' => '<a href="http://www.scrical.it/">Gabriella Mazzon</a>',
56
  'ja' => '<a href="http://www.u-1.net/">Yuuichi</a>',
 
57
  'pt_BR' => '<a href="http://www.pensarics.com/">Rics</a>',
58
  'ru_RU' => '<a href="http://www.wordpress4you.com/">WordPress4You</a>',
59
  'sk_SK' => '<a href="http://lukas.cerro.sk/">55.lukas</a>',
60
  'sv_SE' => '<a href="http://www.zuperzed.se/">ZuperZed</a>',
61
  'ua_UA' => '<a href="http://antsar.info/">murooch</a>',
62
  'zh_CN' => '<a href="http://cnzhx.net/">Haoxian Zeng</a>',
63
- /* // inactive languages
64
- 'by_BY' => '<a href="http://www.fatcow.com/">Marcis Gasuns</a>',
65
- 'pl_PL' => 'Alex Kortan',
66
- 'sq_AL' => '<a href="http://www.romeolab.com/">Romeo</a>',
67
  'tr_TR' => '<a href="http://www.wpuzmani.com/">Semih</a>',
68
  */
69
  );
47
  <?php _e( 'the submitters of translations:', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
48
  <?php
49
  $credits_links = array(
50
+ 'be_BY' => '<a href="http://www.mikheev.biz/">Slava Mikheev</a>',
51
  'cs_CZ' => '<a href="http://separatista.net/">Separatista</a>',
52
  'es_ES' => '<a href="http://halles.cl/">Matias Halles</a>', // <a href="http://theindependentproject.com/">Alejandro Urrutia</a>
53
  'fi_FI' => 'Jaakko',
55
  'hi_IN' => '<a href="http://outshinesolutions.com/">Outshine Solutions</a>',
56
  'it_IT' => '<a href="http://www.scrical.it/">Gabriella Mazzon</a>',
57
  'ja' => '<a href="http://www.u-1.net/">Yuuichi</a>',
58
+ 'pl_PL' => '<a href="http://www.projektowaniestronwww.net/">Projektowanie Stron WWW</a>',
59
  'pt_BR' => '<a href="http://www.pensarics.com/">Rics</a>',
60
  'ru_RU' => '<a href="http://www.wordpress4you.com/">WordPress4You</a>',
61
  'sk_SK' => '<a href="http://lukas.cerro.sk/">55.lukas</a>',
62
  'sv_SE' => '<a href="http://www.zuperzed.se/">ZuperZed</a>',
63
  'ua_UA' => '<a href="http://antsar.info/">murooch</a>',
64
  'zh_CN' => '<a href="http://cnzhx.net/">Haoxian Zeng</a>',
65
+ // inactive languages
66
+ /* 'sq_AL' => '<a href="http://www.romeolab.com/">Romeo</a>',
 
 
67
  'tr_TR' => '<a href="http://www.wpuzmani.com/">Semih</a>',
68
  */
69
  );
views/view-options.php CHANGED
@@ -13,7 +13,7 @@
13
 
14
  <div style="clear:both;">
15
  <form method="post" action="<?php echo $this->get_action_url(); ?>">
16
- <?php wp_nonce_field( $this->get_nonce( 'options' ) ); ?>
17
 
18
  <div class="postbox<?php echo $this->helper->postbox_closed( 'frontend-plugin-options', false ); ?>">
19
  <h3 class="hndle"><span><?php _e( 'Frontend Options', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span><span class="hide_link"><small><?php echo _x( 'Hide', 'expand', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span><span class="expand_link"><small><?php _e( 'Expand', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span></h3>
@@ -185,7 +185,7 @@
185
  <div class="inside">
186
  <p><?php _e( 'To export all Tables and their settings, click the button below to generate and download a dump file.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/><?php _e( '<strong>Warning</strong>: Do <strong>not</strong> edit the content of that file under any circumstances as you will destroy the file!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
187
  <form method="post" action="<?php echo $this->get_action_url(); ?>">
188
- <?php wp_nonce_field( $this->get_nonce( 'export_all' ) ); ?>
189
  <input type="submit" name="export_all" class="button-primary" value="<?php _e( 'Create and Download Dump File', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
190
  </form>
191
  </div>
@@ -199,7 +199,7 @@
199
  if ( $is_admin ) {
200
  ?>
201
  <form method="post" enctype="multipart/form-data" action="<?php echo $this->get_action_url(); ?>">
202
- <?php wp_nonce_field( $this->get_nonce( 'import_dump' ) ); ?>
203
  <label for="dump_file"><?php _e( 'Select Dump File', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label> <input name="dump_file" id="dump_file" type="file"<?php echo ( !$is_admin ) ? ' disabled="disabled"': '' ; ?> />
204
  <input type="hidden" name="action" value="import" />
205
  <input id="import_wp_table_reloaded_dump_file" type="submit" name="import_wp_table_reloaded_dump_file" class="button-primary" value="<?php _e( 'Import Dump File', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
13
 
14
  <div style="clear:both;">
15
  <form method="post" action="<?php echo $this->get_action_url(); ?>">
16
+ <?php wp_nonce_field( $this->get_nonce( 'options' ), $this->get_nonce( 'options' ) ); ?>
17
 
18
  <div class="postbox<?php echo $this->helper->postbox_closed( 'frontend-plugin-options', false ); ?>">
19
  <h3 class="hndle"><span><?php _e( 'Frontend Options', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span><span class="hide_link"><small><?php echo _x( 'Hide', 'expand', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span><span class="expand_link"><small><?php _e( 'Expand', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span></h3>
185
  <div class="inside">
186
  <p><?php _e( 'To export all Tables and their settings, click the button below to generate and download a dump file.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/><?php _e( '<strong>Warning</strong>: Do <strong>not</strong> edit the content of that file under any circumstances as you will destroy the file!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
187
  <form method="post" action="<?php echo $this->get_action_url(); ?>">
188
+ <?php wp_nonce_field( $this->get_nonce( 'export_all' ), $this->get_nonce( 'export_all' ) ); ?>
189
  <input type="submit" name="export_all" class="button-primary" value="<?php _e( 'Create and Download Dump File', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
190
  </form>
191
  </div>
199
  if ( $is_admin ) {
200
  ?>
201
  <form method="post" enctype="multipart/form-data" action="<?php echo $this->get_action_url(); ?>">
202
+ <?php wp_nonce_field( $this->get_nonce( 'import_dump' ), $this->get_nonce( 'import_dump' ) ); ?>
203
  <label for="dump_file"><?php _e( 'Select Dump File', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label> <input name="dump_file" id="dump_file" type="file"<?php echo ( !$is_admin ) ? ' disabled="disabled"': '' ; ?> />
204
  <input type="hidden" name="action" value="import" />
205
  <input id="import_wp_table_reloaded_dump_file" type="submit" name="import_wp_table_reloaded_dump_file" class="button-primary" value="<?php _e( 'Import Dump File', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
wp-table-reloaded.php CHANGED
@@ -4,14 +4,14 @@
4
  *
5
  * @package WP-Table Reloaded
6
  * @author Tobias B&auml;thge
7
- * @version 1.7
8
  */
9
 
10
  /*
11
  Plugin Name: WP-Table Reloaded
12
  Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
13
  Description: This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
14
- Version: 1.7
15
  Author: Tobias B&auml;thge
16
  Author URI: http://tobias.baethge.com/
17
  Author eMail: wordpress@tobias.baethge.com
@@ -47,7 +47,7 @@ if ( !defined( 'WP_TABLE_RELOADED_BASENAME' ) )
47
  if ( !defined( 'WP_TABLE_RELOADED__FILE__' ) )
48
  define( 'WP_TABLE_RELOADED__FILE__', __FILE__ );
49
  if ( !defined( 'WP_TABLE_RELOADED_PLUGIN_VERSION' ) )
50
- define( 'WP_TABLE_RELOADED_PLUGIN_VERSION', '1.7' );
51
 
52
  /**
53
  * Decide whether admin controller or frontend controller is loaded
@@ -67,7 +67,7 @@ if ( is_admin() ) {
67
  * Thus, the function is only available in the frontend part of WordPress.
68
  *
69
  * @see wp_table_reloaded_get_table
70
- * @param string $table_query Query string like list of parameters for Shortcode "table" rendering
71
  */
72
  function wp_table_reloaded_print_table( $table_query ) {
73
  echo wp_table_reloaded_get_table( $table_query );
@@ -77,11 +77,14 @@ if ( is_admin() ) {
77
  * Add function to retrieve the table HTML, needed for template tag function wp_table_reloaded_print_table
78
  *
79
  * @uses $WP_Table_Reloaded_Frontend
80
- * @param string $table_query Query string like list of parameters for Shortcode "table" rendering
81
  */
82
  function wp_table_reloaded_get_table( $table_query ) {
83
  global $WP_Table_Reloaded_Frontend;
84
- parse_str( $table_query, $atts );
 
 
 
85
  return $WP_Table_Reloaded_Frontend->handle_content_shortcode_table( $atts );
86
  }
87
 
@@ -93,7 +96,7 @@ if ( is_admin() ) {
93
  * Thus, the function is only available in the frontend part of WordPress.
94
  *
95
  * @see wp_table_reloaded_get_table_info
96
- * @param string $table_query Query string like list of parameters for Shortcode "table-info" rendering
97
  */
98
  function wp_table_reloaded_print_table_info( $table_query ) {
99
  echo wp_table_reloaded_get_table_info( $table_query );
@@ -103,11 +106,14 @@ if ( is_admin() ) {
103
  * Add function to retrieve the table-info HTML, needed for template tag function wp_table_reloaded_print_table_info
104
  *
105
  * @uses $WP_Table_Reloaded_Frontend
106
- * @param string $table_query Query string like list of parameters for Shortcode "table-info" rendering
107
  */
108
  function wp_table_reloaded_get_table_info( $table_query ) {
109
  global $WP_Table_Reloaded_Frontend;
110
- parse_str( $table_query, $atts );
 
 
 
111
  return $WP_Table_Reloaded_Frontend->handle_content_shortcode_table_info( $atts );
112
  }
113
 
4
  *
5
  * @package WP-Table Reloaded
6
  * @author Tobias B&auml;thge
7
+ * @version 1.8
8
  */
9
 
10
  /*
11
  Plugin Name: WP-Table Reloaded
12
  Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
13
  Description: This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
14
+ Version: 1.8
15
  Author: Tobias B&auml;thge
16
  Author URI: http://tobias.baethge.com/
17
  Author eMail: wordpress@tobias.baethge.com
47
  if ( !defined( 'WP_TABLE_RELOADED__FILE__' ) )
48
  define( 'WP_TABLE_RELOADED__FILE__', __FILE__ );
49
  if ( !defined( 'WP_TABLE_RELOADED_PLUGIN_VERSION' ) )
50
+ define( 'WP_TABLE_RELOADED_PLUGIN_VERSION', '1.8' );
51
 
52
  /**
53
  * Decide whether admin controller or frontend controller is loaded
67
  * Thus, the function is only available in the frontend part of WordPress.
68
  *
69
  * @see wp_table_reloaded_get_table
70
+ * @param string|array $table_query Query string like list or array of parameters for Shortcode "table" rendering
71
  */
72
  function wp_table_reloaded_print_table( $table_query ) {
73
  echo wp_table_reloaded_get_table( $table_query );
77
  * Add function to retrieve the table HTML, needed for template tag function wp_table_reloaded_print_table
78
  *
79
  * @uses $WP_Table_Reloaded_Frontend
80
+ * @param string|array $table_query Query string like list or array of parameters for Shortcode "table" rendering
81
  */
82
  function wp_table_reloaded_get_table( $table_query ) {
83
  global $WP_Table_Reloaded_Frontend;
84
+ if ( is_array( $table_query ) )
85
+ $atts = $table_query;
86
+ else
87
+ parse_str( $table_query, $atts );
88
  return $WP_Table_Reloaded_Frontend->handle_content_shortcode_table( $atts );
89
  }
90
 
96
  * Thus, the function is only available in the frontend part of WordPress.
97
  *
98
  * @see wp_table_reloaded_get_table_info
99
+ * @param string|array $table_query Query string like list or array of parameters for Shortcode "table-info" rendering
100
  */
101
  function wp_table_reloaded_print_table_info( $table_query ) {
102
  echo wp_table_reloaded_get_table_info( $table_query );
106
  * Add function to retrieve the table-info HTML, needed for template tag function wp_table_reloaded_print_table_info
107
  *
108
  * @uses $WP_Table_Reloaded_Frontend
109
+ * @param string|array $table_query Query string like list or array of parameters for Shortcode "table-info" rendering
110
  */
111
  function wp_table_reloaded_get_table_info( $table_query ) {
112
  global $WP_Table_Reloaded_Frontend;
113
+ if ( is_array( $table_query ) )
114
+ $atts = $table_query;
115
+ else
116
+ parse_str( $table_query, $atts );
117
  return $WP_Table_Reloaded_Frontend->handle_content_shortcode_table_info( $atts );
118
  }
119