wpDataTables Lite - Version 2.1.10

Version Description

  • Feature: Add new option for creating 3D pie chart
  • Feature: Search for tables and charts using ID on browse pages
  • Added translate functions on several strings.
  • Added German translation
  • Bugfix: Fixed issue with Fatal errors if allow_url_fopen is turned off on server.
  • Bugfix: Fixed issue with loading simple table preview after clicking on back button in browser from some pages.
  • Bugfix: Fixed issue with inserting px in column width option.
  • Compatibility with WordPress 5.7 approved.
  • Other small bug fixes and stability improvements.
Download this release

Release Info

Developer wpDataTables
Plugin Icon 128x128 wpDataTables Lite
Version 2.1.10
Comparing to
See all releases

Code changes from version 2.1.9 to 2.1.10

Files changed (38) hide show
  1. assets/js/wpdatatables/admin/constructor/wdt.simpleTable.js +9 -0
  2. assets/js/wpdatatables/admin/table-settings/column_config_object.js +2 -1
  3. assets/js/wpdatatables/admin/table-settings/table_config_object.js +2 -0
  4. assets/js/wpdatatables/wdt.chartWizard.js +7 -0
  5. assets/js/wpdatatables/wdt.googleCharts.js +3 -0
  6. assets/js/wpdatatables/wdt.googleCharts.min.js +1 -1
  7. config/config.inc.php +1 -1
  8. controllers/wdt_admin.php +1 -1
  9. controllers/wdt_functions.php +52 -0
  10. languages/de_DE/wpdatatables-de_DE.mo +0 -0
  11. languages/de_DE/wpdatatables-de_DE.po +9517 -0
  12. languages/en_US/wpdatatables-en_US.mo +0 -0
  13. languages/en_US/wpdatatables-en_US.po +263 -208
  14. languages/fr_FR/wpdatatables-fr_FR.mo +0 -0
  15. languages/fr_FR/wpdatatables-fr_FR.po +263 -214
  16. languages/hu_HU/wpdatatables-hu_HU.mo +0 -0
  17. languages/hu_HU/wpdatatables-hu_HU.po +263 -208
  18. languages/nl_NL/nl_NL.mo +0 -0
  19. languages/nl_NL/nl_NL.po +263 -208
  20. languages/nl_NL/wpdatatables-nl_NL.mo +0 -0
  21. languages/nl_NL/wpdatatables-nl_NL.po +263 -208
  22. languages/pl_PL/wpdatatables-pl_PL.mo +0 -0
  23. languages/pl_PL/wpdatatables-pl_PL.po +263 -214
  24. languages/ru_RU/wpdatatables-ru_RU.mo +0 -0
  25. languages/ru_RU/wpdatatables-ru_RU.po +263 -214
  26. languages/sl_SI/wpdatatables-sl_SI.mo +0 -0
  27. languages/sl_SI/wpdatatables-sl_SI.po +263 -214
  28. readme.txt +13 -2
  29. source/class.wdtbrowsechartstable.php +13 -1
  30. source/class.wpdatachart.php +18 -1
  31. templates/admin/browse/search_box.inc.php +1 -1
  32. templates/admin/chart_wizard/steps/step1.inc.php +1 -1
  33. templates/admin/chart_wizard/steps/step4.inc.php +11 -0
  34. templates/admin/dashboard/dashboard.inc.php +35 -13
  35. templates/admin/lite-vs-premium/lite_vs_premium.inc.php +84 -0
  36. templates/admin/table-settings/table_settings_block.inc.php +1 -1
  37. templates/chart_wizard.inc.php +1 -1
  38. wpdatatables.php +1 -1
assets/js/wpdatatables/admin/constructor/wdt.simpleTable.js CHANGED
@@ -16,6 +16,15 @@
16
  * Init wpdtEditor (instance of Handsontable)
17
  */
18
  if (container.length) {
 
 
 
 
 
 
 
 
 
19
  var wpdtEditor = new Handsontable(container[0], {
20
  startRows: rowNumber,
21
  startCols: colNumber,
16
  * Init wpdtEditor (instance of Handsontable)
17
  */
18
  if (container.length) {
19
+
20
+ var perfEntries = performance.getEntriesByType("navigation");
21
+
22
+ // Reload page with simple table editor if is coming from some
23
+ // page after back button in browser
24
+ if (perfEntries[0].type === "back_forward") {
25
+ location.reload();
26
+ }
27
+
28
  var wpdtEditor = new Handsontable(container[0], {
29
  startRows: rowNumber,
30
  startCols: colNumber,
assets/js/wpdatatables/admin/table-settings/column_config_object.js CHANGED
@@ -1237,7 +1237,8 @@ WDTColumn.prototype.applyChanges = function () {
1237
 
1238
  this.color = jQuery('#wdt-column-color').val();
1239
  this.visible = jQuery('#wdt-column-visible').is(':checked') ? 1 : 0;
1240
- this.width = jQuery('#wdt-column-width').val();
 
1241
  this.decimalPlaces = ((this.type == 'float' || this.type == 'formula') && jQuery('#wdt-column-decimal-places').val() != '') ?
1242
  jQuery('#wdt-column-decimal-places').val() : -1;
1243
  if (jQuery.inArray(this.type, ['date', 'datetime']) !== -1) {
1237
 
1238
  this.color = jQuery('#wdt-column-color').val();
1239
  this.visible = jQuery('#wdt-column-visible').is(':checked') ? 1 : 0;
1240
+ let tempColumnWidth = jQuery('#wdt-column-width').val();
1241
+ this.width = tempColumnWidth.indexOf('px') != -1 ? tempColumnWidth.replace('px','') : tempColumnWidth;
1242
  this.decimalPlaces = ((this.type == 'float' || this.type == 'formula') && jQuery('#wdt-column-decimal-places').val() != '') ?
1243
  jQuery('#wdt-column-decimal-places').val() : -1;
1244
  if (jQuery.inArray(this.type, ['date', 'datetime']) !== -1) {
assets/js/wpdatatables/admin/table-settings/table_config_object.js CHANGED
@@ -169,6 +169,7 @@ var wpdatatable_config = {
169
  jQuery('.display-settings-tab').animateFadeIn();
170
  jQuery('.table-sorting-filtering-settings-tab').animateFadeIn();
171
  jQuery('.table-tools-settings-tab').animateFadeIn();
 
172
  }
173
  if( wpdatatable_config.table_type == 'mysql' ) {
174
  if( !jQuery('.placeholders-settings-tab').is(':visible') ){
@@ -190,6 +191,7 @@ var wpdatatable_config = {
190
  jQuery('.display-settings-tab').addClass('hidden');
191
  jQuery('.table-sorting-filtering-settings-tab').addClass('hidden');
192
  jQuery('.table-tools-settings-tab').addClass('hidden');
 
193
  jQuery('.editing-settings-tab').addClass('hidden');
194
  jQuery('.placeholders-settings-tab').addClass('hidden');
195
  jQuery('button.wdt-apply').prop( 'disabled', 'disabled' );
169
  jQuery('.display-settings-tab').animateFadeIn();
170
  jQuery('.table-sorting-filtering-settings-tab').animateFadeIn();
171
  jQuery('.table-tools-settings-tab').animateFadeIn();
172
+ jQuery('.customize-table-settings-tab').animateFadeIn();
173
  }
174
  if( wpdatatable_config.table_type == 'mysql' ) {
175
  if( !jQuery('.placeholders-settings-tab').is(':visible') ){
191
  jQuery('.display-settings-tab').addClass('hidden');
192
  jQuery('.table-sorting-filtering-settings-tab').addClass('hidden');
193
  jQuery('.table-tools-settings-tab').addClass('hidden');
194
+ jQuery('.customize-table-settings-tab').addClass('hidden');
195
  jQuery('.editing-settings-tab').addClass('hidden');
196
  jQuery('.placeholders-settings-tab').addClass('hidden');
197
  jQuery('button.wdt-apply').prop( 'disabled', 'disabled' );
assets/js/wpdatatables/wdt.chartWizard.js CHANGED
@@ -434,6 +434,7 @@ var wdtChartColumnsData = {};
434
  constructedChartData.plot_background_image = $('#plot-background-image').val();
435
  constructedChartData.plot_border_width = $('#plot-border-width').val();
436
  constructedChartData.plot_border_color = $('input.plot-border-color').val();
 
437
  // Series
438
  if (typeof constructedChartData.series_data == 'undefined') {
439
  constructedChartData.series_data = {};
@@ -741,6 +742,12 @@ var wdtChartColumnsData = {};
741
  }
742
  }
743
 
 
 
 
 
 
 
744
 
745
  // Title
746
  if (editing_chart_data.render_data.options.titlePosition == null) {
434
  constructedChartData.plot_background_image = $('#plot-background-image').val();
435
  constructedChartData.plot_border_width = $('#plot-border-width').val();
436
  constructedChartData.plot_border_color = $('input.plot-border-color').val();
437
+ constructedChartData.three_d = $('#three-d').is(':checked') ? 1 : 0;
438
  // Series
439
  if (typeof constructedChartData.series_data == 'undefined') {
440
  constructedChartData.series_data = {};
742
  }
743
  }
744
 
745
+ if (editing_chart_data.render_data.options.is3D) {
746
+ $('#three-d').prop('checked', 'checked');
747
+ } else {
748
+ $('#three-d').prop('checked', '');
749
+ }
750
+
751
 
752
  // Title
753
  if (editing_chart_data.render_data.options.titlePosition == null) {
assets/js/wpdatatables/wdt.googleCharts.js CHANGED
@@ -217,6 +217,9 @@ var wpDataTablesGoogleChart = function () {
217
  this.options.chartArea.backgroundColor.fill = chartConfig.plot_background_color;
218
  chartConfig.plot_border_width ? this.options.chartArea.backgroundColor.strokeWidth = chartConfig.plot_border_width : null;
219
  this.options.chartArea.backgroundColor.stroke = chartConfig.plot_border_color;
 
 
 
220
 
221
  // Series
222
  var j = 0;
217
  this.options.chartArea.backgroundColor.fill = chartConfig.plot_background_color;
218
  chartConfig.plot_border_width ? this.options.chartArea.backgroundColor.strokeWidth = chartConfig.plot_border_width : null;
219
  this.options.chartArea.backgroundColor.stroke = chartConfig.plot_border_color;
220
+ if (chartConfig.chart_type == 'google_pie_chart'){
221
+ chartConfig.three_d == 1 ? this.options.is3D = true : this.options.is3D = false;
222
+ }
223
 
224
  // Series
225
  var j = 0;
assets/js/wpdatatables/wdt.googleCharts.min.js CHANGED
@@ -1 +1 @@
1
- google.charts.load("current",{packages:["corechart","bar","gauge","scatter"]});var wpDataTablesGoogleChart=function(){var t={rows:[],columns:[],type:"column",containerId:"google-chart-container",columnIndexes:[],connectedWPDataTable:null,chart:null,googleDataTable:null,renderCallback:null,options:{animation:"none",backgroundColor:{fill:"#FFFFFF",strokeWidth:0,stroke:"#666",rx:0},chartArea:{backgroundColor:{}},crosshair:{},height:400,legend:{position:"right"},orientation:"horizontal",titlePosition:"out",tooltip:{trigger:"none"},vAxis:{direction:1,viewWindow:{}}},setRows:function(t){this.rows=t},enableDateTimeAxis:function(){this.options.hAxis.gridlines={count:-1,units:{days:{format:["MMM dd"]},hours:{format:["HH:mm","ha"]}}}},detectDates:function(){for(var t in this.columns)if("date"==this.columns[t].type||"datetime"==this.columns[t].type)for(var o in this.rows){var e=Date.parse(this.rows[o][t]);if(isNaN(e))this.rows[o][t]=new Date;else if(this.rows[o][t]=new Date(e),null==this.connectedWPDataTable){var i=this.rows[o][t].getTime();"datetime"==this.columns[t].type&&(i+=60*this.rows[o][t].getTimezoneOffset()*1e3),this.rows[o][t].setTime(i)}else this.rows[o][t].setTime(this.rows[o][t].getTime());"datetime"==this.columns[t].type&&this.enableDateTimeAxis()}},setColumns:function(t){this.columns=t},getColumns:function(){return this.columns},setOptions:function(o){for(var e in o)"responsive_width"!=e||"1"!=o[e]?this.options[e]=o[e]:(t.options.animation=!1,jQuery(window).resize(function(){t.chart.draw(t.googleDataTable,t.options)}))},getOptions:function(){return this.options},setType:function(t){this.type=t},getType:function(){return this.type},setContainer:function(t){this.containerId=t},getContainer:function(){return this.containerId},setRenderCallback:function(t){this.renderCallback=t},render:function(){for(var t in this.googleDataTable=new google.visualization.DataTable,this.columns)t==parseInt(t)&&this.googleDataTable.addColumn(this.columns[t]);switch(this.detectDates(),this.googleDataTable.addRows(this.rows),this.type){case"google_column_chart":this.chart=new google.visualization.ColumnChart(document.getElementById(this.containerId));break;case"google_histogram":this.chart=new google.visualization.Histogram(document.getElementById(this.containerId));break;case"google_bar_chart":this.options.orientation="vertical",this.chart=new google.visualization.BarChart(document.getElementById(this.containerId));break;case"google_stacked_bar_chart":this.options.orientation="vertical",this.options.isStacked=!0,this.chart=new google.visualization.BarChart(document.getElementById(this.containerId));break;case"google_area_chart":this.chart=new google.visualization.AreaChart(document.getElementById(this.containerId));break;case"google_stepped_area_chart":this.options.isStacked=!0,this.chart=new google.visualization.SteppedAreaChart(document.getElementById(this.containerId));break;case"google_line_chart":this.chart=new google.visualization.LineChart(document.getElementById(this.containerId));break;case"google_pie_chart":this.chart=new google.visualization.PieChart(document.getElementById(this.containerId));break;case"google_bubble_chart":this.chart=new google.visualization.BubbleChart(document.getElementById(this.containerId));break;case"google_donut_chart":this.options.pieHole=.4,this.chart=new google.visualization.PieChart(document.getElementById(this.containerId));break;case"google_gauge_chart":this.options.redFrom=90,this.options.redTo=100,this.options.yellowFrom=75,this.options.yellowTo=90,this.options.minorTicks=5,this.chart=new google.visualization.Gauge(document.getElementById(this.containerId));break;case"google_scatter_chart":this.chart=new google.visualization.ScatterChart(document.getElementById(this.containerId));break;case"google_candlestick_chart":this.options.legend="none",this.chart=new google.visualization.CandlestickChart(document.getElementById(this.containerId));break;case"google_waterfall_chart":this.options.legend="none",this.options.bar={groupWidth:"100%"},this.options.candlestick={fallingColor:{strokeWidth:0,fill:"#a52714"},risingColor:{strokeWidth:0,fill:"#0f9d58"}},this.chart=new google.visualization.CandlestickChart(document.getElementById(this.containerId))}null!==this.renderCallback&&this.renderCallback(this),this.chart.draw(this.googleDataTable,this.options)},refresh:function(){if(void 0!==google.visualization.DataTable&&null!=this.chart){for(var t in this.googleDataTable=new google.visualization.DataTable,this.columns)this.googleDataTable.addColumn(this.columns[t]);this.detectDates(),this.googleDataTable.addRows(this.rows),null!==this.renderCallback&&this.renderCallback(this),this.chart.draw(this.googleDataTable,this.options)}},setChartConfig:function(t){this.options.width=t.width,t.height&&(this.options.height=t.height),this.options.backgroundColor.fill=t.background_color,t.border_width&&(this.options.backgroundColor.strokeWidth=t.border_width),this.options.backgroundColor.stroke=t.border_color,t.border_radius&&(this.options.backgroundColor.rx=t.border_radius),t.border_radius&&(this.options.backgroundColor.rx=t.border_radius),this.options.chartArea.backgroundColor.fill=t.plot_background_color,t.plot_border_width&&(this.options.chartArea.backgroundColor.strokeWidth=t.plot_border_width),this.options.chartArea.backgroundColor.stroke=t.plot_border_color;var o=0;for(var e in t.series_data)this.columns[o+1].label=t.series_data[e].label,""!=t.series_data[e].color&&(this.options.series[o]={color:t.series_data[e].color}),o++;0==t.show_grid?(this.options.hAxis.gridlines={color:"transparent"},this.options.vAxis.gridlines={color:"transparent"}):(delete this.options.hAxis.gridlines,delete this.options.vAxis.gridlines),t.horizontal_axis_label&&(this.options.hAxis.title=t.horizontal_axis_label),t.vertical_axis_label&&(this.options.vAxis.title=t.vertical_axis_label),1==t.show_title?this.options.title=t.chart_title:this.options.title="",1==t.title_floating?this.options.titlePosition="in":this.options.titlePosition="out",1==t.tooltip_enabled?this.options.tooltip.trigger="focus":this.options.tooltip.trigger="none",t.legend_position&&(this.options.legend.position=t.legend_position),"bottom"==t.legend_vertical_align?this.options.legend.alignment="end":"middle"==t.legend_vertical_align?this.options.legend.alignment="center":this.options.legend.alignment="start"},setColumnIndexes:function(t){this.columnIndexes=t},getColumnIndexes:function(){return this.columnIndexes}};return t};
1
+ google.charts.load("current",{packages:["corechart","bar","gauge","scatter"]});var wpDataTablesGoogleChart=function(){var t={rows:[],columns:[],type:"column",containerId:"google-chart-container",columnIndexes:[],connectedWPDataTable:null,chart:null,googleDataTable:null,renderCallback:null,options:{animation:"none",backgroundColor:{fill:"#FFFFFF",strokeWidth:0,stroke:"#666",rx:0},chartArea:{backgroundColor:{}},crosshair:{},height:400,legend:{position:"right"},orientation:"horizontal",titlePosition:"out",tooltip:{trigger:"none"},vAxis:{direction:1,viewWindow:{}}},setRows:function(t){this.rows=t},enableDateTimeAxis:function(){this.options.hAxis.gridlines={count:-1,units:{days:{format:["MMM dd"]},hours:{format:["HH:mm","ha"]}}}},detectDates:function(){for(var t in this.columns)if("date"==this.columns[t].type||"datetime"==this.columns[t].type)for(var o in this.rows){var e=Date.parse(this.rows[o][t]);if(isNaN(e))this.rows[o][t]=new Date;else if(this.rows[o][t]=new Date(e),null==this.connectedWPDataTable){var i=this.rows[o][t].getTime();"datetime"==this.columns[t].type&&(i+=60*this.rows[o][t].getTimezoneOffset()*1e3),this.rows[o][t].setTime(i)}else this.rows[o][t].setTime(this.rows[o][t].getTime());"datetime"==this.columns[t].type&&this.enableDateTimeAxis()}},setColumns:function(t){this.columns=t},getColumns:function(){return this.columns},setOptions:function(o){for(var e in o)"responsive_width"!=e||"1"!=o[e]?this.options[e]=o[e]:(t.options.animation=!1,jQuery(window).resize(function(){t.chart.draw(t.googleDataTable,t.options)}))},getOptions:function(){return this.options},setType:function(t){this.type=t},getType:function(){return this.type},setContainer:function(t){this.containerId=t},getContainer:function(){return this.containerId},setRenderCallback:function(t){this.renderCallback=t},render:function(){for(var t in this.googleDataTable=new google.visualization.DataTable,this.columns)t==parseInt(t)&&this.googleDataTable.addColumn(this.columns[t]);switch(this.detectDates(),this.googleDataTable.addRows(this.rows),this.type){case"google_column_chart":this.chart=new google.visualization.ColumnChart(document.getElementById(this.containerId));break;case"google_histogram":this.chart=new google.visualization.Histogram(document.getElementById(this.containerId));break;case"google_bar_chart":this.options.orientation="vertical",this.chart=new google.visualization.BarChart(document.getElementById(this.containerId));break;case"google_stacked_bar_chart":this.options.orientation="vertical",this.options.isStacked=!0,this.chart=new google.visualization.BarChart(document.getElementById(this.containerId));break;case"google_area_chart":this.chart=new google.visualization.AreaChart(document.getElementById(this.containerId));break;case"google_stepped_area_chart":this.options.isStacked=!0,this.chart=new google.visualization.SteppedAreaChart(document.getElementById(this.containerId));break;case"google_line_chart":this.chart=new google.visualization.LineChart(document.getElementById(this.containerId));break;case"google_pie_chart":this.chart=new google.visualization.PieChart(document.getElementById(this.containerId));break;case"google_bubble_chart":this.chart=new google.visualization.BubbleChart(document.getElementById(this.containerId));break;case"google_donut_chart":this.options.pieHole=.4,this.chart=new google.visualization.PieChart(document.getElementById(this.containerId));break;case"google_gauge_chart":this.options.redFrom=90,this.options.redTo=100,this.options.yellowFrom=75,this.options.yellowTo=90,this.options.minorTicks=5,this.chart=new google.visualization.Gauge(document.getElementById(this.containerId));break;case"google_scatter_chart":this.chart=new google.visualization.ScatterChart(document.getElementById(this.containerId));break;case"google_candlestick_chart":this.options.legend="none",this.chart=new google.visualization.CandlestickChart(document.getElementById(this.containerId));break;case"google_waterfall_chart":this.options.legend="none",this.options.bar={groupWidth:"100%"},this.options.candlestick={fallingColor:{strokeWidth:0,fill:"#a52714"},risingColor:{strokeWidth:0,fill:"#0f9d58"}},this.chart=new google.visualization.CandlestickChart(document.getElementById(this.containerId))}null!==this.renderCallback&&this.renderCallback(this),this.chart.draw(this.googleDataTable,this.options)},refresh:function(){if(void 0!==google.visualization.DataTable&&null!=this.chart){for(var t in this.googleDataTable=new google.visualization.DataTable,this.columns)this.googleDataTable.addColumn(this.columns[t]);this.detectDates(),this.googleDataTable.addRows(this.rows),null!==this.renderCallback&&this.renderCallback(this),this.chart.draw(this.googleDataTable,this.options)}},setChartConfig:function(t){this.options.width=t.width,t.height&&(this.options.height=t.height),this.options.backgroundColor.fill=t.background_color,t.border_width&&(this.options.backgroundColor.strokeWidth=t.border_width),this.options.backgroundColor.stroke=t.border_color,t.border_radius&&(this.options.backgroundColor.rx=t.border_radius),t.border_radius&&(this.options.backgroundColor.rx=t.border_radius),this.options.chartArea.backgroundColor.fill=t.plot_background_color,t.plot_border_width&&(this.options.chartArea.backgroundColor.strokeWidth=t.plot_border_width),this.options.chartArea.backgroundColor.stroke=t.plot_border_color,"google_pie_chart"==t.chart_type&&(1==t.three_d?this.options.is3D=!0:this.options.is3D=!1);var o=0;for(var e in t.series_data)this.columns[o+1].label=t.series_data[e].label,""!=t.series_data[e].color&&(this.options.series[o]={color:t.series_data[e].color}),o++;0==t.show_grid?(this.options.hAxis.gridlines={color:"transparent"},this.options.vAxis.gridlines={color:"transparent"}):(delete this.options.hAxis.gridlines,delete this.options.vAxis.gridlines),t.horizontal_axis_label&&(this.options.hAxis.title=t.horizontal_axis_label),t.vertical_axis_label&&(this.options.vAxis.title=t.vertical_axis_label),1==t.show_title?this.options.title=t.chart_title:this.options.title="",1==t.title_floating?this.options.titlePosition="in":this.options.titlePosition="out",1==t.tooltip_enabled?this.options.tooltip.trigger="focus":this.options.tooltip.trigger="none",t.legend_position&&(this.options.legend.position=t.legend_position),"bottom"==t.legend_vertical_align?this.options.legend.alignment="end":"middle"==t.legend_vertical_align?this.options.legend.alignment="center":this.options.legend.alignment="start"},setColumnIndexes:function(t){this.columnIndexes=t},getColumnIndexes:function(){return this.columnIndexes}};return t};
config/config.inc.php CHANGED
@@ -9,7 +9,7 @@ defined('ABSPATH') or die("Cannot access pages directly.");
9
 
10
  // Current version
11
 
12
- define('WDT_CURRENT_VERSION', '2.1.9');
13
 
14
  /**
15
  * Regular Expressions
9
 
10
  // Current version
11
 
12
+ define('WDT_CURRENT_VERSION', '2.1.10');
13
 
14
  /**
15
  * Regular Expressions
controllers/wdt_admin.php CHANGED
@@ -113,7 +113,7 @@ function wdtAdminMenu()
113
  );
114
  add_submenu_page(
115
  'wpdatatables-dashboard',
116
- __('Get Premium', 'wpdatatables'),
117
  '<span class="dashicons dashicons-star-filled" style="color: #ff8c00"></span><span id="wpdatatables-lite-go-premium-link" style="color: #ff8c00;font-weight: 500;display: inline-block;margin-left: 5px;margin-top: 2px;">' . __('Go Premium', 'wpdatatables') . '</span>',
118
  'manage_options',
119
  'https://wpdatatables.com/pricing/?utm_source=lite&utm_medium=plugin&utm_campaign=wpdtlite'
113
  );
114
  add_submenu_page(
115
  'wpdatatables-dashboard',
116
+ __('Go Premium', 'wpdatatables'),
117
  '<span class="dashicons dashicons-star-filled" style="color: #ff8c00"></span><span id="wpdatatables-lite-go-premium-link" style="color: #ff8c00;font-weight: 500;display: inline-block;margin-left: 5px;margin-top: 2px;">' . __('Go Premium', 'wpdatatables') . '</span>',
118
  'manage_options',
119
  'https://wpdatatables.com/pricing/?utm_source=lite&utm_medium=plugin&utm_campaign=wpdtlite'
controllers/wdt_functions.php CHANGED
@@ -812,6 +812,58 @@ if ($wp_version < 4.4) {
812
  }
813
  }
814
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
815
 
816
  /**
817
  * Optional Visual Composer integration
812
  }
813
  }
814
 
815
+ /**
816
+ * Add plugin action links Plugins page
817
+ */
818
+ function wpdt_add_plugin_action_links( $links ) {
819
+
820
+ // Settings link.
821
+ $settings_links= '<a href="' . admin_url( 'admin.php?page=wpdatatables-settings' ) . '" aria-label="' . esc_attr( __( 'Go to Settings', 'wpdatatables' ) ) . '">' . esc_html__( 'Settings', 'wpdatatables' ) . '</a>';
822
+
823
+ array_unshift( $links, $settings_links );
824
+
825
+ // Go Premium link.
826
+ $links['go_premium'] = '<a href="' . esc_url( 'https://wpdatatables.com/pricing/?utm_source=lite&utm_medium=plugin&utm_campaign=wpdtlite' ) . '" aria-label="' . esc_attr( __( 'Go Premium', 'wpdatatables' ) ) . '" style="color: #ff8c00;font-weight:700" target="_blank">' . esc_html__( 'Go Premium', 'wpdatatables' ) . '</a>';
827
+
828
+ return $links;
829
+ }
830
+ add_filter( 'plugin_action_links_' . WDT_BASENAME , 'wpdt_add_plugin_action_links' );
831
+
832
+ /**
833
+ * Add links next to plugin details on Plugins page
834
+ */
835
+ function wpdt_plugin_row_meta( $links, $file, $plugin_data ) {
836
+
837
+ if ( WDT_BASENAME === $file ) {
838
+ // Show network meta links only when activated network wide.
839
+ if ( is_network_admin() ) {
840
+ return $links;
841
+ }
842
+
843
+ // Change AuthorURI link.
844
+ if ( isset( $links[1] ) ){
845
+ $author_uri = sprintf(
846
+ '<a href="%s" target="_blank">%s</a>',
847
+ $plugin_data['AuthorURI'],
848
+ $plugin_data['Author']
849
+ );
850
+ $links[1] = sprintf( __( 'By %s' ), $author_uri );
851
+ }
852
+
853
+ // Documentation link.
854
+ $row_meta['docs'] = '<a href="' . esc_url( 'https://wpdatatables.com/documentation/general/features-overview/' ) . '" aria-label="' . esc_attr( __( 'Docs', 'wpdatatables' ) ) . '" target="_blank">' . esc_html__( 'Docs', 'wpdatatables' ) . '</a>';
855
+
856
+ // Add Support Center page link
857
+ $row_meta['support'] = '<a href="' . admin_url( 'admin.php?page=wpdatatables-support' ) . '" aria-label="' . esc_attr__( 'Support Center', 'wpdatatables' ) . '" target="_blank">' . esc_html__( 'Support Center', 'wpdatatables' ) . '</a>';
858
+
859
+ return array_merge( $links, $row_meta );
860
+ }
861
+
862
+ return $links;
863
+
864
+ }
865
+
866
+ add_filter( 'plugin_row_meta', 'wpdt_plugin_row_meta' , 10, 3 );
867
 
868
  /**
869
  * Optional Visual Composer integration
languages/de_DE/wpdatatables-de_DE.mo ADDED
Binary file
languages/de_DE/wpdatatables-de_DE.po ADDED
@@ -0,0 +1,9517 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpdatatables\n"
4
+ "POT-Creation-Date: 2021-03-19 13:23+0100\n"
5
+ "PO-Revision-Date: 2021-03-19 13:30+0100\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
+ "Language: en\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.7.1\n"
13
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
14
+ "X-Poedit-Basepath: ../..\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+ "X-Poedit-SearchPathExcluded-0: assets/js/tagsinput/jquery.tagsinput.js\n"
19
+ "X-Poedit-SearchPathExcluded-1: assets/js/ace/ace.js\n"
20
+ "X-Poedit-SearchPathExcluded-2: assets/js/chartjs/Chart.js\n"
21
+ "X-Poedit-SearchPathExcluded-3: assets/js/export-tools\n"
22
+ "X-Poedit-SearchPathExcluded-4: assets/js/handsontable\n"
23
+ "X-Poedit-SearchPathExcluded-5: assets/js/jquery-datatables\n"
24
+ "X-Poedit-SearchPathExcluded-6: assets/js/moment\n"
25
+ "X-Poedit-SearchPathExcluded-7: assets/js/tagsinput\n"
26
+ "X-Poedit-SearchPathExcluded-8: lib\n"
27
+ "X-Poedit-SearchPathExcluded-9: lib/squizlabs/php_codesniffer/src/Standards/"
28
+ "Generic/Tests/Files/EndFileNewlineUnitTest.2.js\n"
29
+ "X-Poedit-SearchPathExcluded-10: lib/squizlabs/php_codesniffer/src/Standards/"
30
+ "Generic/Tests/Files/EndFileNoNewlineUnitTest.1.js.fixed\n"
31
+ "X-Poedit-SearchPathExcluded-11: lib/squizlabs/php_codesniffer/src/Standards/"
32
+ "Generic/Tests/Files/EndFileNoNewlineUnitTest.2.js\n"
33
+ "X-Poedit-SearchPathExcluded-12: lib/squizlabs/php_codesniffer/src/Standards/"
34
+ "Generic/Tests/Files/EndFileNoNewlineUnitTest.1.js\n"
35
+ "X-Poedit-SearchPathExcluded-13: lib/squizlabs/php_codesniffer/src/Standards/"
36
+ "Squiz/Tests/Commenting/InlineCommentUnitTest.js\n"
37
+ "X-Poedit-SearchPathExcluded-14: lib/doctrine/annotations/docs/en/annotations."
38
+ "rst\n"
39
+ "X-Poedit-SearchPathExcluded-15: lib\n"
40
+
41
+ #: controllers/wdt_admin.php:20 controllers/wdt_admin.php:21
42
+ #: templates/admin/dashboard/dashboard.inc.php:23
43
+ msgid "Dashboard"
44
+ msgstr "Instrumententafel"
45
+
46
+ #: controllers/wdt_admin.php:28 controllers/wdt_admin.php:29
47
+ msgid "wpDataTables"
48
+ msgstr "wpDataTables"
49
+
50
+ #: controllers/wdt_admin.php:36 controllers/wdt_admin.php:37
51
+ #: templates/admin/constructor/constructor.inc.php:23
52
+ #: templates/admin/constructor/constructor.inc.php:24
53
+ #: templates/admin/dashboard/dashboard.inc.php:53
54
+ msgid "Create a Table"
55
+ msgstr "Tabelle erstellen"
56
+
57
+ #: controllers/wdt_admin.php:44 controllers/wdt_admin.php:45
58
+ msgid "wpDataCharts"
59
+ msgstr "wpDataCharts"
60
+
61
+ #: controllers/wdt_admin.php:52 controllers/wdt_admin.php:53
62
+ #: templates/admin/chart_wizard/chart_wizard.inc.php:33
63
+ #: templates/admin/chart_wizard/chart_wizard.inc.php:34
64
+ #: templates/admin/dashboard/dashboard.inc.php:57
65
+ #: templates/admin/dashboard/dashboard.inc.php:177
66
+ msgid "Create a Chart"
67
+ msgstr "Diagramm erstellen"
68
+
69
+ #: controllers/wdt_admin.php:60 controllers/wdt_admin.php:61
70
+ #: templates/admin/dashboard/dashboard.inc.php:255
71
+ #: templates/admin/settings/settings.inc.php:23
72
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:35
73
+ #: templates/admin/table-settings/table_settings_block.inc.php:34
74
+ msgid "Settings"
75
+ msgstr "Einstellungen"
76
+
77
+ #: controllers/wdt_admin.php:68 controllers/wdt_admin.php:69
78
+ msgid "System info"
79
+ msgstr "System Informationen"
80
+
81
+ #: controllers/wdt_admin.php:76 controllers/wdt_admin.php:77
82
+ msgid "Getting Started"
83
+ msgstr "Einstieg"
84
+
85
+ #: controllers/wdt_admin.php:84 controllers/wdt_admin.php:85
86
+ msgid "Get Help"
87
+ msgstr "Hilfe bekommen"
88
+
89
+ #: controllers/wdt_admin.php:92 controllers/wdt_admin.php:93
90
+ msgid "Lite vs Premium"
91
+ msgstr "Lite vs Premium"
92
+
93
+ #: controllers/wdt_admin.php:100
94
+ msgid "Add-ons"
95
+ msgstr "Add-ons"
96
+
97
+ #: controllers/wdt_admin.php:101 templates/admin/addons/addons.inc.php:23
98
+ msgid "Addons"
99
+ msgstr "Addons"
100
+
101
+ #: controllers/wdt_admin.php:108 controllers/wdt_admin.php:109
102
+ msgid "Welcome page"
103
+ msgstr "Startseite"
104
+
105
+ #: controllers/wdt_admin.php:116 controllers/wdt_admin.php:117
106
+ #: controllers/wdt_functions.php:826
107
+ msgid "Go Premium"
108
+ msgstr "Gehen Sie Premium"
109
+
110
+ #: controllers/wdt_admin.php:517 controllers/wdt_admin.php:566
111
+ #: controllers/wdt_admin.php:609 controllers/wdt_admin.php:630
112
+ #: controllers/wdt_admin.php:677 controllers/wdt_admin.php:703
113
+ #: controllers/wdt_admin.php:722 controllers/wdt_admin.php:742
114
+ #: controllers/wdt_admin.php:761 controllers/wdt_admin.php:781
115
+ #: controllers/wdt_admin.php:801 controllers/wdt_admin.php:821
116
+ #: controllers/wdt_admin.php:840
117
+ msgid "You do not have sufficient permissions to access this page."
118
+ msgstr ""
119
+ "Sie haben nicht genügend Berechtigungen, um auf diese Seite zuzugreifen."
120
+
121
+ #: controllers/wdt_functions.php:486
122
+ msgid "wpDataChart with provided ID not found!"
123
+ msgstr "wpDataChart mit angegebener ID nicht gefunden!"
124
+
125
+ #: controllers/wdt_functions.php:522 controllers/wdt_functions.php:603
126
+ msgid "wpDataTable with provided ID not found!"
127
+ msgstr "wpDataTable mit angegebener ID nicht gefunden!"
128
+
129
+ #: controllers/wdt_functions.php:613
130
+ msgid "Provided column is not Integer or Float column type"
131
+ msgstr "Die angegebene Spalte ist kein Integer- oder Float-Spaltentyp"
132
+
133
+ #: controllers/wdt_functions.php:821
134
+ msgid "Go to Settings"
135
+ msgstr ""
136
+
137
+ #: controllers/wdt_functions.php:850
138
+ #, php-format
139
+ msgid "By %s"
140
+ msgstr ""
141
+
142
+ #: controllers/wdt_functions.php:854
143
+ msgid "Docs"
144
+ msgstr ""
145
+
146
+ #: controllers/wdt_functions.php:882
147
+ msgid "Choose a table"
148
+ msgstr "Tabelle auswählen"
149
+
150
+ #: controllers/wdt_functions.php:914
151
+ msgid "Interactive Responsive Table"
152
+ msgstr "Interaktive responsive Tabelle"
153
+
154
+ #: controllers/wdt_functions.php:915 controllers/wdt_functions.php:976
155
+ msgid "Content"
156
+ msgstr "Inhalt"
157
+
158
+ #: controllers/wdt_functions.php:921
159
+ msgid "wpDataTable"
160
+ msgstr "wpDataTable"
161
+
162
+ #: controllers/wdt_functions.php:925
163
+ msgid "Choose the wpDataTable from a dropdown"
164
+ msgstr "Wählen Sie die wpDataTable aus einer Dropdown-Liste"
165
+
166
+ #: controllers/wdt_functions.php:930
167
+ msgid "Table view"
168
+ msgstr "Tabellenansicht"
169
+
170
+ #: controllers/wdt_functions.php:934
171
+ msgid "Regular wpDataTable"
172
+ msgstr "Regelmäßige wpDataTable"
173
+
174
+ #: controllers/wdt_functions.php:936
175
+ msgid "Excel-like table"
176
+ msgstr "Excel-ähnliche Tabelle"
177
+
178
+ #: controllers/wdt_functions.php:942
179
+ msgid "Variable placeholder #1"
180
+ msgstr "Variabler Platzhalter #1"
181
+
182
+ #: controllers/wdt_functions.php:945 controllers/wdt_functions.php:953
183
+ #: controllers/wdt_functions.php:961
184
+ msgid "Variables"
185
+ msgstr "Variablen"
186
+
187
+ #: controllers/wdt_functions.php:946
188
+ msgid "If you used the VAR1 placeholder you can assign a value to it here"
189
+ msgstr ""
190
+ "Wenn Sie den Platzhalter VAR1 verwendet haben, können Sie ihm einen Wert "
191
+ "hier zuweisen"
192
+
193
+ #: controllers/wdt_functions.php:950
194
+ msgid "Variable placeholder #2"
195
+ msgstr "Variabler Platzhalter #2"
196
+
197
+ #: controllers/wdt_functions.php:954
198
+ msgid "If you used the VAR2 placeholder you can assign a value to it here"
199
+ msgstr ""
200
+ "Wenn Sie den Platzhalter VAR2 verwendet haben, können Sie ihm einen Wert "
201
+ "hier zuweisen"
202
+
203
+ #: controllers/wdt_functions.php:958
204
+ msgid "Variable placeholder #3"
205
+ msgstr "Variabler Platzhalter #3"
206
+
207
+ #: controllers/wdt_functions.php:962
208
+ msgid "If you used the VAR3 placeholder you can assign a value to it here"
209
+ msgstr ""
210
+ "Wenn Sie den Platzhalter VAR3 verwendet haben, können Sie ihm einen Wert "
211
+ "hier zuweisen"
212
+
213
+ #: controllers/wdt_functions.php:975
214
+ msgid "Google or Highcharts chart based on a wpDataTable"
215
+ msgstr "Google- oder Highcharts-Diagramm basierend auf einer wpDataTable"
216
+
217
+ #: controllers/wdt_functions.php:982
218
+ msgid "wpDataChart"
219
+ msgstr "wpDataChart"
220
+
221
+ #: controllers/wdt_functions.php:986
222
+ msgid "Choose one of wpDataCharts from the list"
223
+ msgstr "Wählen Sie eines von wpDataCharts aus der Liste"
224
+
225
+ #: source/WpDataChartsGutenbergBlock.php:28
226
+ msgid ""
227
+ "Choose the chart that you’ve just created in the dropdown below, and the "
228
+ "shortcode will be inserted automatically."
229
+ msgstr ""
230
+ "Wählen Sie das soeben erstellte Diagramm in der Dropdown-Liste aus. Der "
231
+ "Shortcode wird automatisch eingefügt."
232
+
233
+ #: source/WpDataTablesGutenbergBlock.php:29
234
+ msgid ""
235
+ "Choose the table that you’ve just created in the dropdown below, and the "
236
+ "shortcode will be inserted automatically. You are able to provide values for "
237
+ "placeholders and also for Export file name."
238
+ msgstr ""
239
+ "Wählen Sie die Tabelle, die Sie gerade erstellt haben, in der Dropdown-Liste "
240
+ "unten aus. Der Shortcode wird automatisch eingefügt. Sie können Werte für "
241
+ "Platzhalter und auch für den Exportdateinamen angeben."
242
+
243
+ #: source/class.wdtbrowsechartstable.php:29 source/class.wdtbrowsetable.php:30
244
+ msgid "ID"
245
+ msgstr ""
246
+
247
+ #: source/class.wdtbrowsechartstable.php:30 source/class.wdtbrowsetable.php:31
248
+ #: templates/admin/chart_wizard/steps/step4.inc.php:17
249
+ msgid "Title"
250
+ msgstr "Titel"
251
+
252
+ #: source/class.wdtbrowsechartstable.php:31
253
+ msgid "Render Engine"
254
+ msgstr ""
255
+
256
+ #: source/class.wdtbrowsechartstable.php:32
257
+ msgid "Chart Type"
258
+ msgstr ""
259
+
260
+ #: source/class.wdtbrowsechartstable.php:33 source/class.wdtbrowsetable.php:33
261
+ msgid "Shortcode"
262
+ msgstr ""
263
+
264
+ #: source/class.wdtbrowsechartstable.php:153
265
+ #: source/class.wdtbrowsetable.php:168
266
+ #: templates/admin/chart_wizard/steps/step5.inc.php:12
267
+ #: templates/admin/dashboard/dashboard.inc.php:153
268
+ #: templates/admin/dashboard/dashboard.inc.php:222
269
+ msgid "Click to copy shortcode"
270
+ msgstr "Klicken Sie hier, um den Shortcode zu kopieren"
271
+
272
+ #: source/class.wdtbrowsechartstable.php:162
273
+ #: source/class.wdtbrowsetable.php:179
274
+ #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
275
+ #: templates/admin/browse/table/duplicate_modal.inc.php:64
276
+ msgid "Duplicate"
277
+ msgstr "Duplizieren"
278
+
279
+ #: source/class.wdtbrowsechartstable.php:168
280
+ #: source/class.wdtbrowsetable.php:185
281
+ #: templates/admin/dashboard/dashboard.inc.php:261
282
+ msgid "Configure"
283
+ msgstr "Konfigurieren"
284
+
285
+ #: source/class.wdtbrowsechartstable.php:174
286
+ #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
287
+ #: templates/admin/browse/bulk_actions.inc.php:14
288
+ #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
289
+ msgid "Delete"
290
+ msgstr "Löschen"
291
+
292
+ #: source/class.wdtbrowsechartstable.php:229
293
+ #: source/class.wdtbrowsechartstable.php:238
294
+ msgid "Column Chart"
295
+ msgstr "Säulendiagramm"
296
+
297
+ #: source/class.wdtbrowsechartstable.php:232
298
+ #: source/class.wdtbrowsechartstable.php:256
299
+ msgid "Line Chart"
300
+ msgstr "Liniendiagramm"
301
+
302
+ #: source/class.wdtbrowsechartstable.php:235
303
+ #: source/class.wdtbrowsechartstable.php:259
304
+ msgid "Pie Chart"
305
+ msgstr "Kreisdiagramm"
306
+
307
+ #: source/class.wdtbrowsechartstable.php:241
308
+ #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
309
+ #: templates/chart_wizard.inc.php:91
310
+ msgid "Histogram"
311
+ msgstr "Histogramm"
312
+
313
+ #: source/class.wdtbrowsechartstable.php:244
314
+ msgid "Bar Chart"
315
+ msgstr "Balkendiagramm"
316
+
317
+ #: source/class.wdtbrowsechartstable.php:247
318
+ msgid "Stacked Bar Chart"
319
+ msgstr "Gestapeltes Balkendiagramm"
320
+
321
+ #: source/class.wdtbrowsechartstable.php:250
322
+ msgid "Area Chart"
323
+ msgstr "Flächendiagramm"
324
+
325
+ #: source/class.wdtbrowsechartstable.php:253
326
+ msgid "Stepped Area Chart"
327
+ msgstr "Gestapeltes Flächendiagramm"
328
+
329
+ #: source/class.wdtbrowsechartstable.php:262
330
+ msgid "Bubble Chart"
331
+ msgstr "Blasendiagramm"
332
+
333
+ #: source/class.wdtbrowsechartstable.php:265
334
+ msgid "Donut Chart"
335
+ msgstr "Donut-Diagramm"
336
+
337
+ #: source/class.wdtbrowsechartstable.php:268
338
+ msgid "Gauge Chart"
339
+ msgstr "Gauge-Diagramm"
340
+
341
+ #: source/class.wdtbrowsechartstable.php:271
342
+ msgid "Scatter Chart"
343
+ msgstr "Streudiagramm"
344
+
345
+ #: source/class.wdtbrowsechartstable.php:274
346
+ msgid "Candlestick Chart"
347
+ msgstr "Candlestick-Diagramm"
348
+
349
+ #: source/class.wdtbrowsechartstable.php:277
350
+ msgid "Waterfall Chart"
351
+ msgstr "Wasserfalldiagramm"
352
+
353
+ #: source/class.wdtbrowsechartstable.php:290
354
+ msgid "Google"
355
+ msgstr "Google"
356
+
357
+ #: source/class.wdtbrowsechartstable.php:357
358
+ #: source/class.wdtbrowsetable.php:298
359
+ #: templates/admin/chart_wizard/steps/step3.inc.php:11
360
+ #: templates/admin/chart_wizard/steps/step3.inc.php:32
361
+ msgid "Select All"
362
+ msgstr "Alle auswählen"
363
+
364
+ #: source/class.wdtbrowsechartstable.php:410
365
+ msgid "No wpDataCharts in the system yet."
366
+ msgstr "Noch keine wpDataCharts im System."
367
+
368
+ #: source/class.wdtbrowsetable.php:32
369
+ #: templates/admin/table-settings/add_column_modal.inc.php:47
370
+ msgid "Type"
371
+ msgstr "Typ"
372
+
373
+ #: source/class.wdtbrowsetable.php:231
374
+ msgid "MySQL"
375
+ msgstr "MySQL"
376
+
377
+ #: source/class.wdtbrowsetable.php:234
378
+ msgid "Manual"
379
+ msgstr "Handbuch"
380
+
381
+ #: source/class.wdtbrowsetable.php:237 source/class.wpdatatable.php:2188
382
+ #: source/class.wpdatatable.php:2258
383
+ #: templates/admin/table-settings/table_settings_block.inc.php:1050
384
+ msgid "Excel"
385
+ msgstr "Excel"
386
+
387
+ #: source/class.wdtbrowsetable.php:240 source/class.wpdatatable.php:2197
388
+ #: source/class.wpdatatable.php:2268
389
+ #: templates/admin/table-settings/table_settings_block.inc.php:1051
390
+ msgid "CSV"
391
+ msgstr "CSV"
392
+
393
+ #: source/class.wdtbrowsetable.php:243
394
+ msgid "XML"
395
+ msgstr "XML"
396
+
397
+ #: source/class.wdtbrowsetable.php:246
398
+ msgid "JSON"
399
+ msgstr "JSON"
400
+
401
+ #: source/class.wdtbrowsetable.php:249
402
+ #: templates/admin/table-settings/table_settings_block.inc.php:120
403
+ #: templates/edit_table.inc.php:91
404
+ msgid "Serialized PHP array"
405
+ msgstr "Serialisierter PHP-Array"
406
+
407
+ #: source/class.wdtbrowsetable.php:252 templates/edit_table.inc.php:88
408
+ msgid "Google spreadsheet"
409
+ msgstr "Google-Tabellen"
410
+
411
+ #: source/class.wdtbrowsetable.php:255
412
+ msgid "Simple"
413
+ msgstr "Einfach"
414
+
415
+ #: source/class.wdtbrowsetable.php:262
416
+ msgid "Unknown"
417
+ msgstr "Unbekannt"
418
+
419
+ #: source/class.wdtbrowsetable.php:373
420
+ msgid "No wpDataTables in the system yet."
421
+ msgstr "Noch keine wpDataTables im System."
422
+
423
+ #: source/class.wdtconfigcontroller.php:139
424
+ msgid "There was an error trying to fetch the table data: "
425
+ msgstr "Beim Abrufen der Tabellendaten ist ein Fehler aufgetreten: "
426
+
427
+ #: source/class.wdtconfigcontroller.php:479
428
+ msgid "Table in data source has no rows."
429
+ msgstr "Die Tabelle in der Datenquelle enthält keine Zeilen."
430
+
431
+ #: source/class.wdttools.php:17
432
+ msgid "One line string"
433
+ msgstr "Einzeiliger String"
434
+
435
+ #: source/class.wdttools.php:18
436
+ msgid "Multi-line string"
437
+ msgstr "Mehrzeiliger String"
438
+
439
+ #: source/class.wdttools.php:19
440
+ msgid "One-line selectbox"
441
+ msgstr "Einzeiliges Auswahlfeld"
442
+
443
+ #: source/class.wdttools.php:20
444
+ msgid "Multi-line selectbox"
445
+ msgstr "Mehrzeiliges Auswahlfeld"
446
+
447
+ #: source/class.wdttools.php:21
448
+ #: templates/admin/table-settings/column_settings_panel.inc.php:353
449
+ msgid "Integer"
450
+ msgstr "Integer"
451
+
452
+ #: source/class.wdttools.php:22
453
+ #: templates/admin/table-settings/column_settings_panel.inc.php:354
454
+ msgid "Float"
455
+ msgstr "Float"
456
+
457
+ #: source/class.wdttools.php:23
458
+ #: templates/admin/table-settings/column_settings_panel.inc.php:355
459
+ #: templates/admin/table-settings/column_settings_panel.inc.php:984
460
+ msgid "Date"
461
+ msgstr "Datum"
462
+
463
+ #: source/class.wdttools.php:24
464
+ #: templates/admin/table-settings/column_settings_panel.inc.php:985
465
+ msgid "Datetime"
466
+ msgstr "Datum/Uhrzeit"
467
+
468
+ #: source/class.wdttools.php:25
469
+ #: templates/admin/table-settings/column_settings_panel.inc.php:357
470
+ #: templates/admin/table-settings/column_settings_panel.inc.php:986
471
+ msgid "Time"
472
+ msgstr "Uhrzeit"
473
+
474
+ #: source/class.wdttools.php:26
475
+ msgid "URL Link"
476
+ msgstr "URL Link"
477
+
478
+ #: source/class.wdttools.php:27
479
+ msgid "E-mail"
480
+ msgstr "Email"
481
+
482
+ #: source/class.wdttools.php:28
483
+ #: templates/admin/table-settings/column_settings_panel.inc.php:360
484
+ msgid "Image"
485
+ msgstr "Bild"
486
+
487
+ #: source/class.wdttools.php:29
488
+ #: templates/admin/table-settings/column_settings_panel.inc.php:989
489
+ msgid "Attachment"
490
+ msgstr "Anhang"
491
+
492
+ #: source/class.wdttools.php:78
493
+ msgid ""
494
+ "wpDataTables was unable to read your Google Spreadsheet, probably it is not "
495
+ "published correctly. <br/> You can publish it by going to <b>File -> Publish "
496
+ "to the web</b> "
497
+ msgstr ""
498
+ "wpDataTables konnte Ihre Google-Tabellen nicht lesen, wahrscheinlich ist sie "
499
+ "nicht korrekt veröffentlicht. <br/> Sie können es veröffentlichen , idem Sie "
500
+ "auf <b> Datei -> Im Web veröffentlichen </ b> gehen "
501
+
502
+ #: source/class.wdttools.php:206
503
+ msgid "Back to date"
504
+ msgstr "Zurück zum Datum"
505
+
506
+ #: source/class.wdttools.php:207
507
+ msgid "Browse"
508
+ msgstr "Durchsuche"
509
+
510
+ #: source/class.wdttools.php:208 source/class.wdttools.php:330
511
+ #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:43
512
+ #: templates/admin/browse/table/duplicate_modal.inc.php:61
513
+ #: templates/admin/chart_wizard/chart_wizard.inc.php:39
514
+ #: templates/admin/common/HTMLModal.inc.php:43
515
+ #: templates/admin/common/linkModal.inc.php:117
516
+ #: templates/admin/common/shortcodeModal.inc.php:48
517
+ #: templates/admin/common/starModal.inc.php:73
518
+ #: templates/admin/constructor/constructor.inc.php:29
519
+ #: templates/admin/settings/settings.inc.php:28
520
+ #: templates/admin/table-settings/add_column_modal.inc.php:126
521
+ #: templates/admin/table-settings/column_settings_panel.inc.php:20
522
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1095
523
+ #: templates/admin/table-settings/formula_editor_modal.inc.php:89
524
+ #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:19
525
+ #: templates/admin/table-settings/remove_column_modal.inc.php:81
526
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:42
527
+ #: templates/admin/table-settings/table_preview_block.inc.php:86
528
+ #: templates/admin/table-settings/table_settings_block.inc.php:41
529
+ #: templates/common/delete_modal.inc.php:39
530
+ msgid "Cancel"
531
+ msgstr "Abbrechen"
532
+
533
+ #: source/class.wdttools.php:209
534
+ #, fuzzy
535
+ msgid " field cannot be empty!"
536
+ msgstr " Feld darf nicht leer sein!"
537
+
538
+ #: source/class.wdttools.php:210
539
+ msgid "Use selected file"
540
+ msgstr "Verwenden Sie die ausgewählte Datei"
541
+
542
+ #: source/class.wdttools.php:211
543
+ msgid "Choose file"
544
+ msgstr "Datei auswählen"
545
+
546
+ #: source/class.wdttools.php:212 templates/admin/common/error_modal.inc.php:23
547
+ #: templates/admin/table-settings/columns_list_modal.inc.php:33
548
+ #: templates/admin/table-settings/foreign_key_config.inc.php:94
549
+ #: templates/edit_table.inc.php:36 templates/edit_table.inc.php:418
550
+ #: templates/edit_table.inc.php:439 templates/edit_table.inc.php:462
551
+ msgid "Close"
552
+ msgstr "Schließen"
553
+
554
+ #: source/class.wdttools.php:213
555
+ msgid "Column has been added!"
556
+ msgstr "Spalte wurde hinzugefügt!"
557
+
558
+ #: source/class.wdttools.php:214
559
+ msgid "Column header cannot be empty!"
560
+ msgstr "Spaltenkopfzeile darf nicht leer sein!"
561
+
562
+ #: source/class.wdttools.php:215
563
+ msgid "Please confirm column deletion!"
564
+ msgstr "Bitte bestätigen Sie das Löschen der Spalte!"
565
+
566
+ #: source/class.wdttools.php:216
567
+ msgid "Column has been removed!"
568
+ msgstr "Spalte wurde entfernt!"
569
+
570
+ #: source/class.wdttools.php:217
571
+ msgid "Please select columns that you want to use in table"
572
+ msgstr "Bitte wählen Sie Spalten aus, die Sie in der Tabelle verwenden möchten"
573
+
574
+ #: source/class.wdttools.php:218 source/class.wpdatatable.php:2206
575
+ #: source/class.wpdatatable.php:2278
576
+ #: templates/admin/table-settings/table_settings_block.inc.php:1052
577
+ msgid "Copy"
578
+ msgstr "Kopieren"
579
+
580
+ #: source/class.wdttools.php:219
581
+ msgid "There was an error trying to insert a new row!"
582
+ msgstr "Beim Einfügen einer neuen Zeile ist ein Fehler aufgetreten!"
583
+
584
+ #: source/class.wdttools.php:220
585
+ msgid "Data has been saved!"
586
+ msgstr "Daten wurden gespeichert!"
587
+
588
+ #: source/class.wdttools.php:221
589
+ msgid "detach"
590
+ msgstr "ablösen"
591
+
592
+ #: source/class.wdttools.php:223
593
+ msgid "Delete selected"
594
+ msgstr "Ausgewählte löschen"
595
+
596
+ #: source/class.wdttools.php:224 templates/settings.inc.php:553
597
+ #: templates/settings.inc.php:627
598
+ msgid "Error!"
599
+ msgstr "Fehler!"
600
+
601
+ #: source/class.wdttools.php:225
602
+ msgid "Please upload or choose a file from Media Library!"
603
+ msgstr ""
604
+ "Bitte laden Sie eine Datei aus der Medienbibliothek hoch oder wählen Sie sie "
605
+ "aus!"
606
+
607
+ #: source/class.wdttools.php:226
608
+ msgid "From"
609
+ msgstr "Von"
610
+
611
+ #: source/class.wdttools.php:227
612
+ msgid "Please provide a valid e-mail address for field"
613
+ msgstr "Bitte geben Sie eine gültige E-Mail-Adresse für das Feld an"
614
+
615
+ #: source/class.wdttools.php:228
616
+ msgid "Please provide a valid URL link for field"
617
+ msgstr "Bitte geben Sie einen gültigen URL-Link für das Feld an"
618
+
619
+ #: source/class.wdttools.php:229
620
+ msgid "You have entered invalid value. Press ESC to cancel."
621
+ msgstr ""
622
+ "Sie haben einen ungültigen Wert eingegeben. Drücken Sie ESC, um den Vorgang "
623
+ "abzubrechen."
624
+
625
+ #: source/class.wdttools.php:230 source/class.wdttools.php:260
626
+ msgid "Show _MENU_ entries"
627
+ msgstr "_MENU_ Einträge anzeigen"
628
+
629
+ #: source/class.wdttools.php:231
630
+ #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:23
631
+ msgid "Merge"
632
+ msgstr "Zusammenfügen"
633
+
634
+ #: source/class.wdttools.php:232
635
+ msgid "New column"
636
+ msgstr "Neue Spalte"
637
+
638
+ #: source/class.wdttools.php:233
639
+ msgid "Number of columns can not be empty or 0"
640
+ msgstr "Anzahl der Spalten darf nicht leer oder 0 sein"
641
+
642
+ #: source/class.wdttools.php:234
643
+ msgid "Number of rows can not be empty or 0"
644
+ msgstr "Die Anzahl der Zeilen darf nicht leer oder 0 sein"
645
+
646
+ #: source/class.wdttools.php:236
647
+ msgid ": activate to sort column ascending"
648
+ msgstr ": aktivieren, um die Spalte aufsteigend zu sortieren"
649
+
650
+ #: source/class.wdttools.php:237
651
+ msgid ": activate to sort column descending"
652
+ msgstr ": aktivieren, um die Spalte absteigend zu sortieren"
653
+
654
+ #: source/class.wdttools.php:239
655
+ msgid "Ok"
656
+ msgstr "Ok"
657
+
658
+ #: source/class.wdttools.php:241
659
+ msgid "First"
660
+ msgstr "Erste"
661
+
662
+ #: source/class.wdttools.php:242
663
+ msgid "Last"
664
+ msgstr "Letzte"
665
+
666
+ #: source/class.wdttools.php:243
667
+ msgid "Next"
668
+ msgstr "Nächste"
669
+
670
+ #: source/class.wdttools.php:244
671
+ msgid "Previous"
672
+ msgstr "Zurück"
673
+
674
+ #: source/class.wdttools.php:246
675
+ #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:27
676
+ msgid "Replace"
677
+ msgstr "Ersetzen"
678
+
679
+ #: source/class.wdttools.php:247
680
+ msgid "Row has been deleted!"
681
+ msgstr "Zeile wurde gelöscht!"
682
+
683
+ #: source/class.wdttools.php:248
684
+ msgid "Save chart"
685
+ msgstr "Diagramm speichern"
686
+
687
+ #: source/class.wdttools.php:249
688
+ msgid "Select a file to use in table"
689
+ msgstr "Wählen Sie eine Datei aus, die in der Tabelle verwendet werden soll"
690
+
691
+ #: source/class.wdttools.php:250
692
+ msgid "Select an Excel or CSV file"
693
+ msgstr "Wählen Sie eine Excel- oder CSV-Datei aus"
694
+
695
+ #: source/class.wdttools.php:251
696
+ msgid "No data available in table"
697
+ msgstr "Keine Daten in der Tabelle verfügbar"
698
+
699
+ #: source/class.wdttools.php:252
700
+ msgid "Plugin settings saved successfully"
701
+ msgstr "Plugin-Einstellungen erfolgreich gespeichert"
702
+
703
+ #: source/class.wdttools.php:253
704
+ msgid ""
705
+ "Unable to save settings of plugin. Please try again or contact us over "
706
+ "Support page."
707
+ msgstr ""
708
+ "Einstellungen des Plugins können nicht gespeichert werden. Bitte versuchen "
709
+ "Sie es erneut oder kontaktieren Sie uns über die Support-Seite."
710
+
711
+ #: source/class.wdttools.php:254
712
+ msgid "Shortcode has been copied to the clipboard."
713
+ msgstr "Der Shortcode wurde in die Zwischenablage kopiert."
714
+
715
+ #: source/class.wdttools.php:255
716
+ msgid "Showing _START_ to _END_ of _TOTAL_ entries"
717
+ msgstr "_START_ bis _END_ von _TOTAL_-Einträgen anzeigen"
718
+
719
+ #: source/class.wdttools.php:256
720
+ msgid "Showing 0 to 0 of 0 entries"
721
+ msgstr "0 bis 0 von 0 Einträgen anzeigen"
722
+
723
+ #: source/class.wdttools.php:257
724
+ msgid "(filtered from _MAX_ total entries)"
725
+ msgstr "(gefiltert aus _MAX_ Gesamteinträgen)"
726
+
727
+ #: source/class.wdttools.php:259
728
+ msgid ","
729
+ msgstr ","
730
+
731
+ #: source/class.wdttools.php:261
732
+ msgid "Loading..."
733
+ msgstr "Wird geladen..."
734
+
735
+ #: source/class.wdttools.php:262
736
+ msgid "Processing..."
737
+ msgstr "Wird bearbeitet..."
738
+
739
+ #: source/class.wdttools.php:263
740
+ msgid "SQL error"
741
+ msgstr "SQL Fehler"
742
+
743
+ #: source/class.wdttools.php:264
744
+ msgid "Search: "
745
+ msgstr "Suche: "
746
+
747
+ #: source/class.wdttools.php:265 templates/settings.inc.php:559
748
+ #: templates/settings.inc.php:625
749
+ msgid "Success!"
750
+ msgstr "Erfolg!"
751
+
752
+ #: source/class.wdttools.php:266
753
+ msgid "No matching records found"
754
+ msgstr "Keine übereinstimmenden Aufzeichnungen gefunden"
755
+
756
+ #: source/class.wdttools.php:267
757
+ msgid ""
758
+ "System info data has been copied to the clipboard. You can now paste it in "
759
+ "file or in support topic."
760
+ msgstr ""
761
+
762
+ #: source/class.wdttools.php:268
763
+ msgid "Table saved successfully!"
764
+ msgstr "Tabelle erfolgreich gespeichert!"
765
+
766
+ #: source/class.wdttools.php:269
767
+ msgid "To"
768
+ msgstr "Zu"
769
+
770
+ #: source/class.wdttools.php:305
771
+ #: templates/admin/common/premium_modal.inc.php:17
772
+ #: templates/admin/table-settings/table_settings_block.inc.php:1072
773
+ #: templates/admin/table-settings/table_settings_block.inc.php:1348
774
+ msgid "This is a premium feature"
775
+ msgstr "Dies ist eine Premium-Funktion"
776
+
777
+ #: source/class.wdttools.php:306
778
+ #: templates/admin/common/premium_modal.inc.php:26
779
+ #: templates/admin/table-settings/table_settings_block.inc.php:1073
780
+ #: templates/admin/table-settings/table_settings_block.inc.php:1349
781
+ msgid "This feature is available only in premium version of wpDataTables"
782
+ msgstr ""
783
+ "Diese Funktion ist nur in der Premium-Version von wpDataTables verfügbar"
784
+
785
+ #: source/class.wdttools.php:307
786
+ #: templates/admin/getting-started/getting_started.inc.php:133
787
+ #: templates/admin/getting-started/getting_started.inc.php:145
788
+ #: templates/admin/getting-started/getting_started.inc.php:157
789
+ #: templates/admin/getting-started/getting_started.inc.php:169
790
+ #: templates/admin/table-settings/table_settings_block.inc.php:1077
791
+ #: templates/admin/table-settings/table_settings_block.inc.php:1353
792
+ msgid "Compare and View Pricing"
793
+ msgstr "Preise vergleichen und anzeigen"
794
+
795
+ #: source/class.wdttools.php:326
796
+ msgid "Field cannot be empty!"
797
+ msgstr "Feld darf nicht leer sein!"
798
+
799
+ #: source/class.wdttools.php:327
800
+ msgid "Please choose chart type."
801
+ msgstr "Bitte wählen Sie einen Diagrammtyp."
802
+
803
+ #: source/class.wdttools.php:328
804
+ msgid "Please select wpDataTable from dropdown."
805
+ msgstr ""
806
+
807
+ #: source/class.wdttools.php:329
808
+ msgid "Columns field cannot be empty"
809
+ msgstr ""
810
+
811
+ #: source/class.wdttools.php:331
812
+ msgid ""
813
+ "Tutorial is not canceled, closed or end properly. Please cancel it by "
814
+ "clicking on Cancel button."
815
+ msgstr ""
816
+
817
+ #: source/class.wdttools.php:332
818
+ msgid "Finish Tutorial"
819
+ msgstr "Tutorial beenden"
820
+
821
+ #: source/class.wdttools.php:333
822
+ msgid "Continue"
823
+ msgstr "Weiter"
824
+
825
+ #: source/class.wdttools.php:334
826
+ msgid "Start"
827
+ msgstr "Start"
828
+
829
+ #: source/class.wdttools.php:335
830
+ msgid "Skip Tutorial"
831
+ msgstr "Tutorial überspringen"
832
+
833
+ #: source/class.wdttools.php:338 source/class.wdttools.php:404
834
+ #: source/class.wdttools.php:446
835
+ msgid "Welcome to the tutorial!"
836
+ msgstr "Willkommen zum Tutorial!"
837
+
838
+ #: source/class.wdttools.php:339 source/class.wdttools.php:405
839
+ #: source/class.wdttools.php:447
840
+ msgid "Hello "
841
+ msgstr "Hallo "
842
+
843
+ #: source/class.wdttools.php:339
844
+ msgid ""
845
+ ", in this tutorial, we will show you how to create a simple table from "
846
+ "scratch by choosing a custom number of columns and rows. How to customize "
847
+ "each cell, merge cells and a lot more."
848
+ msgstr ""
849
+ ", in diesem Tutorial zeigen wir Ihnen, wie Sie eine einfache Tabelle von "
850
+ "Grund auf neu erstellen, indem Sie eine benutzerdefinierte Anzahl von "
851
+ "Spalten und Zeilen auswählen. So passen Sie jede Zelle an, führen Zellen "
852
+ "zusammen und vieles mehr."
853
+
854
+ #: source/class.wdttools.php:342
855
+ msgid " Let's create a new wpDataTable from scratch!"
856
+ msgstr " Lassen Sie uns eine neue wpDataTable von Grund auf neu erstellen!"
857
+
858
+ #: source/class.wdttools.php:343 source/class.wdttools.php:409
859
+ msgid "Click on 'Create a Table' to access the wpDataTables Table Wizard."
860
+ msgstr ""
861
+ "Klicken Sie auf \"Tabelle erstellen\", um auf den Tabellenassistenten "
862
+ "wpDataTables zuzugreifen."
863
+
864
+ #: source/class.wdttools.php:346
865
+ msgid "Choose this option"
866
+ msgstr "Wählen Sie diese Option"
867
+
868
+ #: source/class.wdttools.php:347
869
+ msgid "Please select 'Create a simple table from scratch'."
870
+ msgstr "Bitte wählen Sie 'Einfache Tabelle von Grund auf neu erstellen'."
871
+
872
+ #: source/class.wdttools.php:350 source/class.wdttools.php:416
873
+ msgid "Click Next"
874
+ msgstr "Klicken Sie auf Weiter"
875
+
876
+ #: source/class.wdttools.php:351 source/class.wdttools.php:417
877
+ msgid "Please click the 'Next' button to continue."
878
+ msgstr "Bitte klicken Sie auf die Schaltfläche \"Weiter\", um fortzufahren."
879
+
880
+ #: source/class.wdttools.php:354
881
+ msgid "Welcome to the Simple table wizard!"
882
+ msgstr "Willkommen beim Einfachen Tabellen-Assistent!"
883
+
884
+ #: source/class.wdttools.php:355
885
+ msgid "Please click 'Continue' button to move on."
886
+ msgstr "Bitte klicken Sie auf \"Weiter\", um fortzufahren."
887
+
888
+ #: source/class.wdttools.php:358
889
+ msgid "Choose a name for your table"
890
+ msgstr "Wählen Sie einen Namen für Ihre Tabelle"
891
+
892
+ #: source/class.wdttools.php:359
893
+ msgid "After inserting table name, click 'Continue' to move on."
894
+ msgstr ""
895
+ "Klicken Sie nach dem Einfügen des Tabellennamens auf \"Weiter\", um "
896
+ "fortzufahren."
897
+
898
+ #: source/class.wdttools.php:362
899
+ msgid "Choose the number of columns for your table"
900
+ msgstr "Wählen Sie die Anzahl der Spalten für Ihre Tabelle"
901
+
902
+ #: source/class.wdttools.php:363
903
+ msgid ""
904
+ "Please choose how many columns it will have. Remember that you can always "
905
+ "add or reduce the number of columns later. Click 'Continue' when you finish."
906
+ msgstr ""
907
+ "Bitte wählen Sie aus, wie viele Spalten sie haben soll. Denken Sie daran, "
908
+ "dass Sie die Anzahl der Spalten später jederzeit hinzufügen oder verringern "
909
+ "können. Klicken Sie auf \"Weiter\", wenn Sie fertig sind."
910
+
911
+ #: source/class.wdttools.php:366
912
+ msgid "Choose the number of rows for your table."
913
+ msgstr "Wählen Sie die Anzahl der Zeilen für Ihre Tabelle."
914
+
915
+ #: source/class.wdttools.php:367
916
+ msgid ""
917
+ "Please choose how many rows it will have. Remember that you can always add "
918
+ "or reduce the number of rows later. Click 'Continue' when you finish."
919
+ msgstr ""
920
+ "Bitte wählen Sie aus, wie viele Zeilen sie haben soll. Denken Sie daran, "
921
+ "dass Sie die Anzahl der Zeilen später jederzeit hinzufügen oder verringern "
922
+ "können. Klicken Sie auf \"Weiter\", wenn Sie fertig sind."
923
+
924
+ #: source/class.wdttools.php:370
925
+ msgid "Click on the 'Generate Table' button"
926
+ msgstr "Klicken Sie auf die Schaltfläche 'Tabelle generieren'"
927
+
928
+ #: source/class.wdttools.php:371
929
+ msgid "When you click on the button, the empty table will be ready for you. "
930
+ msgstr ""
931
+ "Wenn Sie auf die Schaltfläche klicken, ist die leere Tabelle für Sie bereit. "
932
+
933
+ #: source/class.wdttools.php:374
934
+ msgid "We are generating the table..."
935
+ msgstr "Wir generieren die Tabelle..."
936
+
937
+ #: source/class.wdttools.php:375
938
+ msgid "Please, when you see the table, click 'Continue' to move on."
939
+ msgstr ""
940
+ "Wenn die Tabelle erscheint, klicken Sie bitte auf \"Weiter\", um "
941
+ "fortzufahren."
942
+
943
+ #: source/class.wdttools.php:378
944
+ msgid ""
945
+ "Nice job! You just configured your table and it is ready to fill it with "
946
+ "data."
947
+ msgstr ""
948
+ "Gut gemacht! Sie haben gerade Ihre Tabelle konfiguriert und sie kann jetzt "
949
+ "mit Daten gefüllt werden."
950
+
951
+ #: source/class.wdttools.php:379
952
+ msgid ""
953
+ "Now we will guide you on how to insert data and check table layout throw "
954
+ "Simple table editor, table toolbar and table preview. Please click "
955
+ "'Continue' to move on."
956
+ msgstr ""
957
+ "Jetzt zeigen wir Ihnen, wie Sie Daten einfügen und das Tabellenlayout "
958
+ "überprüfen, Einfacher Tabelleneditor, Tabellensymbolleiste und "
959
+ "Tabellenvorschau erstellen. Bitte klicken Sie auf \"Weiter\", um "
960
+ "fortzufahren."
961
+
962
+ #: source/class.wdttools.php:382
963
+ msgid "This is Simple table editor"
964
+ msgstr "Dies ist der Einfache Tabelleneditor"
965
+
966
+ #: source/class.wdttools.php:383
967
+ msgid ""
968
+ "Here you can populate your table with data. <br><br>You can move around the "
969
+ "cells using keyboard arrows and the Tab button. <br><br>Rearrange columns or "
970
+ "rows by drag and drop column or row headers. Easily resize column width and "
971
+ "row height by dragging the right corner of the column header, or the bottom "
972
+ "line of the row header. Click 'Continue' to move on."
973
+ msgstr ""
974
+ "Hier können Sie Ihre Tabelle mit Daten füllen. <br> <br> Sie können sich "
975
+ "mithilfe der Tastaturpfeile und der Tabulatortaste in den Zellen bewegen. "
976
+ "<br> <br> Ordnen Sie die Spalten oder Zeilen durch Ziehen und Ablegen von "
977
+ "Spalten- oder Zeilenkopfzeile neu an. Ändern Sie einfach die Größe der "
978
+ "Spaltenbreite und Zeilenhöhe, indem Sie die rechte Ecke der Spaltenkopfzeile "
979
+ "oder die unterste Zeile der Zeilenkopfzeile ziehen. Klicken Sie auf \"Weiter"
980
+ "\", um fortzufahren."
981
+
982
+ #: source/class.wdttools.php:386
983
+ msgid "Check out the Simple table toolbar"
984
+ msgstr "Schauen Sie sich die Symbolleiste der Einfache Tabelle an"
985
+
986
+ #: source/class.wdttools.php:387
987
+ msgid ""
988
+ "Here you can style and insert custom data for each cell or range of cells. "
989
+ "You can add or delete columns and rows, merge cells, customize sections by "
990
+ "colors, background, alignment, insert custom links, media, shortcodes, star "
991
+ "ratings or custom HTML code."
992
+ msgstr ""
993
+ "Hier können Sie benutzerdefinierte Daten für jede Zelle oder jeden "
994
+ "Zellbereich formatieren und einfügen. Sie können Spalten und Zeilen "
995
+ "hinzufügen oder löschen, Zellen zusammenführen, Abschnitte nach Farben, "
996
+ "Hintergrund, Ausrichtung anpassen, benutzerdefinierte Links, Medien, "
997
+ "Shortcodes, Sternebewertungen oder benutzerdefinierten HTML-Code einfügen."
998
+
999
+ #: source/class.wdttools.php:390
1000
+ msgid "Responsive table views"
1001
+ msgstr "Responsive Tabellenansichten"
1002
+
1003
+ #: source/class.wdttools.php:391
1004
+ msgid ""
1005
+ "You can switch between Desktop, Tablet or Mobile devices by clicking on the "
1006
+ "tab that you need, so you can make sure your table looks excellent across "
1007
+ "all devices. "
1008
+ msgstr ""
1009
+ "Sie können zwischen Desktop-, Tablet- oder Mobilgeräten wechseln, indem Sie "
1010
+ "auf das gewünschte Tab klicken, um sicherzustellen, dass Ihre Tabelle auf "
1011
+ "allen Geräten hervorragend aussieht. "
1012
+
1013
+ #: source/class.wdttools.php:394
1014
+ msgid "Real-time preview"
1015
+ msgstr "Echtzeitvorschau"
1016
+
1017
+ #: source/class.wdttools.php:395
1018
+ msgid ""
1019
+ "Here you will see how your table will look like on the page. Please click "
1020
+ "'Continue' to move on."
1021
+ msgstr ""
1022
+ "Hier sehen Sie, wie Ihre Tabelle auf der Seite aussehen wird. Bitte klicken "
1023
+ "Sie auf \"Weiter\", um fortzufahren."
1024
+
1025
+ #: source/class.wdttools.php:398
1026
+ msgid "Congrats! Your table is ready."
1027
+ msgstr "Glückwunsch! Ihre Tabelle ist fertig."
1028
+
1029
+ #: source/class.wdttools.php:399
1030
+ msgid ""
1031
+ "Now you can copy the shortcode for this table, and check out how it looks on "
1032
+ "your website when you paste it to a post or page. You can always come back "
1033
+ "and edit the table as you like."
1034
+ msgstr ""
1035
+ "Jetzt können Sie den Shortcode für diese Tabelle kopieren und überprüfen, "
1036
+ "wie er auf Ihrer Website aussieht, wenn Sie ihn in einen Beitrag oder eine "
1037
+ "Seite einfügen. Sie können jederzeit zurückkehren und die Tabelle nach "
1038
+ "Belieben bearbeiten."
1039
+
1040
+ #: source/class.wdttools.php:405
1041
+ msgid ""
1042
+ ", in this tutorial we will show you how to create a wpDataTable linked to an "
1043
+ "existing data source. \"Linked\" in this context means that if you create a "
1044
+ "table, for example, based on an Excel file, it will read the data from this "
1045
+ "file every time it loads, making sure all table values changes are instantly "
1046
+ "reflected in the table."
1047
+ msgstr ""
1048
+ ", in diesem Tutorial zeigen wir Ihnen, wie Sie eine wpDataTable erstellen, "
1049
+ "die mit einer vorhandenen Datenquelle verknüpft ist. \"Verknüpft\" bedeutet "
1050
+ "in diesem Zusammenhang, dass beim Erstellen einer Tabelle, beispielsweise "
1051
+ "basierend auf einer Excel-Datei, die Daten aus dieser Datei bei jedem Laden "
1052
+ "gelesen werden, um sicherzustellen, dass alle Änderungen der Tabellenwerte "
1053
+ "sofort in der Tabelle angezeigt werden."
1054
+
1055
+ #: source/class.wdttools.php:408
1056
+ msgid "Let's create a new wpDataTable!"
1057
+ msgstr "Lassen Sie uns einen neuen wpDataTable erstellen!"
1058
+
1059
+ #: source/class.wdttools.php:412
1060
+ msgid "Choose this option."
1061
+ msgstr "Wählen Sie diese Option."
1062
+
1063
+ #: source/class.wdttools.php:413
1064
+ msgid "Please select 'Create a table linked to an existing data source'."
1065
+ msgstr ""
1066
+ "Bitte wählen Sie \"Tabelle erstellen, die mit einer vorhandenen Datenquelle "
1067
+ "verknüpft ist\"."
1068
+
1069
+ #: source/class.wdttools.php:420
1070
+ #: templates/admin/table-settings/table_settings_block.inc.php:101
1071
+ msgid "Input data source type"
1072
+ msgstr "Typ der Eingabedatenquelle"
1073
+
1074
+ #: source/class.wdttools.php:421
1075
+ msgid "Please select a data source type that you need."
1076
+ msgstr "Bitte wählen Sie einen Datenquellentyp aus, den Sie benötigen."
1077
+
1078
+ #: source/class.wdttools.php:424
1079
+ msgid "Select Data source type"
1080
+ msgstr "Wählen Sie den Datenquellentyp"
1081
+
1082
+ #: source/class.wdttools.php:425
1083
+ msgid ""
1084
+ "Please choose the data source that you need ( Excel, CSV, JSON, XML or PHP "
1085
+ "array) and then click 'Continue' button.<br><br>(SQL and Google Spreadsheet "
1086
+ "are available in Premium version)"
1087
+ msgstr ""
1088
+
1089
+ #: source/class.wdttools.php:428
1090
+ #: templates/admin/table-settings/table_settings_block.inc.php:131
1091
+ msgid "Input file path or URL"
1092
+ msgstr "Dateipfad oder URL eingeben"
1093
+
1094
+ #: source/class.wdttools.php:429
1095
+ msgid ""
1096
+ "Upload your file or provide the full URL here. When you finish click "
1097
+ "'Continue' button."
1098
+ msgstr ""
1099
+ "Laden Sie Ihre Datei hoch oder geben Sie hier die vollständige URL an. Wenn "
1100
+ "Sie fertig sind, klicken Sie auf \"Weiter\"."
1101
+
1102
+ #: source/class.wdttools.php:432
1103
+ msgid "Click Save Changes"
1104
+ msgstr "Klicken Sie auf Änderungen speichern"
1105
+
1106
+ #: source/class.wdttools.php:433
1107
+ msgid ""
1108
+ "Please click on the 'Save Changes' button to create a table.<br><br> If you "
1109
+ "get an error message after button click and you are not able to solve it, "
1110
+ "please contact us on our support platform and provide us this data source "
1111
+ "that you use for creating this table and copy error message as well and "
1112
+ "click Skip tutorial."
1113
+ msgstr ""
1114
+ "Klicken Sie auf die Schaltfläche \"Änderungen speichern\", um die Tabelle zu "
1115
+ "erstellen. <br> <br> Wenn Sie nach dem Klicken auf die Schaltfläche eine "
1116
+ "Fehlermeldung erhalten und diese nicht lösen können, kontaktieren Sie uns "
1117
+ "bitte auf unserer Support-Plattform und stellen Sie uns bitte diese Daten "
1118
+ "Quelle, die Sie zum Erstellen dieser Tabelle verwendet haben, sowie die "
1119
+ "Fehlermeldung zur Verfügung und klicken Sie auf Tutorial überspringen."
1120
+
1121
+ #: source/class.wdttools.php:436
1122
+ msgid "The table is creating..."
1123
+ msgstr "Tabelle wird erstellt..."
1124
+
1125
+ #: source/class.wdttools.php:437
1126
+ msgid ""
1127
+ "Now the table is creating. Wait until you see it in the background and then "
1128
+ "click 'Continue'."
1129
+ msgstr ""
1130
+ "Jetzt wird die Tabelle erstellt. Warten Sie bitte, bis sie im Hintergrund "
1131
+ "erscheint, und klicken Sie dann auf \"Weiter\"."
1132
+
1133
+ #: source/class.wdttools.php:440
1134
+ msgid "Nice job! You just created your first wpDataTable!"
1135
+ msgstr "Gut gemacht! Sie haben gerade Ihre erste wpDataTable erstellt!"
1136
+
1137
+ #: source/class.wdttools.php:441
1138
+ msgid ""
1139
+ "Now you can copy the shortcode for this table, and check out how it looks on "
1140
+ "your website when you paste it to a post or page."
1141
+ msgstr ""
1142
+ "Jetzt können Sie den Shortcode für diese Tabelle kopieren und überprüfen, "
1143
+ "wie er auf Ihrer Website aussieht, wenn Sie ihn in einen Beitrag oder eine "
1144
+ "Seite einfügen."
1145
+
1146
+ #: source/class.wdttools.php:447
1147
+ msgid ""
1148
+ ", in this tutorial we will show you how to create a chart in wpDataTables "
1149
+ "plugin."
1150
+ msgstr ""
1151
+ ", in diesem Tutorial zeigen wir Ihnen, wie Sie ein Diagramm im wpDataTables-"
1152
+ "Plugin erstellen."
1153
+
1154
+ #: source/class.wdttools.php:450
1155
+ msgid "Let's create a new wpDataTables Chart!"
1156
+ msgstr "Erstellen wir ein neues wpDataTables-Diagramm!"
1157
+
1158
+ #: source/class.wdttools.php:451
1159
+ msgid "Click on 'Create a Chart' to access the wpDataTables Chart Wizard."
1160
+ msgstr ""
1161
+ "Klicken Sie auf \"Diagramm erstellen\", um auf den wpDataTables "
1162
+ "Diagrammassistenten zuzugreifen."
1163
+
1164
+ #: source/class.wdttools.php:454
1165
+ msgid "Welcome to the Chart Wizard!"
1166
+ msgstr "Willkommen beim Diagramm-Assistenten!"
1167
+
1168
+ #: source/class.wdttools.php:455
1169
+ msgid ""
1170
+ "You are at the first step now; we will introduce you the wpDataTables Chart "
1171
+ "Wizard section by section.<br><br> Click 'Continue' button to move forward."
1172
+ msgstr ""
1173
+ "Sie sind jetzt am ersten Schritt; Wir werden Ihnen den Assistenten für "
1174
+ "wpDataTables-Diagramme abschnittsweise vorstellen. <br> <br> Klicken Sie auf "
1175
+ "die Schaltfläche 'Weiter', um fortzufahren."
1176
+
1177
+ #: source/class.wdttools.php:458
1178
+ msgid "Follow the steps in the Chart Wizard"
1179
+ msgstr "Befolgen Sie die Schritte im Diagrammassistenten"
1180
+
1181
+ #: source/class.wdttools.php:459
1182
+ msgid ""
1183
+ "By following these steps, you will finish building your chart in the Chart "
1184
+ "Wizard. The current step will always be highlighted in blue.<br><br> Click "
1185
+ "'Continue' button to move forward."
1186
+ msgstr ""
1187
+ "Wenn Sie diese Schritte ausführen, beenden Sie die Erstellung Ihres "
1188
+ "Diagramms im Diagrammassistenten. Der aktuelle Schritt wird immer blau "
1189
+ "hervorgehoben. <br> <br> Klicken Sie auf die Schaltfläche 'Weiter', um "
1190
+ "fortzufahren."
1191
+
1192
+ #: source/class.wdttools.php:462
1193
+ msgid "Choose a name for your Chart"
1194
+ msgstr "Wählen Sie einen Namen für Ihr Diagramm"
1195
+
1196
+ #: source/class.wdttools.php:463
1197
+ msgid "Click 'Continue' button when you’re ready to move forward."
1198
+ msgstr "Klicken Sie auf 'Weiter', wenn Sie bereit sind, fortzufahren."
1199
+
1200
+ #: source/class.wdttools.php:466
1201
+ msgid "In wpDataTables you can find several charts render engines."
1202
+ msgstr "In wpDataTables finden Sie mehrere Render-Engines für Diagramme."
1203
+
1204
+ #: source/class.wdttools.php:467
1205
+ msgid ""
1206
+ "Click on the dropdown, and you will see several options that you can choose "
1207
+ "from.(Google charts are only available) <br><br>To continue, click on the "
1208
+ "dropdown."
1209
+ msgstr ""
1210
+
1211
+ #: source/class.wdttools.php:470
1212
+ msgid "Choose Google chart engine."
1213
+ msgstr ""
1214
+
1215
+ #: source/class.wdttools.php:471
1216
+ msgid ""
1217
+ "By clicking on Google chart options, you will choose the engine that will "
1218
+ "render your chart.<br><br> When you finish, please click 'Continue' button "
1219
+ "to move forward."
1220
+ msgstr ""
1221
+
1222
+ #: source/class.wdttools.php:474
1223
+ msgid "Different charts types. "
1224
+ msgstr ""
1225
+
1226
+ #: source/class.wdttools.php:475
1227
+ msgid ""
1228
+ "Here you can choose a chart type. Please, click on the chart type that you "
1229
+ "prefer.<br><br> When you finish, please click 'Continue' button to move "
1230
+ "forward."
1231
+ msgstr ""
1232
+ "Hier können Sie einen Diagrammtyp auswählen. Klicken Sie auf den gewünschten "
1233
+ "Diagrammtyp. <br> <br> Wenn Sie fertig sind, klicken Sie auf die "
1234
+ "Schaltfläche 'Weiter', um fortzufahren."
1235
+
1236
+ #: source/class.wdttools.php:478
1237
+ msgid "The first step is finished!"
1238
+ msgstr "Der erste Schritt ist beendet!"
1239
+
1240
+ #: source/class.wdttools.php:479
1241
+ msgid "Let's move on. Please, click 'Next' to continue."
1242
+ msgstr ""
1243
+ "Lass uns weitermachen. Bitte klicken Sie auf 'Weiter', um fortzufahren."
1244
+
1245
+ #: source/class.wdttools.php:482
1246
+ msgid ""
1247
+ "Now you need to choose a wpDataTable based on which we will build a chart "
1248
+ "for you"
1249
+ msgstr ""
1250
+ "Jetzt müssen Sie eine wpDataTable auswählen, auf deren Grundlage wir ein "
1251
+ "Diagramm für Sie erstellen"
1252
+
1253
+ #: source/class.wdttools.php:483
1254
+ msgid ""
1255
+ "Click on the dropdown, and all your tables will be listed. The columns of "
1256
+ "the table that you choose will be used for creating the chart.<br><br>If you "
1257
+ "didn't create a wpDataTable yet, then please click on the 'Skip Tutorial' "
1258
+ "button and create wpDataTable that would contain the data to visualize first."
1259
+ msgstr ""
1260
+ "Klicken Sie auf die Dropdown-Liste, und alle Ihre Tabellen werden "
1261
+ "aufgelistet. Die von Ihnen ausgewählten Spalten der Tabelle werden zum "
1262
+ "Erstellen des Diagramms verwendet. <br> <br> Wenn Sie noch keine wpDataTable "
1263
+ "erstellt haben, klicken Sie auf die Schaltfläche \"Tutorial überspringen\" "
1264
+ "und erstellen Sie eine wpDataTable, die die Daten zuerst zu visualisieren "
1265
+ "enthalten würde."
1266
+
1267
+ #: source/class.wdttools.php:486
1268
+ msgid "Pick your wpDataTable"
1269
+ msgstr "Wählen Sie Ihre wpDataTable"
1270
+
1271
+ #: source/class.wdttools.php:487
1272
+ msgid ""
1273
+ "Pick a wpDataTable from which you want to render a chart and when you "
1274
+ "finish, please click 'Continue' to move on."
1275
+ msgstr ""
1276
+ "Wählen Sie eine wpDataTable aus, aus der Sie ein Diagramm rendern möchten. "
1277
+ "Wenn Sie fertig sind, klicken Sie auf \"Weiter\", um fortzufahren."
1278
+
1279
+ #: source/class.wdttools.php:490
1280
+ msgid "The second step is finished!"
1281
+ msgstr "Der zweite Schritt ist beendet!"
1282
+
1283
+ #: source/class.wdttools.php:491
1284
+ msgid ""
1285
+ "Let's see what is coming up next. <br><br> Please, click 'Next' to continue."
1286
+ msgstr ""
1287
+ "Mal sehen, was als nächstes kommt. <br> <br> Bitte klicken Sie auf 'Weiter', "
1288
+ "um fortzufahren."
1289
+
1290
+ #: source/class.wdttools.php:494
1291
+ msgid "Just a heads up!"
1292
+ msgstr "Passen Sie auf!"
1293
+
1294
+ #: source/class.wdttools.php:495
1295
+ msgid ""
1296
+ "Here you will choose from which columns you will create a chart.<br><br> "
1297
+ "Please click 'Continue' button to move forward."
1298
+ msgstr ""
1299
+ "Hier wählen Sie aus, aus welchen Spalten Sie ein Diagramm erstellen möchten. "
1300
+ "<br> <br> Klicken Sie auf die Schaltfläche \"Weiter\", um fortzufahren."
1301
+
1302
+ #: source/class.wdttools.php:498
1303
+ msgid "Meet the wpDataTable Column Blocks"
1304
+ msgstr "Treffen Sie die wpDataTable-Spaltenblöcke"
1305
+
1306
+ #: source/class.wdttools.php:499
1307
+ msgid ""
1308
+ "Here you will choose columns you want to use in the chart. Drag and drop it, "
1309
+ "or click on the arrow to move the desired column to the 'Columns used in the "
1310
+ "chart' section.<br><br> When you finish please, click 'Continue.'"
1311
+ msgstr ""
1312
+ "Hier wählen Sie Spalten aus, die Sie im Diagramm verwenden möchten. Ziehen "
1313
+ "Sie es per Drag & Drop oder klicken Sie auf den Pfeil, um die gewünschte "
1314
+ "Spalte in den Abschnitt \"Im Diagramm verwendete Spalten\" zu verschieben. "
1315
+ "<br> <br> Wenn Sie fertig sind, klicken Sie auf 'Weiter'."
1316
+
1317
+ #: source/class.wdttools.php:502
1318
+ msgid "Well done!"
1319
+ msgstr "Gut gemacht!"
1320
+
1321
+ #: source/class.wdttools.php:503
1322
+ msgid "Just two more steps to go. Please click 'Next' to continue."
1323
+ msgstr ""
1324
+ "Nur noch zwei Schritte. Bitte klicken Sie auf 'Weiter', um fortzufahren."
1325
+
1326
+ #: source/class.wdttools.php:506
1327
+ msgid "Chart settings and chart preview."
1328
+ msgstr "Diagrammeinstellungen und Diagrammvorschau."
1329
+
1330
+ #: source/class.wdttools.php:507
1331
+ msgid ""
1332
+ "Here you can adjust chart settings, different parameters are grouped in "
1333
+ "section; adjusting the parameters will be reflected in the preview of your "
1334
+ "chart in real-time on the right-hand side.<br><br> Please click 'Continue' "
1335
+ "button to move forward."
1336
+ msgstr ""
1337
+ "Hier können Sie die Diagrammeinstellungen anpassen. Verschiedene Parameter "
1338
+ "sind im Abschnitt zusammengefasst. Das Anpassen der Parameter wird in der "
1339
+ "Vorschau Ihres Diagramms in Echtzeit auf der rechten Seite angezeigt. <br> "
1340
+ "<br> Klicken Sie auf die Schaltfläche 'Weiter', um fortzufahren."
1341
+
1342
+ #: source/class.wdttools.php:510
1343
+ msgid "In this sidebar, you can find the chart settings section."
1344
+ msgstr "In dieser Seitenleiste finden Sie den Abschnitt Diagrammeinstellungen."
1345
+
1346
+ #: source/class.wdttools.php:511
1347
+ msgid ""
1348
+ "By clicking on each section, you can set your desired parameters per section."
1349
+ "<br><br> Please click 'Continue' button to move on."
1350
+ msgstr ""
1351
+ "Durch Klicken auf jeden Abschnitt können Sie die gewünschten Parameter pro "
1352
+ "Abschnitt festlegen. <br> <br> Klicken Sie auf die Schaltfläche 'Weiter', um "
1353
+ "fortzufahren."
1354
+
1355
+ #: source/class.wdttools.php:514
1356
+ msgid "Here are the available chart options"
1357
+ msgstr "Hier sind die verfügbaren Diagrammoptionen"
1358
+
1359
+ #: source/class.wdttools.php:515
1360
+ msgid ""
1361
+ "Set different chart options for the chosen section to get your desired chart "
1362
+ "look.<br><br> Please click 'Continue' button to move on."
1363
+ msgstr ""
1364
+ "Stellen Sie verschiedene Diagrammoptionen für den ausgewählten Abschnitt "
1365
+ "ein, um das gewünschte Diagrammbild zu erhalten. <br> <br> Klicken Sie auf "
1366
+ "die Schaltfläche 'Weiter', um fortzufahren."
1367
+
1368
+ #: source/class.wdttools.php:518
1369
+ msgid "How your chart will look like on the page of your website"
1370
+ msgstr "Wie Ihr Diagramm auf der Seite Ihrer Website aussehen wird"
1371
+
1372
+ #: source/class.wdttools.php:519
1373
+ msgid ""
1374
+ "Here you can see a preview of your chart based on the settings you have "
1375
+ "chosen.<br><br> Please click 'Continue' button to move on."
1376
+ msgstr ""
1377
+ "Hier sehen Sie eine Vorschau Ihres Diagramms basierend auf den von Ihnen "
1378
+ "gewählten Einstellungen. <br> <br> Klicken Sie auf 'Weiter', um fortzufahren."
1379
+
1380
+ #: source/class.wdttools.php:522
1381
+ msgid "You can save your chart now"
1382
+ msgstr "Sie können Ihr Diagramm jetzt speichern"
1383
+
1384
+ #: source/class.wdttools.php:523
1385
+ msgid ""
1386
+ "If you are satisfied with your chart appearance, click on the 'Save chart' "
1387
+ "button and all your settings for this chart will be saved in the database."
1388
+ msgstr ""
1389
+ "Wenn Sie mit dem Erscheinungsbild Ihres Diagramms zufrieden sind, klicken "
1390
+ "Sie auf die Schaltfläche \"Diagramm speichern\". Alle Einstellungen für "
1391
+ "dieses Diagramm werden in der Datenbank gespeichert."
1392
+
1393
+ #: source/class.wdttools.php:526
1394
+ msgid "Congrats! Your first chart is ready!"
1395
+ msgstr "Glückwunsch! Ihr erstes Diagramm ist fertig!"
1396
+
1397
+ #: source/class.wdttools.php:527
1398
+ msgid ""
1399
+ "Now you can copy the shortcode for this chart and paste it in any WP post or "
1400
+ "page. <br><br>You may now finish this tutorial. "
1401
+ msgstr ""
1402
+ "Jetzt können Sie den Shortcode für dieses Diagramm kopieren und in einen "
1403
+ "beliebigen WP-Beitrag oder eine beliebige WP-Seite einfügen. <br> <br> Sie "
1404
+ "können dieses Tutorial jetzt beenden. "
1405
+
1406
+ #: source/class.wpdatachart.php:718
1407
+ msgid "Only one column can be of type String"
1408
+ msgstr "Es kann nur eine Spalte vom Typ String sein"
1409
+
1410
+ #: source/class.wpdatachart.php:721
1411
+ msgid "You are mixing data types (several date axes and several number)"
1412
+ msgstr "Sie mischen Datentypen (mehrere Datumsachsen und mehrere Zahlen)"
1413
+
1414
+ #: source/class.wpdatatable.php:1876
1415
+ msgid ""
1416
+ "You are trying to load a table of an unknown type. Probably you did not "
1417
+ "activate the addon which is required to use this table type."
1418
+ msgstr ""
1419
+ "Sie versuchen, eine Tabelle eines unbekannten Typs zu laden. Wahrscheinlich "
1420
+ "haben Sie das Addon, das für die Verwendung dieses Tabellentyps erforderlich "
1421
+ "ist, nicht aktiviert."
1422
+
1423
+ #: source/class.wpdatatable.php:2106 source/class.wpdatatable.php:2109
1424
+ #: templates/admin/chart_wizard/steps/step3.inc.php:86
1425
+ #: templates/admin/table-settings/column_settings_panel.inc.php:554
1426
+ #: templates/admin/table-settings/table_settings_block.inc.php:327
1427
+ #: templates/edit_table.inc.php:409
1428
+ msgid "All"
1429
+ msgstr "Alle"
1430
+
1431
+ #: source/class.wpdatatable.php:2167 source/class.wpdatatable.php:2236
1432
+ #: templates/admin/table-settings/columns_list_modal.inc.php:12
1433
+ msgid "Columns"
1434
+ msgstr "Spalten"
1435
+
1436
+ #: source/class.wpdatatable.php:2177 source/class.wpdatatable.php:2246
1437
+ #: templates/admin/table-settings/table_settings_block.inc.php:1049
1438
+ msgid "Print"
1439
+ msgstr "Drucken"
1440
+
1441
+ #: source/class.wpdatatable.php:2216 source/class.wpdatatable.php:2289
1442
+ #: templates/admin/table-settings/table_settings_block.inc.php:1053
1443
+ msgid "PDF"
1444
+ msgstr "PDF"
1445
+
1446
+ #: source/class.wpdatatable.php:2224
1447
+ msgid "Export"
1448
+ msgstr "Export"
1449
+
1450
+ #: source/class.wpdatatable.php:2302
1451
+ msgid "Search table"
1452
+ msgstr "Tabelle suchen"
1453
+
1454
+ #: source/class.wpdatatable.php:2303
1455
+ msgid "Showing _MENU_ Entries"
1456
+ msgstr "MENU_ Einträge_anzeigen"
1457
+
1458
+ #: templates/addons.inc.php:8 templates/browse.inc.php:8
1459
+ #: templates/chart_wizard.inc.php:16 templates/constructor.inc.php:14
1460
+ #: templates/edit_table.inc.php:11 templates/settings.inc.php:12
1461
+ msgid "Please refer to"
1462
+ msgstr ""
1463
+
1464
+ #: templates/addons.inc.php:8 templates/browse.inc.php:8
1465
+ msgid "wpDataTables documentation"
1466
+ msgstr ""
1467
+
1468
+ #: templates/addons.inc.php:8 templates/browse.inc.php:8
1469
+ #: templates/chart_wizard.inc.php:16 templates/settings.inc.php:12
1470
+ msgid "if you have some questions or problems with the plugin."
1471
+ msgstr ""
1472
+
1473
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:521
1474
+ msgid "wpDataTables Addons"
1475
+ msgstr "wpDataTables Addons"
1476
+
1477
+ #: templates/addons.inc.php:12
1478
+ msgid ""
1479
+ "While wpDataTables itself provides quite a large amount of features and "
1480
+ "unlimited customisation flexibility, you can achieve even more with our "
1481
+ "premium addons. Each addon brings you some unique extension to the core "
1482
+ "functionality. There will be more addons developed over time by wpDataTables "
1483
+ "creators and 3rd party developers, so stay tuned."
1484
+ msgstr ""
1485
+ "Während wpDataTables selbst eine große Anzahl von Funktionen und unbegrenzte "
1486
+ "Anpassungsflexibilität bietet, können Sie mit unseren Premium-Addons noch "
1487
+ "mehr erreichen. Jedes Addon bietet Ihnen eine einzigartige Erweiterung der "
1488
+ "Kernfunktionalität. Im Laufe der Zeit werden weitere Addons von wpDataTables-"
1489
+ "Entwicklern und Entwicklern von Drittanbietern entwickelt, so bleiben Sie "
1490
+ "bitte dran."
1491
+
1492
+ #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1493
+ #: templates/admin/dashboard/dashboard.inc.php:592
1494
+ msgid "Report Builder"
1495
+ msgstr "Report Builder"
1496
+
1497
+ #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1498
+ #: templates/admin/dashboard/dashboard.inc.php:596
1499
+ msgid ""
1500
+ "A unique tool that allows you to generate almost any Word DOCX and Excel "
1501
+ "XLSX documents filled in with actual data from your database."
1502
+ msgstr ""
1503
+ "Ein einzigartiges Tool, mit dem Sie fast alle Word DOCX- und Excel XLSX-"
1504
+ "Dokumente generieren können, die mit tatsächlichen Daten aus Ihrer Datenbank "
1505
+ "gefüllt sind."
1506
+
1507
+ #: templates/addons.inc.php:24
1508
+ msgid "Find out more"
1509
+ msgstr ""
1510
+
1511
+ #: templates/admin/addons/addons.inc.php:28
1512
+ msgid ""
1513
+ "While wpDataTables itself provides quite a large amount of features and "
1514
+ "unlimited customisation flexibility, you can achieve even more with our "
1515
+ "premium addons. Each addon brings you some unique extension to the core "
1516
+ "functionality. There will be more addons developed over time by wpDataTables "
1517
+ "creators and 3rd party developers, so stay tuned. Please note that addons "
1518
+ "requires Premium version of wpDataTables."
1519
+ msgstr ""
1520
+
1521
+ #: templates/admin/addons/addons.inc.php:36
1522
+ #: templates/admin/addons/addons.inc.php:61
1523
+ msgid "NEW"
1524
+ msgstr "NEU"
1525
+
1526
+ #: templates/admin/addons/addons.inc.php:40
1527
+ #: templates/admin/dashboard/dashboard.inc.php:539
1528
+ msgid "Master Detail Tables for wpDataTables"
1529
+ msgstr "Master Detail Tabelle für wpDataTables"
1530
+
1531
+ #: templates/admin/addons/addons.inc.php:43
1532
+ msgid ""
1533
+ "A wpDataTables addon which allows showing additional details for a specific "
1534
+ "row in a popup or a separate page or post. Handy when you would like to keep "
1535
+ "fewer columns in the table, while allowing user to access full details of "
1536
+ "particular entries."
1537
+ msgstr ""
1538
+ "Ein wpDataTables-Addon, mit dem zusätzliche Details für eine bestimmte Zeile "
1539
+ "in einem Popup oder einer separaten Seite oder einem separaten Beitrag "
1540
+ "angezeigt werden können. Praktisch, wenn Sie weniger Spalten in der Tabelle "
1541
+ "behalten möchten und dem Benutzer gleichzeitig den Zugriff auf alle Details "
1542
+ "bestimmter Einträge ermöglichen möchten."
1543
+
1544
+ #: templates/admin/addons/addons.inc.php:50
1545
+ #: templates/admin/addons/addons.inc.php:77
1546
+ #: templates/admin/addons/addons.inc.php:99
1547
+ #: templates/admin/addons/addons.inc.php:130
1548
+ #: templates/admin/addons/addons.inc.php:153
1549
+ msgid "Learn more"
1550
+ msgstr "Mehr erfahren"
1551
+
1552
+ #: templates/admin/addons/addons.inc.php:67
1553
+ #: templates/admin/dashboard/dashboard.inc.php:566
1554
+ msgid "Powerful Filters for wpDataTables"
1555
+ msgstr "Leistungsstarke Filter für wpDataTables"
1556
+
1557
+ #: templates/admin/addons/addons.inc.php:70
1558
+ msgid ""
1559
+ "An add-on for wpDataTables that provides powerful filtering features: "
1560
+ "cascade filtering, applying filters on button click, show only filter "
1561
+ "without the table before user defines the search values."
1562
+ msgstr ""
1563
+ "Ein Add-On für wpDataTables, das leistungsstarke Filterfunktionen bietet: "
1564
+ "Kaskadenfilterung, Anwenden von Filtern beim Klicken auf eine Schaltfläche, "
1565
+ "nur Filter ohne Tabelle anzeigen, bevor der Benutzer die Suchwerte definiert."
1566
+
1567
+ #: templates/admin/addons/addons.inc.php:120
1568
+ #: templates/admin/dashboard/dashboard.inc.php:619
1569
+ msgid "Formidable Forms integration for wpDataTables"
1570
+ msgstr "Formidable Forms-Integration für wpDataTables"
1571
+
1572
+ #: templates/admin/addons/addons.inc.php:123
1573
+ #: templates/admin/dashboard/dashboard.inc.php:623
1574
+ msgid ""
1575
+ "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1576
+ "create wpDataTables from Formidable Forms entries data."
1577
+ msgstr ""
1578
+ "Tool, das \"Formidable Form\" als neuen Tabellentyp hinzufügt und es Ihnen "
1579
+ "ermöglicht, wpDataTables aus Formidable Forms-Eintragsdaten zu erstellen."
1580
+
1581
+ #: templates/admin/addons/addons.inc.php:143
1582
+ #: templates/admin/dashboard/dashboard.inc.php:645
1583
+ msgid "Gravity Forms integration for wpDataTables"
1584
+ msgstr "Gravity Forms-Integration für wpDataTables"
1585
+
1586
+ #: templates/admin/addons/addons.inc.php:146
1587
+ #: templates/admin/dashboard/dashboard.inc.php:649
1588
+ msgid ""
1589
+ "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1590
+ "wpDataTables from Gravity Forms entries data."
1591
+ msgstr ""
1592
+ "Tool, das \"Gravity Form\" als neuen Tabellentyp hinzufügt und es Ihnen "
1593
+ "ermöglicht, wpDataTables aus Gravity Forms-Eintragsdaten zu erstellen."
1594
+
1595
+ #: templates/admin/browse/chart/browse.inc.php:25
1596
+ msgid "Browse Charts"
1597
+ msgstr "Diagramme durchsuchen"
1598
+
1599
+ #: templates/admin/browse/chart/browse.inc.php:32
1600
+ #: templates/admin/browse/table/browse.inc.php:32
1601
+ msgid "Add New"
1602
+ msgstr "Neu hinzufügen"
1603
+
1604
+ #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:18
1605
+ msgid "Duplicate chart"
1606
+ msgstr "Diagramm duplizieren"
1607
+
1608
+ #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:27
1609
+ msgid "New chart title"
1610
+ msgstr "Neuer Diagrammtitel"
1611
+
1612
+ #: templates/admin/browse/search_box.inc.php:7
1613
+ msgid "Search for items..."
1614
+ msgstr "Nach Artikeln suchen ..."
1615
+
1616
+ #: templates/admin/browse/table/browse.inc.php:25
1617
+ msgid "Browse Tables"
1618
+ msgstr "Tabellen durchsuchen"
1619
+
1620
+ #: templates/admin/browse/table/duplicate_modal.inc.php:19
1621
+ #: templates/browse.inc.php:56
1622
+ msgid "Duplicate table"
1623
+ msgstr "Tabelle duplizieren"
1624
+
1625
+ #: templates/admin/browse/table/duplicate_modal.inc.php:28
1626
+ #: templates/browse.inc.php:19
1627
+ msgid "New table title"
1628
+ msgstr "Neuer Tabellentitel"
1629
+
1630
+ #: templates/admin/browse/table/duplicate_modal.inc.php:40
1631
+ msgid "Duplicate option"
1632
+ msgstr "Option duplizieren"
1633
+
1634
+ #: templates/admin/browse/table/duplicate_modal.inc.php:42
1635
+ msgid "Unchecked"
1636
+ msgstr "Deaktiviert"
1637
+
1638
+ #: templates/admin/browse/table/duplicate_modal.inc.php:42
1639
+ msgid ""
1640
+ "will create exact copy of this table which means that all changes made in "
1641
+ "one table will be reflected in all copies."
1642
+ msgstr ""
1643
+ "erstellt eine exakte Kopie dieser Tabelle, was bedeutet, dass alle in einer "
1644
+ "Tabelle vorgenommenen Änderungen in allen Kopien berücksichtigt werden."
1645
+
1646
+ #: templates/admin/browse/table/duplicate_modal.inc.php:42
1647
+ msgid "Checked"
1648
+ msgstr "Aktiviert"
1649
+
1650
+ #: templates/admin/browse/table/duplicate_modal.inc.php:42
1651
+ msgid ""
1652
+ "will create separate database table so changing one table won't affect other "
1653
+ "copies."
1654
+ msgstr ""
1655
+ "erstellt eine separate Datenbanktabelle, sodass alle in einer Tabelle "
1656
+ "vorgenommenen Änderungen keine Auswirkungen auf andere Kopien haben."
1657
+
1658
+ #: templates/admin/browse/table/duplicate_modal.inc.php:49
1659
+ msgid "Duplicate database table"
1660
+ msgstr "Datenbanktabelle duplizieren"
1661
+
1662
+ #: templates/admin/browse/table_list.inc.php:47
1663
+ #: templates/admin/chart_wizard/chart_wizard.inc.php:114
1664
+ msgid " View Documentation"
1665
+ msgstr " Dokumentation anzeigen"
1666
+
1667
+ #: templates/admin/chart_wizard/chart_wizard.inc.php:53
1668
+ #: templates/chart_wizard.inc.php:32
1669
+ msgid "Chart title & type"
1670
+ msgstr "Diagrammtitel und -typ"
1671
+
1672
+ #: templates/admin/chart_wizard/chart_wizard.inc.php:55
1673
+ #: templates/admin/table-settings/table_settings_block.inc.php:60
1674
+ #: templates/chart_wizard.inc.php:36
1675
+ msgid "Data source"
1676
+ msgstr "Datenquelle"
1677
+
1678
+ #: templates/admin/chart_wizard/chart_wizard.inc.php:57
1679
+ #: templates/chart_wizard.inc.php:40
1680
+ msgid "Data range"
1681
+ msgstr "Datenreichweite"
1682
+
1683
+ #: templates/admin/chart_wizard/chart_wizard.inc.php:59
1684
+ msgid "Formatting and preview"
1685
+ msgstr "Formatierung und Vorschau"
1686
+
1687
+ #: templates/admin/chart_wizard/chart_wizard.inc.php:61
1688
+ #: templates/chart_wizard.inc.php:52
1689
+ msgid "Save and get shortcode"
1690
+ msgstr "Speichern und Shortcode abrufen"
1691
+
1692
+ #: templates/admin/chart_wizard/chart_wizard.inc.php:105
1693
+ msgid "Browse charts"
1694
+ msgstr "Diagramme durchsuchen"
1695
+
1696
+ #: templates/admin/chart_wizard/chart_wizard.inc.php:109
1697
+ #: templates/admin/constructor/constructor.inc.php:61
1698
+ msgid "Next "
1699
+ msgstr "Nächste "
1700
+
1701
+ #: templates/admin/chart_wizard/chart_wizard.inc.php:111
1702
+ #: templates/admin/constructor/constructor.inc.php:63
1703
+ msgid " Previous"
1704
+ msgstr " Zurück"
1705
+
1706
+ #: templates/admin/chart_wizard/chart_wizard.inc.php:138
1707
+ msgid "Serie"
1708
+ msgstr "Serie"
1709
+
1710
+ #: templates/admin/chart_wizard/chart_wizard.inc.php:142
1711
+ msgid "Label"
1712
+ msgstr "Beschriftung"
1713
+
1714
+ #: templates/admin/chart_wizard/chart_wizard.inc.php:156
1715
+ #: templates/admin/settings/tabs/color_and_font_settings.php:680
1716
+ #: templates/admin/table-settings/table_settings_block.inc.php:1902
1717
+ #: templates/edit_table.inc.php:730
1718
+ msgid "Color"
1719
+ msgstr "Farbe"
1720
+
1721
+ #: templates/admin/chart_wizard/steps/charts_pick/chartjs.inc.php:12
1722
+ #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:12
1723
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:13
1724
+ #: templates/chart_wizard.inc.php:95 templates/chart_wizard.inc.php:108
1725
+ msgid "Line chart"
1726
+ msgstr "Liniendiagramm"
1727
+
1728
+ #: templates/admin/chart_wizard/steps/charts_pick/chartjs.inc.php:24
1729
+ #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:48
1730
+ #: templates/chart_wizard.inc.php:93
1731
+ msgid "Area chart"
1732
+ msgstr "Flächendiagramm"
1733
+
1734
+ #: templates/admin/chart_wizard/steps/charts_pick/chartjs.inc.php:37
1735
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:52
1736
+ #: templates/chart_wizard.inc.php:110
1737
+ msgid "Stacked area chart"
1738
+ msgstr "Gestapeltes Flächendiagramm"
1739
+
1740
+ #: templates/admin/chart_wizard/steps/charts_pick/chartjs.inc.php:50
1741
+ #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:24
1742
+ #: templates/chart_wizard.inc.php:90
1743
+ msgid "Column chart"
1744
+ msgstr "Säulendiagramm"
1745
+
1746
+ #: templates/admin/chart_wizard/steps/charts_pick/chartjs.inc.php:62
1747
+ msgid "Radar chart"
1748
+ msgstr "Radar-Diagramm"
1749
+
1750
+ #: templates/admin/chart_wizard/steps/charts_pick/chartjs.inc.php:75
1751
+ msgid "Polar area chart"
1752
+ msgstr "Polar Flächendiagramm"
1753
+
1754
+ #: templates/admin/chart_wizard/steps/charts_pick/chartjs.inc.php:91
1755
+ #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:36
1756
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:121
1757
+ #: templates/chart_wizard.inc.php:96 templates/chart_wizard.inc.php:115
1758
+ msgid "Pie chart"
1759
+ msgstr "Kreisdiagramm"
1760
+
1761
+ #: templates/admin/chart_wizard/steps/charts_pick/chartjs.inc.php:104
1762
+ #, fuzzy
1763
+ msgid "Doughnut chart"
1764
+ msgstr "Doughnut-Diagramm"
1765
+
1766
+ #: templates/admin/chart_wizard/steps/charts_pick/chartjs.inc.php:117
1767
+ #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:113
1768
+ #: templates/chart_wizard.inc.php:97
1769
+ msgid "Bubble chart"
1770
+ msgstr "Blasendiagramm"
1771
+
1772
+ #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:61
1773
+ #: templates/chart_wizard.inc.php:94
1774
+ msgid "Stepped area chart"
1775
+ msgstr "Gestapeltes Flächendiagramm"
1776
+
1777
+ #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:89
1778
+ #: templates/chart_wizard.inc.php:92
1779
+ msgid "Bar chart"
1780
+ msgstr "Balkendiagramm"
1781
+
1782
+ #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:101
1783
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:78
1784
+ #: templates/chart_wizard.inc.php:112
1785
+ msgid "Stacked bar chart"
1786
+ msgstr "Gestapeltes Balkendiagramm"
1787
+
1788
+ #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:125
1789
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:147
1790
+ #: templates/chart_wizard.inc.php:98 templates/chart_wizard.inc.php:117
1791
+ #, fuzzy
1792
+ msgid "Donut chart"
1793
+ msgstr "Donut-Diagramm"
1794
+
1795
+ #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:137
1796
+ #: templates/chart_wizard.inc.php:99
1797
+ msgid "Gauge chart"
1798
+ msgstr "Gauge-Diagramm"
1799
+
1800
+ #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:150
1801
+ #: templates/chart_wizard.inc.php:100
1802
+ msgid "Scatter chart"
1803
+ msgstr "Streudiagramm"
1804
+
1805
+ #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:167
1806
+ msgid "Candlestick chart"
1807
+ msgstr "Candlestick-Diagramm"
1808
+
1809
+ #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:180
1810
+ msgid "Waterfall chart"
1811
+ msgstr "Wasserfalldiagramm"
1812
+
1813
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:26
1814
+ msgid "Spline chart"
1815
+ msgstr "Spline-Diagramm"
1816
+
1817
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:39
1818
+ #: templates/chart_wizard.inc.php:109
1819
+ msgid "Basic area chart"
1820
+ msgstr "Grundlegendes Flächendiagramm"
1821
+
1822
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:65
1823
+ #: templates/chart_wizard.inc.php:111
1824
+ msgid "Basic bar chart"
1825
+ msgstr "Grundlegendes Balkendiagramm"
1826
+
1827
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:95
1828
+ #: templates/chart_wizard.inc.php:113
1829
+ msgid "Basic column chart"
1830
+ msgstr "Grundlegendes Säulendiagramm"
1831
+
1832
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:108
1833
+ #: templates/chart_wizard.inc.php:114
1834
+ msgid "Stacked column chart"
1835
+ msgstr "Gestapeltes Säulendiagramm"
1836
+
1837
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:134
1838
+ #: templates/chart_wizard.inc.php:116
1839
+ msgid "Pie with gradient chart"
1840
+ msgstr "Kreisdiagramm mit Farbverlauf"
1841
+
1842
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:160
1843
+ #: templates/chart_wizard.inc.php:118
1844
+ msgid "Scatter plot"
1845
+ msgstr "Streudiagramm"
1846
+
1847
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:177
1848
+ #: templates/chart_wizard.inc.php:119
1849
+ msgid "3D column chart"
1850
+ msgstr "3D-Säulendiagramm"
1851
+
1852
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:190
1853
+ #: templates/chart_wizard.inc.php:120
1854
+ msgid "3D pie chart"
1855
+ msgstr "3D-Kreisdiagramm"
1856
+
1857
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:203
1858
+ #: templates/chart_wizard.inc.php:121
1859
+ msgid "3D donut chart"
1860
+ msgstr "3D Donut-Diagramm"
1861
+
1862
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:215
1863
+ msgid "Treemap chart"
1864
+ msgstr "Treemap-Diagramm"
1865
+
1866
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:227
1867
+ msgid "Treemap level chart"
1868
+ msgstr "Treemap level - Diagramm"
1869
+
1870
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:239
1871
+ msgid "Polar chart"
1872
+ msgstr "Polardiagramm"
1873
+
1874
+ #: templates/admin/chart_wizard/steps/charts_pick/highcharts.inc.php:255
1875
+ msgid "Spiderweb chart"
1876
+ msgstr "Netzdiagramm"
1877
+
1878
+ #: templates/admin/chart_wizard/steps/step1.inc.php:9
1879
+ msgid ""
1880
+ "NEW awesome features!!! From version wpDataTables Lite 2.1 you can create "
1881
+ "all Google charts"
1882
+ msgstr ""
1883
+
1884
+ #: templates/admin/chart_wizard/steps/step1.inc.php:15
1885
+ #: templates/chart_wizard.inc.php:65
1886
+ msgid "Chart name"
1887
+ msgstr "Diagrammname"
1888
+
1889
+ #: templates/admin/chart_wizard/steps/step1.inc.php:17
1890
+ msgid "Please define the title of the chart that you will use to identify it"
1891
+ msgstr ""
1892
+ "Bitte definieren Sie den Titel des Diagramms, mit dem Sie sie identifizieren"
1893
+
1894
+ #: templates/admin/chart_wizard/steps/step1.inc.php:24
1895
+ #: templates/chart_wizard.inc.php:69
1896
+ msgid "New wpDataTable Chart"
1897
+ msgstr "Neues wpDataTable-Diagramm"
1898
+
1899
+ #: templates/admin/chart_wizard/steps/step1.inc.php:35
1900
+ #: templates/chart_wizard.inc.php:75
1901
+ msgid "Chart render engine"
1902
+ msgstr "Diagramm-Render-Engine"
1903
+
1904
+ #: templates/admin/chart_wizard/steps/step1.inc.php:38
1905
+ #: templates/chart_wizard.inc.php:76
1906
+ msgid "Please choose the render engine."
1907
+ msgstr "Bitte wählen Sie die Render-Engine."
1908
+
1909
+ #: templates/admin/chart_wizard/steps/step1.inc.php:44
1910
+ #: templates/chart_wizard.inc.php:80
1911
+ msgid "Pick the render engine"
1912
+ msgstr "Wählen Sie die Render-Engine"
1913
+
1914
+ #: templates/admin/chart_wizard/steps/step1.inc.php:47
1915
+ msgid "Google Charts"
1916
+ msgstr ""
1917
+
1918
+ #: templates/admin/chart_wizard/steps/step1.inc.php:49
1919
+ msgid "HighCharts"
1920
+ msgstr ""
1921
+
1922
+ #: templates/admin/chart_wizard/steps/step1.inc.php:49
1923
+ #: templates/admin/chart_wizard/steps/step1.inc.php:52
1924
+ #: templates/admin/getting-started/getting_started.inc.php:132
1925
+ #: templates/admin/getting-started/getting_started.inc.php:144
1926
+ #: templates/admin/getting-started/getting_started.inc.php:156
1927
+ #: templates/admin/getting-started/getting_started.inc.php:168
1928
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
1929
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
1930
+ msgid "Available in Premium"
1931
+ msgstr "Erhältlich in Premium"
1932
+
1933
+ #: templates/admin/chart_wizard/steps/step1.inc.php:52
1934
+ msgid "Chart.js"
1935
+ msgstr "Chart.js"
1936
+
1937
+ #: templates/admin/chart_wizard/steps/step2.inc.php:6
1938
+ msgid "wpDataTable Data Source"
1939
+ msgstr "wpDataTable-Datenquelle"
1940
+
1941
+ #: templates/admin/chart_wizard/steps/step2.inc.php:8
1942
+ msgid ""
1943
+ "Please pick a wpDataTable which will be used as a data source for this chart."
1944
+ msgstr ""
1945
+ "Bitte wählen Sie eine wpDataTable aus, die als Datenquelle für dieses "
1946
+ "Diagramm verwendet wird."
1947
+
1948
+ #: templates/admin/chart_wizard/steps/step2.inc.php:15
1949
+ msgid "Pick a wpDataTable"
1950
+ msgstr "Wählen Sie eine wpDataTable"
1951
+
1952
+ #: templates/admin/chart_wizard/steps/step3.inc.php:7
1953
+ msgid "Columns in the data source"
1954
+ msgstr "Spalten in der Datenquelle"
1955
+
1956
+ #: templates/admin/chart_wizard/steps/step3.inc.php:9
1957
+ msgid ""
1958
+ "Choose table columns that you would like to use in the chart. You can either "
1959
+ "drag the column blocks, or click to select them and use controls in the "
1960
+ "middle to add or remove from the chart."
1961
+ msgstr ""
1962
+ "Wählen Sie die Tabellenspalten aus, die Sie im Diagramm verwenden möchten. "
1963
+ "Sie können die Spaltenblöcke entweder ziehen oder anklicken, um sie "
1964
+ "auszuwählen, und Steuerelemente in der Mitte verwenden, um sie zum Diagramm "
1965
+ "hinzuzufügen oder daraus zu entfernen."
1966
+
1967
+ #: templates/admin/chart_wizard/steps/step3.inc.php:20
1968
+ msgid "Add all"
1969
+ msgstr "Alle hinzufügen"
1970
+
1971
+ #: templates/admin/chart_wizard/steps/step3.inc.php:22
1972
+ msgid "Add"
1973
+ msgstr "Hinzufügen"
1974
+
1975
+ #: templates/admin/chart_wizard/steps/step3.inc.php:24
1976
+ msgid "Remove"
1977
+ msgstr "Entfernen"
1978
+
1979
+ #: templates/admin/chart_wizard/steps/step3.inc.php:26
1980
+ msgid "Remove all"
1981
+ msgstr "Alle entfernen"
1982
+
1983
+ #: templates/admin/chart_wizard/steps/step3.inc.php:31
1984
+ msgid "Columns used in the chart"
1985
+ msgstr "Im Diagramm verwendete Spalten"
1986
+
1987
+ #: templates/admin/chart_wizard/steps/step3.inc.php:39
1988
+ msgid ""
1989
+ "Please do not add more then one string-type (date/time, image, email, URL) "
1990
+ "column since only one can be used as a label"
1991
+ msgstr ""
1992
+ "Bitte fügen Sie nicht mehr als eine String-Typen (Datum / Uhrzeit, Bild, E-"
1993
+ "Mail, URL) Spalte, da nur ein als Beschriftung verwendet werden"
1994
+
1995
+ #: templates/admin/chart_wizard/steps/step3.inc.php:43
1996
+ msgid "Minimum count of columns for this chart type is "
1997
+ msgstr "Die Mindestanzahl der Spalten für diesen Diagrammtyp beträgt "
1998
+
1999
+ #: templates/admin/chart_wizard/steps/step3.inc.php:47
2000
+ msgid "Maximum count of columns for this chart type is "
2001
+ msgstr "Die maximale Anzahl von Spalten für diesen Diagrammtyp beträgt "
2002
+
2003
+ #: templates/admin/chart_wizard/steps/step3.inc.php:58
2004
+ msgid "Charts data filtering"
2005
+ msgstr "Diagrammdatenfilterung"
2006
+
2007
+ #: templates/admin/chart_wizard/steps/step3.inc.php:60
2008
+ msgid ""
2009
+ "If you enable this, chart will automatically re-render with actual data "
2010
+ "every time you sort, filter, or switch pages in the table (chart must be in "
2011
+ "the same page with the table)."
2012
+ msgstr ""
2013
+ "Wenn Sie dies aktivieren, wird das Diagramm bei jedem Sortieren, Filtern "
2014
+ "oder Wechseln der Seiten in der Tabelle automatisch mit den tatsächlichen "
2015
+ "Daten neu gerendert (das Diagramm muss sich auf derselben Seite wie die "
2016
+ "Tabelle befinden)."
2017
+
2018
+ #: templates/admin/chart_wizard/steps/step3.inc.php:64
2019
+ msgid "Follow table filtering"
2020
+ msgstr "Befolgen Sie die Tabellenfilterung"
2021
+
2022
+ #: templates/admin/chart_wizard/steps/step3.inc.php:71
2023
+ msgid "Row range"
2024
+ msgstr "Zeilenbereich"
2025
+
2026
+ #: templates/admin/chart_wizard/steps/step3.inc.php:73
2027
+ msgid "Please choose the row range."
2028
+ msgstr "Bitte wählen Sie den Zeilenbereich."
2029
+
2030
+ #: templates/admin/chart_wizard/steps/step3.inc.php:73
2031
+ msgid ""
2032
+ "If you do not want data from all the table rows to be in the chart, you can "
2033
+ "pick the row range manually. Please note that if the data set is large the "
2034
+ "range picker can load slowly or even cause an out of memory error."
2035
+ msgstr ""
2036
+ "Wenn Sie nicht möchten, dass die Daten aus allen Tabellenzeilen im Diagramm "
2037
+ "enthalten sind, können Sie den Zeilenbereich manuell auswählen. Bitte "
2038
+ "beachten Sie, dass der Range Picker bei einem großen Datensatz langsam "
2039
+ "geladen wird oder sogar einen Speicherfehler verursachen kann."
2040
+
2041
+ #: templates/admin/chart_wizard/steps/step3.inc.php:79
2042
+ msgid "All rows (default)"
2043
+ msgstr "Alle Zeilen (Standard)"
2044
+
2045
+ #: templates/admin/chart_wizard/steps/step3.inc.php:80
2046
+ msgid "Pick range (slow on large datasets)"
2047
+ msgstr "Auswahlbereich (langsam bei großen Datenmengen)"
2048
+
2049
+ #: templates/admin/chart_wizard/steps/step3.inc.php:85
2050
+ msgid "Rows picked"
2051
+ msgstr "Zeilen ausgewählt"
2052
+
2053
+ #: templates/admin/chart_wizard/steps/step3.inc.php:88
2054
+ msgid "Range picker..."
2055
+ msgstr "Bereich Picker..."
2056
+
2057
+ #: templates/admin/chart_wizard/steps/step4.inc.php:10
2058
+ msgid "Chart"
2059
+ msgstr "Diagramm"
2060
+
2061
+ #: templates/admin/chart_wizard/steps/step4.inc.php:13
2062
+ msgid "Series"
2063
+ msgstr "Serie"
2064
+
2065
+ #: templates/admin/chart_wizard/steps/step4.inc.php:15
2066
+ msgid "Axes"
2067
+ msgstr "Achsen"
2068
+
2069
+ #: templates/admin/chart_wizard/steps/step4.inc.php:19
2070
+ #: templates/admin/chart_wizard/steps/step4.inc.php:543
2071
+ msgid "Tooltip"
2072
+ msgstr "Tooltip"
2073
+
2074
+ #: templates/admin/chart_wizard/steps/step4.inc.php:21
2075
+ msgid "Legend"
2076
+ msgstr "Legende"
2077
+
2078
+ #: templates/admin/chart_wizard/steps/step4.inc.php:23
2079
+ msgid "Exporting"
2080
+ msgstr "Exportieren"
2081
+
2082
+ #: templates/admin/chart_wizard/steps/step4.inc.php:26
2083
+ msgid "Credits"
2084
+ msgstr "Credits"
2085
+
2086
+ #: templates/admin/chart_wizard/steps/step4.inc.php:35
2087
+ msgid "Series settings"
2088
+ msgstr "Serieneinstellungen"
2089
+
2090
+ #: templates/admin/chart_wizard/steps/step4.inc.php:37
2091
+ msgid ""
2092
+ "If you want to redefine the series labels and colors you can do it here."
2093
+ msgstr ""
2094
+ "Wenn Sie die Serienbeschriftungen und -farben neu definieren möchten, können "
2095
+ "Sie dies hier tun."
2096
+
2097
+ #: templates/admin/chart_wizard/steps/step4.inc.php:47
2098
+ msgid "Curve type"
2099
+ msgstr "Kurventyp"
2100
+
2101
+ #: templates/admin/chart_wizard/steps/step4.inc.php:49
2102
+ #: templates/admin/chart_wizard/steps/step4.inc.php:347
2103
+ msgid "Controls the curve of the lines"
2104
+ msgstr "Steuert die Kurve der Linien"
2105
+
2106
+ #: templates/admin/chart_wizard/steps/step4.inc.php:53
2107
+ msgid "Check for smoothed lines"
2108
+ msgstr "Auf geglättete Linien prüfen"
2109
+
2110
+ #: templates/admin/chart_wizard/steps/step4.inc.php:61
2111
+ msgid "Chart width"
2112
+ msgstr "Diagrammbreite"
2113
+
2114
+ #: templates/admin/chart_wizard/steps/step4.inc.php:63
2115
+ msgid "The width of the chart."
2116
+ msgstr "Die Breite des Diagramms."
2117
+
2118
+ #: templates/admin/chart_wizard/steps/step4.inc.php:86
2119
+ msgid "Responsive width"
2120
+ msgstr "Reaktionsbreite"
2121
+
2122
+ #: templates/admin/chart_wizard/steps/step4.inc.php:88
2123
+ msgid ""
2124
+ "If you tick this chart width will always adjust to 100% width of the "
2125
+ "container"
2126
+ msgstr ""
2127
+ "Wenn Sie dieses Diagramm ankreuzen, wird die Breite des Containers immer auf "
2128
+ "100% angepasst"
2129
+
2130
+ #: templates/admin/chart_wizard/steps/step4.inc.php:92
2131
+ msgid "Responsive chart width"
2132
+ msgstr "Responsive Diagrammbreite"
2133
+
2134
+ #: templates/admin/chart_wizard/steps/step4.inc.php:97
2135
+ msgid "Chart height"
2136
+ msgstr "Diagrammhöhe"
2137
+
2138
+ #: templates/admin/chart_wizard/steps/step4.inc.php:99
2139
+ msgid "The height of the chart."
2140
+ msgstr "Die Höhe des Diagramms."
2141
+
2142
+ #: templates/admin/chart_wizard/steps/step4.inc.php:122
2143
+ msgid "Group chart"
2144
+ msgstr "Gruppendiagramm"
2145
+
2146
+ #: templates/admin/chart_wizard/steps/step4.inc.php:124
2147
+ msgid ""
2148
+ "If you tick this checkbox, the values of the rows with same label will be "
2149
+ "summed up and rendered as a single series. If you leave it unticked all rows "
2150
+ "will be rendered as separate series."
2151
+ msgstr ""
2152
+ "Wenn Sie dieses Kontrollkästchen aktivieren, werden die Werte der Zeilen mit "
2153
+ "derselben Beschriftung zusammengefasst und als einzelne Reihe gerendert. "
2154
+ "Wenn Sie das Kontrollkästchen nicht aktivieren, werden alle Zeilen als "
2155
+ "separate Serien gerendert."
2156
+
2157
+ #: templates/admin/chart_wizard/steps/step4.inc.php:128
2158
+ msgid "Enable grouping"
2159
+ msgstr "Gruppierung aktivieren"
2160
+
2161
+ #: templates/admin/chart_wizard/steps/step4.inc.php:133
2162
+ #: templates/admin/settings/tabs/color_and_font_settings.php:104
2163
+ #: templates/admin/settings/tabs/color_and_font_settings.php:425
2164
+ #: templates/admin/settings/tabs/color_and_font_settings.php:660
2165
+ #: templates/admin/table-settings/table_settings_block.inc.php:1549
2166
+ #: templates/admin/table-settings/table_settings_block.inc.php:1879
2167
+ msgid "Background color"
2168
+ msgstr "Hintergrundfarbe"
2169
+
2170
+ #: templates/admin/chart_wizard/steps/step4.inc.php:135
2171
+ msgid "The background color for the outer chart area."
2172
+ msgstr "Die Hintergrundfarbe für den äußeren Diagrammbereich."
2173
+
2174
+ #: templates/admin/chart_wizard/steps/step4.inc.php:152
2175
+ msgid "Border width"
2176
+ msgstr "Rahmenbreite"
2177
+
2178
+ #: templates/admin/chart_wizard/steps/step4.inc.php:154
2179
+ msgid "The pixel width of the outer chart border."
2180
+ msgstr "Die Pixelbreite des äußeren Diagrammrahmens."
2181
+
2182
+ #: templates/admin/chart_wizard/steps/step4.inc.php:177
2183
+ #: templates/admin/settings/tabs/color_and_font_settings.php:123
2184
+ #: templates/admin/settings/tabs/color_and_font_settings.php:444
2185
+ #: templates/admin/table-settings/table_settings_block.inc.php:1571
2186
+ msgid "Border color"
2187
+ msgstr "Rahmenfarbe"
2188
+
2189
+ #: templates/admin/chart_wizard/steps/step4.inc.php:179
2190
+ msgid "The color of the outer chart border."
2191
+ msgstr "Die Farbe des äußeren Diagrammrahmens."
2192
+
2193
+ #: templates/admin/chart_wizard/steps/step4.inc.php:197
2194
+ msgid "Border radius"
2195
+ msgstr "Rahmenradius"
2196
+
2197
+ #: templates/admin/chart_wizard/steps/step4.inc.php:199
2198
+ #: templates/admin/chart_wizard/steps/step4.inc.php:244
2199
+ msgid "The corner radius of the outer chart border."
2200
+ msgstr "Der Eckenradius des äußeren Diagrammrahmens."
2201
+
2202
+ #: templates/admin/chart_wizard/steps/step4.inc.php:223
2203
+ msgid "Plot background color"
2204
+ msgstr "Plot Hintergrundfarbe"
2205
+
2206
+ #: templates/admin/chart_wizard/steps/step4.inc.php:225
2207
+ msgid "The background color or gradient for the plot area."
2208
+ msgstr "Die Hintergrundfarbe oder der Verlauf für den Plotbereich."
2209
+
2210
+ #: templates/admin/chart_wizard/steps/step4.inc.php:242
2211
+ msgid "Plot border width"
2212
+ msgstr "Plot Rahmenbreite"
2213
+
2214
+ #: templates/admin/chart_wizard/steps/step4.inc.php:267
2215
+ msgid "Plot border color"
2216
+ msgstr "Plot Rahmenfarbe"
2217
+
2218
+ #: templates/admin/chart_wizard/steps/step4.inc.php:269
2219
+ msgid "The color of the inner chart or plot area border."
2220
+ msgstr "Die Farbe des inneren Diagramm- oder Plotbereichsrahmens."
2221
+
2222
+ #: templates/admin/chart_wizard/steps/step4.inc.php:287
2223
+ #: templates/admin/settings/tabs/color_and_font_settings.php:45
2224
+ #: templates/admin/table-settings/table_settings_block.inc.php:1483
2225
+ msgid "Font size"
2226
+ msgstr "Schriftgröße"
2227
+
2228
+ #: templates/admin/chart_wizard/steps/step4.inc.php:289
2229
+ msgid "The default font size, in pixels, of all text in the chart."
2230
+ msgstr "Die Standardschriftgröße des gesamten Textes im Diagramm in Pixel."
2231
+
2232
+ #: templates/admin/chart_wizard/steps/step4.inc.php:313
2233
+ msgid "Font name"
2234
+ msgstr "Schriftartname"
2235
+
2236
+ #: templates/admin/chart_wizard/steps/step4.inc.php:315
2237
+ msgid "The default font face for all text in the chart."
2238
+ msgstr "Die Standardschriftart für den gesamten Text im Diagramm."
2239
+
2240
+ #: templates/admin/chart_wizard/steps/step4.inc.php:330
2241
+ #: templates/admin/chart_wizard/steps/step4.inc.php:336
2242
+ msgid "3D"
2243
+ msgstr "3D"
2244
+
2245
+ #: templates/admin/chart_wizard/steps/step4.inc.php:332
2246
+ msgid "Check for 3D pie chart"
2247
+ msgstr "Suchen Sie nach 3D-Kreisdiagramm"
2248
+
2249
+ #: templates/admin/chart_wizard/steps/step4.inc.php:345
2250
+ msgid "Grid"
2251
+ msgstr "Gitter"
2252
+
2253
+ #: templates/admin/chart_wizard/steps/step4.inc.php:351
2254
+ #, fuzzy
2255
+ msgid "Do you want to show grid on the chart"
2256
+ msgstr "Möchten Sie das Gitter im Diagramm anzeigen?"
2257
+
2258
+ #: templates/admin/chart_wizard/steps/step4.inc.php:356
2259
+ msgid "Horizontal axis label"
2260
+ msgstr "Beschriftung der waagerechten Achse"
2261
+
2262
+ #: templates/admin/chart_wizard/steps/step4.inc.php:358
2263
+ msgid "Name of the horizontal axis."
2264
+ msgstr "Name der waagerechten Achse."
2265
+
2266
+ #: templates/admin/chart_wizard/steps/step4.inc.php:373
2267
+ msgid "Horizontal crosshair"
2268
+ msgstr "Waagerechtes Fadenkreuz"
2269
+
2270
+ #: templates/admin/chart_wizard/steps/step4.inc.php:375
2271
+ msgid ""
2272
+ "Configure a horizontal crosshair that follows either the mouse pointer or "
2273
+ "the hovered point lines"
2274
+ msgstr ""
2275
+ "Konfigurieren Sie ein waagerechtes Fadenkreuz, das entweder dem Mauszeiger "
2276
+ "oder den schwebenden Punktlinien folgt"
2277
+
2278
+ #: templates/admin/chart_wizard/steps/step4.inc.php:379
2279
+ msgid "Show x-Axis crosshair"
2280
+ msgstr "X-Achsen-Fadenkreuz anzeigen"
2281
+
2282
+ #: templates/admin/chart_wizard/steps/step4.inc.php:384
2283
+ msgid "Horizontal axis direction"
2284
+ msgstr "Waagerechte Achsenrichtung"
2285
+
2286
+ #: templates/admin/chart_wizard/steps/step4.inc.php:386
2287
+ msgid ""
2288
+ "The direction in which the values along the horizontal axis grow. Specify -1 "
2289
+ "to reverse the order of the values"
2290
+ msgstr ""
2291
+ "Die Richtung, in der die Werte entlang der waagerechten Achse wachsen. Geben "
2292
+ "Sie -1 an, um die Reihenfolge der Werte umzukehren"
2293
+
2294
+ #: templates/admin/chart_wizard/steps/step4.inc.php:402
2295
+ msgid "Vertical axis label"
2296
+ msgstr "Beschriftung der senkrechten Achse"
2297
+
2298
+ #: templates/admin/chart_wizard/steps/step4.inc.php:404
2299
+ msgid "Name of the vertical axis."
2300
+ msgstr "Name der senkrechten Achse."
2301
+
2302
+ #: templates/admin/chart_wizard/steps/step4.inc.php:419
2303
+ msgid "Vertical crosshair"
2304
+ msgstr "Senkrechtes Fadenkreuz"
2305
+
2306
+ #: templates/admin/chart_wizard/steps/step4.inc.php:421
2307
+ msgid ""
2308
+ "Configure a vertical crosshair that follows either the mouse pointer or the "
2309
+ "hovered point lines"
2310
+ msgstr ""
2311
+ "Konfigurieren Sie ein senkrechtes Fadenkreuz, das entweder dem Mauszeiger "
2312
+ "oder den schwebenden Punktlinien folgt"
2313
+
2314
+ #: templates/admin/chart_wizard/steps/step4.inc.php:425
2315
+ msgid "Show y-Axis crosshair"
2316
+ msgstr "Y-Achsen-Fadenkreuz anzeigen"
2317
+
2318
+ #: templates/admin/chart_wizard/steps/step4.inc.php:430
2319
+ msgid "Vertical axis direction"
2320
+ msgstr "Senkrechte Achsenrichtung"
2321
+
2322
+ #: templates/admin/chart_wizard/steps/step4.inc.php:432
2323
+ msgid ""
2324
+ "The direction in which the values along the vertical axis grow. Specify -1 "
2325
+ "to reverse the order of the values"
2326
+ msgstr ""
2327
+ "Die Richtung, in der die Werte entlang der senkrechten Achse wachsen. Geben "
2328
+ "Sie -1 an, um die Reihenfolge der Werte umzukehren"
2329
+
2330
+ #: templates/admin/chart_wizard/steps/step4.inc.php:449
2331
+ msgid "Vertical axis min value"
2332
+ msgstr "Minimaler Wert der senkrechten Achse"
2333
+
2334
+ #: templates/admin/chart_wizard/steps/step4.inc.php:451
2335
+ msgid "The minimum value of the axis."
2336
+ msgstr "Der Mindestwert der Achse."
2337
+
2338
+ #: templates/admin/chart_wizard/steps/step4.inc.php:475
2339
+ msgid "Vertical axis max value"
2340
+ msgstr "Maximaler Wert der senkrechten Achse"
2341
+
2342
+ #: templates/admin/chart_wizard/steps/step4.inc.php:477
2343
+ msgid "The maximum value of the axis."
2344
+ msgstr "Der Maximalwert der Achse."
2345
+
2346
+ #: templates/admin/chart_wizard/steps/step4.inc.php:500
2347
+ msgid "Invert"
2348
+ msgstr "Umkehren"
2349
+
2350
+ #: templates/admin/chart_wizard/steps/step4.inc.php:502
2351
+ msgid ""
2352
+ "Whether to invert the axes so that the x axis is vertical and y axis is "
2353
+ "horizontal"
2354
+ msgstr ""
2355
+ "Gibt an, ob die Achsen so invertiert werden sollen, dass die x-Achse "
2356
+ "senkrecht und die y-Achse waagerecht ist"
2357
+
2358
+ #: templates/admin/chart_wizard/steps/step4.inc.php:506
2359
+ msgid "Invert chart axes"
2360
+ msgstr "Diagrammachsen umkehren"
2361
+
2362
+ #: templates/admin/chart_wizard/steps/step4.inc.php:516
2363
+ msgid "Chart title"
2364
+ msgstr "Diagrammtitel"
2365
+
2366
+ #: templates/admin/chart_wizard/steps/step4.inc.php:518
2367
+ #, fuzzy
2368
+ msgid "Do you want to show the chart title on the page"
2369
+ msgstr "Möchten Sie den Diagrammtitel auf der Seite anzeigen?"
2370
+
2371
+ #: templates/admin/chart_wizard/steps/step4.inc.php:522
2372
+ msgid "Show title"
2373
+ msgstr "Titel anzeigen"
2374
+
2375
+ #: templates/admin/chart_wizard/steps/step4.inc.php:527
2376
+ msgid "Title floating"
2377
+ msgstr "Titel schwebend"
2378
+
2379
+ #: templates/admin/chart_wizard/steps/step4.inc.php:529
2380
+ msgid ""
2381
+ "When the title is floating, the plot area will not move to make space for it"
2382
+ msgstr ""
2383
+ "Wenn der Titel schwebt, wird der Plotbereich nicht verschoben, um Platz "
2384
+ "dafür zu schaffen"
2385
+
2386
+ #: templates/admin/chart_wizard/steps/step4.inc.php:533
2387
+ msgid "Enable floating"
2388
+ msgstr "Schweben aktivieren"
2389
+
2390
+ #: templates/admin/chart_wizard/steps/step4.inc.php:545
2391
+ msgid "Enable or disable the tooltip"
2392
+ msgstr "Aktivieren oder deaktivieren Sie den Tooltip"
2393
+
2394
+ #: templates/admin/chart_wizard/steps/step4.inc.php:549
2395
+ msgid "Show tooltip"
2396
+ msgstr "Tooltip anzeigen"
2397
+
2398
+ #: templates/admin/chart_wizard/steps/step4.inc.php:560
2399
+ msgid "Position"
2400
+ msgstr "Position"
2401
+
2402
+ #: templates/admin/chart_wizard/steps/step4.inc.php:562
2403
+ msgid "Position of the legend"
2404
+ msgstr "Position der Legende"
2405
+
2406
+ #: templates/admin/chart_wizard/steps/step4.inc.php:580
2407
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2408
+ msgid "Vertical align"
2409
+ msgstr "Senkrechte Ausrichtung"
2410
+
2411
+ #: templates/admin/chart_wizard/steps/step4.inc.php:582
2412
+ msgid "The vertical alignment of the legend box"
2413
+ msgstr "Die senkrechte Ausrichtung des Legendenfelds"
2414
+
2415
+ #: templates/admin/chart_wizard/steps/step5.inc.php:5
2416
+ msgid "Your chart is ready!"
2417
+ msgstr "Ihr Diagramm ist fertig!"
2418
+
2419
+ #: templates/admin/chart_wizard/steps/step5.inc.php:10
2420
+ msgid "Paste this shortcode to render this chart"
2421
+ msgstr "Fügen Sie diesen Shortcode ein, um dieses Diagramm zu rendern"
2422
+
2423
+ #: templates/admin/common/HTMLModal.inc.php:18
2424
+ msgid "HTML Editor"
2425
+ msgstr "HTML-Editor"
2426
+
2427
+ #: templates/admin/common/HTMLModal.inc.php:48
2428
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:278
2429
+ msgid "Insert HTML"
2430
+ msgstr "HTML einfügen"
2431
+
2432
+ #: templates/admin/common/close_modal.inc.php:17
2433
+ #: templates/admin/common/warningModal.inc.php:19
2434
+ #: templates/common/delete_modal.inc.php:19
2435
+ msgid "Are you sure?"
2436
+ msgstr "Sind Sie sicher?"
2437
+
2438
+ #: templates/admin/common/close_modal.inc.php:26
2439
+ msgid ""
2440
+ "You are about to cancel creating wizard, there is no undo! You will be "
2441
+ "redirect to Browse page."
2442
+ msgstr ""
2443
+ "Sie sind dabei, den Erstellungsassistenten abzubrechen. Es kann nicht "
2444
+ "rückgängig gemacht! Sie werden zur Seite Durchsuchen weitergeleitet."
2445
+
2446
+ #: templates/admin/common/close_modal.inc.php:37
2447
+ #: templates/admin/common/warningModal.inc.php:40
2448
+ msgid "No, Continue"
2449
+ msgstr "Nein, weiter"
2450
+
2451
+ #: templates/admin/common/close_modal.inc.php:39
2452
+ msgid "Yes, Cancel"
2453
+ msgstr "Ja, Abbrechen"
2454
+
2455
+ #: templates/admin/common/error_modal.inc.php:16
2456
+ #: templates/common/error.inc.php:3
2457
+ msgid "Error"
2458
+ msgstr "Fehler"
2459
+
2460
+ #: templates/admin/common/linkModal.inc.php:18
2461
+ msgid "Link editor"
2462
+ msgstr "Link-Editor"
2463
+
2464
+ #: templates/admin/common/linkModal.inc.php:28
2465
+ msgid "Insert URL:"
2466
+ msgstr "URL einfügen:"
2467
+
2468
+ #: templates/admin/common/linkModal.inc.php:38
2469
+ #: templates/admin/common/linkModal.inc.php:55
2470
+ #: templates/admin/common/shortcodeModal.inc.php:35
2471
+ msgid "Field can not be empty!"
2472
+ msgstr "Feld darf nicht leer sein!"
2473
+
2474
+ #: templates/admin/common/linkModal.inc.php:45
2475
+ msgid "Insert Link text:"
2476
+ msgstr "Linktext einfügen:"
2477
+
2478
+ #: templates/admin/common/linkModal.inc.php:65
2479
+ #: templates/admin/table-settings/column_settings_panel.inc.php:661
2480
+ msgid "Open link in the new tab"
2481
+ msgstr "Öffnen Sie den Link in dem neuen Tab"
2482
+
2483
+ #: templates/admin/common/linkModal.inc.php:76
2484
+ #: templates/admin/table-settings/column_settings_panel.inc.php:720
2485
+ msgid "Make NOFOLLOW link"
2486
+ msgstr "Machen Sie einen NOFOLLOW-Link"
2487
+
2488
+ #: templates/admin/common/linkModal.inc.php:87
2489
+ #: templates/admin/table-settings/column_settings_panel.inc.php:677
2490
+ msgid "Set the link to appear as a button"
2491
+ msgstr "Stellen Sie den Link so ein, dass er als Schaltfläche angezeigt wird"
2492
+
2493
+ #: templates/admin/common/linkModal.inc.php:96
2494
+ msgid "Button class:"
2495
+ msgstr "Schaltfläche-Calss:"
2496
+
2497
+ #: templates/admin/common/linkModal.inc.php:121
2498
+ msgid "Insert link"
2499
+ msgstr "Link einfügen"
2500
+
2501
+ #: templates/admin/common/premium_modal.inc.php:35
2502
+ msgid "Compare"
2503
+ msgstr "Vergleichen Sie"
2504
+
2505
+ #: templates/admin/common/premium_modal.inc.php:36
2506
+ #: templates/admin/dashboard/dashboard.inc.php:73
2507
+ msgid "or"
2508
+ msgstr "oder"
2509
+
2510
+ #: templates/admin/common/premium_modal.inc.php:37
2511
+ msgid "View Pricing"
2512
+ msgstr "Preise anzeigen"
2513
+
2514
+ #: templates/admin/common/ratingDiv.inc.php:6
2515
+ #, php-format
2516
+ msgid ""
2517
+ "Awesome! %s You are a wpDataTables Master! %s You’ve created more than 100 "
2518
+ "tables!"
2519
+ msgstr ""
2520
+ "Wunderbar! %s Sie sind ein wpDataTables-Meister! %s Sie haben mehr als 100 "
2521
+ "Tabellen erstellt!"
2522
+
2523
+ #: templates/admin/common/ratingDiv.inc.php:8
2524
+ #, php-format
2525
+ msgid ""
2526
+ "Well done! %s You’ve created more than 50 tables - you are a wpDataTables "
2527
+ "Professional! %s"
2528
+ msgstr ""
2529
+ "Gut gemacht! %s Sie haben mehr als 50 Tabellen erstellt - Sie sind ein "
2530
+ "wpDataTables Professional! %s"
2531
+
2532
+ #: templates/admin/common/ratingDiv.inc.php:10
2533
+ #, php-format
2534
+ msgid "Nice job! %s You created more than 10 tables. %s"
2535
+ msgstr "Gut gemacht! %s Sie haben mehr als 10 Tabellen erstellt. %s"
2536
+
2537
+ #: templates/admin/common/ratingDiv.inc.php:12
2538
+ msgid "We hope you’ve enjoyed using wpDataTables."
2539
+ msgstr "Wir hoffen, Ihnen hat die Verwendung von wpDataTables gefallen."
2540
+
2541
+ #: templates/admin/common/ratingDiv.inc.php:21
2542
+ msgid "Would you consider leaving us a review on WordPress.org?"
2543
+ msgstr "Würden Sie uns eine Bewertung auf WordPress.org hinterlassen?"
2544
+
2545
+ #: templates/admin/common/ratingDiv.inc.php:24
2546
+ msgid "Sure! I Like wpDataTables"
2547
+ msgstr "Sicher! Ich mag wpDataTables"
2548
+
2549
+ #: templates/admin/common/ratingDiv.inc.php:30
2550
+ msgid "I've already left a review"
2551
+ msgstr "Ich habe bereits eine Bewertung abgegeben"
2552
+
2553
+ #: templates/admin/common/ratingDiv.inc.php:31
2554
+ msgid "Maybe Later"
2555
+ msgstr "Vielleicht später"
2556
+
2557
+ #: templates/admin/common/ratingDiv.inc.php:32
2558
+ msgid "Never show again"
2559
+ msgstr "Nie wieder anzeigen"
2560
+
2561
+ #: templates/admin/common/shortcodeModal.inc.php:18
2562
+ msgid "Shortcode Editor"
2563
+ msgstr "Shortcode-Editor"
2564
+
2565
+ #: templates/admin/common/shortcodeModal.inc.php:28
2566
+ msgid "Insert shortcode:"
2567
+ msgstr "Shortcode einfügen:"
2568
+
2569
+ #: templates/admin/common/shortcodeModal.inc.php:53
2570
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:282
2571
+ msgid "Insert shortcode"
2572
+ msgstr "Shortcode einfügen"
2573
+
2574
+ #: templates/admin/common/starModal.inc.php:19
2575
+ msgid "Star Rating Editor"
2576
+ msgstr "Sternebewertung Editor"
2577
+
2578
+ #: templates/admin/common/starModal.inc.php:27
2579
+ msgid "Select star rating:"
2580
+ msgstr "Sternebewertung auswählen:"
2581
+
2582
+ #: templates/admin/common/starModal.inc.php:40
2583
+ msgid "Choose number of stars:"
2584
+ msgstr "Wählen Sie die Anzahl der Sterne:"
2585
+
2586
+ #: templates/admin/common/starModal.inc.php:59
2587
+ msgid "Show star number rating"
2588
+ msgstr "Sternezahl anzeigen"
2589
+
2590
+ #: templates/admin/common/starModal.inc.php:78
2591
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:286
2592
+ msgid "Insert star rating"
2593
+ msgstr "Sternebewertung einfügen"
2594
+
2595
+ #: templates/admin/common/warningModal.inc.php:27
2596
+ msgid "You are about to delete all table data."
2597
+ msgstr "Sie sind dabei, alle Tabellendaten zu löschen."
2598
+
2599
+ #: templates/admin/common/warningModal.inc.php:45
2600
+ msgid "Yes, Delete"
2601
+ msgstr "Ja, löschen"
2602
+
2603
+ #: templates/admin/constructor/constructor.inc.php:54
2604
+ msgid "Open in standard editor"
2605
+ msgstr "Im Standardeditor öffnen"
2606
+
2607
+ #: templates/admin/constructor/constructor.inc.php:56
2608
+ msgid "Open in Excel-like editor"
2609
+ msgstr "Öffnen Sie im Excel-ähnlichen Editor"
2610
+
2611
+ #: templates/admin/constructor/constructor.inc.php:67
2612
+ #: templates/admin/dashboard/dashboard.inc.php:30
2613
+ #: templates/admin/getting-started/getting_started.inc.php:34
2614
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:31
2615
+ #: templates/admin/settings/settings.inc.php:100
2616
+ #: templates/admin/support/support.inc.php:31
2617
+ #: templates/admin/support/support.inc.php:47
2618
+ #: templates/admin/system-info/system_info.inc.php:29
2619
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1090
2620
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:606
2621
+ #: templates/admin/table-settings/table_preview_block.inc.php:81
2622
+ #: templates/admin/table-settings/table_settings_block.inc.php:2063
2623
+ #: templates/admin/welcome_page/welcome_page.inc.php:228
2624
+ msgid "View Documentation"
2625
+ msgstr "Dokumentation anzeigen"
2626
+
2627
+ #: templates/admin/constructor/steps/constructor_1.inc.php:5
2628
+ #: templates/constructor.inc.php:29
2629
+ msgid "Choose what kind of table would you like to construct"
2630
+ msgstr "Wählen Sie aus, welche Art von Tabelle Sie erstellen möchten"
2631
+
2632
+ #: templates/admin/constructor/steps/constructor_1.inc.php:19
2633
+ msgid "Create a simple table from scratch"
2634
+ msgstr "Erstellen Sie eine einfache Tabelle von Grund auf neu"
2635
+
2636
+ #: templates/admin/constructor/steps/constructor_1.inc.php:20
2637
+ msgid ""
2638
+ "Create a simple table with any data, merged cells, styling, star rating and "
2639
+ "a lot more.<br> You get full control of formatting, but no sorting, "
2640
+ "searching, pagination or export functionality like in data tables."
2641
+ msgstr ""
2642
+ "Erstellen Sie eine einfache Tabelle mit Daten, zusammengeführten Zellen, "
2643
+ "Stil, Sternebewertung und vielem mehr. Sie haben die volle Kontrolle über "
2644
+ "die Formatierung, jedoch keine Sortier-, Such-, Paginierungs- oder "
2645
+ "Exportfunktionen wie in Datentabellen."
2646
+
2647
+ #: templates/admin/constructor/steps/constructor_1.inc.php:31
2648
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:14
2649
+ #: templates/admin/welcome_page/welcome_page.inc.php:96
2650
+ msgid "Create a data table linked to an existing data source"
2651
+ msgstr ""
2652
+ "Erstellen Sie eine Datentabelle, die mit einer vorhandenen Datenquelle "
2653
+ "verknüpft ist"
2654
+
2655
+ #: templates/admin/constructor/steps/constructor_1.inc.php:32
2656
+ msgid ""
2657
+ "Excel, CSV, Google Spreadsheet, SQL query, XML, JSON, serialized PHP array. "
2658
+ "Data will be read from the source every time on page load. Only SQL-based "
2659
+ "tables can be made editable."
2660
+ msgstr ""
2661
+ "Excel, CSV, Google-Tabellen, SQL-Abfrage, XML, JSON, serialisiertes PHP-"
2662
+ "Array. Die Daten werden jedes Mal beim Laden der Seite aus der Quelle "
2663
+ "gelesen. Nur SQL-basierte Tabellen können bearbeitet werden."
2664
+
2665
+ #: templates/admin/constructor/steps/constructor_1.inc.php:45
2666
+ #: templates/admin/welcome_page/welcome_page.inc.php:124
2667
+ msgid "Create a data table manually"
2668
+ msgstr "Erstellen Sie eine Datentabelle manuell"
2669
+
2670
+ #: templates/admin/constructor/steps/constructor_1.inc.php:46
2671
+ msgid ""
2672
+ "Define the number and type of columns, and fill in the data manually in WP "
2673
+ "admin. Data table will be stored in the database and can be edited from WP "
2674
+ "admin, or made front-end editable."
2675
+ msgstr ""
2676
+
2677
+ #: templates/admin/constructor/steps/constructor_1.inc.php:57
2678
+ #: templates/admin/welcome_page/welcome_page.inc.php:135
2679
+ msgid "Create a data table by importing data from a data source"
2680
+ msgstr ""
2681
+ "Erstellen Sie eine Datentabelle, indem Sie Daten aus einer Datenquelle "
2682
+ "importieren"
2683
+
2684
+ #: templates/admin/constructor/steps/constructor_1.inc.php:58
2685
+ msgid ""
2686
+ "Excel, CSV, Google Spreadsheet. Data will be imported to the database, the "
2687
+ "data table can be edited in WP admin, or made front-end editable."
2688
+ msgstr ""
2689
+
2690
+ #: templates/admin/constructor/steps/constructor_1.inc.php:72
2691
+ #: templates/admin/welcome_page/welcome_page.inc.php:163
2692
+ msgid "Generate a query to the MySQL database"
2693
+ msgstr "Generieren Sie eine Abfrage an die MySQL-Datenbank"
2694
+
2695
+ #: templates/admin/constructor/steps/constructor_1.inc.php:73
2696
+ msgid ""
2697
+ "Create a SQL-query-based data table by generating a query to any custom SQL "
2698
+ "database with a GUI tool."
2699
+ msgstr ""
2700
+ "Erstellen Sie eine SQL-abfragebasierte Datentabelle, indem Sie mit einem GUI-"
2701
+ "Tool eine Abfrage für eine benutzerdefinierte SQL-Datenbank generieren."
2702
+
2703
+ #: templates/admin/constructor/steps/constructor_1.inc.php:84
2704
+ #: templates/admin/welcome_page/welcome_page.inc.php:146
2705
+ msgid "Generate a query to the WordPress database"
2706
+ msgstr "Generieren Sie eine Abfrage an die WordPress-Datenbank"
2707
+
2708
+ #: templates/admin/constructor/steps/constructor_1.inc.php:85
2709
+ msgid ""
2710
+ "Create a MySQL-query-based data table by generating a query to the WordPress "
2711
+ "database (posts, taxonomies, postmeta) with a GUI tool."
2712
+ msgstr ""
2713
+ "Erstellen Sie eine auf MySQL-Abfragen basierende Datentabelle, indem Sie mit "
2714
+ "einem GUI-Tool eine Abfrage an die WordPress-Datenbank (Beiträge, "
2715
+ "Taxonomien, Postmeta) generieren."
2716
+
2717
+ #: templates/admin/constructor/steps/constructor_1_0.inc.php:9
2718
+ msgid "Table name"
2719
+ msgstr "Tabellenname"
2720
+
2721
+ #: templates/admin/constructor/steps/constructor_1_0.inc.php:11
2722
+ #: templates/admin/constructor/steps/constructor_1_0.inc.php:27
2723
+ #, fuzzy
2724
+ msgid ""
2725
+ "What is the header of the table that will be visible to the site visitors"
2726
+ msgstr ""
2727
+ "Was ist die Kopfzeile der Tabelle, die für die Site-Besucher sichtbar sein "
2728
+ "wird?"
2729
+
2730
+ #: templates/admin/constructor/steps/constructor_1_0.inc.php:25
2731
+ msgid "Number of columns"
2732
+ msgstr "Spaltenanzahl"
2733
+
2734
+ #: templates/admin/constructor/steps/constructor_1_0.inc.php:47
2735
+ msgid "Number of rows"
2736
+ msgstr "Zeilenanzahl"
2737
+
2738
+ #: templates/admin/constructor/steps/constructor_1_0.inc.php:49
2739
+ msgid ""
2740
+ "How many columns table will it have? You can also modify it below with + and "
2741
+ "x buttons"
2742
+ msgstr ""
2743
+ "Wie viele Spalten wird die Tabelle haben? Sie können es auch unten mit den "
2744
+ "Tasten + und x ändern"
2745
+
2746
+ #: templates/admin/constructor/steps/constructor_1_0.inc.php:71
2747
+ msgid "Generate table"
2748
+ msgstr "Tabelle generieren"
2749
+
2750
+ #: templates/admin/dashboard/dashboard.inc.php:45
2751
+ msgid "Welcome to wpDataTables "
2752
+ msgstr "Willkommen bei wpDataTables"
2753
+
2754
+ #: templates/admin/dashboard/dashboard.inc.php:46
2755
+ msgid "Lite version "
2756
+ msgstr "Lite-Version"
2757
+
2758
+ #: templates/admin/dashboard/dashboard.inc.php:48
2759
+ msgid ""
2760
+ "Congratulations! You are about to use the most powerful WordPress table "
2761
+ "plugin - wpDataTables is designed to make the process of data "
2762
+ "representation and interaction quick, easy and effective."
2763
+ msgstr ""
2764
+ "Glückwünsch! Sie sind dabei, das leistungsstärkste WordPress-Tabellen-Plugin "
2765
+ "zu verwenden - wpDataTables wurde entwickelt, um den Prozess der "
2766
+ "Datendarstellung und -interaktion schnell, einfach und effektiv zu gestalten."
2767
+
2768
+ #: templates/admin/dashboard/dashboard.inc.php:62
2769
+ msgid "I need help, show me tutorials"
2770
+ msgstr "Ich brauche Hilfe, zeige mir Tutorials"
2771
+
2772
+ #: templates/admin/dashboard/dashboard.inc.php:68
2773
+ msgid "Learn how to create table and charts"
2774
+ msgstr ""
2775
+
2776
+ #: templates/admin/dashboard/dashboard.inc.php:69
2777
+ msgid "Or skip tutorials and"
2778
+ msgstr ""
2779
+
2780
+ #: templates/admin/dashboard/dashboard.inc.php:72
2781
+ msgid "Create a table"
2782
+ msgstr "Erstellen Sie eine Tabelle"
2783
+
2784
+ #: templates/admin/dashboard/dashboard.inc.php:76
2785
+ msgid "Create a chart"
2786
+ msgstr "Erstellen Sie ein Diagramm"
2787
+
2788
+ #: templates/admin/dashboard/dashboard.inc.php:97
2789
+ msgid "Tables"
2790
+ msgstr "Tabellen"
2791
+
2792
+ #: templates/admin/dashboard/dashboard.inc.php:105
2793
+ msgid "Create Table"
2794
+ msgstr "Tabelle erstellen"
2795
+
2796
+ #: templates/admin/dashboard/dashboard.inc.php:109
2797
+ msgid "Browse all tables"
2798
+ msgstr "Alle Tabellen durhsuchen"
2799
+
2800
+ #: templates/admin/dashboard/dashboard.inc.php:121
2801
+ #: templates/admin/dashboard/dashboard.inc.php:142
2802
+ #: templates/admin/dashboard/dashboard.inc.php:193
2803
+ #: templates/admin/dashboard/dashboard.inc.php:211
2804
+ msgid "Created"
2805
+ msgstr "Erstellt"
2806
+
2807
+ #: templates/admin/dashboard/dashboard.inc.php:124
2808
+ msgid "You have no tables created."
2809
+ msgstr "Sie haben keine Tabellen erstellt."
2810
+
2811
+ #: templates/admin/dashboard/dashboard.inc.php:127
2812
+ #: templates/admin/dashboard/dashboard.inc.php:199
2813
+ msgid "View tutorials"
2814
+ msgstr "Tutorials anzeigen"
2815
+
2816
+ #: templates/admin/dashboard/dashboard.inc.php:158
2817
+ msgid "Latest table created."
2818
+ msgstr "Neueste Tabelle erstellt."
2819
+
2820
+ #: templates/admin/dashboard/dashboard.inc.php:169
2821
+ msgid "Charts"
2822
+ msgstr "Diagramme"
2823
+
2824
+ #: templates/admin/dashboard/dashboard.inc.php:181
2825
+ msgid "Browse all charts"
2826
+ msgstr "Alle Diagramme durchsuchen"
2827
+
2828
+ #: templates/admin/dashboard/dashboard.inc.php:196
2829
+ msgid "You have no charts created."
2830
+ msgstr "Sie haben keine Diagramme erstellt."
2831
+
2832
+ #: templates/admin/dashboard/dashboard.inc.php:227
2833
+ msgid "Latest chart created."
2834
+ msgstr "Neuestes Diagramm erstellt."
2835
+
2836
+ #: templates/admin/dashboard/dashboard.inc.php:239
2837
+ msgid "Still need help? "
2838
+ msgstr "Brauchen Sie noch Hilfe? "
2839
+
2840
+ #: templates/admin/dashboard/dashboard.inc.php:242
2841
+ msgid ""
2842
+ "We provide professional support to all our users via our ticketing system."
2843
+ msgstr ""
2844
+ "Wir bieten allen unseren Benutzern professionelle Unterstützung über unser "
2845
+ "Ticketsystem."
2846
+
2847
+ #: templates/admin/dashboard/dashboard.inc.php:245
2848
+ msgid "Visit Support Center"
2849
+ msgstr "Besuchen Sie das Support Center"
2850
+
2851
+ #: templates/admin/dashboard/dashboard.inc.php:269
2852
+ msgid "Basic system info:"
2853
+ msgstr "Grundlegende Systeminformationen:"
2854
+
2855
+ #: templates/admin/dashboard/dashboard.inc.php:311
2856
+ msgid "View Full System Info"
2857
+ msgstr "Vollständige Systeminformationen anzeigen"
2858
+
2859
+ #: templates/admin/dashboard/dashboard.inc.php:320
2860
+ msgid "Changelog"
2861
+ msgstr "Änderungsprotokoll"
2862
+
2863
+ #: templates/admin/dashboard/dashboard.inc.php:326
2864
+ msgid "View Changelog"
2865
+ msgstr "Änderungsprotokoll anschauen"
2866
+
2867
+ #: templates/admin/dashboard/dashboard.inc.php:333
2868
+ msgid "You are currently using "
2869
+ msgstr "Sie verwenden derzeit "
2870
+
2871
+ #: templates/admin/dashboard/dashboard.inc.php:335
2872
+ #: templates/admin/welcome_page/welcome_page.inc.php:58
2873
+ msgid "Version "
2874
+ msgstr "Version "
2875
+
2876
+ #: templates/admin/dashboard/dashboard.inc.php:340
2877
+ msgid "A minor update with a couple of improvements and bug fixes:"
2878
+ msgstr ""
2879
+
2880
+ #: templates/admin/dashboard/dashboard.inc.php:345
2881
+ msgid "<strong>Feature:</strong> Add new option for creating 3D pie chart."
2882
+ msgstr ""
2883
+
2884
+ #: templates/admin/dashboard/dashboard.inc.php:346
2885
+ msgid ""
2886
+ "<strong>Feature:</strong> Search for tables and charts using ID on browse "
2887
+ "pages."
2888
+ msgstr ""
2889
+
2890
+ #: templates/admin/dashboard/dashboard.inc.php:347
2891
+ msgid ""
2892
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2893
+ "media in Simple tables."
2894
+ msgstr ""
2895
+
2896
+ #: templates/admin/dashboard/dashboard.inc.php:348
2897
+ msgid "<strong>Improvement:</strong> Added German translation"
2898
+ msgstr ""
2899
+
2900
+ #: templates/admin/dashboard/dashboard.inc.php:349
2901
+ msgid ""
2902
+ "<strong>Bugfix:</strong> Fixed issue with Fatal errors if allow_url_fopen is "
2903
+ "turned off on server."
2904
+ msgstr ""
2905
+
2906
+ #: templates/admin/dashboard/dashboard.inc.php:350
2907
+ msgid ""
2908
+ "<strong>BugFix:</strong> Fixed issue with loading simple table preview after "
2909
+ "clicking on back button in browser from some pages."
2910
+ msgstr ""
2911
+
2912
+ #: templates/admin/dashboard/dashboard.inc.php:351
2913
+ msgid ""
2914
+ "<strong>BugFix:</strong> Fixed issue with inserting “px” in column width "
2915
+ "option."
2916
+ msgstr ""
2917
+
2918
+ #: templates/admin/dashboard/dashboard.inc.php:352
2919
+ msgid "Compatibility with WordPress 5.7 approved."
2920
+ msgstr ""
2921
+
2922
+ #: templates/admin/dashboard/dashboard.inc.php:353
2923
+ msgid "Other small bug fixes and stability improvements."
2924
+ msgstr "Andere kleine Fehlerbehebungen und Stabilitätsverbesserungen."
2925
+
2926
+ #: templates/admin/dashboard/dashboard.inc.php:365
2927
+ msgid "Go Premium!"
2928
+ msgstr "Gehen Sie Premium!"
2929
+
2930
+ #: templates/admin/dashboard/dashboard.inc.php:371
2931
+ msgid "View Comparison"
2932
+ msgstr "Vergleich anzeigen"
2933
+
2934
+ #: templates/admin/dashboard/dashboard.inc.php:379
2935
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2936
+ msgid ""
2937
+ "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2938
+ "of the powerful features."
2939
+ msgstr ""
2940
+
2941
+ #: templates/admin/dashboard/dashboard.inc.php:383
2942
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
2943
+ msgid "Create a table manually"
2944
+ msgstr ""
2945
+
2946
+ #: templates/admin/dashboard/dashboard.inc.php:386
2947
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:304
2948
+ msgid "Creating tables from Google Spreadsheet"
2949
+ msgstr ""
2950
+
2951
+ #: templates/admin/dashboard/dashboard.inc.php:389
2952
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:316
2953
+ msgid "Creating tables via Google Sheet API"
2954
+ msgstr ""
2955
+
2956
+ #: templates/admin/dashboard/dashboard.inc.php:392
2957
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2958
+ msgid "Creating tables from Private Google Spreadsheet"
2959
+ msgstr ""
2960
+
2961
+ #: templates/admin/dashboard/dashboard.inc.php:395
2962
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2963
+ msgid "Creating MySQL-based tables from database"
2964
+ msgstr ""
2965
+
2966
+ #: templates/admin/dashboard/dashboard.inc.php:398
2967
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2968
+ msgid "Creating MySQL-based tables from Wordpress post types"
2969
+ msgstr ""
2970
+
2971
+ #: templates/admin/dashboard/dashboard.inc.php:401
2972
+ msgid "Creating tables where users can see and edit own data"
2973
+ msgstr ""
2974
+
2975
+ #: templates/admin/dashboard/dashboard.inc.php:404
2976
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2977
+ msgid "Creating table relations (Foreign key)"
2978
+ msgstr ""
2979
+
2980
+ #: templates/admin/dashboard/dashboard.inc.php:407
2981
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2982
+ #: templates/edit_table.inc.php:329
2983
+ msgid "Advanced filtering"
2984
+ msgstr "Erweiterte Filterung"
2985
+
2986
+ #: templates/admin/dashboard/dashboard.inc.php:410
2987
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2988
+ msgid "Pre-filtering tables through URL"
2989
+ msgstr ""
2990
+
2991
+ #: templates/admin/dashboard/dashboard.inc.php:413
2992
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
2993
+ msgid "Table Customization"
2994
+ msgstr ""
2995
+
2996
+ #: templates/admin/dashboard/dashboard.inc.php:416
2997
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2998
+ #: templates/admin/table-settings/table_settings_block.inc.php:153
2999
+ #: templates/edit_table.inc.php:282
3000
+ msgid "Server-side processing"
3001
+ msgstr "Serverseitige Verarbeitung"
3002
+
3003
+ #: templates/admin/dashboard/dashboard.inc.php:419
3004
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
3005
+ msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
3006
+ msgstr ""
3007
+
3008
+ #: templates/admin/dashboard/dashboard.inc.php:422
3009
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
3010
+ msgid "Front-end table editing"
3011
+ msgstr "Front-End-Tabellenbearbeitung"
3012
+
3013
+ #: templates/admin/dashboard/dashboard.inc.php:425
3014
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
3015
+ msgid "Excel-like editing"
3016
+ msgstr "Excel-ähnliche Bearbeitung"
3017
+
3018
+ #: templates/admin/dashboard/dashboard.inc.php:428
3019
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
3020
+ msgid "Creating charts with Highcharts"
3021
+ msgstr "Erstellen von Diagrammen mit Highcharts"
3022
+
3023
+ #: templates/admin/dashboard/dashboard.inc.php:431
3024
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3025
+ msgid "Creating charts with Chart.js"
3026
+ msgstr "Erstellen von Diagramme mit Chart.js"
3027
+
3028
+ #: templates/admin/dashboard/dashboard.inc.php:434
3029
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:486
3030
+ msgid "Follow table filtering in charts"
3031
+ msgstr ""
3032
+
3033
+ #: templates/admin/dashboard/dashboard.inc.php:437
3034
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:498
3035
+ msgid "Grouping data in Charts"
3036
+ msgstr ""
3037
+
3038
+ #: templates/admin/dashboard/dashboard.inc.php:440
3039
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:510
3040
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
3041
+ #: templates/edit_table.inc.php:301
3042
+ msgid "Responsive"
3043
+ msgstr "Responsiv"
3044
+
3045
+ #: templates/admin/dashboard/dashboard.inc.php:443
3046
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:522
3047
+ #: templates/admin/table-settings/column_settings_panel.inc.php:60
3048
+ #: templates/edit_table.inc.php:750
3049
+ msgid "Conditional formatting"
3050
+ msgstr "Bedingte Formatierung"
3051
+
3052
+ #: templates/admin/dashboard/dashboard.inc.php:446
3053
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:534
3054
+ msgid "Calculating Tools"
3055
+ msgstr "Berechnungstools"
3056
+
3057
+ #: templates/admin/dashboard/dashboard.inc.php:449
3058
+ msgid "Formula columns"
3059
+ msgstr ""
3060
+
3061
+ #: templates/admin/dashboard/dashboard.inc.php:452
3062
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:546
3063
+ #: templates/admin/table-settings/table_settings_block.inc.php:80
3064
+ msgid "Placeholders"
3065
+ msgstr "Platzhalter"
3066
+
3067
+ #: templates/admin/dashboard/dashboard.inc.php:455
3068
+ msgid "Premium support"
3069
+ msgstr ""
3070
+
3071
+ #: templates/admin/dashboard/dashboard.inc.php:459
3072
+ msgid "Get Premium Today"
3073
+ msgstr ""
3074
+
3075
+ #: templates/admin/dashboard/dashboard.inc.php:466
3076
+ msgid "News Blog"
3077
+ msgstr "News Blog"
3078
+
3079
+ #: templates/admin/dashboard/dashboard.inc.php:471
3080
+ msgid "Checkout useful articles from wpdatatables.com"
3081
+ msgstr "Schauen Sie den nützlichen Artikel von wpdatatables.com an"
3082
+
3083
+ #: templates/admin/dashboard/dashboard.inc.php:504
3084
+ msgid ""
3085
+ "Never miss notifications about new cool features, promotions,\n"
3086
+ " giveaways or freebies – subscribe to our "
3087
+ "newsletter! Join 3000+ subscribers. We send\n"
3088
+ " about 1 message per month and never spam!"
3089
+ msgstr ""
3090
+ "Verpassen Sie niemals Benachrichtigungen über neue coole Funktionen, "
3091
+ "Werbeaktionen,\n"
3092
+ " Werbegeschenke - abonnieren Sie unseren "
3093
+ "Newsletter! Treten Sie mehr als 3000 Abonnenten bei. Wir senden\n"
3094
+ " ca. 1 Nachricht pro Monat und niemals "
3095
+ "Spam!"
3096
+
3097
+ #: templates/admin/dashboard/dashboard.inc.php:522
3098
+ msgid "Premium "
3099
+ msgstr ""
3100
+
3101
+ #: templates/admin/dashboard/dashboard.inc.php:525
3102
+ msgid ""
3103
+ "While wpDataTables itself provides quite a large amount of features and "
3104
+ "unlimited customisation, flexibility, you can achieve even more with our "
3105
+ "premium addons.(requires wpDataTables Premium version)"
3106
+ msgstr ""
3107
+
3108
+ #: templates/admin/dashboard/dashboard.inc.php:543
3109
+ msgid ""
3110
+ "A wpDataTables addon which allows showing additional details for a specific "
3111
+ "row in a popup or a separate page or post."
3112
+ msgstr ""
3113
+ "Ein wpDataTables-Addon, mit dem zusätzliche Details für eine bestimmte Zeile "
3114
+ "in einem Popup, einer separaten Seite oder einem separaten Beitrag angezeigt "
3115
+ "werden können."
3116
+
3117
+ #: templates/admin/dashboard/dashboard.inc.php:549
3118
+ #: templates/admin/dashboard/dashboard.inc.php:576
3119
+ #: templates/admin/dashboard/dashboard.inc.php:602
3120
+ #: templates/admin/dashboard/dashboard.inc.php:629
3121
+ #: templates/admin/dashboard/dashboard.inc.php:655
3122
+ #: templates/admin/dashboard/dashboard.inc.php:688
3123
+ msgid "Learn More"
3124
+ msgstr "Mehr erfahren"
3125
+
3126
+ #: templates/admin/dashboard/dashboard.inc.php:570
3127
+ msgid ""
3128
+ "An add-on for wpDataTables that provides powerful filtering features: "
3129
+ "cascade filtering, applying filters on button click, hide table before "
3130
+ "filtering."
3131
+ msgstr ""
3132
+ "Ein Add-On für wpDataTables, das leistungsstarke Filterfunktionen bietet: "
3133
+ "Kaskadenfilterung, Anwenden von Filtern beim Klicken auf Schaltflächen, "
3134
+ "Ausblenden der Tabelle vor dem Filtern."
3135
+
3136
+ #: templates/admin/dashboard/dashboard.inc.php:666
3137
+ msgid "Need free booking plugin?"
3138
+ msgstr ""
3139
+
3140
+ #: templates/admin/dashboard/dashboard.inc.php:675
3141
+ msgid "Appointments and Events WordPress Booking Plugin"
3142
+ msgstr "Termine und Veranstaltungen WordPress Booking Plugin"
3143
+
3144
+ #: templates/admin/dashboard/dashboard.inc.php:678
3145
+ msgid ""
3146
+ "Amelia Lite is a free appointment booking WordPress plugin that allows to "
3147
+ "set up a fully-featured automated booking system on your WordPress website "
3148
+ "and is a handy tool for small businesses and individuals that depend on "
3149
+ "stable appointment booking processes. 20,000+ businesses from healthcare, "
3150
+ "beauty, sports, automotive, educational, creative, HR and other industries "
3151
+ "use Amelia to flawlessly manage 130,000+ appointments and events worldwide "
3152
+ "each month."
3153
+ msgstr ""
3154
+
3155
+ #: templates/admin/dashboard/dashboard.inc.php:681
3156
+ msgid "Rating: 4.3 - ‎97 reviews"
3157
+ msgstr ""
3158
+
3159
+ #: templates/admin/dashboard/dashboard.inc.php:684
3160
+ msgid "Free Download"
3161
+ msgstr ""
3162
+
3163
+ #: templates/admin/dashboard/dashboard.inc.php:699
3164
+ #: templates/admin/getting-started/getting_started.inc.php:184
3165
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:589
3166
+ #: templates/admin/support/support.inc.php:78
3167
+ #: templates/admin/system-info/system_info.inc.php:509
3168
+ #: templates/admin/welcome_page/welcome_page.inc.php:358
3169
+ msgid "Made by"
3170
+ msgstr "Hergestellt von"
3171
+
3172
+ #: templates/admin/dashboard/dashboard.inc.php:707
3173
+ #: templates/admin/getting-started/getting_started.inc.php:192
3174
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:597
3175
+ #: templates/admin/support/support.inc.php:45
3176
+ #: templates/admin/support/support.inc.php:86
3177
+ #: templates/admin/system-info/system_info.inc.php:517
3178
+ #: templates/admin/welcome_page/welcome_page.inc.php:219
3179
+ #: templates/admin/welcome_page/welcome_page.inc.php:369
3180
+ msgid "Documentation"
3181
+ msgstr "Dokumentation"
3182
+
3183
+ #: templates/admin/dashboard/dashboard.inc.php:711
3184
+ #: templates/admin/getting-started/getting_started.inc.php:196
3185
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:601
3186
+ #: templates/admin/support/support.inc.php:24
3187
+ #: templates/admin/support/support.inc.php:90
3188
+ #: templates/admin/system-info/system_info.inc.php:521
3189
+ #: templates/admin/welcome_page/welcome_page.inc.php:373
3190
+ msgid "Support Center"
3191
+ msgstr "Support Center"
3192
+
3193
+ #: templates/admin/getting-started/getting_started.inc.php:27
3194
+ msgid "Table and Charts tutorials"
3195
+ msgstr "Tutorials zu Tabellen und Diagrammen"
3196
+
3197
+ #: templates/admin/getting-started/getting_started.inc.php:50
3198
+ msgid ""
3199
+ "Getting started: a crash course on wpDataTables basic tables and charts "
3200
+ "features"
3201
+ msgstr ""
3202
+ "Erste Schritte: Ein Crashkurs zu den grundlegenden Funktionen von Tabellen "
3203
+ "und Diagrammen von wpDataTables"
3204
+
3205
+ #: templates/admin/getting-started/getting_started.inc.php:51
3206
+ msgid ""
3207
+ "Hi there. In order to make your acquaintance with wpDataTables smooth and "
3208
+ "easy, we created these short interactive tutorials for different basic "
3209
+ "features of wpDataTables. Choose the topic that you are interested in, and "
3210
+ "click "
3211
+ msgstr ""
3212
+
3213
+ #: templates/admin/getting-started/getting_started.inc.php:51
3214
+ msgid "\"Launch tutorial\""
3215
+ msgstr "\"Tutorial starten\""
3216
+
3217
+ #: templates/admin/getting-started/getting_started.inc.php:51
3218
+ msgid ""
3219
+ " - it will then guide you through the process, making sure you do everything "
3220
+ "right. Additionally, you can check out our documentation and video database."
3221
+ msgstr ""
3222
+ " - Es wird Sie dann durch den Prozess führen und sicherstellen, dass Sie "
3223
+ "alles richtig machen. Darüber hinaus können Sie unsere Dokumentation und "
3224
+ "Videodatenbank einsehen."
3225
+
3226
+ #: templates/admin/getting-started/getting_started.inc.php:61
3227
+ msgid "Create a simple table from scratch:"
3228
+ msgstr "Erstellen Sie eine einfache Tabelle von Grund auf neu:"
3229
+
3230
+ #: templates/admin/getting-started/getting_started.inc.php:61
3231
+ msgid ""
3232
+ " create a simple table with any data, merged cells, styling, star rating and "
3233
+ "a lot more."
3234
+ msgstr ""
3235
+ " Erstellen Sie eine einfache Tabelle mit Daten, zusammengeführten Zellen, "
3236
+ "Stil, Sternebewertung und vielem mehr."
3237
+
3238
+ #: templates/admin/getting-started/getting_started.inc.php:63
3239
+ #: templates/admin/getting-started/getting_started.inc.php:83
3240
+ #: templates/admin/getting-started/getting_started.inc.php:104
3241
+ msgid "View documentation"
3242
+ msgstr "Dokumentation anzeigen"
3243
+
3244
+ #: templates/admin/getting-started/getting_started.inc.php:68
3245
+ #: templates/admin/getting-started/getting_started.inc.php:88
3246
+ #: templates/admin/getting-started/getting_started.inc.php:109
3247
+ #: templates/admin/getting-started/getting_started.inc.php:119
3248
+ msgid "Launch tutorial"
3249
+ msgstr "Tutorial starten"
3250
+
3251
+ #: templates/admin/getting-started/getting_started.inc.php:81
3252
+ msgid "Create a data table linked to an existing data source:"
3253
+ msgstr ""
3254
+ "Erstellen Sie eine Datentabelle, die mit einer vorhandenen Datenquelle "
3255
+ "verknüpft ist:"
3256
+
3257
+ #: templates/admin/getting-started/getting_started.inc.php:81
3258
+ msgid ""
3259
+ " create a wpDataTables based on your Excel, CSV file or other data source in "
3260
+ "a few steps."
3261
+ msgstr ""
3262
+ " Erstellen Sie in wenigen Schritten eine wpDataTables basierend auf Ihrer "
3263
+ "Excel-, CSV-Datei oder einer anderen Datenquelle."
3264
+
3265
+ #: templates/admin/getting-started/getting_started.inc.php:102
3266
+ msgid "Create a chart:"
3267
+ msgstr "Diagramm erstellen:"
3268
+
3269
+ #: templates/admin/getting-started/getting_started.inc.php:102
3270
+ msgid ""
3271
+ " create dynamic charts in WordPress with Google Charts rendering engine."
3272
+ msgstr ""
3273
+
3274
+ #: templates/admin/getting-started/getting_started.inc.php:114
3275
+ #, fuzzy
3276
+ msgid ""
3277
+ "You dont have any table created. Please create a table first and then you "
3278
+ "will be able to create a chart."
3279
+ msgstr ""
3280
+ "Sie haben keine Tabelle erstellt. Bitte erstellen Sie zuerst eine Tabelle "
3281
+ "und dann können Sie ein Diagramm erstellen."
3282
+
3283
+ #: templates/admin/getting-started/getting_started.inc.php:131
3284
+ msgid "Create a data table manually:"
3285
+ msgstr ""
3286
+
3287
+ #: templates/admin/getting-started/getting_started.inc.php:131
3288
+ msgid " learn how to build a data table completely from the WordPress admin."
3289
+ msgstr ""
3290
+
3291
+ #: templates/admin/getting-started/getting_started.inc.php:143
3292
+ msgid "Create a data table by importing data from a data source:"
3293
+ msgstr ""
3294
+ "Erstellen Sie eine Datentabelle, indem Sie Daten aus einer Datenquelle "
3295
+ "importieren:"
3296
+
3297
+ #: templates/admin/getting-started/getting_started.inc.php:143
3298
+ msgid ""
3299
+ " extract data from your existing table to be able to edit it from WordPress."
3300
+ msgstr ""
3301
+ " Extrahieren Sie Daten aus Ihrer vorhandenen Tabelle, um sie in WordPress "
3302
+ "bearbeiten zu können."
3303
+
3304
+ #: templates/admin/getting-started/getting_started.inc.php:155
3305
+ msgid "Generate a query to the MySQL database:"
3306
+ msgstr "Generieren Sie eine Abfrage an die MySQL-Datenbank:"
3307
+
3308
+ #: templates/admin/getting-started/getting_started.inc.php:155
3309
+ msgid " create a data table based on your DB data without having to learn SQL"
3310
+ msgstr ""
3311
+ " Erstellen Sie eine Datentabelle basierend auf Ihren DB-Daten, ohne SQL "
3312
+ "lernen zu müssen"
3313
+
3314
+ #: templates/admin/getting-started/getting_started.inc.php:167
3315
+ msgid "Generate a query to the WordPress database:"
3316
+ msgstr "Generieren Sie eine Abfrage an die WordPress-Datenbank:"
3317
+
3318
+ #: templates/admin/getting-started/getting_started.inc.php:167
3319
+ msgid " create a data table based on your WP data (posts, meta, taxonomies)"
3320
+ msgstr ""
3321
+ " Erstellen Sie eine Datentabelle basierend auf Ihren WP-Daten (Beiträge, "
3322
+ "Meta, Taxonomien)."
3323
+
3324
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:24
3325
+ msgid "Plans"
3326
+ msgstr "Pläne"
3327
+
3328
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:47
3329
+ msgid "Lite vs Premium comparison"
3330
+ msgstr "Lite vs Premium Vergleich"
3331
+
3332
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3333
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:581
3334
+ msgid "Go Premium Now"
3335
+ msgstr "Gehen Sie jetzt Premium"
3336
+
3337
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:58
3338
+ msgid "Features"
3339
+ msgstr "Funktionen"
3340
+
3341
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:61
3342
+ msgid "Lite"
3343
+ msgstr "Lite"
3344
+
3345
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3346
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:568
3347
+ msgid "Premium"
3348
+ msgstr "Premium"
3349
+
3350
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:70
3351
+ msgid "Creating tables from Excel files"
3352
+ msgstr "Erstellen von Tabellen aus Excel-Dateien"
3353
+
3354
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:82
3355
+ msgid "Creating tables from CSV files"
3356
+ msgstr ""
3357
+
3358
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:94
3359
+ msgid "Creating tables from JSON files"
3360
+ msgstr ""
3361
+
3362
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:106
3363
+ msgid "Creating tables from XML files"
3364
+ msgstr ""
3365
+
3366
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:118
3367
+ msgid "Creating tables from Serialized PHP array"
3368
+ msgstr ""
3369
+
3370
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:130
3371
+ msgid "Create a Simple tables"
3372
+ msgstr "Erstellen Sie eine einfache Tabelle"
3373
+
3374
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3375
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3376
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3377
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
3378
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
3379
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
3380
+ msgid "NEW!"
3381
+ msgstr "NEU!"
3382
+
3383
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:143
3384
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:295
3385
+ msgid "Merge cells"
3386
+ msgstr "Zellen zusammenführen"
3387
+
3388
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:156
3389
+ msgid ""
3390
+ "Column types <span style=\"font-size: 8px;\">(String, Integer, Float, Date, "
3391
+ "DateTime, Time, Image, URL link and E-mail)</span>"
3392
+ msgstr ""
3393
+ "Spaltentypen <span style=\"font-size: 8px;\">(String, Integer, Float, Datum, "
3394
+ "Datum/Uhrzeit, Uhrzeit, Bild, URL-Link und E-Mail) </span>"
3395
+
3396
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:168
3397
+ #: templates/admin/table-settings/column_settings_panel.inc.php:47
3398
+ #: templates/admin/table-settings/table_settings_block.inc.php:643
3399
+ #: templates/admin/table-settings/table_settings_block.inc.php:651
3400
+ msgid "Sorting"
3401
+ msgstr "Sortieren"
3402
+
3403
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3404
+ msgid "Row grouping"
3405
+ msgstr ""
3406
+
3407
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3408
+ #: templates/admin/settings/tabs/color_and_font_settings.php:653
3409
+ #: templates/admin/table-settings/table_settings_block.inc.php:504
3410
+ #: templates/admin/table-settings/table_settings_block.inc.php:512
3411
+ #: templates/admin/table-settings/table_settings_block.inc.php:1387
3412
+ msgid "Pagination"
3413
+ msgstr "Paginierung"
3414
+
3415
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3416
+ msgid ""
3417
+ "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3418
+ "PDF, and Copy and Print options)</span>"
3419
+ msgstr ""
3420
+
3421
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3422
+ msgid "Column Customization"
3423
+ msgstr "Spaltenanpassung"
3424
+
3425
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
3426
+ msgid "Global Table Customization"
3427
+ msgstr "Globale Tabellenanpassung"
3428
+
3429
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3430
+ msgid "WP Bakery, Elementor and Gutenberg support"
3431
+ msgstr ""
3432
+
3433
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:252
3434
+ msgid "Creating Google charts"
3435
+ msgstr "Google-Diagramme erstellen"
3436
+
3437
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:264
3438
+ msgid "Customize charts"
3439
+ msgstr ""
3440
+
3441
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
3442
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:562
3443
+ msgid "Limited"
3444
+ msgstr "Begrenzt"
3445
+
3446
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:270
3447
+ msgid "Some options are not available."
3448
+ msgstr ""
3449
+
3450
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
3451
+ msgid "Creating tables where users can see and edit only their own data"
3452
+ msgstr ""
3453
+
3454
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:558
3455
+ msgid "Support"
3456
+ msgstr "Support"
3457
+
3458
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:564
3459
+ msgid "Response time is slow and can be up to 5 business days."
3460
+ msgstr ""
3461
+
3462
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:575
3463
+ msgid ""
3464
+ "* Please note that wpDataTables add-ons are not included in premium version "
3465
+ "of plugin."
3466
+ msgstr ""
3467
+
3468
+ #: templates/admin/settings/settings.inc.php:33
3469
+ #: templates/admin/settings/settings.inc.php:95
3470
+ #: templates/admin/table-settings/column_settings_panel.inc.php:25
3471
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1098
3472
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:47
3473
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:48
3474
+ #: templates/admin/table-settings/table_preview_block.inc.php:89
3475
+ #: templates/admin/table-settings/table_settings_block.inc.php:48
3476
+ #: templates/admin/table-settings/table_settings_block.inc.php:49
3477
+ msgid "Save Changes"
3478
+ msgstr "Änderungen speichern"
3479
+
3480
+ #: templates/admin/settings/settings.inc.php:44 templates/settings.inc.php:18
3481
+ #: templates/settings.inc.php:26
3482
+ msgid "Main settings"
3483
+ msgstr "Haupteinstellungen"
3484
+
3485
+ #: templates/admin/settings/settings.inc.php:49
3486
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:15
3487
+ msgid "Separate DB connection"
3488
+ msgstr "Separate DB-Verbindung"
3489
+
3490
+ #: templates/admin/settings/settings.inc.php:54 templates/settings.inc.php:19
3491
+ #: templates/settings.inc.php:204
3492
+ msgid "Color and font settings"
3493
+ msgstr "Farb- und Schriftarteinstellungen"
3494
+
3495
+ #: templates/admin/settings/settings.inc.php:58 templates/settings.inc.php:20
3496
+ #: templates/settings.inc.php:446
3497
+ msgid "Custom JS and CSS"
3498
+ msgstr "Benutzerdefiniertes JS und CSS"
3499
+
3500
+ #: templates/admin/settings/settings.inc.php:62
3501
+ msgid "Google Spreadsheet API settings"
3502
+ msgstr ""
3503
+
3504
+ #: templates/admin/settings/settings.inc.php:92 templates/settings.inc.php:434
3505
+ msgid "Reset colors and fonts to default"
3506
+ msgstr "Farben und Schriftarten auf die Standardeinstellungen zurücksetzen"
3507
+
3508
+ #: templates/admin/settings/tabs/color_and_font_settings.php:18
3509
+ #: templates/admin/settings/tabs/color_and_font_settings.php:25
3510
+ #: templates/admin/table-settings/table_settings_block.inc.php:1367
3511
+ #: templates/admin/table-settings/table_settings_block.inc.php:1461
3512
+ msgid "Font"
3513
+ msgstr "Schriftart"
3514
+
3515
+ #: templates/admin/settings/tabs/color_and_font_settings.php:27
3516
+ #: templates/admin/table-settings/table_settings_block.inc.php:1464
3517
+ #: templates/settings.inc.php:428
3518
+ msgid ""
3519
+ "This font will be used in rendered tables. Leave blank not to override "
3520
+ "default theme settings"
3521
+ msgstr ""
3522
+ "Diese Schriftart wird in gerenderten Tabellen verwendet. Lassen Sie das Feld "
3523
+ "leer, um die Standarddesigneinstellungen nicht zu überschreiben"
3524
+
3525
+ #: templates/admin/settings/tabs/color_and_font_settings.php:47
3526
+ #: templates/admin/table-settings/table_settings_block.inc.php:1486
3527
+ msgid "Define the font size"
3528
+ msgstr "Definieren Sie die Schriftgröße"
3529
+
3530
+ #: templates/admin/settings/tabs/color_and_font_settings.php:70
3531
+ #: templates/admin/settings/tabs/color_and_font_settings.php:143
3532
+ #: templates/admin/settings/tabs/color_and_font_settings.php:464
3533
+ #: templates/admin/table-settings/table_settings_block.inc.php:1519
3534
+ #: templates/admin/table-settings/table_settings_block.inc.php:1594
3535
+ msgid "Font color"
3536
+ msgstr "Schriftfarbe"
3537
+
3538
+ #: templates/admin/settings/tabs/color_and_font_settings.php:72
3539
+ #: templates/admin/table-settings/table_settings_block.inc.php:1522
3540
+ msgid "This color is used for the main font in table cells."
3541
+ msgstr "Diese Farbe wird für die Hauptschriftart in Tabellenzellen verwendet."
3542
+
3543
+ #: templates/admin/settings/tabs/color_and_font_settings.php:97
3544
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:348
3545
+ #: templates/admin/table-settings/table_settings_block.inc.php:1371
3546
+ msgid "Header"
3547
+ msgstr "Kopfzeile"
3548
+
3549
+ #: templates/admin/settings/tabs/color_and_font_settings.php:106
3550
+ #: templates/admin/table-settings/table_settings_block.inc.php:1552
3551
+ msgid "The color is used for background of the table header."
3552
+ msgstr "Die Farbe wird für den Hintergrund der Tabellenkopfzeile verwendet."
3553
+
3554
+ #: templates/admin/settings/tabs/color_and_font_settings.php:125
3555
+ #: templates/admin/table-settings/table_settings_block.inc.php:1574
3556
+ msgid "This color is used for the border in the table header."
3557
+ msgstr "Diese Farbe wird für den Rand in der Tabellenkopfzeile verwendet."
3558
+
3559
+ #: templates/admin/settings/tabs/color_and_font_settings.php:145
3560
+ #: templates/admin/table-settings/table_settings_block.inc.php:1597
3561
+ msgid "This color is used for the font in the table header."
3562
+ msgstr ""
3563
+ "Diese Farbe wird für die Schriftart in der Tabellenkopfzeile verwendet."
3564
+
3565
+ #: templates/admin/settings/tabs/color_and_font_settings.php:162
3566
+ #: templates/admin/table-settings/table_settings_block.inc.php:1616
3567
+ msgid "Active and hover color\t"
3568
+ msgstr "Aktive- und Schwebefarbe\t"
3569
+
3570
+ #: templates/admin/settings/tabs/color_and_font_settings.php:164
3571
+ #: templates/admin/table-settings/table_settings_block.inc.php:1619
3572
+ msgid ""
3573
+ "This color is used when you hover the mouse above the table header, or when "
3574
+ "you choose a column."
3575
+ msgstr ""
3576
+ "Diese Farbe wird verwendet, wenn Sie den Mauszeiger über die "
3577
+ "Tabellenüberschrift halten oder wenn Sie eine Spalte auswählen."
3578
+
3579
+ #: templates/admin/settings/tabs/color_and_font_settings.php:191
3580
+ msgid "Table border "
3581
+ msgstr ""
3582
+
3583
+ #: templates/admin/settings/tabs/color_and_font_settings.php:198
3584
+ #: templates/admin/table-settings/table_settings_block.inc.php:1647
3585
+ msgid "Inner border"
3586
+ msgstr "Innenrahmen"
3587
+
3588
+ #: templates/admin/settings/tabs/color_and_font_settings.php:200
3589
+ #: templates/admin/table-settings/table_settings_block.inc.php:1650
3590
+ msgid "This color is used for the inner border in the table between cells."
3591
+ msgstr ""
3592
+ "Diese Farbe wird für den inneren Rahmen in der Tabelle zwischen den Zellen "
3593
+ "verwendet."
3594
+
3595
+ #: templates/admin/settings/tabs/color_and_font_settings.php:218
3596
+ #: templates/admin/table-settings/table_settings_block.inc.php:1670
3597
+ msgid "Outer border"
3598
+ msgstr "Außenrahmen"
3599
+
3600
+ #: templates/admin/settings/tabs/color_and_font_settings.php:220
3601
+ #: templates/admin/table-settings/table_settings_block.inc.php:1673
3602
+ msgid "This color is used for the outer border of the whole table body."
3603
+ msgstr ""
3604
+ "Diese Farbe wird für den äußeren Rahmen des gesamten Tabellekörpers "
3605
+ "verwendet."
3606
+
3607
+ #: templates/admin/settings/tabs/color_and_font_settings.php:238
3608
+ #: templates/admin/table-settings/table_settings_block.inc.php:1693
3609
+ msgid "Table borders"
3610
+ msgstr "Tabellenrahmen"
3611
+
3612
+ #: templates/admin/settings/tabs/color_and_font_settings.php:240
3613
+ #: templates/admin/table-settings/table_settings_block.inc.php:1696
3614
+ msgid "When this is checked, borders in table will be removed "
3615
+ msgstr "Wenn dies aktiviert ist, werden die Rahmen in der Tabelle entfernt "
3616
+
3617
+ #: templates/admin/settings/tabs/color_and_font_settings.php:244
3618
+ #: templates/admin/table-settings/table_settings_block.inc.php:1702
3619
+ msgid "Remove borders in table"
3620
+ msgstr "Rahmen in der Tabelle entfernen"
3621
+
3622
+ #: templates/admin/settings/tabs/color_and_font_settings.php:249
3623
+ #: templates/admin/table-settings/table_settings_block.inc.php:1707
3624
+ msgid "Header border"
3625
+ msgstr "Kopfzeile-Rahmen"
3626
+
3627
+ #: templates/admin/settings/tabs/color_and_font_settings.php:251
3628
+ #: templates/admin/table-settings/table_settings_block.inc.php:1710
3629
+ msgid "When this is checked,borders in header will be removed "
3630
+ msgstr "Wenn dies aktiviert ist, werden die Rahmen in der Kopfzeile entfernt "
3631
+
3632
+ #: templates/admin/settings/tabs/color_and_font_settings.php:255
3633
+ msgid "Remove borders in header"
3634
+ msgstr "Entfernen Sie die Rahmen in der Kopfzeile"
3635
+
3636
+ #: templates/admin/settings/tabs/color_and_font_settings.php:269
3637
+ #: templates/admin/table-settings/table_settings_block.inc.php:1379
3638
+ msgid "Row color"
3639
+ msgstr "Zeilenfarbe"
3640
+
3641
+ #: templates/admin/settings/tabs/color_and_font_settings.php:276
3642
+ #: templates/admin/table-settings/table_settings_block.inc.php:1729
3643
+ msgid "Even row background"
3644
+ msgstr "Hintergrund der geraden Zeilen"
3645
+
3646
+ #: templates/admin/settings/tabs/color_and_font_settings.php:278
3647
+ #: templates/admin/table-settings/table_settings_block.inc.php:1732
3648
+ msgid "This color is used for for background in even rows."
3649
+ msgstr "Diese Farbe wird für den Hintergrund in geraden Zeilen verwendet."
3650
+
3651
+ #: templates/admin/settings/tabs/color_and_font_settings.php:295
3652
+ #: templates/admin/table-settings/table_settings_block.inc.php:1751
3653
+ msgid "Odd row background"
3654
+ msgstr "Hintergrund der ungeraden Zeilen"
3655
+
3656
+ #: templates/admin/settings/tabs/color_and_font_settings.php:297
3657
+ #: templates/admin/table-settings/table_settings_block.inc.php:1754
3658
+ msgid "This color is used for for background in odd rows."
3659
+ msgstr "Diese Farbe wird für den Hintergrund in ungeraden Zeilen verwendet."
3660
+
3661
+ #: templates/admin/settings/tabs/color_and_font_settings.php:314
3662
+ #: templates/admin/table-settings/table_settings_block.inc.php:1773
3663
+ msgid "Hover row"
3664
+ msgstr "Schweben über Reihe"
3665
+
3666
+ #: templates/admin/settings/tabs/color_and_font_settings.php:316
3667
+ #: templates/admin/table-settings/table_settings_block.inc.php:1776
3668
+ msgid ""
3669
+ "This color is used for to highlight the row when you hover your mouse above "
3670
+ "it."
3671
+ msgstr ""
3672
+ "Diese Farbe wird verwendet, um die Zeile hervorzuheben, wenn Sie den "
3673
+ "Mauszeiger darüber halten."
3674
+
3675
+ #: templates/admin/settings/tabs/color_and_font_settings.php:333
3676
+ #: templates/admin/table-settings/table_settings_block.inc.php:1795
3677
+ msgid "Background for selected rows"
3678
+ msgstr "Hintergrund für ausgewählte Zeilen"
3679
+
3680
+ #: templates/admin/settings/tabs/color_and_font_settings.php:335
3681
+ #: templates/admin/table-settings/table_settings_block.inc.php:1798
3682
+ msgid "This color is used for background in selected rows."
3683
+ msgstr "Diese Farbe wird für den Hintergrund in ausgewählten Zeilen verwendet."
3684
+
3685
+ #: templates/admin/settings/tabs/color_and_font_settings.php:362
3686
+ #: templates/admin/table-settings/table_settings_block.inc.php:1383
3687
+ msgid "Cell color"
3688
+ msgstr ""
3689
+
3690
+ #: templates/admin/settings/tabs/color_and_font_settings.php:369
3691
+ #: templates/admin/table-settings/table_settings_block.inc.php:1826
3692
+ msgid "Sorted columns, even rows"
3693
+ msgstr "Sortierte Spalten, gerade Zeilen"
3694
+
3695
+ #: templates/admin/settings/tabs/color_and_font_settings.php:371
3696
+ #: templates/admin/table-settings/table_settings_block.inc.php:1829
3697
+ msgid ""
3698
+ "This color is used for background in cells which are in the active columns "
3699
+ "(columns used for sorting) in even rows."
3700
+ msgstr ""
3701
+ "Diese Farbe wird für den Hintergrund in Zellen verwendet, die sich in den "
3702
+ "aktiven Spalten (Spalten zum Sortieren) in geraden Zeilen befinden."
3703
+
3704
+ #: templates/admin/settings/tabs/color_and_font_settings.php:389
3705
+ #: templates/admin/table-settings/table_settings_block.inc.php:1849
3706
+ msgid "Sorted columns, odd rows"
3707
+ msgstr "Sortierte Spalten, ungerade Zeilen"
3708
+
3709
+ #: templates/admin/settings/tabs/color_and_font_settings.php:391
3710
+ #: templates/admin/table-settings/table_settings_block.inc.php:1852
3711
+ msgid ""
3712
+ "This color is used for background in cells which are in the active columns "
3713
+ "(columns used for sorting) in odd rows."
3714
+ msgstr ""
3715
+ "Diese Farbe wird für den Hintergrund in Zellen verwendet, die sich in den "
3716
+ "aktiven Spalten (Spalten zum Sortieren) in ungeraden Zeilen befinden."
3717
+
3718
+ #: templates/admin/settings/tabs/color_and_font_settings.php:418
3719
+ msgid "Buttons color in modals"
3720
+ msgstr ""
3721
+
3722
+ #: templates/admin/settings/tabs/color_and_font_settings.php:427
3723
+ msgid "This color is used for background in buttons."
3724
+ msgstr "Diese Farbe wird für den Hintergrund in Schaltflächen verwendet."
3725
+
3726
+ #: templates/admin/settings/tabs/color_and_font_settings.php:446
3727
+ msgid "This color is used for border in buttons."
3728
+ msgstr "Diese Farbe wird für Rahmen in Schaltflächen verwendet."
3729
+
3730
+ #: templates/admin/settings/tabs/color_and_font_settings.php:466
3731
+ msgid "This color is used for font in buttons."
3732
+ msgstr "Diese Farbe wird für die Schriftart in Schaltflächen verwendet."
3733
+
3734
+ #: templates/admin/settings/tabs/color_and_font_settings.php:483
3735
+ msgid "Background hover color"
3736
+ msgstr "Hintergrundschwebefarbe"
3737
+
3738
+ #: templates/admin/settings/tabs/color_and_font_settings.php:485
3739
+ msgid ""
3740
+ "This color will be used for button backgrounds when you hover above them."
3741
+ msgstr ""
3742
+ "Diese Farbe wird für Schaltflächenhintergründe verwendet, wenn Sie den "
3743
+ "Mauszeiger darüber halten."
3744
+
3745
+ #: templates/admin/settings/tabs/color_and_font_settings.php:503
3746
+ msgid "Hover font color"
3747
+ msgstr "Schriftfarbe beim Schweben"
3748
+
3749
+ #: templates/admin/settings/tabs/color_and_font_settings.php:505
3750
+ msgid "This color will be used for buttons font when you hover above them."
3751
+ msgstr ""
3752
+ "Diese Farbe wird für die Schriftart der Schaltflächen verwendet, wenn Sie "
3753
+ "den Mauszeiger darüber halten."
3754
+
3755
+ #: templates/admin/settings/tabs/color_and_font_settings.php:523
3756
+ #: templates/settings.inc.php:401
3757
+ msgid "Buttons hover border color"
3758
+ msgstr "Schaltflächen Randfarbe beim Schweben"
3759
+
3760
+ #: templates/admin/settings/tabs/color_and_font_settings.php:525
3761
+ msgid "This color will be used for button borders when you hover above them."
3762
+ msgstr ""
3763
+ "Diese Farbe wird für Schaltflächenränder verwendet, wenn Sie den Mauszeiger "
3764
+ "darüber halten."
3765
+
3766
+ #: templates/admin/settings/tabs/color_and_font_settings.php:543
3767
+ #: templates/settings.inc.php:410
3768
+ msgid "Buttons and inputs border radius (in px)"
3769
+ msgstr "Schaltflächen und Eingaben Rahmenradius (in px)"
3770
+
3771
+ #: templates/admin/settings/tabs/color_and_font_settings.php:545
3772
+ #: templates/settings.inc.php:414
3773
+ msgid "This is a border radius for inputs in buttons. Default is 3px."
3774
+ msgstr ""
3775
+ "Dies ist ein Rahmenradius für Eingaben in Schaltflächen. Standard ist 3px."
3776
+
3777
+ #: templates/admin/settings/tabs/color_and_font_settings.php:577
3778
+ msgid "Modals and overlay color"
3779
+ msgstr ""
3780
+
3781
+ #: templates/admin/settings/tabs/color_and_font_settings.php:584
3782
+ #: templates/settings.inc.php:374
3783
+ msgid "Modals font color"
3784
+ msgstr "Modale Schriftfarbe"
3785
+
3786
+ #: templates/admin/settings/tabs/color_and_font_settings.php:586
3787
+ msgid ""
3788
+ "This color will be used for wpDataTable popup (filter, datepicker) fonts."
3789
+ msgstr ""
3790
+ "Diese Farbe wird für wpDataTable-Popup-Schriftarten (Filter, Datepicker) "
3791
+ "verwendet."
3792
+
3793
+ #: templates/admin/settings/tabs/color_and_font_settings.php:604
3794
+ msgid "Modals background"
3795
+ msgstr "Modals Hintergrund"
3796
+
3797
+ #: templates/admin/settings/tabs/color_and_font_settings.php:606
3798
+ msgid ""
3799
+ "This color will be used for wpDataTable popup (filter, datepicker) "
3800
+ "background."
3801
+ msgstr ""
3802
+ "Diese Farbe wird für den Popup-Hintergrund von wpDataTable (Filter, "
3803
+ "Datepicker) verwendet."
3804
+
3805
+ #: templates/admin/settings/tabs/color_and_font_settings.php:625
3806
+ msgid "Overlay background"
3807
+ msgstr "Overlay Hintergrund"
3808
+
3809
+ #: templates/admin/settings/tabs/color_and_font_settings.php:627
3810
+ msgid ""
3811
+ "This color will be used for overlay which appears below the plugin popups."
3812
+ msgstr ""
3813
+ "Diese Farbe wird für das Overlay verwendet, die unter den Plugin-Popups "
3814
+ "angezeigt wird."
3815
+
3816
+ #: templates/admin/settings/tabs/color_and_font_settings.php:662
3817
+ #: templates/admin/table-settings/table_settings_block.inc.php:1882
3818
+ msgid "This color is used for the background of the pagination"
3819
+ msgstr "Diese Farbe wird für den Hintergrund der Paginierung verwendet"
3820
+
3821
+ #: templates/admin/settings/tabs/color_and_font_settings.php:682
3822
+ #: templates/admin/table-settings/table_settings_block.inc.php:1905
3823
+ msgid "This color is used for the color of the links in the pagination."
3824
+ msgstr "Diese Farbe wird für die Farbe der Links in der Paginierung verwendet."
3825
+
3826
+ #: templates/admin/settings/tabs/color_and_font_settings.php:700
3827
+ #: templates/admin/table-settings/table_settings_block.inc.php:1924
3828
+ msgid "Current page background color"
3829
+ msgstr "Aktuelle Seitenhintergrundfarbe"
3830
+
3831
+ #: templates/admin/settings/tabs/color_and_font_settings.php:702
3832
+ #: templates/admin/table-settings/table_settings_block.inc.php:1927
3833
+ msgid "The color is used for background of the current page"
3834
+ msgstr "Die Farbe wird für den Hintergrund der aktuellen Seite verwendet"
3835
+
3836
+ #: templates/admin/settings/tabs/color_and_font_settings.php:719
3837
+ #: templates/admin/table-settings/table_settings_block.inc.php:1948
3838
+ msgid "Current page color"
3839
+ msgstr "Aktuelle Seitenfarbe"
3840
+
3841
+ #: templates/admin/settings/tabs/color_and_font_settings.php:721
3842
+ #: templates/admin/table-settings/table_settings_block.inc.php:1951
3843
+ msgid "This color is used for the color of the current page."
3844
+ msgstr "Diese Farbe wird für die Farbe der aktuellen Seite verwendet."
3845
+
3846
+ #: templates/admin/settings/tabs/color_and_font_settings.php:739
3847
+ #: templates/admin/table-settings/table_settings_block.inc.php:1971
3848
+ msgid "Other pages hover background color"
3849
+ msgstr "Andere Seiten Hintergrundfarbe beim Schweben"
3850
+
3851
+ #: templates/admin/settings/tabs/color_and_font_settings.php:741
3852
+ #: templates/admin/table-settings/table_settings_block.inc.php:1974
3853
+ msgid ""
3854
+ "This background color is used when you hover the mouse above the other pages"
3855
+ msgstr ""
3856
+ "Diese Hintergrundfarbe wird verwendet, wenn Sie den Mauszeiger über die "
3857
+ "anderen Seiten halten"
3858
+
3859
+ #: templates/admin/settings/tabs/color_and_font_settings.php:758
3860
+ #: templates/admin/table-settings/table_settings_block.inc.php:1995
3861
+ msgid "Other pages hover color"
3862
+ msgstr "Andere Seiten Farbe beim Schweben"
3863
+
3864
+ #: templates/admin/settings/tabs/color_and_font_settings.php:760
3865
+ #: templates/admin/table-settings/table_settings_block.inc.php:1998
3866
+ msgid "This color is used when you hover the mouse above the other pages."
3867
+ msgstr ""
3868
+ "Diese Farbe wird verwendet, wenn Sie den Mauszeiger über die anderen Seiten "
3869
+ "halten."
3870
+
3871
+ #: templates/admin/settings/tabs/custom_js_and_css.php:15
3872
+ #: templates/settings.inc.php:454
3873
+ msgid "Custom wpDataTables JS"
3874
+ msgstr "Benutzerdefinierte wpDataTables JS"
3875
+
3876
+ #: templates/admin/settings/tabs/custom_js_and_css.php:17
3877
+ msgid ""
3878
+ "This JS will be inserted as an inline script block on every page that has a "
3879
+ "wpDataTable."
3880
+ msgstr ""
3881
+ "Dieser JS wird als Inline-Skriptblock auf jeder Seite mit einer wpDataTable "
3882
+ "eingefügt."
3883
+
3884
+ #: templates/admin/settings/tabs/custom_js_and_css.php:30
3885
+ #: templates/admin/table-settings/table_settings_block.inc.php:2025
3886
+ #: templates/settings.inc.php:463
3887
+ msgid "Custom wpDataTables CSS"
3888
+ msgstr "Benutzerdefiniertes wpDataTables-CSS"
3889
+
3890
+ #: templates/admin/settings/tabs/custom_js_and_css.php:32
3891
+ msgid ""
3892
+ "This CSS will be inserted as an inline style block on every page that has a "
3893
+ "wpDataTable."
3894
+ msgstr ""
3895
+ "Dieses CSS wird als Inline-Stilblock auf jeder Seite mit einer wpDataTable "
3896
+ "eingefügt."
3897
+
3898
+ #: templates/admin/settings/tabs/custom_js_and_css.php:45
3899
+ msgid "Use minified wpDataTables Javascript "
3900
+ msgstr "Verwenden Sie minimiertes wpDataTables-Javascript "
3901
+
3902
+ #: templates/admin/settings/tabs/custom_js_and_css.php:51
3903
+ msgid "Use minified version of Javascript files"
3904
+ msgstr "Verwenden Sie eine minimierte Version von Javascript-Dateien"
3905
+
3906
+ #: templates/admin/settings/tabs/main_plugin_settings.php:15
3907
+ #: templates/admin/table-settings/table_settings_block.inc.php:1407
3908
+ #: templates/settings.inc.php:45
3909
+ msgid "Interface language"
3910
+ msgstr "Schnittstellensprache"
3911
+
3912
+ #: templates/admin/settings/tabs/main_plugin_settings.php:17
3913
+ #: templates/admin/table-settings/table_settings_block.inc.php:1410
3914
+ msgid "Pick the language which will be used in tables interface."
3915
+ msgstr ""
3916
+ "Wählen Sie die Sprache aus, die in der Tabellenschnittstelle verwendet "
3917
+ "werden soll."
3918
+
3919
+ #: templates/admin/settings/tabs/main_plugin_settings.php:23
3920
+ #: templates/admin/table-settings/table_settings_block.inc.php:1417
3921
+ msgid "English (default)"
3922
+ msgstr "Englisch (Standard)"
3923
+
3924
+ #: templates/admin/settings/tabs/main_plugin_settings.php:36
3925
+ #: templates/settings.inc.php:98
3926
+ msgid "Date format"
3927
+ msgstr "Datumsformat"
3928
+
3929
+ #: templates/admin/settings/tabs/main_plugin_settings.php:38
3930
+ msgid "Pick the date format to use in date column type."
3931
+ msgstr ""
3932
+ "Wählen Sie das Datumsformat aus, das im Datumsspalten-Typ verwendet werden "
3933
+ "soll."
3934
+
3935
+ #: templates/admin/settings/tabs/main_plugin_settings.php:74
3936
+ #: templates/settings.inc.php:119
3937
+ msgid "Time format"
3938
+ msgstr "Zeitformat"
3939
+
3940
+ #: templates/admin/settings/tabs/main_plugin_settings.php:76
3941
+ msgid "Pick the time format to use in datetime and time column type."
3942
+ msgstr ""
3943
+ "Wählen Sie das Zeitformat aus, das in Datums- und Zeitspalten verwendet "
3944
+ "werden soll."
3945
+
3946
+ #: templates/admin/settings/tabs/main_plugin_settings.php:91
3947
+ msgid "Parse shortcodes"
3948
+ msgstr "Shortcodes analysieren"
3949
+
3950
+ #: templates/admin/settings/tabs/main_plugin_settings.php:93
3951
+ msgid ""
3952
+ "If the option is enabled, you can use shortcodes of other plugins for "
3953
+ "generating content."
3954
+ msgstr ""
3955
+
3956
+ #: templates/admin/settings/tabs/main_plugin_settings.php:97
3957
+ msgid "Parse shortcodes in strings"
3958
+ msgstr "Zergliedern Sie Shortcodes in Strings"
3959
+
3960
+ #: templates/admin/settings/tabs/main_plugin_settings.php:104
3961
+ #: templates/admin/table-settings/table_settings_block.inc.php:1430
3962
+ #: templates/settings.inc.php:74
3963
+ msgid "Base skin"
3964
+ msgstr "Basis-Skin"
3965
+
3966
+ #: templates/admin/settings/tabs/main_plugin_settings.php:106
3967
+ #: templates/admin/table-settings/table_settings_block.inc.php:1433
3968
+ msgid "Choose the base skin for the plugin."
3969
+ msgstr "Wählen Sie die Basis-Skin für das Plugin."
3970
+
3971
+ #: templates/admin/settings/tabs/main_plugin_settings.php:112
3972
+ #: templates/admin/table-settings/table_settings_block.inc.php:1440
3973
+ msgid "Material"
3974
+ msgstr "Material"
3975
+
3976
+ #: templates/admin/settings/tabs/main_plugin_settings.php:113
3977
+ #: templates/admin/table-settings/table_settings_block.inc.php:1441
3978
+ msgid "Light"
3979
+ msgstr "Licht"
3980
+
3981
+ #: templates/admin/settings/tabs/main_plugin_settings.php:114
3982
+ #: templates/admin/table-settings/table_settings_block.inc.php:1442
3983
+ msgid "Graphite"
3984
+ msgstr "Graphit"
3985
+
3986
+ #: templates/admin/settings/tabs/main_plugin_settings.php:115
3987
+ #: templates/admin/table-settings/table_settings_block.inc.php:1443
3988
+ msgid "Aqua"
3989
+ msgstr "Aqua"
3990
+
3991
+ #: templates/admin/settings/tabs/main_plugin_settings.php:116
3992
+ #: templates/admin/table-settings/table_settings_block.inc.php:1444
3993
+ msgid "Purple"
3994
+ msgstr "Lila"
3995
+
3996
+ #: templates/admin/settings/tabs/main_plugin_settings.php:117
3997
+ #: templates/admin/table-settings/table_settings_block.inc.php:1445
3998
+ msgid "Dark"
3999
+ msgstr "Dunkel"
4000
+
4001
+ #: templates/admin/settings/tabs/main_plugin_settings.php:125
4002
+ #: templates/settings.inc.php:131
4003
+ msgid "Number format"
4004
+ msgstr "Zahlenformat"
4005
+
4006
+ #: templates/admin/settings/tabs/main_plugin_settings.php:127
4007
+ #: templates/settings.inc.php:138
4008
+ msgid "Pick the number format (thousands and decimals separator)"
4009
+ msgstr "Wählen Sie das Zahlenformat (Tausender- und Dezimaltrennzeichen)"
4010
+
4011
+ #: templates/admin/settings/tabs/main_plugin_settings.php:144
4012
+ #: templates/settings.inc.php:86
4013
+ msgid "Render advanced filter"
4014
+ msgstr "Erweiterten Filter rendern"
4015
+
4016
+ #: templates/admin/settings/tabs/main_plugin_settings.php:146
4017
+ msgid ""
4018
+ "Choose where you would like to render the advanced filter for tables where "
4019
+ "enabled."
4020
+ msgstr ""
4021
+ "Wählen Sie aus, wo Sie den erweiterten Filter für Tabellen rendern möchten, "
4022
+ "sofern diese aktiviert sind."
4023
+
4024
+ #: templates/admin/settings/tabs/main_plugin_settings.php:152
4025
+ #: templates/settings.inc.php:90
4026
+ msgid "In the header"
4027
+ msgstr "In der Kopfzeile"
4028
+
4029
+ #: templates/admin/settings/tabs/main_plugin_settings.php:153
4030
+ #: templates/settings.inc.php:91
4031
+ msgid "In the footer"
4032
+ msgstr "In der Fußzeile"
4033
+
4034
+ #: templates/admin/settings/tabs/main_plugin_settings.php:161
4035
+ #: templates/admin/table-settings/column_settings_panel.inc.php:385
4036
+ #: templates/settings.inc.php:143
4037
+ msgid "Decimal places"
4038
+ msgstr "Dezimalstellen"
4039
+
4040
+ #: templates/admin/settings/tabs/main_plugin_settings.php:163
4041
+ msgid "Define the amount of decimal places for the float numbers."
4042
+ msgstr "Definieren Sie die Anzahl der Dezimalstellen für die Float-Zahlen."
4043
+
4044
+ #: templates/admin/settings/tabs/main_plugin_settings.php:188
4045
+ msgid "CSV delimiter"
4046
+ msgstr "CSV-Trennzeichen"
4047
+
4048
+ #: templates/admin/settings/tabs/main_plugin_settings.php:190
4049
+ msgid "Pick the CSV delimiter"
4050
+ msgstr "Wählen Sie das CSV-Trennzeichen"
4051
+
4052
+ #: templates/admin/settings/tabs/main_plugin_settings.php:209
4053
+ msgid "Tables sorting direction in admin page"
4054
+ msgstr "Sortierrichtung der Tabellen auf der Administrationsseite"
4055
+
4056
+ #: templates/admin/settings/tabs/main_plugin_settings.php:211
4057
+ msgid ""
4058
+ "Here you can set sorting direction by id for browse tables and charts. By "
4059
+ "default is ascending order."
4060
+ msgstr ""
4061
+ "Hier können Sie die Sortierrichtung nach ID für das Durchsuchen von Tabellen "
4062
+ "und Diagrammen festlegen. Standardmäßig ist die Reihenfolge aufsteigend."
4063
+
4064
+ #: templates/admin/settings/tabs/main_plugin_settings.php:217
4065
+ #: templates/admin/table-settings/column_settings_panel.inc.php:783
4066
+ #: templates/edit_table.inc.php:663
4067
+ msgid "Ascending"
4068
+ msgstr "Aufsteigend"
4069
+
4070
+ #: templates/admin/settings/tabs/main_plugin_settings.php:218
4071
+ #: templates/admin/table-settings/column_settings_panel.inc.php:784
4072
+ #: templates/edit_table.inc.php:665
4073
+ msgid "Descending"
4074
+ msgstr "Absteigend"
4075
+
4076
+ #: templates/admin/settings/tabs/main_plugin_settings.php:229
4077
+ #: templates/settings.inc.php:171
4078
+ msgid "Tablet width"
4079
+ msgstr "Tablettbreite"
4080
+
4081
+ #: templates/admin/settings/tabs/main_plugin_settings.php:231
4082
+ #: templates/settings.inc.php:175
4083
+ msgid ""
4084
+ "Here you can specify width of the screen (in pixels) that will be treated as "
4085
+ "a tablet. You can set it wider if you want responsive effect on desktops."
4086
+ msgstr ""
4087
+ "Hier können Sie die Breite des Bildschirms (in Pixel) angeben, der als "
4088
+ "Tablet behandelt wird. Sie können es weiter einstellen, wenn Sie einen "
4089
+ "responsiven Effekt auf Desktops wünschen."
4090
+
4091
+ #: templates/admin/settings/tabs/main_plugin_settings.php:255
4092
+ #: templates/settings.inc.php:181
4093
+ msgid "Mobile width"
4094
+ msgstr "Handybreite"
4095
+
4096
+ #: templates/admin/settings/tabs/main_plugin_settings.php:257
4097
+ msgid "Here you can specify width (in pixels) will be treated as a mobile.."
4098
+ msgstr "Hier können Sie angeben, Breite (in Pixel) wird als Handy behandelt."
4099
+
4100
+ #: templates/admin/settings/tabs/main_plugin_settings.php:282
4101
+ #: templates/settings.inc.php:61
4102
+ msgid "Tables per admin page"
4103
+ msgstr "Tabellen pro Administrationsseite"
4104
+
4105
+ #: templates/admin/settings/tabs/main_plugin_settings.php:284
4106
+ #, fuzzy
4107
+ msgid "How many tables to show in the browse page."
4108
+ msgstr "Wie viele Tabellen sollen auf der Suchseite angezeigt werden?"
4109
+
4110
+ #: templates/admin/settings/tabs/main_plugin_settings.php:300
4111
+ msgid "Align numbers"
4112
+ msgstr "Zahlen ausrichten"
4113
+
4114
+ #: templates/admin/settings/tabs/main_plugin_settings.php:302
4115
+ msgid "How \"Integer\" and \"Float\" column types will be aligned in the cell"
4116
+ msgstr ""
4117
+
4118
+ #: templates/admin/settings/tabs/main_plugin_settings.php:306
4119
+ #: templates/settings.inc.php:161
4120
+ msgid "Align numbers to the right"
4121
+ msgstr "Zahlen rechts ausrichten"
4122
+
4123
+ #: templates/admin/settings/tabs/main_plugin_settings.php:316
4124
+ msgid "Sum functions label"
4125
+ msgstr "Summenfunktionsbezeichnung"
4126
+
4127
+ #: templates/admin/settings/tabs/main_plugin_settings.php:318
4128
+ msgid ""
4129
+ "Enter a label that will be used for Sum functions. If you leave it blank "
4130
+ "default label will be Σ ="
4131
+ msgstr ""
4132
+ "Geben Sie eine Bezeichnung ein, die für Summenfunktionen verwendet wird. "
4133
+ "Wenn Sie das Feld leer lassen, lautet die Standardbezeichnung Σ ="
4134
+
4135
+ #: templates/admin/settings/tabs/main_plugin_settings.php:336
4136
+ msgid "Average functions label"
4137
+ msgstr "Durchschnittliche Funktionsbezeichnung"
4138
+
4139
+ #: templates/admin/settings/tabs/main_plugin_settings.php:338
4140
+ msgid ""
4141
+ "Enter a label that will be used for Average functions. If you leave it blank "
4142
+ "default label will be Avg ="
4143
+ msgstr ""
4144
+ "Geben Sie eine Bezeichnung ein, die für Durchschnittsfunktionen verwendet "
4145
+ "wird. Wenn Sie das Feld leer lassen, lautet die Standardbezeichnung "
4146
+ "Durchschn. ="
4147
+
4148
+ #: templates/admin/settings/tabs/main_plugin_settings.php:361
4149
+ msgid "Minimum functions label"
4150
+ msgstr "Beschriftung der minimalen Funktionen"
4151
+
4152
+ #: templates/admin/settings/tabs/main_plugin_settings.php:363
4153
+ msgid ""
4154
+ "Enter a label that will be used for Minimum functions. If you leave it blank "
4155
+ "default label will be Min ="
4156
+ msgstr ""
4157
+ "Geben Sie eine Bezeichnung ein, die für die minimalen Funktionen verwendet "
4158
+ "wird. Wenn Sie das Feld leer lassen, lautet die Standardbezeichnung Min ="
4159
+
4160
+ #: templates/admin/settings/tabs/main_plugin_settings.php:381
4161
+ msgid "Maximum functions label"
4162
+ msgstr "Beschriftung der maximalen Funktionen"
4163
+
4164
+ #: templates/admin/settings/tabs/main_plugin_settings.php:383
4165
+ msgid ""
4166
+ "Enter a label that will be used for Maximum functions. If you leave it blank "
4167
+ "default label will be Max ="
4168
+ msgstr ""
4169
+ "Geben Sie eine Bezeichnung ein, die für maximale Funktionen verwendet wird. "
4170
+ "Wenn Sie das Feld leer lassen, lautet die Standardbezeichnung Max ="
4171
+
4172
+ #: templates/admin/settings/tabs/main_plugin_settings.php:409
4173
+ msgid "Include full bootstrap front-end"
4174
+ msgstr "Schließen Sie das vollständige Bootstrap-Frontend ein"
4175
+
4176
+ #: templates/admin/settings/tabs/main_plugin_settings.php:411
4177
+ #: templates/admin/settings/tabs/main_plugin_settings.php:422
4178
+ msgid ""
4179
+ "It is recommended to uncheck this option if bootstrap.js is already included "
4180
+ "in one of the theme files. Unchecked option means that there is still "
4181
+ "bootstrap.js included just in noconflict mode which should prevent errors."
4182
+ msgstr ""
4183
+ "Es wird empfohlen, diese Option zu deaktivieren, wenn bootstrap.js bereits "
4184
+ "in einer der Themendateien enthalten ist. Deaktivierte Option bedeutet, dass "
4185
+ "bootstrap.js nur im Noconflict-Modus noch enthalten ist, um Fehler zu "
4186
+ "vermeiden."
4187
+
4188
+ #: templates/admin/settings/tabs/main_plugin_settings.php:415
4189
+ msgid "Include full bootstrap.js on the front-end"
4190
+ msgstr "Schließen Sie die vollständige Datei bootstrap.js in das Front-End ein"
4191
+
4192
+ #: templates/admin/settings/tabs/main_plugin_settings.php:420
4193
+ msgid "Include full bootstrap back-end"
4194
+ msgstr "Schließen Sie das vollständige Bootstrap-Backend ein"
4195
+
4196
+ #: templates/admin/settings/tabs/main_plugin_settings.php:426
4197
+ msgid "Include full bootstrap.js on the back-end"
4198
+ msgstr "Schließen Sie die vollständige Datei bootstrap.js in das Back-End ein"
4199
+
4200
+ #: templates/admin/settings/tabs/main_plugin_settings.php:434
4201
+ #: templates/admin/settings/tabs/main_plugin_settings.php:440
4202
+ #: templates/settings.inc.php:32
4203
+ msgid "Show plugin credentials below tables"
4204
+ msgstr ""
4205
+
4206
+ #: templates/admin/settings/tabs/main_plugin_settings.php:436
4207
+ #: templates/settings.inc.php:32
4208
+ msgid ""
4209
+ "If you want to support our project, please, keep this checkbox as checked"
4210
+ msgstr ""
4211
+
4212
+ #: templates/admin/settings/tabs/main_plugin_settings.php:445
4213
+ msgid "Prevent deleting tables in database"
4214
+ msgstr "Verhindern Sie das Löschen von Tabellen in der Datenbank"
4215
+
4216
+ #: templates/admin/settings/tabs/main_plugin_settings.php:447
4217
+ msgid ""
4218
+ "It is recommended to leave this option as checked if you what to keep your "
4219
+ "tables in database after deleting plugin from Plugins page. If you uncheck "
4220
+ "this option, it will be deleted all tables in database after deleting plugin"
4221
+ msgstr ""
4222
+
4223
+ #: templates/admin/settings/tabs/main_plugin_settings.php:451
4224
+ msgid ""
4225
+ "Prevent deleting tables in database after deleting plugin from Plugins page"
4226
+ msgstr ""
4227
+ "Verhindern Sie das Löschen von Tabellen in der Datenbank, nachdem Sie das "
4228
+ "Plugin von der Seite Plugins gelöscht haben"
4229
+
4230
+ #: templates/admin/settings/tabs/main_plugin_settings.php:458
4231
+ msgid "Remove Getting Started page"
4232
+ msgstr "Entfernen Sie die Seite Erste Schritte"
4233
+
4234
+ #: templates/admin/settings/tabs/main_plugin_settings.php:460
4235
+ msgid ""
4236
+ "Check this option if you want to remove Getting Started page from admin menu."
4237
+ msgstr ""
4238
+ "Aktivieren Sie diese Option, wenn Sie die Seite Erste Schritte aus dem "
4239
+ "Administratormenü entfernen möchten."
4240
+
4241
+ #: templates/admin/settings/tabs/main_plugin_settings.php:464
4242
+ msgid "Remove \"Getting Started\" page from admin menu."
4243
+ msgstr "Entfernen Sie die Seite \"Erste Schritte\" aus dem Admin-Menü."
4244
+
4245
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:17
4246
+ msgid ""
4247
+ "If this checkbox is checked, you have option to add more than one separate "
4248
+ "database connection (MySQL, MS SQL, Postgre SQL)"
4249
+ msgstr ""
4250
+
4251
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:22
4252
+ msgid "Use separate connection"
4253
+ msgstr "Verwenden Sie eine separate Verbindung"
4254
+
4255
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:28
4256
+ msgid "Test connection"
4257
+ msgstr "Verbindung testen"
4258
+
4259
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:30
4260
+ msgid ""
4261
+ "Click this button to test if wpDataTables is able to connect to the MySQL "
4262
+ "server with the details you provided."
4263
+ msgstr ""
4264
+ "Klicken Sie auf diese Schaltfläche, um zu testen, ob wpDataTables mit den "
4265
+ "von Ihnen angegebenen Details eine Verbindung zum MySQL-Server herstellen "
4266
+ "kann."
4267
+
4268
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:41
4269
+ msgid "MySQL host"
4270
+ msgstr "MySQL-Host"
4271
+
4272
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:43
4273
+ msgid "MySQL host address."
4274
+ msgstr "MySQL-Hostadresse."
4275
+
4276
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:47
4277
+ msgid "MySQL host address"
4278
+ msgstr "MySQL-Hostadresse"
4279
+
4280
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:52
4281
+ msgid "MySQL database"
4282
+ msgstr "MySQL-Datenbank"
4283
+
4284
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:54
4285
+ msgid "MySQL database name."
4286
+ msgstr "Name der MySQL-Datenbank."
4287
+
4288
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:58
4289
+ msgid "MySQL database name"
4290
+ msgstr "Name der MySQL-Datenbank"
4291
+
4292
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:66
4293
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:73
4294
+ msgid "MySQL user"
4295
+ msgstr "MySQL-Benutzer"
4296
+
4297
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:68
4298
+ msgid "MySQL username for the connection."
4299
+ msgstr "MySQL-Benutzername für die Verbindung."
4300
+
4301
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:78
4302
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:83
4303
+ msgid "MySQL password"
4304
+ msgstr "MySQL-Kennwort"
4305
+
4306
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:80
4307
+ msgid "MySQL password for the provided user."
4308
+ msgstr "MySQL-Kennwort für den angegebenen Benutzer."
4309
+
4310
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:92
4311
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:98
4312
+ msgid "MySQL port"
4313
+ msgstr "MySQL-Port"
4314
+
4315
+ #: templates/admin/settings/tabs/separate_mysql_connection.php:94
4316
+ msgid "MySQL port for the connection (default: 3306)."
4317
+ msgstr "MySQL-Port für die Verbindung (Standard: 3306)."
4318
+
4319
+ #: templates/admin/support/support.inc.php:46
4320
+ msgid "Get started with detailed explanation of every plugin feature."
4321
+ msgstr ""
4322
+ "Beginnen Sie mit einer detaillierten Erläuterung aller Plugin-Funktionen."
4323
+
4324
+ #: templates/admin/support/support.inc.php:52
4325
+ #: templates/admin/welcome_page/welcome_page.inc.php:204
4326
+ msgid "FAQ"
4327
+ msgstr "FAQ"
4328
+
4329
+ #: templates/admin/support/support.inc.php:53
4330
+ msgid ""
4331
+ "Find a list of frequently asked questions about wpDataTables functionality."
4332
+ msgstr ""
4333
+ "Hier finden Sie eine Liste häufig gestellter Fragen zur Funktionalität von "
4334
+ "wpDataTables."
4335
+
4336
+ #: templates/admin/support/support.inc.php:54
4337
+ msgid "Visit FAQ"
4338
+ msgstr "FAQ besuchen"
4339
+
4340
+ #: templates/admin/support/support.inc.php:59
4341
+ msgid "Feature suggestion"
4342
+ msgstr "Funktionsvorschlag"
4343
+
4344
+ #: templates/admin/support/support.inc.php:60
4345
+ msgid "Great opportunity to our users to submit ideas for new features."
4346
+ msgstr ""
4347
+ "Eine großartige Gelegenheit für unsere Benutzer, Ideen für neue Funktionen "
4348
+ "einzureichen."
4349
+
4350
+ #: templates/admin/support/support.inc.php:61
4351
+ msgid "Suggest a Feature"
4352
+ msgstr "Schlagen Sie eine Funktion vor"
4353
+
4354
+ #: templates/admin/support/support.inc.php:68
4355
+ msgid "Still need help?"
4356
+ msgstr "Benötigen Sie weitere Hilfe?"
4357
+
4358
+ #: templates/admin/support/support.inc.php:69
4359
+ msgid "We provide support to all our users over WordPress.org "
4360
+ msgstr ""
4361
+
4362
+ #: templates/admin/support/support.inc.php:70
4363
+ msgid "Open a topic"
4364
+ msgstr ""
4365
+
4366
+ #: templates/admin/system-info/system_info.inc.php:22
4367
+ msgid "System Info"
4368
+ msgstr "Systeminformationen"
4369
+
4370
+ #: templates/admin/system-info/system_info.inc.php:61
4371
+ msgid "The URL of your site's homepage."
4372
+ msgstr "Die URL der Homepage Ihrer Website."
4373
+
4374
+ #: templates/admin/system-info/system_info.inc.php:68
4375
+ msgid "The root URL of your site."
4376
+ msgstr "Die Stamm-URL Ihrer Website."
4377
+
4378
+ #: templates/admin/system-info/system_info.inc.php:75
4379
+ msgid "System path of your wp-content directory."
4380
+ msgstr "Systempfad Ihres wp-content-Verzeichnisses."
4381
+
4382
+ #: templates/admin/system-info/system_info.inc.php:82
4383
+ msgid "System path of your WP root directory."
4384
+ msgstr "Systempfad Ihres WP-Stammverzeichnisses."
4385
+
4386
+ #: templates/admin/system-info/system_info.inc.php:89
4387
+ msgid "The version of WordPress installed on your site."
4388
+ msgstr "Die Version von WordPress installiert auf Ihrer Website."
4389
+
4390
+ #: templates/admin/system-info/system_info.inc.php:96
4391
+ msgid "Whether or not you have WordPress Multisite enabled."
4392
+ msgstr ""
4393
+
4394
+ #: templates/admin/system-info/system_info.inc.php:120
4395
+ #, php-format
4396
+ msgid ""
4397
+ "%1$s </span> - We recommend setting memory to at least <strong>128MB</"
4398
+ "strong>. Please define memory limit in <strong>wp-config.php</strong> file. "
4399
+ "To learn how, see: <a href=\"%2$s\" target=\"_blank\" rel=\"noopener "
4400
+ "noreferrer\">Increasing memory allocated to PHP.</a>"
4401
+ msgstr ""
4402
+ "%1$s </span> - Wir empfehlen, den Speicher auf mindestens <strong> 128 MB</"
4403
+ "strong>einzustellen. Bitte definieren Sie das Speicherlimit in der <strong> "
4404
+ "wp-config.php </strong> Datei. Informationen dazu finden Sie unter: <a href="
4405
+ "\"%2$s\" target=\"_blank\" rel=\"noopener noreferrer\"> Erhöhen des PHP "
4406
+ "zugewiesenen Speichers. </a>"
4407
+
4408
+ #: templates/admin/system-info/system_info.inc.php:130
4409
+ msgid "The maximum amount of memory (RAM) that your site can use at one time."
4410
+ msgstr ""
4411
+ "Die maximale Speichermenge (RAM), die Ihre Site gleichzeitig verwenden kann."
4412
+
4413
+ #: templates/admin/system-info/system_info.inc.php:143
4414
+ msgid "Displays whether or not WordPress is in Debug Mode."
4415
+ msgstr "Zeigt an, ob sich WordPress im Debug-Modus befindet oder nicht."
4416
+
4417
+ #: templates/admin/system-info/system_info.inc.php:150
4418
+ msgid "The current language used by WordPress. Default = English"
4419
+ msgstr "Die aktuell von WordPress verwendete Sprache. Standard = Englisch"
4420
+
4421
+ #: templates/admin/system-info/system_info.inc.php:170
4422
+ msgid "Information about your operating system."
4423
+ msgstr "Informationen zu Ihrem Betriebssystem."
4424
+
4425
+ #: templates/admin/system-info/system_info.inc.php:178
4426
+ msgid "Information about the web server that is currently hosting your site."
4427
+ msgstr ""
4428
+ "Informationen zu dem Webserver, auf dem Ihre Website derzeit gehostet wird."
4429
+
4430
+ #: templates/admin/system-info/system_info.inc.php:220
4431
+ msgid "The version of PHP installed on your hosting server."
4432
+ msgstr "Die auf Ihrem Hosting-Server installierte Version von PHP."
4433
+
4434
+ #: templates/admin/system-info/system_info.inc.php:231
4435
+ msgid "The largest file size that can be contained in one post."
4436
+ msgstr "Die größte Dateigröße, die in einem Beitrag enthalten sein kann."
4437
+
4438
+ #: templates/admin/system-info/system_info.inc.php:240
4439
+ #, php-format
4440
+ msgid ""
4441
+ "%1$s </span> - We recommend setting max execution time to at least 180.<br /"
4442
+ ">See: <a href=\"%2$s\" target=\"_blank\" rel=\"noopener noreferrer"
4443
+ "\">Increasing max execution to PHP</a>"
4444
+ msgstr ""
4445
+ "%1$s </span> - Wir empfehlen, die maximale Ausführungszeit auf mindestens "
4446
+ "180 festzulegen. <br /> Siehe: <a href=\"%2$s\" target=\"_blank\" rel="
4447
+ "\"noopener noreferrer\"> Erhöhen der max Ausführung auf PHP </a>"
4448
+
4449
+ #: templates/admin/system-info/system_info.inc.php:248
4450
+ msgid ""
4451
+ "The amount of time (in seconds) that your site will spend on a single "
4452
+ "operation before timing out (to avoid server lockups)"
4453
+ msgstr ""
4454
+ "Die Zeit (in Sekunden), die Ihre Site für einen einzelnen Vorgang benötigt, "
4455
+ "bevor das Zeitlimit überschritten wird (um Server-Abstürze zu vermeiden)."
4456
+
4457
+ #: templates/admin/system-info/system_info.inc.php:263
4458
+ msgid "The version of MySQL installed on your hosting server."
4459
+ msgstr "Die auf Ihrem Hosting-Server installierte Version von MySQL."
4460
+
4461
+ #: templates/admin/system-info/system_info.inc.php:271
4462
+ msgid ""
4463
+ "The largest file size that can be uploaded to your WordPress installation."
4464
+ msgstr ""
4465
+ "Die größte Dateigröße, die in Ihre WordPress-Installation hochgeladen werden "
4466
+ "kann."
4467
+
4468
+ #: templates/admin/system-info/system_info.inc.php:293
4469
+ msgid "Multibyte String (mbstring) is used to convert character encoding."
4470
+ msgstr ""
4471
+ "Multibyte String (mbstring) wird zum Konvertieren der Zeichenkodierung "
4472
+ "verwendet."
4473
+
4474
+ #: templates/admin/system-info/system_info.inc.php:311
4475
+ msgid ""
4476
+ "XML support is something that needs to be installed on the server for proper "
4477
+ "wpDataTables functionality."
4478
+ msgstr ""
4479
+
4480
+ #: templates/admin/system-info/system_info.inc.php:329
4481
+ msgid ""
4482
+ "DOM support is something that needs to be installed on the server for proper "
4483
+ "wpDataTables functionality."
4484
+ msgstr ""
4485
+
4486
+ #: templates/admin/system-info/system_info.inc.php:355
4487
+ msgid "Multibyte String (mbstring) require libxml to be installed. "
4488
+ msgstr "Für Multibyte String (mbstring) muss libxml installiert sein. "
4489
+
4490
+ #: templates/admin/system-info/system_info.inc.php:374
4491
+ msgid ""
4492
+ "ZIP support is something that needs to be installed on the server, as a "
4493
+ "package for the Linux operating system, or rather to the PHP software on the "
4494
+ "server."
4495
+ msgstr ""
4496
+ "Die ZIP-Unterstützung muss auf dem Server als Paket für das Linux-"
4497
+ "Betriebssystem oder vielmehr für die PHP-Software auf dem Server installiert "
4498
+ "werden."
4499
+
4500
+ #: templates/admin/system-info/system_info.inc.php:394
4501
+ msgid "wpDataTables use cURL for getting data from other servers."
4502
+ msgstr "wpDataTables verwenden cURL, um Daten von anderen Servern abzurufen."
4503
+
4504
+ #: templates/admin/system-info/system_info.inc.php:417
4505
+ msgid "The name of the current active theme."
4506
+ msgstr "Der Name des aktuell aktiven Themas."
4507
+
4508
+ #: templates/admin/system-info/system_info.inc.php:428
4509
+ msgid "The installed version of the current active theme."
4510
+ msgstr "Die installierte Version des aktuell aktiven Themas."
4511
+
4512
+ #: templates/admin/system-info/system_info.inc.php:435
4513
+ msgid "The theme developers."
4514
+ msgstr "Die Theme-Entwickler."
4515
+
4516
+ #: templates/admin/system-info/system_info.inc.php:441
4517
+ msgid "The theme developers URL."
4518
+ msgstr "Die URL des Theme-Entwicklers."
4519
+
4520
+ #: templates/admin/system-info/system_info.inc.php:478
4521
+ msgid "Visit plugin homepage"
4522
+ msgstr "Besuchen Sie die Plugin-Homepage"
4523
+
4524
+ #: templates/admin/table-settings/add_column_modal.inc.php:21
4525
+ msgid "Add Column"
4526
+ msgstr "Spalte hinzufügen"
4527
+
4528
+ #: templates/admin/table-settings/add_column_modal.inc.php:35
4529
+ msgid "Column header"
4530
+ msgstr "Spaltenkopfzeile"
4531
+
4532
+ #: templates/admin/table-settings/add_column_modal.inc.php:64
4533
+ msgid "Insert after"
4534
+ msgstr "Nach einfügen"
4535
+
4536
+ #: templates/admin/table-settings/add_column_modal.inc.php:70
4537
+ msgid "Beginning of table"
4538
+ msgstr "Anfang der Tabelle"
4539
+
4540
+ #: templates/admin/table-settings/add_column_modal.inc.php:71
4541
+ msgid "End of table"
4542
+ msgstr "Ende der Tabelle"
4543
+
4544
+ #: templates/admin/table-settings/add_column_modal.inc.php:85
4545
+ #: templates/edit_table.inc.php:542
4546
+ msgid "Possible values"
4547
+ msgstr "Mögliche Werte"
4548
+
4549
+ #: templates/admin/table-settings/add_column_modal.inc.php:96
4550
+ msgid "Editor predefined value"
4551
+ msgstr "Vom Editor vordefinierter Wert"
4552
+
4553
+ #: templates/admin/table-settings/add_column_modal.inc.php:110
4554
+ msgid "Fill with default value"
4555
+ msgstr "Mit Standardwert füllen"
4556
+
4557
+ #: templates/admin/table-settings/add_column_modal.inc.php:130
4558
+ #: templates/admin/table-settings/remove_column_modal.inc.php:85
4559
+ msgid "OK"
4560
+ msgstr "OK"
4561
+
4562
+ #: templates/admin/table-settings/column_settings_panel.inc.php:14
4563
+ msgid "Column settings"
4564
+ msgstr "Spalteneinstellungen"
4565
+
4566
+ #: templates/admin/table-settings/column_settings_panel.inc.php:39
4567
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:64
4568
+ #: templates/admin/table-settings/table_settings_block.inc.php:64
4569
+ msgid "Display"
4570
+ msgstr "Anzeige"
4571
+
4572
+ #: templates/admin/table-settings/column_settings_panel.inc.php:43
4573
+ msgid "Data"
4574
+ msgstr "Daten"
4575
+
4576
+ #: templates/admin/table-settings/column_settings_panel.inc.php:51
4577
+ msgid "Global Filtering"
4578
+ msgstr ""
4579
+
4580
+ #: templates/admin/table-settings/column_settings_panel.inc.php:55
4581
+ #: templates/admin/table-settings/table_settings_block.inc.php:72
4582
+ msgid "Editing"
4583
+ msgstr "Bearbeitung"
4584
+
4585
+ #: templates/admin/table-settings/column_settings_panel.inc.php:72
4586
+ #: templates/edit_table.inc.php:525
4587
+ msgid "Displayed header"
4588
+ msgstr "Angezeigte Kopfzeile"
4589
+
4590
+ #: templates/admin/table-settings/column_settings_panel.inc.php:86
4591
+ #: templates/edit_table.inc.php:696
4592
+ msgid "Column position"
4593
+ msgstr "Spaltenposition"
4594
+
4595
+ #: templates/admin/table-settings/column_settings_panel.inc.php:110
4596
+ #: templates/admin/table-settings/column_settings_panel.inc.php:118
4597
+ msgid "Cell content prefix"
4598
+ msgstr "Präfix für Zelleninhalte"
4599
+
4600
+ #: templates/admin/table-settings/column_settings_panel.inc.php:125
4601
+ msgid ""
4602
+ "Any text or symbol entered here will be shown before the value in every cell "
4603
+ "inside of this column. E.g.: $, €. Does not influence filtering and sorting. "
4604
+ "Convenient for prices, percentages, etc."
4605
+ msgstr ""
4606
+ "Jeder hier eingegebene Text oder jedes Symbol wird vor dem Wert in jeder "
4607
+ "Zelle in dieser Spalte angezeigt. Zum Beispiel: $, €. Beeinflusst nicht das "
4608
+ "Filtern und Sortieren. Praktisch für Preise, Prozentsätze usw."
4609
+
4610
+ #: templates/admin/table-settings/column_settings_panel.inc.php:140
4611
+ #: templates/admin/table-settings/column_settings_panel.inc.php:148
4612
+ msgid "Cell content suffix"
4613
+ msgstr "Suffix für den Zelleninhalt"
4614
+
4615
+ #: templates/admin/table-settings/column_settings_panel.inc.php:155
4616
+ msgid ""
4617
+ "Any text or symbol entered here will be shown after the value in every cell "
4618
+ "inside of this column. E.g.: %, pcs. Does not influence filtering and "
4619
+ "sorting. Convenient for prices, percentages, etc."
4620
+ msgstr ""
4621
+ "Jeder hier eingegebene Text oder jedes Symbol wird nach dem Wert in jeder "
4622
+ "Zelle in dieser Spalte angezeigt. Zum Beispiel:%, Stck. Beeinflusst nicht "
4623
+ "das Filtern und Sortieren. Praktisch für Preise, Prozentsätze usw."
4624
+
4625
+ #: templates/admin/table-settings/column_settings_panel.inc.php:176
4626
+ #: templates/edit_table.inc.php:633
4627
+ msgid "Hide on mobiles"
4628
+ msgstr "Verstecken auf dem Handy"
4629
+
4630
+ #: templates/admin/table-settings/column_settings_panel.inc.php:185
4631
+ msgid "Collapse column on mobile devices"
4632
+ msgstr "Spalte auf Mobilgeräten reduzieren"
4633
+
4634
+ #: templates/admin/table-settings/column_settings_panel.inc.php:192
4635
+ #: templates/edit_table.inc.php:622
4636
+ msgid "Hide on tablets"
4637
+ msgstr "Verstecken auf Tablets"
4638
+
4639
+ #: templates/admin/table-settings/column_settings_panel.inc.php:201
4640
+ msgid "Collapse column on tablet devices"
4641
+ msgstr "Spalte auf Tablet-Geräten reduzieren"
4642
+
4643
+ #: templates/admin/table-settings/column_settings_panel.inc.php:214
4644
+ #: templates/edit_table.inc.php:533
4645
+ msgid "CSS class(es)"
4646
+ msgstr "CSS-Klasse (n)"
4647
+
4648
+ #: templates/admin/table-settings/column_settings_panel.inc.php:228
4649
+ msgid "Visible on front-end"
4650
+ msgstr "Sichtbar am Frontend"
4651
+
4652
+ #: templates/admin/table-settings/column_settings_panel.inc.php:237
4653
+ msgid "Show column in front-end"
4654
+ msgstr "Spalte im Frontend anzeigen"
4655
+
4656
+ #: templates/admin/table-settings/column_settings_panel.inc.php:251
4657
+ msgid "Column width"
4658
+ msgstr "Spaltenbreite"
4659
+
4660
+ #: templates/admin/table-settings/column_settings_panel.inc.php:264
4661
+ #: templates/admin/table-settings/column_settings_panel.inc.php:272
4662
+ msgid "Column color"
4663
+ msgstr "Spaltenfarbe"
4664
+
4665
+ #: templates/admin/table-settings/column_settings_panel.inc.php:279
4666
+ msgid "Here you can override the default color for the complete column"
4667
+ msgstr "Hier können Sie die Standardfarbe für die gesamte Spalte überschreiben"
4668
+
4669
+ #: templates/admin/table-settings/column_settings_panel.inc.php:300
4670
+ #: templates/admin/table-settings/column_settings_panel.inc.php:308
4671
+ #: templates/edit_table.inc.php:645
4672
+ msgid "Group column"
4673
+ msgstr "Gruppenspalte"
4674
+
4675
+ #: templates/admin/table-settings/column_settings_panel.inc.php:315
4676
+ msgid ""
4677
+ "If one column of your table contains similar values for many rows, maybe it "
4678
+ "makes sense to use it as a “group column”: it means that it will not be "
4679
+ "rendered as a column, but its values will be used to group the rows. Each "
4680
+ "group will be marked with one row with joined cells above, containing the "
4681
+ "group value."
4682
+ msgstr ""
4683
+ "Wenn eine Spalte Ihrer Tabelle ähnliche Werte für viele Zeilen enthält, ist "
4684
+ "es möglicherweise sinnvoll, sie als „Gruppenspalte“ zu verwenden: Dies "
4685
+ "bedeutet, dass sie nicht als Spalte gerendert wird, sondern dass ihre Werte "
4686
+ "zum Gruppieren der Zeilen verwendet werden. Jede Gruppe wird mit einer Zeile "
4687
+ "mit verbundenen Zellen, die den Gruppenwert enthalten, oben markiert."
4688
+
4689
+ #: templates/admin/table-settings/column_settings_panel.inc.php:316
4690
+ msgid ""
4691
+ "Group column will not work with MySQL tables with server-side processing "
4692
+ "enabled and with manual tables!"
4693
+ msgstr ""
4694
+ "Die Gruppenspalte funktioniert nicht mit MySQL-Tabellen mit aktivierter "
4695
+ "serverseitiger Verarbeitung und mit manuellen Tabellen!"
4696
+
4697
+ #: templates/admin/table-settings/column_settings_panel.inc.php:325
4698
+ msgid "Toggle column grouping"
4699
+ msgstr "Spaltengruppierung umschalten"
4700
+
4701
+ #: templates/admin/table-settings/column_settings_panel.inc.php:343
4702
+ #: templates/edit_table.inc.php:582
4703
+ msgid "Column type"
4704
+ msgstr "Spaltentyp"
4705
+
4706
+ #: templates/admin/table-settings/column_settings_panel.inc.php:345
4707
+ msgid ""
4708
+ "You can redefine the column data type here. Affects sorting, filtering and "
4709
+ "display logic. For manually created tables this will change the column type "
4710
+ "in database as well, which may result in data loss."
4711
+ msgstr ""
4712
+ "Hier können Sie den Spaltendatentyp neu definieren. Beeinflusst die "
4713
+ "Sortier-, Filter- und Anzeigelogik. Bei manuell erstellten Tabellen ändert "
4714
+ "sich dadurch auch der Spaltentyp in der Datenbank, was zu Datenverlust "
4715
+ "führen kann."
4716
+
4717
+ #: templates/admin/table-settings/column_settings_panel.inc.php:352
4718
+ msgid "String"
4719
+ msgstr "String"
4720
+
4721
+ #: templates/admin/table-settings/column_settings_panel.inc.php:356
4722
+ msgid "DateTime"
4723
+ msgstr "Datum/Uhrzeit"
4724
+
4725
+ #: templates/admin/table-settings/column_settings_panel.inc.php:358
4726
+ #: templates/admin/table-settings/column_settings_panel.inc.php:987
4727
+ msgid "URL link"
4728
+ msgstr "URL-Link"
4729
+
4730
+ #: templates/admin/table-settings/column_settings_panel.inc.php:359
4731
+ #: templates/admin/table-settings/column_settings_panel.inc.php:988
4732
+ msgid "E-mail link"
4733
+ msgstr "E-Mail-Link"
4734
+
4735
+ #: templates/admin/table-settings/column_settings_panel.inc.php:362
4736
+ #: templates/admin/table-settings/formula_editor_modal.inc.php:37
4737
+ msgid "Formula"
4738
+ msgstr "Formel"
4739
+
4740
+ #: templates/admin/table-settings/column_settings_panel.inc.php:372
4741
+ msgid "Formula for calculation"
4742
+ msgstr "Formel zur Berechnung"
4743
+
4744
+ #: templates/admin/table-settings/column_settings_panel.inc.php:374
4745
+ msgid ""
4746
+ "You can create a formula (calculated column) based on other numeric columns "
4747
+ "(Integer and Float)"
4748
+ msgstr ""
4749
+ "Sie können eine Formel (berechnete Spalte) basierend auf anderen numerischen "
4750
+ "Spalten (Integer und Float) erstellen."
4751
+
4752
+ #: templates/admin/table-settings/column_settings_panel.inc.php:378
4753
+ msgid "Open formula editor"
4754
+ msgstr "Formeleditor öffnen"
4755
+
4756
+ #: templates/admin/table-settings/column_settings_panel.inc.php:387
4757
+ msgid ""
4758
+ "You can redefine the visible decimal places for a float and formula columns "
4759
+ "here. If you leave this field empty amount of decimal places will be loaded "
4760
+ "from the settings page. 0 is available just for formula columns "
4761
+ msgstr ""
4762
+ "Hier können Sie die sichtbaren Dezimalstellen für eine Float- und "
4763
+ "Formelspalte neu definieren. Wenn Sie dieses Feld leer lassen, wird eine "
4764
+ "leere Anzahl von Dezimalstellen von der Einstellungsseite geladen. 0 ist nur "
4765
+ "für Formelspalten verfügbar "
4766
+
4767
+ #: templates/admin/table-settings/column_settings_panel.inc.php:405
4768
+ #: templates/admin/table-settings/column_settings_panel.inc.php:413
4769
+ #: templates/edit_table.inc.php:684
4770
+ msgid "Skip thousands separator"
4771
+ msgstr "Überspringen Sie Tausende Trennzeichen"
4772
+
4773
+ #: templates/admin/table-settings/column_settings_panel.inc.php:407
4774
+ msgid ""
4775
+ "Do not show thousands separator for this column (e.g. when showing years, "
4776
+ "IDs)."
4777
+ msgstr ""
4778
+ "Zeigen Sie für diese Spalte kein Tausendertrennzeichen an (z. B. wenn Jahre, "
4779
+ "IDs angezeigt werden)."
4780
+
4781
+ #: templates/admin/table-settings/column_settings_panel.inc.php:420
4782
+ msgid "Possible values for column"
4783
+ msgstr "Mögliche Werte für Spalte"
4784
+
4785
+ #: templates/admin/table-settings/column_settings_panel.inc.php:422
4786
+ msgid ""
4787
+ "Define the logic for fetching the possible values for this column for "
4788
+ "filtering, and for editing: read from table itself on page load (will always "
4789
+ "contain only the values that already exist in the table), hard-code the "
4790
+ "list, or configure a relation with a different wpDataTable (use values in "
4791
+ "this column as foreign key)."
4792
+ msgstr ""
4793
+ "Definieren Sie die Logik zum Abrufen der möglichen Werte für diese Spalte "
4794
+ "zum Filtern und Bearbeiten: Lesen Sie beim Laden der Seite aus der Tabelle "
4795
+ "selbst (enthält immer nur die Werte, die bereits in der Tabelle vorhanden "
4796
+ "sind), codieren Sie die Liste fest oder konfigurieren Sie eine Beziehung mit "
4797
+ "einer anderen wpDataTable (Werte in dieser Spalte als Fremdschlüssel "
4798
+ "verwenden)."
4799
+
4800
+ #: templates/admin/table-settings/column_settings_panel.inc.php:429
4801
+ msgid "Read from table on page load"
4802
+ msgstr "Lesen Sie aus der Tabelle beim Laden der Seite"
4803
+
4804
+ #: templates/admin/table-settings/column_settings_panel.inc.php:430
4805
+ msgid "Define values list"
4806
+ msgstr "Werteliste definieren"
4807
+
4808
+ #: templates/admin/table-settings/column_settings_panel.inc.php:431
4809
+ msgid "Use values from another wpDataTable (foreign key)"
4810
+ msgstr "Verwenden Sie Werte aus einer anderen wpDataTable (Fremdschlüssel)"
4811
+
4812
+ #: templates/admin/table-settings/column_settings_panel.inc.php:440
4813
+ msgid "Date input format"
4814
+ msgstr "Datumseingabeformat"
4815
+
4816
+ #: templates/admin/table-settings/column_settings_panel.inc.php:442
4817
+ msgid ""
4818
+ "Define date format which is used in the provided data source. Necessary for "
4819
+ "smooth reading of your dates."
4820
+ msgstr ""
4821
+ "Definieren Sie das Datumsformat, das in der bereitgestellten Datenquelle "
4822
+ "verwendet wird. Notwendig für ein reibungsloses Lesen Ihrer Daten."
4823
+
4824
+ #: templates/admin/table-settings/column_settings_panel.inc.php:481
4825
+ msgid "Values list"
4826
+ msgstr "Werteliste"
4827
+
4828
+ #: templates/admin/table-settings/column_settings_panel.inc.php:483
4829
+ msgid ""
4830
+ "Enter the possible values for this column in this list, separate by pressing "
4831
+ "ENTER or comma. Click \"Read from table\" to fetch the list from existing "
4832
+ "column values. Values will be used in selectbox and checkbox filters and "
4833
+ "editors for the column."
4834
+ msgstr ""
4835
+ "Geben Sie die möglichen Werte für diese Spalte in diese Liste ein, trennen "
4836
+ "Sie durch Drücken von ENTER oder Komma. Klicken Sie auf \"Aus Tabelle lesen"
4837
+ "\", um die Liste aus vorhandenen Spaltenwerten abzurufen. Werte werden in "
4838
+ "Selectbox- und Checkbox-Filtern und Editoren für die Spalte verwendet."
4839
+
4840
+ #: templates/admin/table-settings/column_settings_panel.inc.php:485
4841
+ msgid "Reset"
4842
+ msgstr "Zurücksetzen"
4843
+
4844
+ #: templates/admin/table-settings/column_settings_panel.inc.php:487
4845
+ msgid "Read from table"
4846
+ msgstr "Aus Tabelle lesen"
4847
+
4848
+ #: templates/admin/table-settings/column_settings_panel.inc.php:501
4849
+ #: templates/admin/table-settings/foreign_key_config.inc.php:12
4850
+ msgid "Use values from another wpDataTable"
4851
+ msgstr "Verwenden Sie Werte aus einer anderen wpDataTable"
4852
+
4853
+ #: templates/admin/table-settings/column_settings_panel.inc.php:503
4854
+ msgid ""
4855
+ "Configure a relation with a separate wpDataTable: values in this column will "
4856
+ "be used as a foreign key, and replaced with values of a remote table column "
4857
+ "(e.g.: user name instead of user ID)."
4858
+ msgstr ""
4859
+ "Konfigurieren Sie eine Beziehung mit einer separaten wpDataTable: -Werte in "
4860
+ "dieser Spalte werden als Fremdschlüssel verwendet und durch Werte einer "
4861
+ "Remote-Tabellenspalte ersetzt (z. B. Benutzername anstelle von Benutzer-ID)."
4862
+
4863
+ #: templates/admin/table-settings/column_settings_panel.inc.php:507
4864
+ msgid "Configure relation..."
4865
+ msgstr "Beziehung konfigurieren ..."
4866
+
4867
+ #: templates/admin/table-settings/column_settings_panel.inc.php:527
4868
+ msgid "Allow empty value"
4869
+ msgstr "Leerer Wert zulassen"
4870
+
4871
+ #: templates/admin/table-settings/column_settings_panel.inc.php:529
4872
+ msgid ""
4873
+ "Add an empty value to the possible values list, to allow empty editing and "
4874
+ "filtering inputs."
4875
+ msgstr ""
4876
+ "Fügen Sie der Liste der möglichen Werte einen leeren Wert hinzu, um leere "
4877
+ "Bearbeitungs- und Filtereingaben zu ermöglichen."
4878
+
4879
+ #: templates/admin/table-settings/column_settings_panel.inc.php:535
4880
+ msgid "Add an empty value to the list"
4881
+ msgstr "Fügen Sie der Liste einen leeren Wert hinzu"
4882
+
4883
+ #: templates/admin/table-settings/column_settings_panel.inc.php:542
4884
+ msgid "Number of possible values to load"
4885
+ msgstr "Anzahl der möglichen zu ladenden Werte"
4886
+
4887
+ #: templates/admin/table-settings/column_settings_panel.inc.php:544
4888
+ msgid ""
4889
+ "Define here how many possible values per page will be loaded in selectbox "
4890
+ "filters and editor inputs. It is recommended not to be set to All if you "
4891
+ "have more than 50 possible values for this column. This option is not "
4892
+ "working when Cascade Filtering option from Powerful Filters add-on is "
4893
+ "enabled."
4894
+ msgstr ""
4895
+ "Definieren Sie hier, wie viele mögliche Werte pro Seite in Selectbox-Filter "
4896
+ "und Editor-Eingaben geladen werden. Es wird empfohlen, nicht auf Alle zu "
4897
+ "setzen, wenn Sie mehr als 50 mögliche Werte für diese Spalte haben. Diese "
4898
+ "Option funktioniert nicht, wenn die Option \"Kaskadenfilterung\" im "
4899
+ "Leistungsstarke Filter Add-On aktiviert ist."
4900
+
4901
+ #: templates/admin/table-settings/column_settings_panel.inc.php:569
4902
+ msgid "Calculate total"
4903
+ msgstr "Summe berechnen"
4904
+
4905
+ #: templates/admin/table-settings/column_settings_panel.inc.php:571
4906
+ msgid ""
4907
+ "Enable this to show a total (sum) for all cells in this column in table "
4908
+ "footer. You can also show it somewhere outside of the table by pasting the "
4909
+ "shortcode below the switch."
4910
+ msgstr ""
4911
+ "Aktivieren Sie diese Option, um eine Gesamtsumme (Sum) für alle Zellen in "
4912
+ "dieser Spalte in der Tabellenfußzeile anzuzeigen. Sie können es auch "
4913
+ "irgendwo außerhalb der Tabelle anzeigen, indem Sie den Shortcode unter den "
4914
+ "Schalter einfügen."
4915
+
4916
+ #: templates/admin/table-settings/column_settings_panel.inc.php:577
4917
+ msgid "Calculate a total for this column"
4918
+ msgstr "Berechnen Sie eine Summe für diese Spalte"
4919
+
4920
+ #: templates/admin/table-settings/column_settings_panel.inc.php:580
4921
+ msgid ""
4922
+ "Click to copy this shortcode. By placing this shortcode anywhere in your "
4923
+ "posts or pages you can see the total for this column."
4924
+ msgstr ""
4925
+ "Klicken Sie hier, um diesen Shortcode zu kopieren. Wenn Sie diesen Shortcode "
4926
+ "an einer beliebigen Stelle in Ihren Posts oder Seiten platzieren, können Sie "
4927
+ "die Gesamtsumme für diese Spalte anzeigen."
4928
+
4929
+ #: templates/admin/table-settings/column_settings_panel.inc.php:589
4930
+ msgid "Calculate average"
4931
+ msgstr "Durchschnitt berechnen"
4932
+
4933
+ #: templates/admin/table-settings/column_settings_panel.inc.php:591
4934
+ msgid ""
4935
+ "Enable this to show an average value for all cells in this column in table "
4936
+ "footer. You can also show it somewhere outside of the table by pasting the "
4937
+ "shortcode below the switch."
4938
+ msgstr ""
4939
+ "Aktivieren Sie diese Option, um einen Durchschnittswert für alle Zellen in "
4940
+ "dieser Spalte in der Tabellenfußzeile anzuzeigen. Sie können es auch "
4941
+ "irgendwo außerhalb der Tabelle anzeigen, indem Sie den Shortcode unter den "
4942
+ "Schalter einfügen."
4943
+
4944
+ #: templates/admin/table-settings/column_settings_panel.inc.php:597
4945
+ msgid "Calculate average for this column"
4946
+ msgstr "Berechnen Sie den Durchschnitt für diese Spalte"
4947
+
4948
+ #: templates/admin/table-settings/column_settings_panel.inc.php:600
4949
+ msgid ""
4950
+ "Click to copy this shortcode. By placing this shortcode anywhere in your "
4951
+ "posts or pages you can see the average for this column."
4952
+ msgstr ""
4953
+ "Klicken Sie hier, um diesen Shortcode zu kopieren. Wenn Sie diesen Shortcode "
4954
+ "an einer beliebigen Stelle in Ihren Posts oder Seiten platzieren, können Sie "
4955
+ "den Durchschnitt für diese Spalte anzeigen."
4956
+
4957
+ #: templates/admin/table-settings/column_settings_panel.inc.php:609
4958
+ msgid "Calculate MIN value"
4959
+ msgstr "Berechnen Sie den MIN-Wert"
4960
+
4961
+ #: templates/admin/table-settings/column_settings_panel.inc.php:611
4962
+ msgid ""
4963
+ "Enable this to show a minimum value within all cells in this column in table "
4964
+ "footer. You can also show it somewhere outside of the table by pasting the "
4965
+ "shortcode below the switch."
4966
+ msgstr ""
4967
+ "Aktivieren Sie diese Option, um einen Mindestwert in allen Zellen in dieser "
4968
+ "Spalte in der Tabellenfußzeile anzuzeigen. Sie können es auch irgendwo "
4969
+ "außerhalb der Tabelle anzeigen, indem Sie den Shortcode unter den Schalter "
4970
+ "einfügen."
4971
+
4972
+ #: templates/admin/table-settings/column_settings_panel.inc.php:617
4973
+ msgid "Find a minimum value for this column"
4974
+ msgstr "Suchen Sie einen Mindestwert für diese Spalte"
4975
+
4976
+ #: templates/admin/table-settings/column_settings_panel.inc.php:620
4977
+ msgid ""
4978
+ "Click to copy this shortcode. By placing this shortcode anywhere in your "
4979
+ "posts or pages you can see the minimum for this column."
4980
+ msgstr ""
4981
+ "Klicken Sie hier, um diesen Shortcode zu kopieren. Wenn Sie diesen Shortcode "
4982
+ "an einer beliebigen Stelle in Ihren Posts oder Seiten platzieren, können Sie "
4983
+ "das Minimum für diese Spalte anzeigen."
4984
+
4985
+ #: templates/admin/table-settings/column_settings_panel.inc.php:629
4986
+ msgid "Calculate MAX value"
4987
+ msgstr "Berechnen Sie den MAX-Wert"
4988
+
4989
+ #: templates/admin/table-settings/column_settings_panel.inc.php:631
4990
+ msgid ""
4991
+ "Enable this to show a maximum value within all cells in this column in table "
4992
+ "footer. You can also show it somewhere outside of the table by pasting the "
4993
+ "shortcode below the switch."
4994
+ msgstr ""
4995
+ "Aktivieren Sie diese Option, um einen Maximalwert in allen Zellen in dieser "
4996
+ "Spalte in der Tabellenfußzeile anzuzeigen. Sie können es auch irgendwo "
4997
+ "außerhalb der Tabelle anzeigen, indem Sie den Shortcode unter den Schalter "
4998
+ "einfügen."
4999
+
5000
+ #: templates/admin/table-settings/column_settings_panel.inc.php:637
5001
+ msgid "Find a maximum value for this column"
5002
+ msgstr "Suchen Sie einen Maximalwert für diese Spalte"
5003
+
5004
+ #: templates/admin/table-settings/column_settings_panel.inc.php:640
5005
+ msgid ""
5006
+ "Click to copy this shortcode. By placing this shortcode anywhere in your "
5007
+ "posts or pages you can see the maximum for this column."
5008
+ msgstr ""
5009
+ "Klicken Sie hier, um diesen Shortcode zu kopieren. Wenn Sie diesen Shortcode "
5010
+ "an einer beliebigen Stelle in Ihren Posts oder Seiten platzieren, können Sie "
5011
+ "das Maximum für diese Spalte anzeigen."
5012
+
5013
+ #: templates/admin/table-settings/column_settings_panel.inc.php:653
5014
+ msgid "URL target attribute"
5015
+ msgstr "URL-Zielattribut"
5016
+
5017
+ #: templates/admin/table-settings/column_settings_panel.inc.php:655
5018
+ msgid "Set how to open URL Target"
5019
+ msgstr "Legen Sie fest, wie das URL-Ziel geöffnet werden soll"
5020
+
5021
+ #: templates/admin/table-settings/column_settings_panel.inc.php:669
5022
+ msgid "Show link as a button"
5023
+ msgstr "Link als Schaltfläche anzeigen"
5024
+
5025
+ #: templates/admin/table-settings/column_settings_panel.inc.php:671
5026
+ msgid "The link will be shown as a button "
5027
+ msgstr "Der Link wird als Schaltfläche angezeigt "
5028
+
5029
+ #: templates/admin/table-settings/column_settings_panel.inc.php:684
5030
+ msgid "Button text"
5031
+ msgstr "Schaltflächentext"
5032
+
5033
+ #: templates/admin/table-settings/column_settings_panel.inc.php:698
5034
+ msgid "Button class"
5035
+ msgstr "Button-Klasse"
5036
+
5037
+ #: templates/admin/table-settings/column_settings_panel.inc.php:712
5038
+ msgid "URL relation attribute"
5039
+ msgstr ""
5040
+
5041
+ #: templates/admin/table-settings/column_settings_panel.inc.php:714
5042
+ msgid "Set the link relation"
5043
+ msgstr ""
5044
+
5045
+ #: templates/admin/table-settings/column_settings_panel.inc.php:740
5046
+ msgid "Allow sorting"
5047
+ msgstr "Sortierung zulassen"
5048
+
5049
+ #: templates/admin/table-settings/column_settings_panel.inc.php:742
5050
+ msgid "Disable this to disallow sorting for this column."
5051
+ msgstr ""
5052
+ "Deaktivieren Sie diese Option, um die Sortierung für diese Spalte nicht "
5053
+ "zuzulassen."
5054
+
5055
+ #: templates/admin/table-settings/column_settings_panel.inc.php:748
5056
+ msgid "Allow sorting for this column"
5057
+ msgstr "Sortierung für diese Spalte zulassen"
5058
+
5059
+ #: templates/admin/table-settings/column_settings_panel.inc.php:755
5060
+ msgid "Use as default sorting column"
5061
+ msgstr "Als Standardsortierspalte verwenden"
5062
+
5063
+ #: templates/admin/table-settings/column_settings_panel.inc.php:757
5064
+ #: templates/admin/table-settings/column_settings_panel.inc.php:763
5065
+ msgid "Sort table by this column on load"
5066
+ msgstr "Sortieren Sie die Tabelle beim Laden nach dieser Spalte"
5067
+
5068
+ #: templates/admin/table-settings/column_settings_panel.inc.php:774
5069
+ msgid "Default sorting direction"
5070
+ msgstr "Standard-Sortierrichtung"
5071
+
5072
+ #: templates/admin/table-settings/column_settings_panel.inc.php:776
5073
+ msgid "Choose whether to sort ascending or descending by default."
5074
+ msgstr ""
5075
+ "Wählen Sie, ob standardmäßig aufsteigend oder absteigend sortiert werden "
5076
+ "soll."
5077
+
5078
+ #: templates/admin/table-settings/column_settings_panel.inc.php:803
5079
+ msgid "Add a filter for this column"
5080
+ msgstr "Fügen Sie einen Filter für diese Spalte hinzu"
5081
+
5082
+ #: templates/admin/table-settings/column_settings_panel.inc.php:811
5083
+ msgid "Enable filtering for column"
5084
+ msgstr "Aktivieren Sie die Filterung für die Spalte"
5085
+
5086
+ #: templates/admin/table-settings/column_settings_panel.inc.php:818
5087
+ msgid ""
5088
+ "Enabling this switch will add a filter for this column. Disable to remove "
5089
+ "the filter for this column."
5090
+ msgstr ""
5091
+ "Durch Aktivieren dieses Schalters wird ein Filter für diese Spalte "
5092
+ "hinzugefügt. Deaktivieren Sie diese Option, um den Filter für diese Spalte "
5093
+ "zu entfernen."
5094
+
5095
+ #: templates/admin/table-settings/column_settings_panel.inc.php:827
5096
+ msgid "Allow filtering"
5097
+ msgstr "Filterung zulassen"
5098
+
5099
+ #: templates/admin/table-settings/column_settings_panel.inc.php:834
5100
+ #: templates/admin/table-settings/table_settings_block.inc.php:682
5101
+ msgid "Global search"
5102
+ msgstr "Globale Suche"
5103
+
5104
+ #: templates/admin/table-settings/column_settings_panel.inc.php:836
5105
+ msgid ""
5106
+ "If this option is turned off, the column data will not appear in your global "
5107
+ "search results."
5108
+ msgstr ""
5109
+
5110
+ #: templates/admin/table-settings/column_settings_panel.inc.php:842
5111
+ msgid "Enable this column in Global search"
5112
+ msgstr ""
5113
+
5114
+ #: templates/admin/table-settings/column_settings_panel.inc.php:850
5115
+ #: templates/edit_table.inc.php:570
5116
+ msgid "Filter type"
5117
+ msgstr "Filtertyp"
5118
+
5119
+ #: templates/admin/table-settings/column_settings_panel.inc.php:852
5120
+ msgid ""
5121
+ "You can redefine the filter type here, it will affect the filtering logic."
5122
+ msgstr ""
5123
+ "Sie können den Filtertyp hier neu definieren. Dies wirkt sich auf die "
5124
+ "Filterlogik aus."
5125
+
5126
+ #: templates/admin/table-settings/column_settings_panel.inc.php:859
5127
+ msgid "Text"
5128
+ msgstr "Text"
5129
+
5130
+ #: templates/admin/table-settings/column_settings_panel.inc.php:860
5131
+ msgid "Number"
5132
+ msgstr "Nummer"
5133
+
5134
+ #: templates/admin/table-settings/column_settings_panel.inc.php:861
5135
+ msgid "Number range"
5136
+ msgstr "Zahlenbereich"
5137
+
5138
+ #: templates/admin/table-settings/column_settings_panel.inc.php:862
5139
+ msgid "Date range"
5140
+ msgstr "Datumsbereich"
5141
+
5142
+ #: templates/admin/table-settings/column_settings_panel.inc.php:863
5143
+ msgid "DateTime range"
5144
+ msgstr "Datum/Uhrzeit-Bereich"
5145
+
5146
+ #: templates/admin/table-settings/column_settings_panel.inc.php:864
5147
+ msgid "Time range"
5148
+ msgstr "Zeitbereich"
5149
+
5150
+ #: templates/admin/table-settings/column_settings_panel.inc.php:865
5151
+ msgid "Selectbox"
5152
+ msgstr "Selectbox"
5153
+
5154
+ #: templates/admin/table-settings/column_settings_panel.inc.php:866
5155
+ msgid "Checkbox"
5156
+ msgstr "Kontrollkästchen"
5157
+
5158
+ #: templates/admin/table-settings/column_settings_panel.inc.php:877
5159
+ msgid "Filter label"
5160
+ msgstr "Filterüberschrift"
5161
+
5162
+ #: templates/admin/table-settings/column_settings_panel.inc.php:885
5163
+ msgid "Custom filter label"
5164
+ msgstr "Benutzerdefiniertes Filterüberschrift"
5165
+
5166
+ #: templates/admin/table-settings/column_settings_panel.inc.php:892
5167
+ msgid ""
5168
+ "You can change the filter label (placeholder) for this column here, if you "
5169
+ "would like to show some custom text instead of default."
5170
+ msgstr ""
5171
+ "Sie können die Filterüberschrift (Platzhalter) für diese Spalte hier ändern, "
5172
+ "wenn Sie anstelle von Standardtext benutzerdefinierten Text anzeigen möchten."
5173
+
5174
+ #: templates/admin/table-settings/column_settings_panel.inc.php:907
5175
+ msgid "Exact filtering"
5176
+ msgstr "Exakte Filterung"
5177
+
5178
+ #: templates/admin/table-settings/column_settings_panel.inc.php:909
5179
+ msgid ""
5180
+ "Enable exact search to use exact match logic for filtering, disable to allow "
5181
+ "partial match."
5182
+ msgstr ""
5183
+ "Aktivieren Sie die exakte Suche, um die exakte Übereinstimmungslogik zum "
5184
+ "Filtern zu verwenden. Deaktivieren Sie diese Option, um eine teilweise "
5185
+ "Übereinstimmung zuzulassen."
5186
+
5187
+ #: templates/admin/table-settings/column_settings_panel.inc.php:915
5188
+ msgid "Enable exact filtering"
5189
+ msgstr "Exakte Filterung aktivieren"
5190
+
5191
+ #: templates/admin/table-settings/column_settings_panel.inc.php:922
5192
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1019
5193
+ msgid "Predefined value(s)"
5194
+ msgstr "Vordefinierte Wert/e"
5195
+
5196
+ #: templates/admin/table-settings/column_settings_panel.inc.php:924
5197
+ msgid ""
5198
+ "Define value(s) that will be set as default pre-defined filter value(s) on "
5199
+ "page load."
5200
+ msgstr ""
5201
+ "Definieren Sie Wert/e, die beim Laden der Seite als vordefinierte "
5202
+ "Standardfilterwert/e festgelegt werden."
5203
+
5204
+ #: templates/admin/table-settings/column_settings_panel.inc.php:970
5205
+ msgid "Editor input type"
5206
+ msgstr "Eingabetyp des Editors"
5207
+
5208
+ #: templates/admin/table-settings/column_settings_panel.inc.php:972
5209
+ msgid "Choose which kind of editor input to use for this column."
5210
+ msgstr ""
5211
+ "Wählen Sie aus, welche Art von Editor-Eingabe für diese Spalte verwendet "
5212
+ "werden soll."
5213
+
5214
+ #: templates/admin/table-settings/column_settings_panel.inc.php:978
5215
+ msgid "None"
5216
+ msgstr "Keine"
5217
+
5218
+ #: templates/admin/table-settings/column_settings_panel.inc.php:979
5219
+ msgid "One-line edit"
5220
+ msgstr "Einzeilige Bearbeitung"
5221
+
5222
+ #: templates/admin/table-settings/column_settings_panel.inc.php:980
5223
+ msgid "Multi-line edit"
5224
+ msgstr "Mehrzeilige Bearbeitung"
5225
+
5226
+ #: templates/admin/table-settings/column_settings_panel.inc.php:981
5227
+ msgid "HTML editor"
5228
+ msgstr "HTML-Editor"
5229
+
5230
+ #: templates/admin/table-settings/column_settings_panel.inc.php:982
5231
+ msgid "Single-value selectbox"
5232
+ msgstr "Einwertiges Auswahlfeld"
5233
+
5234
+ #: templates/admin/table-settings/column_settings_panel.inc.php:983
5235
+ msgid "Multi-value selectbox"
5236
+ msgstr "Mehrwertiges Auswahlfeld"
5237
+
5238
+ #: templates/admin/table-settings/column_settings_panel.inc.php:999
5239
+ msgid "Column cannot be empty"
5240
+ msgstr "Die Spalte darf nicht leer sein"
5241
+
5242
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1001
5243
+ msgid ""
5244
+ "Enable to make this column mandatory. Users will see a warning when trying "
5245
+ "to save with empty input."
5246
+ msgstr ""
5247
+ "Aktivieren, um diese Spalte obligatorisch zu machen. Die Benutzer sehen eine "
5248
+ "Warnung, wenn sie versuchen, mit leerer Eingabe zu speichern."
5249
+
5250
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1007
5251
+ msgid "Cannot be empty"
5252
+ msgstr "Kann nicht leer sein"
5253
+
5254
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1021
5255
+ msgid ""
5256
+ "If you would like to have some values pre-defined in editors (i.e. default "
5257
+ "editor values) please enter these here."
5258
+ msgstr ""
5259
+ "Wenn Sie möchten, dass einige Werte in Editoren vordefiniert sind (d. H. "
5260
+ "Standard-Editorwerte), geben Sie diese bitte hier ein."
5261
+
5262
+ #: templates/admin/table-settings/column_settings_panel.inc.php:1067
5263
+ msgid "Add New Rule"
5264
+ msgstr "Neue Regel hinzufügen"
5265
+
5266
+ #: templates/admin/table-settings/column_small_block.inc.php:16
5267
+ msgid "Enable/disable in global search"
5268
+ msgstr ""
5269
+
5270
+ #: templates/admin/table-settings/column_small_block.inc.php:18
5271
+ msgid "Show/hide sorting"
5272
+ msgstr "Anzeigen/Ausblenden Sortierung"
5273
+
5274
+ #: templates/admin/table-settings/column_small_block.inc.php:20
5275
+ msgid "Show/hide the column"
5276
+ msgstr "Anzeigen/Ausblenden die Spalte"
5277
+
5278
+ #: templates/admin/table-settings/column_small_block.inc.php:26
5279
+ msgid "Open column settings"
5280
+ msgstr "Spalteneinstellungen öffnen"
5281
+
5282
+ #: templates/admin/table-settings/columns_list_modal.inc.php:20
5283
+ msgid "List of the columns in the data source with quickaccess tools."
5284
+ msgstr "Liste der Spalten in der Datenquelle mit Schnellzugriffstools."
5285
+
5286
+ #: templates/admin/table-settings/columns_list_modal.inc.php:22
5287
+ msgid ""
5288
+ "Click column header to rename it, toggle column visibility by clicking on "
5289
+ "the eye icon, open column settings by clicking on the wrench icon, drag and "
5290
+ "drop blocks to reorder columns."
5291
+ msgstr ""
5292
+ "Klicken Sie auf die Spaltenkopfzeile, um sie umzubenennen, schalten Sie die "
5293
+ "Spaltensichtbarkeit um, indem Sie auf das Augensymbol klicken, öffnen Sie "
5294
+ "die Spalteneinstellungen, indem Sie auf das Schraubenschlüsselsymbol "
5295
+ "klicken, und ziehen Sie die Blöcke, um die Spalten neu anzuordnen."
5296
+
5297
+ #: templates/admin/table-settings/columns_list_modal.inc.php:37
5298
+ #: templates/admin/table-settings/foreign_key_config.inc.php:98
5299
+ #: templates/admin/table-settings/formula_editor_modal.inc.php:93
5300
+ #: templates/edit_table.inc.php:34 templates/edit_table.inc.php:416
5301
+ #: templates/edit_table.inc.php:435 templates/edit_table.inc.php:458
5302
+ msgid "Save"
5303
+ msgstr "Speichern"
5304
+
5305
+ #: templates/admin/table-settings/conditional_formatting_block.inc.php:7
5306
+ #: templates/edit_table.inc.php:770
5307
+ msgid "If cell value"
5308
+ msgstr "Wenn Zellenwert"
5309
+
5310
+ #: templates/admin/table-settings/conditional_formatting_block.inc.php:18
5311
+ #: templates/edit_table.inc.php:778
5312
+ msgid "contains"
5313
+ msgstr "enthält"
5314
+
5315
+ #: templates/admin/table-settings/conditional_formatting_block.inc.php:19
5316
+ #: templates/edit_table.inc.php:779
5317
+ msgid "does not contain"
5318
+ msgstr "enthält nicht"
5319
+
5320
+ #: templates/admin/table-settings/conditional_formatting_block.inc.php:32
5321
+ #: templates/edit_table.inc.php:783
5322
+ msgid "Set cell color"
5323
+ msgstr "Zellenfarbe einstellen"
5324
+
5325
+ #: templates/admin/table-settings/conditional_formatting_block.inc.php:33
5326
+ #: templates/edit_table.inc.php:784
5327
+ msgid "Reset cell color to default"
5328
+ msgstr "Zellenfarbe auf die Standardeinstellung zurücksetzen"
5329
+
5330
+ #: templates/admin/table-settings/conditional_formatting_block.inc.php:34
5331
+ #: templates/edit_table.inc.php:785
5332
+ msgid "Set cell content"
5333
+ msgstr "Zelleninhalt einstellen"
5334
+
5335
+ #: templates/admin/table-settings/conditional_formatting_block.inc.php:35
5336
+ #: templates/edit_table.inc.php:786
5337
+ msgid "Set cell CSS class"
5338
+ msgstr "Zellen-CSS-Klasse festlegen"
5339
+
5340
+ #: templates/admin/table-settings/conditional_formatting_block.inc.php:36
5341
+ #: templates/edit_table.inc.php:787
5342
+ msgid "Remove cell CSS class"
5343
+ msgstr "Zellen-CSS-Klasse entfernen"
5344
+
5345
+ #: templates/admin/table-settings/conditional_formatting_block.inc.php:37
5346
+ #: templates/edit_table.inc.php:788
5347
+ msgid "Set row color"
5348
+ msgstr "Zeilenfarbe einstellen"
5349
+
5350
+ #: templates/admin/table-settings/conditional_formatting_block.inc.php:38
5351
+ #: templates/edit_table.inc.php:789
5352
+ msgid "Reset row color to default"
5353
+ msgstr "Zeilenfarbe auf die Standardeinstellung zurücksetzen"
5354
+
5355
+ #: templates/admin/table-settings/conditional_formatting_block.inc.php:39
5356
+ #: templates/edit_table.inc.php:790
5357
+ msgid "Set row CSS class"
5358
+ msgstr "Zeilen-CSS-Klasse festlegen"
5359
+
5360
+ #: templates/admin/table-settings/conditional_formatting_block.inc.php:40
5361
+ #: templates/edit_table.inc.php:791
5362
+ msgid "Remove row CSS class"
5363
+ msgstr "Zeilen-CSS-Klasse entfernen"
5364
+
5365
+ #: templates/admin/table-settings/conditional_formatting_block.inc.php:41
5366
+ #: templates/edit_table.inc.php:792
5367
+ msgid "Set column color"
5368
+ msgstr "Spaltenfarbe einstellen"
5369
+
5370
+ #: templates/admin/table-settings/conditional_formatting_block.inc.php:42
5371
+ #: templates/edit_table.inc.php:793
5372
+ msgid "Add column CSS class"
5373
+ msgstr "Spalte CSS-Klasse hinzufügen"
5374
+
5375
+ #: templates/admin/table-settings/conditional_formatting_block.inc.php:53
5376
+ msgid "Remove rule"
5377
+ msgstr "Regel entfernen"
5378
+
5379
+ #: templates/admin/table-settings/foreign_key_config.inc.php:18
5380
+ msgid "Choose a source wpDataTable"
5381
+ msgstr "Wählen Sie eine Quelle wpDataTable"
5382
+
5383
+ #: templates/admin/table-settings/foreign_key_config.inc.php:20
5384
+ msgid ""
5385
+ "Please choose a remote wpDataTable which will be used as the data source."
5386
+ msgstr ""
5387
+ "Bitte wählen Sie eine remote wpDataTable, die als Datenquelle verwendet wird."
5388
+
5389
+ #: templates/admin/table-settings/foreign_key_config.inc.php:27
5390
+ msgid "Pick a table..."
5391
+ msgstr "Tabellenauswählen..."
5392
+
5393
+ #: templates/admin/table-settings/foreign_key_config.inc.php:47
5394
+ msgid "Display value"
5395
+ msgstr "Angezeigter Wert"
5396
+
5397
+ #: templates/admin/table-settings/foreign_key_config.inc.php:49
5398
+ msgid ""
5399
+ "Please choose which column values will be shown to the front-end user (e.g. "
5400
+ "Name)."
5401
+ msgstr ""
5402
+ "Bitte wählen Sie aus, welche Spaltenwerte dem Front-End-Benutzer angezeigt "
5403
+ "werden sollen (z. B. Name)."
5404
+
5405
+ #: templates/admin/table-settings/foreign_key_config.inc.php:71
5406
+ msgid "Store value"
5407
+ msgstr "Wert speichern"
5408
+
5409
+ #: templates/admin/table-settings/foreign_key_config.inc.php:73
5410
+ msgid ""
5411
+ "Please choose which column values will be stored in the table for reference "
5412
+ "- by default wdt_ID, or ID"
5413
+ msgstr ""
5414
+ "Bitte wählen Sie aus, welche Spaltenwerte als Referenz in der Tabelle "
5415
+ "gespeichert werden sollen - standardmäßig wdt_ID oder ID"
5416
+
5417
+ #: templates/admin/table-settings/formula_editor_modal.inc.php:19
5418
+ msgid "Formula Editor"
5419
+ msgstr "Formel-Editor"
5420
+
5421
+ #: templates/admin/table-settings/formula_editor_modal.inc.php:25
5422
+ msgid "Use this dialog to construct formulas and see a preview of the result."
5423
+ msgstr ""
5424
+ "In diesem Dialogfeld können Sie Formeln erstellen und eine Vorschau des "
5425
+ "Ergebnisses anzeigen."
5426
+
5427
+ #: templates/admin/table-settings/formula_editor_modal.inc.php:27
5428
+ msgid ""
5429
+ "You can use columns (values for each cell will be inserted), or number "
5430
+ "values. Only numeric columns allowed (non-numeric will be parsed as 0). "
5431
+ "Basic math operations and brackets are supported. Example: col1*((col2+2)-"
5432
+ "col3*sin(col4-3))."
5433
+ msgstr ""
5434
+ "Sie können Spalten (Werte für jede Zelle werden eingefügt) oder Zahlenwerte "
5435
+ "verwenden. Es sind nur numerische Spalten zulässig (nicht numerische werden "
5436
+ "als 0 parsiert). Grundlegende mathematische Operationen und Klammern werden "
5437
+ "unterstützt. Beispiel: col1 * ((col2 + 2) -col3 * sin (col4-3))."
5438
+
5439
+ #: templates/admin/table-settings/formula_editor_modal.inc.php:31
5440
+ msgid "Columns to use"
5441
+ msgstr "Zu verwendende Spalten"
5442
+
5443
+ #: templates/admin/table-settings/formula_editor_modal.inc.php:41
5444
+ msgid "Type your formula here..."
5445
+ msgstr "Geben Sie hier Ihre Formel ein ..."
5446
+
5447
+ #: templates/admin/table-settings/formula_editor_modal.inc.php:85
5448
+ #: templates/chart_wizard.inc.php:48 templates/edit_table.inc.php:35
5449
+ #: templates/edit_table.inc.php:417 templates/edit_table.inc.php:438
5450
+ #: templates/edit_table.inc.php:461
5451
+ msgid "Preview"
5452
+ msgstr "Vorschau"
5453
+
5454
+ #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:9
5455
+ msgid "Merge values?"
5456
+ msgstr "Werte zusammenführen?"
5457
+
5458
+ #: templates/admin/table-settings/possible_values_merge_list_modal.inc.php:13
5459
+ msgid ""
5460
+ "There are already defined possible values. Do you want to merge or to "
5461
+ "replace new values with the existing?"
5462
+ msgstr ""
5463
+ "Es sind bereits mögliche Werte definiert. Möchten Sie neue Werte "
5464
+ "zusammenführen oder durch vorhandene ersetzen?"
5465
+
5466
+ #: templates/admin/table-settings/remove_column_modal.inc.php:21
5467
+ #: templates/admin/table-settings/remove_column_modal.inc.php:35
5468
+ msgid "Remove Column"
5469
+ msgstr "Spalte entfernen"
5470
+
5471
+ #: templates/admin/table-settings/remove_column_modal.inc.php:58
5472
+ msgid "Confirm"
5473
+ msgstr "Bestätigen"
5474
+
5475
+ #: templates/admin/table-settings/remove_column_modal.inc.php:63
5476
+ msgid "Are you sure? There is no undo!"
5477
+ msgstr "Bist du sicher? Es gibt kein Rückgängigmachen!"
5478
+
5479
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:9
5480
+ msgid "When working with this table type please note that at the moment:"
5481
+ msgstr ""
5482
+
5483
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:11
5484
+ msgid "There is no sorting, search, or pagination in this table type."
5485
+ msgstr ""
5486
+
5487
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:12
5488
+ msgid "Creating charts from this table type is not yet possible."
5489
+ msgstr ""
5490
+
5491
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:13
5492
+ msgid ""
5493
+ "If you need those features, please consider creating tables with option "
5494
+ msgstr ""
5495
+
5496
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:17
5497
+ msgid ""
5498
+ "Depends of users requests, we will add it in our road map and implement it "
5499
+ "based on priority. Thank you for understanding."
5500
+ msgstr ""
5501
+
5502
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:28
5503
+ msgid "Table preview"
5504
+ msgstr "Tabellenvorschau"
5505
+
5506
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:38
5507
+ msgid "Desktop"
5508
+ msgstr "Desktop"
5509
+
5510
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:41
5511
+ msgid "Tablet"
5512
+ msgstr "Tablet"
5513
+
5514
+ #: templates/admin/table-settings/simple_table_preview_block.inc.php:44
5515
+ msgid "Mobile"
5516
+ msgstr "Handy"
5517
+
5518
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:27
5519
+ #: templates/admin/table-settings/table_settings_block.inc.php:26
5520
+ msgid "wpDataTable name, click to edit"
5521
+ msgstr "wpDataTable Name, klicken Sie zum Bearbeiten"
5522
+
5523
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:60
5524
+ msgid "Edit Data"
5525
+ msgstr "Daten bearbeiten"
5526
+
5527
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:83
5528
+ msgid "Undo"
5529
+ msgstr "Rückgängig"
5530
+
5531
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:87
5532
+ msgid "Redo"
5533
+ msgstr "Wiederholen"
5534
+
5535
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:94
5536
+ msgid "Manage columns"
5537
+ msgstr "Spalten verwalten"
5538
+
5539
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:97
5540
+ msgid "Column"
5541
+ msgstr "Spalte"
5542
+
5543
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:101
5544
+ msgid "Add column left"
5545
+ msgstr "Spalte links einfügen"
5546
+
5547
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:106
5548
+ msgid "Insert column before selection"
5549
+ msgstr "Spalte vor Markierung einfügen"
5550
+
5551
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:111
5552
+ msgid "Insert column after selection"
5553
+ msgstr "Spalte nach Markierung einfügen"
5554
+
5555
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:116
5556
+ msgid "Add column right"
5557
+ msgstr "Spalte rechts einfügen"
5558
+
5559
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:121
5560
+ msgid "Remove column/columns"
5561
+ msgstr "Spalte / Spalten entfernen"
5562
+
5563
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:130
5564
+ msgid "Manage rows"
5565
+ msgstr "Zeilen verwalten"
5566
+
5567
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:132
5568
+ msgid "Row"
5569
+ msgstr "Zeile"
5570
+
5571
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:136
5572
+ msgid "Add top row"
5573
+ msgstr "Oberste Reihe einfügen"
5574
+
5575
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:141
5576
+ msgid "Insert row before selection"
5577
+ msgstr "Zeile vor Markierung einfügen"
5578
+
5579
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:146
5580
+ msgid "Insert row after selection"
5581
+ msgstr "Zeile nach Markierung einfügen"
5582
+
5583
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:151
5584
+ msgid "Add bottom row"
5585
+ msgstr "Untere Reihe einfügen"
5586
+
5587
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:156
5588
+ msgid "Remove row/rows"
5589
+ msgstr "Zeile / Zeilen entfernen"
5590
+
5591
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:165
5592
+ msgid "Bold"
5593
+ msgstr "Bold"
5594
+
5595
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:169
5596
+ msgid "Italic"
5597
+ msgstr "Italic"
5598
+
5599
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:173
5600
+ msgid "Underline"
5601
+ msgstr "Unterstreichen"
5602
+
5603
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:178
5604
+ msgid "Text Color"
5605
+ msgstr "Textfarbe"
5606
+
5607
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:182
5608
+ msgid "Background Color"
5609
+ msgstr "Hintergrundfarbe"
5610
+
5611
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:189
5612
+ msgid "Horizontal align"
5613
+ msgstr "Horizontal ausrichten"
5614
+
5615
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:196
5616
+ msgid "Align Left"
5617
+ msgstr "Linksbündig ausrichten"
5618
+
5619
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:201
5620
+ msgid "Align Center"
5621
+ msgstr "Zentrieren"
5622
+
5623
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:206
5624
+ msgid "Align Right"
5625
+ msgstr "Rechtsbündig ausrichten"
5626
+
5627
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:211
5628
+ msgid "Align Justify"
5629
+ msgstr "Blocksatz ausrichten"
5630
+
5631
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:226
5632
+ msgid "Vertical Align Middle"
5633
+ msgstr "Vertikale Ausrichtung Mittel"
5634
+
5635
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:231
5636
+ msgid "Vertical Align Top"
5637
+ msgstr "Vertikale Ausrichtung Oben"
5638
+
5639
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:236
5640
+ msgid "Vertical Align Bottom"
5641
+ msgstr "Vertikale Ausrichtung Unterseite"
5642
+
5643
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:244
5644
+ msgid "Text wrapping"
5645
+ msgstr "Textumbruch"
5646
+
5647
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:251
5648
+ msgid "Wrap"
5649
+ msgstr "Wrap"
5650
+
5651
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:256
5652
+ msgid "Overflow"
5653
+ msgstr "Überlauf"
5654
+
5655
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:261
5656
+ msgid "Clip"
5657
+ msgstr "Clip"
5658
+
5659
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:270
5660
+ msgid "Link"
5661
+ msgstr "Link"
5662
+
5663
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:274
5664
+ msgid "Insert Media"
5665
+ msgstr "Medien einfügen"
5666
+
5667
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:290
5668
+ msgid "Clear data"
5669
+ msgstr "Daten löschen"
5670
+
5671
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:321
5672
+ #: templates/admin/table-settings/table_settings_block.inc.php:211
5673
+ #: templates/edit_table.inc.php:58
5674
+ msgid "Table title"
5675
+ msgstr "Tabellentitel"
5676
+
5677
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:329
5678
+ #: templates/admin/table-settings/table_settings_block.inc.php:219
5679
+ #: templates/edit_table.inc.php:67
5680
+ msgid "Show table title"
5681
+ msgstr "Tabellentitel anzeigen"
5682
+
5683
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:333
5684
+ #: templates/admin/table-settings/table_settings_block.inc.php:226
5685
+ msgid ""
5686
+ "Enable this to show the table title in a h3 block above the table, disable "
5687
+ "to hide."
5688
+ msgstr ""
5689
+ "Aktivieren Sie diese Option, um den Tabellentitel in einem h3-Block über der "
5690
+ "Tabelle anzuzeigen, und deaktivieren Sie das Ausblenden."
5691
+
5692
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:341
5693
+ #: templates/admin/table-settings/table_settings_block.inc.php:234
5694
+ msgid "Show table title on the page"
5695
+ msgstr "Tabellentitel auf der Seite anzeigen"
5696
+
5697
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:356
5698
+ msgid "Set Header"
5699
+ msgstr "Kopfzeile setzen"
5700
+
5701
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:360
5702
+ msgid "Enable this to set first row of the table as header."
5703
+ msgstr ""
5704
+ "Aktivieren Sie diese Option, um die erste Zeile der Tabelle als Header "
5705
+ "festzulegen."
5706
+
5707
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:368
5708
+ msgid "Use first row as table header"
5709
+ msgstr "Verwenden Sie die erste Zeile als Tabellenüberschrift"
5710
+
5711
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:375
5712
+ msgid "Stripe table"
5713
+ msgstr "Streifentabelle"
5714
+
5715
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:383
5716
+ msgid "Set Stripe table"
5717
+ msgstr "Streifentabelle setzen"
5718
+
5719
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:387
5720
+ msgid "Enable this to set odds and even classes in table"
5721
+ msgstr ""
5722
+ "Aktivieren Sie diese Option, um ungeraden und geraden Klassen in der Tabelle "
5723
+ "festzulegen"
5724
+
5725
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:395
5726
+ msgid "Set odds and even classes in table"
5727
+ msgstr "Ungeraden und geraden Klassen setzen"
5728
+
5729
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:404
5730
+ msgid "Cell padding (in px)"
5731
+ msgstr "Zell padding (in px)"
5732
+
5733
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:406
5734
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:575
5735
+ msgid ""
5736
+ "Here you can provide number of the padding size for cell in table without "
5737
+ "inserting px."
5738
+ msgstr ""
5739
+ "Hier können Sie die Nummer der Paddinggröße für die Zelle in der Tabelle "
5740
+ "angeben, ohne px einzufügen."
5741
+
5742
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:436
5743
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:444
5744
+ msgid "Basic responsive"
5745
+ msgstr "Basic responsiv"
5746
+
5747
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:448
5748
+ msgid ""
5749
+ "Enable this to enable responsive mode on tablet and mobile devices.<br> All "
5750
+ "cells will be shown in one column. If option \"Header\" on Display tab in "
5751
+ "turn on, then table will be shown in two columns. First column will be "
5752
+ "repeated first row from table(column headers) and in second column will be "
5753
+ "shown transpose other row data."
5754
+ msgstr ""
5755
+ "Aktivieren Sie diese Option, um den responsiven Modus auf Tablets und "
5756
+ "Mobilgeräten zu aktivieren. <br> Alle Zellen werden in einer Spalte "
5757
+ "angezeigt. Wenn die Option \"Kopfzeile\" auf der Registerkarte \"Anzeige\" "
5758
+ "aktiviert ist, wird die Tabelle in zwei Spalten angezeigt. Die erste Spalte "
5759
+ "wird in der ersten Zeile der Tabelle (Spaltenüberschriften) wiederholt und "
5760
+ "in der zweiten Spalte werden andere Zeilendaten transponiert."
5761
+
5762
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:456
5763
+ msgid "Enable responsive mode"
5764
+ msgstr "Responsiv Modus aktivieren"
5765
+
5766
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:463
5767
+ #: templates/edit_table.inc.php:311
5768
+ msgid "Scrollable"
5769
+ msgstr "Bildlaufleiste"
5770
+
5771
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:471
5772
+ #: templates/admin/table-settings/table_settings_block.inc.php:378
5773
+ msgid "Scrollable table"
5774
+ msgstr "Bildlaufleiste Tabelle"
5775
+
5776
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:475
5777
+ #: templates/admin/table-settings/table_settings_block.inc.php:385
5778
+ msgid "Enable this to enable a horizontal scrollbar below the table."
5779
+ msgstr ""
5780
+ "Aktivieren Sie diese Option, um eine horizontale Bildlaufleiste unter der "
5781
+ "Tabelle zu aktivieren."
5782
+
5783
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:483
5784
+ #: templates/admin/table-settings/table_settings_block.inc.php:394
5785
+ msgid "Show a horizontal scrollbar"
5786
+ msgstr "Horizontale Bildlaufleiste anzeigen"
5787
+
5788
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:490
5789
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:498
5790
+ #: templates/admin/table-settings/table_settings_block.inc.php:438
5791
+ #: templates/admin/table-settings/table_settings_block.inc.php:446
5792
+ msgid "Limit table width"
5793
+ msgstr "Tabellenbreite begrenzen"
5794
+
5795
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:502
5796
+ #: templates/admin/table-settings/table_settings_block.inc.php:453
5797
+ msgid "Enable this to restrict table width to page width."
5798
+ msgstr ""
5799
+ "Aktivieren Sie diese Option, um die Tabellenbreite auf die Seitenbreite zu "
5800
+ "beschränken."
5801
+
5802
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:510
5803
+ #: templates/admin/table-settings/table_settings_block.inc.php:462
5804
+ msgid "Limit table width to page width"
5805
+ msgstr "Tabellenbreite auf die Seitenbreite begrenzen"
5806
+
5807
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:517
5808
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:525
5809
+ #: templates/admin/table-settings/table_settings_block.inc.php:469
5810
+ #: templates/admin/table-settings/table_settings_block.inc.php:477
5811
+ #: templates/edit_table.inc.php:392
5812
+ msgid "Word wrap"
5813
+ msgstr "Wortumbruch"
5814
+
5815
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:529
5816
+ #: templates/admin/table-settings/table_settings_block.inc.php:484
5817
+ msgid ""
5818
+ "Enable this to wrap long strings into multiple lines and stretch the cells "
5819
+ "height."
5820
+ msgstr ""
5821
+ "Aktivieren Sie diese Option, um lange Strings in mehrere Zeilen "
5822
+ "einzuschließen und die Zellenhöhe zu verlängern."
5823
+
5824
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:537
5825
+ #: templates/admin/table-settings/table_settings_block.inc.php:492
5826
+ msgid "Wrap words to newlines"
5827
+ msgstr "Wortumbruch in neue Zeilen einfügen"
5828
+
5829
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:546
5830
+ msgid "Vertical scroll"
5831
+ msgstr "Senkrechte Bildlaufleiste"
5832
+
5833
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:554
5834
+ msgid "Add Vertical scroll"
5835
+ msgstr "Senkrechte Bildlaufleiste einfügen"
5836
+
5837
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:558
5838
+ msgid "Enable this to enable a vertical scrollbar in the table."
5839
+ msgstr ""
5840
+ "Aktivieren Sie diese Option, um eine senkrechte Bildlaufleiste in der "
5841
+ "Tabelle zu aktivieren."
5842
+
5843
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:566
5844
+ msgid "Show a vertical scrollbar"
5845
+ msgstr "Senkrechte Bildlaufleiste anzeigen"
5846
+
5847
+ #: templates/admin/table-settings/simple_table_settings_block.inc.php:573
5848
+ msgid "Vertical scroll height"
5849
+ msgstr "Vertikale Bildlaufhöhe"
5850
+
5851
+ #: templates/admin/table-settings/table_preview_block.inc.php:19
5852
+ msgid "Table preview and columns setup"
5853
+ msgstr "Tabellenvorschau und Spalteneinrichtung"
5854
+
5855
+ #: templates/admin/table-settings/table_preview_block.inc.php:28
5856
+ msgid "Complete column list"
5857
+ msgstr "Vollständige Spaltenliste"
5858
+
5859
+ #: templates/admin/table-settings/table_preview_block.inc.php:31
5860
+ msgid "Column List"
5861
+ msgstr "Spaltenliste"
5862
+
5863
+ #: templates/admin/table-settings/table_preview_block.inc.php:38
5864
+ msgid "Remove column"
5865
+ msgstr "Spalte entfernen"
5866
+
5867
+ #: templates/admin/table-settings/table_preview_block.inc.php:44
5868
+ msgid "Add a Formula Column"
5869
+ msgstr "Fügen Sie eine Formelspalte hinzu"
5870
+
5871
+ #: templates/admin/table-settings/table_preview_block.inc.php:49
5872
+ msgid "Add column"
5873
+ msgstr "Spalte hinzufügen"
5874
+
5875
+ #: templates/admin/table-settings/table_preview_block.inc.php:57
5876
+ msgid "Switch View:"
5877
+ msgstr ""
5878
+
5879
+ #: templates/admin/table-settings/table_preview_block.inc.php:59
5880
+ #: templates/admin/table-settings/table_preview_block.inc.php:62
5881
+ msgid "STANDARD"
5882
+ msgstr ""
5883
+
5884
+ #: templates/admin/table-settings/table_preview_block.inc.php:60
5885
+ #: templates/admin/table-settings/table_preview_block.inc.php:63
5886
+ msgid "EXCEL-LIKE"
5887
+ msgstr ""
5888
+
5889
+ #: templates/admin/table-settings/table_settings_block.inc.php:68
5890
+ msgid "Sorting and filtering"
5891
+ msgstr "Sortieren und Filtern"
5892
+
5893
+ #: templates/admin/table-settings/table_settings_block.inc.php:76
5894
+ #: templates/admin/table-settings/table_settings_block.inc.php:1009
5895
+ msgid "Table Tools"
5896
+ msgstr "Tabellen-Tools"
5897
+
5898
+ #: templates/admin/table-settings/table_settings_block.inc.php:84
5899
+ msgid " Customize"
5900
+ msgstr ""
5901
+
5902
+ #: templates/admin/table-settings/table_settings_block.inc.php:103
5903
+ msgid ""
5904
+ "Please choose a type of the input data source - it can be a MySQL query, a "
5905
+ "file, or an URL. Only MySQL query-based tables can use server-side processing"
5906
+ msgstr ""
5907
+ "Bitte wählen Sie einen Typ der Eingabedatenquelle aus - dies kann eine MySQL-"
5908
+ "Abfrage, eine Datei oder eine URL sein. Nur auf MySQL-Abfragen basierende "
5909
+ "Tabellen können die serverseitige Verarbeitung verwenden"
5910
+
5911
+ #: templates/admin/table-settings/table_settings_block.inc.php:110
5912
+ msgid "Select a data source type"
5913
+ msgstr "Wählen Sie einen Datenquellentyp"
5914
+
5915
+ #: templates/admin/table-settings/table_settings_block.inc.php:112
5916
+ msgid "SQL query "
5917
+ msgstr ""
5918
+
5919
+ #: templates/admin/table-settings/table_settings_block.inc.php:113
5920
+ #: templates/edit_table.inc.php:85
5921
+ msgid "CSV file"
5922
+ msgstr "CSV-Datei"
5923
+
5924
+ #: templates/admin/table-settings/table_settings_block.inc.php:114
5925
+ #: templates/edit_table.inc.php:86
5926
+ msgid "Excel file"
5927
+ msgstr "Excel-Datei"
5928
+
5929
+ #: templates/admin/table-settings/table_settings_block.inc.php:117
5930
+ msgid "Google Spreadsheet "
5931
+ msgstr ""
5932
+
5933
+ #: templates/admin/table-settings/table_settings_block.inc.php:118
5934
+ #: templates/edit_table.inc.php:89
5935
+ msgid "XML file"
5936
+ msgstr "XML-Datei"
5937
+
5938
+ #: templates/admin/table-settings/table_settings_block.inc.php:119
5939
+ #: templates/edit_table.inc.php:90
5940
+ msgid "JSON file"
5941
+ msgstr "JSON-Datei"
5942
+
5943
+ #: templates/admin/table-settings/table_settings_block.inc.php:133
5944
+ msgid ""
5945
+ "Upload your file or provide the full URL here. For CSV or Excel input "
5946
+ "sources only URLs or paths from same domain are supported. For Google "
5947
+ "Spreadsheets: please do not forget to publish the spreadsheet before pasting "
5948
+ "the URL."
5949
+ msgstr ""
5950
+ "Laden Sie Ihre Datei hoch oder geben Sie hier die vollständige URL an. Für "
5951
+ "CSV- oder Excel-Eingabequellen werden nur URLs oder Pfade aus derselben "
5952
+ "Domäne unterstützt. Für Google-Tabellen: Vergessen Sie nicht, die Tabelle zu "
5953
+ "veröffentlichen, bevor Sie die URL einfügen."
5954
+
5955
+ #: templates/admin/table-settings/table_settings_block.inc.php:139
5956
+ msgid "Paste URL or path, or click Browse to choose"
5957
+ msgstr ""
5958
+ "Fügen Sie eine URL oder einen Pfad ein oder klicken Sie auf Durchsuchen, um "
5959
+ "eine Auswahl zu treffen"
5960
+
5961
+ #: templates/admin/table-settings/table_settings_block.inc.php:143
5962
+ msgid "Browse..."
5963
+ msgstr "Durchsuche..."
5964
+
5965
+ #: templates/admin/table-settings/table_settings_block.inc.php:155
5966
+ msgid ""
5967
+ "If it is turned on, all sorting, filtering, pagination and other data "
5968
+ "interaction will be done by MySQL server. This feature is recommended if you "
5969
+ "have more than 2000-3000 rows. Mandatory for editable tables."
5970
+ msgstr ""
5971
+ "Wenn es aktiviert ist, werden alle Sortierungen, Filterungen, Paginierungen "
5972
+ "und sonstigen Dateninteraktionen vom MySQL-Server durchgeführt. Diese "
5973
+ "Funktion wird empfohlen, wenn Sie mehr als 2000-3000 Zeilen haben. "
5974
+ "Obligatorisch für bearbeitbare Tabellen."
5975
+
5976
+ #: templates/admin/table-settings/table_settings_block.inc.php:162
5977
+ msgid "Enable server-side processing"
5978
+ msgstr "Aktivieren Sie die serverseitige Verarbeitung"
5979
+
5980
+ #: templates/admin/table-settings/table_settings_block.inc.php:177
5981
+ msgid "MySQL Query"
5982
+ msgstr ""
5983
+
5984
+ #: templates/admin/table-settings/table_settings_block.inc.php:179
5985
+ msgid ""
5986
+ "Enter the text of your MySQL query here - please make sure it returns actual "
5987
+ "data first. You can use a number of placeholders to make the dataset in the "
5988
+ "table flexible and be able to return different sets of data by calling it "
5989
+ "with different shortcodes."
5990
+ msgstr ""
5991
+
5992
+ #: templates/admin/table-settings/table_settings_block.inc.php:186
5993
+ #: templates/edit_table.inc.php:292
5994
+ msgid "Auto-refresh"
5995
+ msgstr "Automatische Aktualisierung"
5996
+
5997
+ #: templates/admin/table-settings/table_settings_block.inc.php:188
5998
+ msgid ""
5999
+ "If you enter a non-zero value, table will auto-refresh to show actual data "
6000
+ "with a given interval of seconds. Leave zero or empty not to use auto-"
6001
+ "refresh."
6002
+ msgstr ""
6003
+ "Wenn Sie einen Wert ungleich Null eingeben, wird die Tabelle automatisch "
6004
+ "aktualisiert, um die tatsächlichen Daten mit einem bestimmten "
6005
+ "Sekundenintervall anzuzeigen. Lassen Sie Null oder leer, um die automatische "
6006
+ "Aktualisierung nicht zu verwenden."
6007
+
6008
+ #: templates/admin/table-settings/table_settings_block.inc.php:193
6009
+ msgid "Auto-refresh interval in seconds (zero or blank to disable)"
6010
+ msgstr ""
6011
+ "Intervall für die automatische Aktualisierung in Sekunden (Null oder leer "
6012
+ "zum Deaktivieren)"
6013
+
6014
+ #: templates/admin/table-settings/table_settings_block.inc.php:242
6015
+ msgid "Responsiveness"
6016
+ msgstr "Reaktionsfähigkeit"
6017
+
6018
+ #: templates/admin/table-settings/table_settings_block.inc.php:250
6019
+ msgid "Responsive design"
6020
+ msgstr "Responsive Design"
6021
+
6022
+ #: templates/admin/table-settings/table_settings_block.inc.php:257
6023
+ msgid "Enable this to allow responsiveness in the table."
6024
+ msgstr ""
6025
+ "Aktivieren Sie diese Option, um die Reaktionsfähigkeit in der Tabelle zu "
6026
+ "ermöglichen."
6027
+
6028
+ #: templates/admin/table-settings/table_settings_block.inc.php:258
6029
+ msgid ""
6030
+ "Please do not forget to define which columns will be hidden on mobiles and "
6031
+ "tablets in the column settings!"
6032
+ msgstr ""
6033
+ "Bitte vergessen Sie nicht, in den Spalteneinstellungen festzulegen, welche "
6034
+ "Spalten auf Handys und Tablets ausgeblendet werden sollen!"
6035
+
6036
+ #: templates/admin/table-settings/table_settings_block.inc.php:269
6037
+ msgid "Allow collapsing on mobiles and tablets"
6038
+ msgstr "Auf Handys und Tablets ausblenden zulassen"
6039
+
6040
+ #: templates/admin/table-settings/table_settings_block.inc.php:277
6041
+ msgid "Hide until loaded"
6042
+ msgstr "Ausblenden bis geladen"
6043
+
6044
+ #: templates/admin/table-settings/table_settings_block.inc.php:279
6045
+ msgid ""
6046
+ "Enable to make whole table hidden until it is initialized to prevent "
6047
+ "unformatted data flashing"
6048
+ msgstr ""
6049
+ "Aktivieren Sie diese Option, um die gesamte Tabelle bis zur Initialisierung "
6050
+ "auszublenden, um zu verhindern, dass unformatierte Daten blinken"
6051
+
6052
+ #: templates/admin/table-settings/table_settings_block.inc.php:284
6053
+ msgid "Hide the table before it is fully loaded"
6054
+ msgstr "Blenden Sie die Tabelle aus, bevor sie vollständig geladen ist"
6055
+
6056
+ #: templates/admin/table-settings/table_settings_block.inc.php:296
6057
+ msgid "Default rows per page"
6058
+ msgstr "Standardzeilen pro Seite"
6059
+
6060
+ #: templates/admin/table-settings/table_settings_block.inc.php:304
6061
+ #: templates/admin/table-settings/table_settings_block.inc.php:339
6062
+ msgid "Rows per page"
6063
+ msgstr "Zeilen pro Seite"
6064
+
6065
+ #: templates/admin/table-settings/table_settings_block.inc.php:311
6066
+ msgid "How many rows to show per page by default."
6067
+ msgstr "Wie viele Zeilen pro Seite standardmäßig angezeigt werden sollen."
6068
+
6069
+ #: templates/admin/table-settings/table_settings_block.inc.php:347
6070
+ msgid "Show X entries"
6071
+ msgstr "X Einträge anzeigen"
6072
+
6073
+ #: templates/admin/table-settings/table_settings_block.inc.php:354
6074
+ msgid ""
6075
+ "Enable/disable this to show/hide \"Show X entries\" per page dropdown on the "
6076
+ "frontend."
6077
+ msgstr ""
6078
+ "Aktivieren / Deaktivieren Sie diese Option, um \"X-Einträge anzeigen\" pro "
6079
+ "Dropdown-Seite im Frontend anzuzeigen / auszublenden."
6080
+
6081
+ #: templates/admin/table-settings/table_settings_block.inc.php:362
6082
+ msgid "Show \"Show X entries\" dropdown"
6083
+ msgstr "Dropdown-Liste \"X-Einträge anzeigen\" anzeigen"
6084
+
6085
+ #: templates/admin/table-settings/table_settings_block.inc.php:386
6086
+ msgid "This should be turned off if you want to set columns width manually."
6087
+ msgstr ""
6088
+ "Dies sollte deaktiviert werden, wenn Sie die Spaltenbreite manuell "
6089
+ "einstellen möchten."
6090
+
6091
+ #: templates/admin/table-settings/table_settings_block.inc.php:407
6092
+ #: templates/admin/table-settings/table_settings_block.inc.php:415
6093
+ msgid "Info block"
6094
+ msgstr "Infoblock"
6095
+
6096
+ #: templates/admin/table-settings/table_settings_block.inc.php:422
6097
+ msgid ""
6098
+ "Enable to show a block of information about the number of records below the "
6099
+ "table."
6100
+ msgstr ""
6101
+ "Aktivieren Sie diese Option, um einen Informationsblock über die Anzahl der "
6102
+ "Datensätze unterhalb der Tabelle anzuzeigen."
6103
+
6104
+ #: templates/admin/table-settings/table_settings_block.inc.php:430
6105
+ msgid "Show information block below the table"
6106
+ msgstr "Informationsblock unter der Tabelle anzeigen"
6107
+
6108
+ #: templates/admin/table-settings/table_settings_block.inc.php:454
6109
+ msgid ""
6110
+ "This should be turned on if you want to set columns width manually. Should "
6111
+ "be on to use word wrapping."
6112
+ msgstr ""
6113
+ "Dies sollte aktiviert sein, wenn Sie die Spaltenbreite manuell einstellen "
6114
+ "möchten. Sollte aktiviert sein, um Zeilenumbruch zu verwenden."
6115
+
6116
+ #: templates/admin/table-settings/table_settings_block.inc.php:516
6117
+ msgid "Enable to show a pagination"
6118
+ msgstr "Aktivieren Sie diese Option, um eine Paginierung anzuzeigen"
6119
+
6120
+ #: templates/admin/table-settings/table_settings_block.inc.php:524
6121
+ msgid "Show pagination block below the table"
6122
+ msgstr "Paginierungsblock unter der Tabelle anzeigen"
6123
+
6124
+ #: templates/admin/table-settings/table_settings_block.inc.php:532
6125
+ #: templates/admin/table-settings/table_settings_block.inc.php:540
6126
+ msgid "Pagination Alignment"
6127
+ msgstr "Paginierungsausrichtung"
6128
+
6129
+ #: templates/admin/table-settings/table_settings_block.inc.php:544
6130
+ msgid "Here you can set pagination position: right, center or left."
6131
+ msgstr ""
6132
+ "Hier können Sie die Paginierungsposition einstellen: rechts, zentriert oder "
6133
+ "links."
6134
+
6135
+ #: templates/admin/table-settings/table_settings_block.inc.php:552
6136
+ msgid "Right"
6137
+ msgstr "Rechts"
6138
+
6139
+ #: templates/admin/table-settings/table_settings_block.inc.php:553
6140
+ msgid "Center"
6141
+ msgstr "Zentriert"
6142
+
6143
+ #: templates/admin/table-settings/table_settings_block.inc.php:554
6144
+ msgid "Left"
6145
+ msgstr "Links"
6146
+
6147
+ #: templates/admin/table-settings/table_settings_block.inc.php:563
6148
+ #: templates/admin/table-settings/table_settings_block.inc.php:571
6149
+ msgid "Pagination Layout"
6150
+ msgstr "Paginierungslayout"
6151
+
6152
+ #: templates/admin/table-settings/table_settings_block.inc.php:575
6153
+ msgid "Here you can choose between different pagination layout."
6154
+ msgstr "Hier können Sie zwischen verschiedenen Paginierungslayouts wählen."
6155
+
6156
+ #: templates/admin/table-settings/table_settings_block.inc.php:583
6157
+ msgid ""
6158
+ "\"First\", \"Previous\", \"Next\" and \"Last\" buttons, plus page numbers"
6159
+ msgstr ""
6160
+ "Schaltflächen \"Erste\", \"Zurück\", \"Weiter\" und \"Letzte\" sowie "
6161
+ "Seitenzahlen"
6162
+
6163
+ #: templates/admin/table-settings/table_settings_block.inc.php:584
6164
+ msgid "\"Previous\" and \"Next\" buttons only"
6165
+ msgstr "Nur die Schaltflächen \"Zurück\" und \"Weiter\""
6166
+
6167
+ #: templates/admin/table-settings/table_settings_block.inc.php:585
6168
+ msgid "\"Previous\" and \"Next\" buttons, plus page numbers"
6169
+ msgstr "Schaltflächen \"Zurück\" und \"Weiter\" sowie Seitenzahlen"
6170
+
6171
+ #: templates/admin/table-settings/table_settings_block.inc.php:586
6172
+ msgid "\"First\", \"Previous\", \"Next\" and \"Last\" buttons"
6173
+ msgstr "Schaltflächen \"Erste\", \"Zurück\", \"Weiter\" und \"Letzte\""
6174
+
6175
+ #: templates/admin/table-settings/table_settings_block.inc.php:587
6176
+ msgid "Page number buttons only"
6177
+ msgstr "Nur Seitenzahlschaltflächen"
6178
+
6179
+ #: templates/admin/table-settings/table_settings_block.inc.php:588
6180
+ msgid "\"First\" and \"Last\" buttons, plus page numbers"
6181
+ msgstr "Schaltflächen \"Erste\" und \"Letzte\" sowie Seitenzahlen"
6182
+
6183
+ #: templates/admin/table-settings/table_settings_block.inc.php:609
6184
+ msgid "Advanced column filters"
6185
+ msgstr "Erweiterte Spaltenfilter"
6186
+
6187
+ #: templates/admin/table-settings/table_settings_block.inc.php:617
6188
+ msgid "Advanced filter"
6189
+ msgstr "Erweiterter Filter"
6190
+
6191
+ #: templates/admin/table-settings/table_settings_block.inc.php:624
6192
+ msgid ""
6193
+ "Enable to show an advanced filter for each of the columns, filters can be "
6194
+ "shown in table footer, header or in a separate form."
6195
+ msgstr ""
6196
+ "Aktivieren Sie diese Option, um einen erweiterten Filter für jede der "
6197
+ "Spalten anzuzeigen. Filter können in Tabellenfußzeile, Kopfzeile oder in "
6198
+ "einem separaten Formular angezeigt werden."
6199
+
6200
+ #: templates/admin/table-settings/table_settings_block.inc.php:635
6201
+ msgid "Enable advanced column filters"
6202
+ msgstr "Aktivieren Sie erweiterte Spaltenfilter"
6203
+
6204
+ #: templates/admin/table-settings/table_settings_block.inc.php:658
6205
+ msgid ""
6206
+ "If this is enabled, each column header will be clickable; clicking will sort "
6207
+ "the whole table by the content of this column cells ascending or descending."
6208
+ msgstr ""
6209
+ "Wenn dies aktiviert ist, kann jede Spaltenüberschrift angeklickt werden. "
6210
+ "Durch Klicken wird die gesamte Tabelle nach dem Inhalt dieser Spaltenzellen "
6211
+ "aufsteigend oder absteigend sortiert."
6212
+
6213
+ #: templates/admin/table-settings/table_settings_block.inc.php:666
6214
+ msgid "Allow sorting for the table"
6215
+ msgstr "Sortierung für die Tabelle zulassen"
6216
+
6217
+ #: templates/admin/table-settings/table_settings_block.inc.php:674
6218
+ msgid "Main search block"
6219
+ msgstr "Hauptsuchblock"
6220
+
6221
+ #: templates/admin/table-settings/table_settings_block.inc.php:689
6222
+ msgid ""
6223
+ "If this is enabled, a search block will be displayed on the top right of the "
6224
+ "table, allowing to search through whole table with a single input."
6225
+ msgstr ""
6226
+ "Wenn dies aktiviert ist, wird oben rechts in der Tabelle ein Suchblock "
6227
+ "angezeigt, mit dem Sie die gesamte Tabelle mit einer einzigen Eingabe "
6228
+ "durchsuchen können."
6229
+
6230
+ #: templates/admin/table-settings/table_settings_block.inc.php:697
6231
+ msgid "Enable search block"
6232
+ msgstr "Suchblock aktivieren"
6233
+
6234
+ #: templates/admin/table-settings/table_settings_block.inc.php:711
6235
+ msgid "Filters in a form"
6236
+ msgstr "Filter in einem Formular"
6237
+
6238
+ #: templates/admin/table-settings/table_settings_block.inc.php:718
6239
+ #: templates/edit_table.inc.php:340
6240
+ msgid "Filter in form"
6241
+ msgstr "Filter in Formular"
6242
+
6243
+ #: templates/admin/table-settings/table_settings_block.inc.php:725
6244
+ msgid ""
6245
+ "Enable to show the advanced column filter in a form above the table, instead "
6246
+ "of showing in the table footer/header."
6247
+ msgstr ""
6248
+ "Aktivieren Sie diese Option, um den erweiterten Spaltenfilter in einem "
6249
+ "Formular über der Tabelle anzuzeigen, anstatt in der Fußzeile / Kopfzeile "
6250
+ "der Tabelle."
6251
+
6252
+ #: templates/admin/table-settings/table_settings_block.inc.php:734
6253
+ msgid "Show filters in a form above the table"
6254
+ msgstr "Filter in einem Formular über der Tabelle anzeigen"
6255
+
6256
+ #: templates/admin/table-settings/table_settings_block.inc.php:742
6257
+ msgid "Clear filters button"
6258
+ msgstr "Schaltfläche Filter löschen"
6259
+
6260
+ #: templates/admin/table-settings/table_settings_block.inc.php:749
6261
+ #: templates/frontend/filter_form.inc.php:32
6262
+ msgid "Clear filters"
6263
+ msgstr "Filter löschen"
6264
+
6265
+ #: templates/admin/table-settings/table_settings_block.inc.php:753
6266
+ msgid "Enable to show the clear filters button."
6267
+ msgstr ""
6268
+ "Aktivieren Sie diese Option, um die Schaltfläche Filter löschen anzuzeigen."
6269
+
6270
+ #: templates/admin/table-settings/table_settings_block.inc.php:754
6271
+ msgid ""
6272
+ "If filter in form is enabled, clear button will be rendered after the last "
6273
+ "filter."
6274
+ msgstr ""
6275
+ "Wenn der Filter im Formular aktiviert ist, wird nach dem letzten Filter die "
6276
+ "Schaltfläche Löschen gerendert."
6277
+
6278
+ #: templates/admin/table-settings/table_settings_block.inc.php:759
6279
+ msgid ""
6280
+ "Otherwise, clear filter button will be rendered above the table next to "
6281
+ "\"Table Tools\" buttons."
6282
+ msgstr ""
6283
+ "Andernfalls wird die Schaltfläche zum Löschen des Filters über der Tabelle "
6284
+ "neben den Schaltflächen \"Tabellentools\" gerendert."
6285
+
6286
+ #: templates/admin/table-settings/table_settings_block.inc.php:772
6287
+ msgid "Show clear filters button"
6288
+ msgstr "Filter löschen Schaltfläche anzeigen"
6289
+
6290
+ #: templates/admin/table-settings/table_settings_block.inc.php:792
6291
+ msgid "Allow editing"
6292
+ msgstr "Bearbeitung zulassen"
6293
+
6294
+ #: templates/admin/table-settings/table_settings_block.inc.php:800
6295
+ #: templates/edit_table.inc.php:180
6296
+ msgid "Front-end editing"
6297
+ msgstr "Front-end-Bearbeitung"
6298
+
6299
+ #: templates/admin/table-settings/table_settings_block.inc.php:807
6300
+ msgid "Allow editing the table from the front-end."
6301
+ msgstr "Ermöglichen Sie das Bearbeiten der Tabelle vom Frontend aus."
6302
+
6303
+ #: templates/admin/table-settings/table_settings_block.inc.php:815
6304
+ msgid "Allow front-end editing"
6305
+ msgstr "Front-end-Bearbeitung zulassen"
6306
+
6307
+ #: templates/admin/table-settings/table_settings_block.inc.php:823
6308
+ msgid "Popover edit block"
6309
+ msgstr "Popover-Bearbeitungsblock"
6310
+
6311
+ #: templates/admin/table-settings/table_settings_block.inc.php:831
6312
+ #: templates/edit_table.inc.php:232
6313
+ msgid "Popover tools"
6314
+ msgstr "Popover-Tools"
6315
+
6316
+ #: templates/admin/table-settings/table_settings_block.inc.php:838
6317
+ msgid ""
6318
+ "If this is enabled, the New, Edit and Delete buttons will appear in a "
6319
+ "popover when you click on any row, instead of Table Tools block above the "
6320
+ "table."
6321
+ msgstr ""
6322
+ "Wenn dies aktiviert ist, werden die Schaltflächen Neu, Bearbeiten und "
6323
+ "Löschen in einem Popover angezeigt, wenn Sie auf eine beliebige Zeile "
6324
+ "klicken, anstatt auf den Block Tabellentools über der Tabelle."
6325
+
6326
+ #: templates/admin/table-settings/table_settings_block.inc.php:846
6327
+ msgid "Editing buttons in a popover"
6328
+ msgstr "Bearbeiten von Schaltflächen in einem Popover"
6329
+
6330
+ #: templates/admin/table-settings/table_settings_block.inc.php:854
6331
+ #: templates/admin/table-settings/table_settings_block.inc.php:862
6332
+ msgid "In-line editing"
6333
+ msgstr "Inline-Bearbeitung"
6334
+
6335
+ #: templates/admin/table-settings/table_settings_block.inc.php:869
6336
+ msgid ""
6337
+ "If this is enabled, front-end users will be able to edit cells by double-"
6338
+ "clicking them, not only with the editor dialog."
6339
+ msgstr ""
6340
+ "Wenn dies aktiviert ist, können die Front-End-Benutzer die Zellen nicht nur "
6341
+ "im Editor-Dialogfeld durch Doppelklicken bearbeiten."
6342
+
6343
+ #: templates/admin/table-settings/table_settings_block.inc.php:877
6344
+ msgid "Allow in-line editing"
6345
+ msgstr "Inline-Bearbeitung zulassen"
6346
+
6347
+ #: templates/admin/table-settings/table_settings_block.inc.php:892
6348
+ #: templates/edit_table.inc.php:192
6349
+ msgid "MySQL table name for editing"
6350
+ msgstr "MySQL-Tabellenname zum Bearbeiten"
6351
+
6352
+ #: templates/admin/table-settings/table_settings_block.inc.php:894
6353
+ msgid ""
6354
+ "Name of the MySQL table which will be updated when edited from front-end."
6355
+ msgstr ""
6356
+ "Name der MySQL-Tabelle, die aktualisiert wird, wenn sie vom Front-End aus "
6357
+ "bearbeitet wird."
6358
+
6359
+ #: templates/admin/table-settings/table_settings_block.inc.php:899
6360
+ msgid "MySQL table name"
6361
+ msgstr "Name der MySQL-Tabelle"
6362
+
6363
+ #: templates/admin/table-settings/table_settings_block.inc.php:908
6364
+ #: templates/edit_table.inc.php:203
6365
+ msgid "ID column for editing"
6366
+ msgstr "ID-Spalte zum Bearbeiten"
6367
+
6368
+ #: templates/admin/table-settings/table_settings_block.inc.php:910
6369
+ msgid ""
6370
+ "Choose the column values from which will be used as row identifiers. MUST be "
6371
+ "a unique auto-increment integer on MySQL side so insert/edit/delete would "
6372
+ "work correctly! wpDataTables will guess the correct column if it is called "
6373
+ "\"id\" or \"ID\" on MySQL side."
6374
+ msgstr ""
6375
+ "Wählen Sie die Spaltenwerte aus, aus denen als Zeilenbezeichner verwendet "
6376
+ "werden sollen. Eine eindeutige Auto-Inkrement-Integer MUSS auf MySQL-Seite "
6377
+ "sein, damit das Einfügen / Bearbeiten / Löschen korrekt funktioniert! "
6378
+ "wpDataTables errät die richtige Spalte, wenn sie auf MySQL-Seite \"id\" oder "
6379
+ "\"ID\" heißt."
6380
+
6381
+ #: templates/admin/table-settings/table_settings_block.inc.php:924
6382
+ #: templates/edit_table.inc.php:267
6383
+ msgid "Editor roles"
6384
+ msgstr "Editor-Rollen"
6385
+
6386
+ #: templates/admin/table-settings/table_settings_block.inc.php:926
6387
+ msgid ""
6388
+ "If you want only specific user roles to be able to edit the table, choose in "
6389
+ "this dropdown. Leave unchecked to allow editing for everyone."
6390
+ msgstr ""
6391
+ "Wenn Sie möchten, dass nur bestimmte Benutzerrollen die Tabelle bearbeiten "
6392
+ "können, wählen Sie in dieser Dropdown-Liste. Lassen Sie das Kontrollkästchen "
6393
+ "deaktiviert, um die Bearbeitung für alle zu ermöglichen."
6394
+
6395
+ #: templates/admin/table-settings/table_settings_block.inc.php:931
6396
+ msgid "Everyone"
6397
+ msgstr "Alle"
6398
+
6399
+ #: templates/admin/table-settings/table_settings_block.inc.php:932
6400
+ msgid "Administrators"
6401
+ msgstr ""
6402
+
6403
+ #: templates/admin/table-settings/table_settings_block.inc.php:933
6404
+ msgid "Editors"
6405
+ msgstr ""
6406
+
6407
+ #: templates/admin/table-settings/table_settings_block.inc.php:934
6408
+ msgid "Authors"
6409
+ msgstr ""
6410
+
6411
+ #: templates/admin/table-settings/table_settings_block.inc.php:935
6412
+ msgid "Contributors"
6413
+ msgstr ""
6414
+
6415
+ #: templates/admin/table-settings/table_settings_block.inc.php:936
6416
+ msgid "Subscribers"
6417
+ msgstr ""
6418
+
6419
+ #: templates/admin/table-settings/table_settings_block.inc.php:951
6420
+ msgid "Users see and edit only own data"
6421
+ msgstr "Benutzer sehen und bearbeiten nur eigene Daten"
6422
+
6423
+ #: templates/admin/table-settings/table_settings_block.inc.php:959
6424
+ msgid "Users see and edit only their own data"
6425
+ msgstr "Benutzer sehen und bearbeiten nur ihre eigenen Daten"
6426
+
6427
+ #: templates/admin/table-settings/table_settings_block.inc.php:966
6428
+ msgid ""
6429
+ "If this is enabled, users will see and edit only the rows that are related "
6430
+ "to them or were created by them (associated using the User ID column)."
6431
+ msgstr ""
6432
+ "Wenn dies aktiviert ist, sehen und bearbeiten Benutzer nur die Zeilen, die "
6433
+ "sich auf sie beziehen oder von ihnen erstellt wurden (über die Spalte "
6434
+ "Benutzer-ID zugeordnet)."
6435
+
6436
+ #: templates/admin/table-settings/table_settings_block.inc.php:974
6437
+ msgid "Limit editing to own data only"
6438
+ msgstr "Bearbeitung nur auf eigene Daten beschränken"
6439
+
6440
+ #: templates/admin/table-settings/table_settings_block.inc.php:982
6441
+ #: templates/edit_table.inc.php:250
6442
+ msgid "User ID column"
6443
+ msgstr "Benutzer-ID-Spalte"
6444
+
6445
+ #: templates/admin/table-settings/table_settings_block.inc.php:984
6446
+ msgid ""
6447
+ "Choose the column values from which will be used as User identifiers. "
6448
+ "References the ID from WordPress Users table (wp_users), MUST be defined as "
6449
+ "an integer on MySQL side."
6450
+ msgstr ""
6451
+ "Wählen Sie die Spaltenwerte aus, aus denen als Benutzerkennungen verwendet "
6452
+ "werden sollen. Verweist auf die ID aus der WordPress-Benutzertabelle "
6453
+ "(wp_users), MUSS auf MySQL-Seite als Integer definiert sein."
6454
+
6455
+ #: templates/admin/table-settings/table_settings_block.inc.php:1017
6456
+ #: templates/edit_table.inc.php:350
6457
+ msgid "Table tools"
6458
+ msgstr "Tabellen Tools"
6459
+
6460
+ #: templates/admin/table-settings/table_settings_block.inc.php:1024
6461
+ msgid ""
6462
+ "If this is enabled, a toolbar with useful tools will be shown above the table"
6463
+ msgstr ""
6464
+ "Wenn dies aktiviert ist, wird über der Tabelle eine Symbolleiste mit "
6465
+ "nützlichen Tools angezeigt"
6466
+
6467
+ #: templates/admin/table-settings/table_settings_block.inc.php:1032
6468
+ msgid "Enable Table Tools"
6469
+ msgstr "Aktivieren Sie die Tabellen Tools"
6470
+
6471
+ #: templates/admin/table-settings/table_settings_block.inc.php:1040
6472
+ msgid "Buttons"
6473
+ msgstr "Schaltflächen"
6474
+
6475
+ #: templates/admin/table-settings/table_settings_block.inc.php:1042
6476
+ msgid "Choose which buttons to show in the Table Tools block."
6477
+ msgstr ""
6478
+ "Wählen Sie aus, welche Schaltflächen im Block Tabellen Tools angezeigt "
6479
+ "werden sollen."
6480
+
6481
+ #: templates/admin/table-settings/table_settings_block.inc.php:1048
6482
+ msgid "Columns visibility"
6483
+ msgstr "Spalten Sichtbarkeit"
6484
+
6485
+ #: templates/admin/table-settings/table_settings_block.inc.php:1080
6486
+ msgid ""
6487
+ "Placeholders can be understood as predefined ‘search and replace‘ templates; "
6488
+ "that will be replaced with some actual values at the execution time; usually "
6489
+ "this is used for SQL queries, but you can use it for filtering and editing "
6490
+ "for manual tables and only filtering for tables created from XML, JSON, "
6491
+ "Excel, CSV, Google Spreadsheet and PHP Serialized array."
6492
+ msgstr ""
6493
+
6494
+ #: templates/admin/table-settings/table_settings_block.inc.php:1094
6495
+ #: templates/admin/table-settings/table_settings_block.inc.php:1109
6496
+ #: templates/admin/table-settings/table_settings_block.inc.php:1124
6497
+ msgid ""
6498
+ "This placeholder will be replaced with any value that you will provide in a "
6499
+ "shortcode. Provide a default value here that will be used for table "
6500
+ "generation and when a different one is not defined in the shortcode."
6501
+ msgstr ""
6502
+ "Dieser Platzhalter wird durch einen Wert ersetzt, den Sie in einem Shortcode "
6503
+ "angeben. Geben Sie hier einen Standardwert an, der für die "
6504
+ "Tabellengenerierung verwendet wird und wenn im Shortcode kein anderer "
6505
+ "definiert ist."
6506
+
6507
+ #: templates/admin/table-settings/table_settings_block.inc.php:1099
6508
+ #: templates/admin/table-settings/table_settings_block.inc.php:1114
6509
+ #: templates/admin/table-settings/table_settings_block.inc.php:1129
6510
+ #: templates/admin/table-settings/table_settings_block.inc.php:1152
6511
+ #: templates/admin/table-settings/table_settings_block.inc.php:1170
6512
+ #: templates/admin/table-settings/table_settings_block.inc.php:1188
6513
+ #: templates/admin/table-settings/table_settings_block.inc.php:1210
6514
+ #: templates/admin/table-settings/table_settings_block.inc.php:1228
6515
+ #: templates/admin/table-settings/table_settings_block.inc.php:1246
6516
+ #: templates/admin/table-settings/table_settings_block.inc.php:1271
6517
+ #: templates/admin/table-settings/table_settings_block.inc.php:1291
6518
+ #: templates/admin/table-settings/table_settings_block.inc.php:1310
6519
+ #: templates/admin/table-settings/table_settings_block.inc.php:1332
6520
+ msgid "Default for table generation"
6521
+ msgstr "Standard für die Tabellengenerierung"
6522
+
6523
+ #: templates/admin/table-settings/table_settings_block.inc.php:1145
6524
+ msgid ""
6525
+ "This placeholder will be replaced with the ID of currently logged in user. "
6526
+ "Provide a value here to be used for table generation"
6527
+ msgstr ""
6528
+ "Dieser Platzhalter wird durch die ID des aktuell angemeldeten Benutzers "
6529
+ "ersetzt. Geben Sie hier einen Wert an, der für die Tabellengenerierung "
6530
+ "verwendet werden soll"
6531
+
6532
+ #: templates/admin/table-settings/table_settings_block.inc.php:1162
6533
+ msgid ""
6534
+ "This placeholder will be replaced with the login of currently logged in "
6535
+ "user. Provide a value here to be used for table generation"
6536
+ msgstr ""
6537
+ "Dieser Platzhalter wird durch die Anmeldung des aktuell angemeldeten "
6538
+ "Benutzers ersetzt. Geben Sie hier einen Wert an, der für die "
6539
+ "Tabellengenerierung verwendet werden soll"
6540
+
6541
+ #: templates/admin/table-settings/table_settings_block.inc.php:1180
6542
+ msgid ""
6543
+ "This placeholder will be replaced with the Email of currently logged in "
6544
+ "user. Provide a value here to be used for table generation"
6545
+ msgstr ""
6546
+ "Dieser Platzhalter wird durch die E-Mail des aktuell angemeldeten Benutzers "
6547
+ "ersetzt. Geben Sie hier einen Wert an, der für die Tabellengenerierung "
6548
+ "verwendet werden soll"
6549
+
6550
+ #: templates/admin/table-settings/table_settings_block.inc.php:1204
6551
+ msgid ""
6552
+ "This placeholder will be replaced with the ID of current post. Provide a "
6553
+ "value here to be used for table generation"
6554
+ msgstr ""
6555
+ "Dieser Platzhalter wird durch die ID des aktuellen Beitrags ersetzt. Geben "
6556
+ "Sie hier einen Wert an, der für die Tabellengenerierung verwendet werden soll"
6557
+
6558
+ #: templates/admin/table-settings/table_settings_block.inc.php:1220
6559
+ msgid ""
6560
+ "This placeholder will be replaced with the First Name of currently logged in "
6561
+ "user. Provide a value here to be used for table generation"
6562
+ msgstr ""
6563
+ "Dieser Platzhalter wird durch den Vornamen des aktuell angemeldeten "
6564
+ "Benutzers ersetzt. Geben Sie hier einen Wert an, der für die "
6565
+ "Tabellengenerierung verwendet werden soll"
6566
+
6567
+ #: templates/admin/table-settings/table_settings_block.inc.php:1238
6568
+ msgid ""
6569
+ "This placeholder will be replaced with the Last Name of currently logged in "
6570
+ "user. Provide a value here to be used for table generation"
6571
+ msgstr ""
6572
+ "Dieser Platzhalter wird durch den Nachnamen des aktuell angemeldeten "
6573
+ "Benutzers ersetzt. Geben Sie hier einen Wert an, der für die "
6574
+ "Tabellengenerierung verwendet werden soll"
6575
+
6576
+ #: templates/admin/table-settings/table_settings_block.inc.php:1262
6577
+ msgid "This placeholder will be replaced with current date."
6578
+ msgstr "Dieser Platzhalter wird durch das aktuelle Datum ersetzt."
6579
+
6580
+ #: templates/admin/table-settings/table_settings_block.inc.php:1281
6581
+ msgid "This placeholder will be replaced with current datetime."
6582
+ msgstr "Dieser Platzhalter wird durch die aktuelle Datum/Uhrzeit ersetzt."
6583
+
6584
+ #: templates/admin/table-settings/table_settings_block.inc.php:1301
6585
+ msgid "This placeholder will be replaced with current time."
6586
+ msgstr "Dieser Platzhalter wird durch die aktuelle Uhrzeit ersetzt."
6587
+
6588
+ #: templates/admin/table-settings/table_settings_block.inc.php:1325
6589
+ msgid ""
6590
+ "This placeholder will be replaced with the current prefix of WordPress "
6591
+ "database. Provide a value here to be used for table generation"
6592
+ msgstr ""
6593
+ "Dieser Platzhalter wird durch das aktuelle Präfix der WordPress-Datenbank "
6594
+ "ersetzt. Geben Sie hier einen Wert an, der für die Tabellengenerierung "
6595
+ "verwendet werden soll"
6596
+
6597
+ #: templates/admin/table-settings/table_settings_block.inc.php:1356
6598
+ msgid ""
6599
+ "In premium version you can customize each table with different skin, font, "
6600
+ "background , colors and lot more. Checkout new table customize settings "
6601
+ "below."
6602
+ msgstr ""
6603
+
6604
+ #: templates/admin/table-settings/table_settings_block.inc.php:1363
6605
+ msgid "Main"
6606
+ msgstr ""
6607
+
6608
+ #: templates/admin/table-settings/table_settings_block.inc.php:1375
6609
+ msgid "Table border"
6610
+ msgstr ""
6611
+
6612
+ #: templates/admin/table-settings/table_settings_block.inc.php:1391
6613
+ msgid "Custom CSS"
6614
+ msgstr ""
6615
+
6616
+ #: templates/admin/table-settings/table_settings_block.inc.php:1716
6617
+ msgid "Remove borders in table header"
6618
+ msgstr ""
6619
+
6620
+ #: templates/admin/table-settings/table_settings_block.inc.php:2028
6621
+ msgid ""
6622
+ "This CSS will be inserted as an inline style block on every page that has "
6623
+ "this wpDataTable."
6624
+ msgstr ""
6625
+
6626
+ #: templates/admin/welcome_page/welcome_page.inc.php:26
6627
+ #: templates/admin/welcome_page/welcome_page.inc.php:333
6628
+ msgid "Go to Dashboard"
6629
+ msgstr "Gehen Sie zum Instrumententafel"
6630
+
6631
+ #: templates/admin/welcome_page/welcome_page.inc.php:48
6632
+ msgid "Welcome to wpDataTables!"
6633
+ msgstr "Willkommen bei wpDataTables!"
6634
+
6635
+ #: templates/admin/welcome_page/welcome_page.inc.php:51
6636
+ msgid "The Best Tables & Charts WordPress Plugin"
6637
+ msgstr "Das beste Tabellen & Diagramme WordPress Plugin"
6638
+
6639
+ #: templates/admin/welcome_page/welcome_page.inc.php:54
6640
+ msgid ""
6641
+ "wpDataTables is a best-selling WordPress table plugin which makes your work "
6642
+ "with tables, charts and data management easy. 40,000+ companies."
6643
+ msgstr ""
6644
+
6645
+ #: templates/admin/welcome_page/welcome_page.inc.php:62
6646
+ msgid "View changelog"
6647
+ msgstr "Änderungsprotokoll anzeigen"
6648
+
6649
+ #: templates/admin/welcome_page/welcome_page.inc.php:85
6650
+ msgid "NEW! Create Simple tables"
6651
+ msgstr "NEU! Erstellen Sie einfache Tabellen"
6652
+
6653
+ #: templates/admin/welcome_page/welcome_page.inc.php:86
6654
+ #: templates/admin/welcome_page/welcome_page.inc.php:97
6655
+ #: templates/admin/welcome_page/welcome_page.inc.php:108
6656
+ msgid "Available in Lite "
6657
+ msgstr ""
6658
+
6659
+ #: templates/admin/welcome_page/welcome_page.inc.php:107
6660
+ msgid "Create charts with Google Charts"
6661
+ msgstr ""
6662
+
6663
+ #: templates/admin/welcome_page/welcome_page.inc.php:125
6664
+ #: templates/admin/welcome_page/welcome_page.inc.php:136
6665
+ #: templates/admin/welcome_page/welcome_page.inc.php:147
6666
+ #: templates/admin/welcome_page/welcome_page.inc.php:164
6667
+ msgid "Available in Premium "
6668
+ msgstr ""
6669
+
6670
+ #: templates/admin/welcome_page/welcome_page.inc.php:176
6671
+ msgid "Getting started with your first table and chart"
6672
+ msgstr "Erste Schritte mit Ihrer ersten Tabelle und Diagramm"
6673
+
6674
+ #: templates/admin/welcome_page/welcome_page.inc.php:179
6675
+ msgid ""
6676
+ "By following the step-by-step instructions in the walkthrough, you can "
6677
+ "easily publish your first table or chart on your website."
6678
+ msgstr ""
6679
+ "Befolgen Sie die Schritt-für-Schritt-Anweisungen in der exemplarischen "
6680
+ "Vorgehensweise, um Ihre erste Tabelle oder Tabelle auf Ihrer Website zu "
6681
+ "veröffentlichen."
6682
+
6683
+ #: templates/admin/welcome_page/welcome_page.inc.php:190
6684
+ msgid "Table and chart wizard"
6685
+ msgstr "Tabellen- und Diagrammassistent"
6686
+
6687
+ #: templates/admin/welcome_page/welcome_page.inc.php:193
6688
+ msgid ""
6689
+ "Through several different tutorials we will show you how to create your "
6690
+ "first table and chart."
6691
+ msgstr ""
6692
+ "In verschiedenen Tutorials zeigen wir Ihnen, wie Sie Ihre erste Tabelle und "
6693
+ "Ihr erstes Diagramm erstellen."
6694
+
6695
+ #: templates/admin/welcome_page/welcome_page.inc.php:197
6696
+ msgid "Start creating"
6697
+ msgstr "Beginnen Sie mit dem Erstellen"
6698
+
6699
+ #: templates/admin/welcome_page/welcome_page.inc.php:207
6700
+ msgid ""
6701
+ "Check out our FAQ section to find the answers to the popular questions about "
6702
+ "plugin functionality and many more."
6703
+ msgstr ""
6704
+
6705
+ #: templates/admin/welcome_page/welcome_page.inc.php:212
6706
+ msgid "View FAQ"
6707
+ msgstr "FAQ anzeigen"
6708
+
6709
+ #: templates/admin/welcome_page/welcome_page.inc.php:222
6710
+ msgid ""
6711
+ "If you need a detailed video and text explanation about every feature in our "
6712
+ "plugin, check out our Documentation."
6713
+ msgstr ""
6714
+ "Wenn Sie eine detaillierte Video- und Texterklärung zu allen Funktionen in "
6715
+ "unserem Plugin benötigen, lesen Sie unsere Dokumentation."
6716
+
6717
+ #: templates/admin/welcome_page/welcome_page.inc.php:239
6718
+ msgid "Check wpDataTables showcase"
6719
+ msgstr "Schauen Sie wpDataTables Showcase an"
6720
+
6721
+ #: templates/admin/welcome_page/welcome_page.inc.php:241
6722
+ msgid "A proper solution for every industry"
6723
+ msgstr "Eine richtige Lösung für jede Branche"
6724
+
6725
+ #: templates/admin/welcome_page/welcome_page.inc.php:244
6726
+ msgid ""
6727
+ "See how our clients use wpDataTables in completely different spheres like "
6728
+ "business, science, education and non-profit organization."
6729
+ msgstr ""
6730
+ "Erfahren Sie, wie unsere Kunden wpDataTables in völlig unterschiedlichen "
6731
+ "Bereichen wie Wirtschaft, Wissenschaft, Bildung und gemeinnützigen "
6732
+ "Organisationen einsetzen."
6733
+
6734
+ #: templates/admin/welcome_page/welcome_page.inc.php:248
6735
+ msgid "View all at wpdatatables.com"
6736
+ msgstr "Alle auf wpdatatables.com anzeigen"
6737
+
6738
+ #: templates/admin/welcome_page/welcome_page.inc.php:264
6739
+ msgid "Statistics Table With Charts"
6740
+ msgstr "Statistiktabelle mit Diagrammen"
6741
+
6742
+ #: templates/admin/welcome_page/welcome_page.inc.php:265
6743
+ msgid "Statistics market"
6744
+ msgstr "Statistikmarkt"
6745
+
6746
+ #: templates/admin/welcome_page/welcome_page.inc.php:274
6747
+ msgid "Cryptocurrencies Rank Table"
6748
+ msgstr "Rangliste der Kryptowährungen"
6749
+
6750
+ #: templates/admin/welcome_page/welcome_page.inc.php:275
6751
+ msgid "Cryptocurrency market"
6752
+ msgstr "Kryptowährungsmarkt"
6753
+
6754
+ #: templates/admin/welcome_page/welcome_page.inc.php:284
6755
+ msgid "Laptop Online Catalog"
6756
+ msgstr "Laptop Online-Katalog"
6757
+
6758
+ #: templates/admin/welcome_page/welcome_page.inc.php:285
6759
+ msgid "Computer sales"
6760
+ msgstr "Computerverkauf"
6761
+
6762
+ #: templates/admin/welcome_page/welcome_page.inc.php:294
6763
+ msgid "Temperature Report - Maximums"
6764
+ msgstr "Temperaturbericht - Höchstwerte"
6765
+
6766
+ #: templates/admin/welcome_page/welcome_page.inc.php:295
6767
+ msgid "Hydrometeorological Institute"
6768
+ msgstr "Hydrometeorologisches Institut"
6769
+
6770
+ #: templates/admin/welcome_page/welcome_page.inc.php:326
6771
+ msgid "Thank you for choosing wpDataTables!"
6772
+ msgstr "Vielen Dank, dass Sie sich für wpDataTables entschieden haben!"
6773
+
6774
+ #: templates/admin/welcome_page/welcome_page.inc.php:329
6775
+ msgid ""
6776
+ "We hope that you will enjoy using our plugin for managing data on your "
6777
+ "website."
6778
+ msgstr ""
6779
+ "Wir wünschen Ihnen viel Spaß beim Verwenden unseres Plugins zum Verwalten "
6780
+ "von Daten auf Ihrer Website."
6781
+
6782
+ #: templates/browse.inc.php:8
6783
+ msgid "Add new"
6784
+ msgstr ""
6785
+
6786
+ #: templates/browse.inc.php:39 templates/browse.inc.php:101
6787
+ msgid "Are you sure"
6788
+ msgstr ""
6789
+
6790
+ #: templates/browse.inc.php:57
6791
+ msgid "copy"
6792
+ msgstr ""
6793
+
6794
+ #: templates/chart_wizard.inc.php:16
6795
+ msgid "wpDataTables documentation on Charts"
6796
+ msgstr ""
6797
+
6798
+ #: templates/chart_wizard.inc.php:17
6799
+ msgid "wpDataTables Chart Wizard"
6800
+ msgstr ""
6801
+
6802
+ #: templates/chart_wizard.inc.php:24 templates/constructor.inc.php:19
6803
+ #: templates/edit_table.inc.php:30 templates/edit_table.inc.php:431
6804
+ #: templates/settings.inc.php:24 templates/settings.inc.php:202
6805
+ #: templates/settings.inc.php:444
6806
+ msgid "Click to toggle"
6807
+ msgstr ""
6808
+
6809
+ #: templates/chart_wizard.inc.php:26
6810
+ msgid "Chart Creation Wizard"
6811
+ msgstr ""
6812
+
6813
+ #: templates/chart_wizard.inc.php:44
6814
+ msgid "Formatting"
6815
+ msgstr ""
6816
+
6817
+ #: templates/chart_wizard.inc.php:59
6818
+ msgid "Chart title, rendering engine and type"
6819
+ msgstr ""
6820
+
6821
+ #: templates/chart_wizard.inc.php:66
6822
+ msgid "What is the title of the chart that you will use to identify it?"
6823
+ msgstr ""
6824
+
6825
+ #: templates/chart_wizard.inc.php:88
6826
+ msgid "Pick a Google chart type"
6827
+ msgstr ""
6828
+
6829
+ #: templates/chart_wizard.inc.php:106
6830
+ msgid "Pick a Highcharts chart type"
6831
+ msgstr ""
6832
+
6833
+ #: templates/common/delete_modal.inc.php:28
6834
+ msgid "Please confirm deletion. There is no undo!"
6835
+ msgstr "Bitte bestätigen Sie die Löschung. Es gibt kein Rückgängigmachen!"
6836
+
6837
+ #: templates/constructor.inc.php:14
6838
+ msgid "wpDataTables documentation on Table Consturctor"
6839
+ msgstr ""
6840
+
6841
+ #: templates/constructor.inc.php:14 templates/edit_table.inc.php:11
6842
+ msgid "if you have some questions or problems."
6843
+ msgstr ""
6844
+
6845
+ #: templates/constructor.inc.php:15
6846
+ msgid "wpDataTable constructor"
6847
+ msgstr ""
6848
+
6849
+ #: templates/constructor.inc.php:21
6850
+ msgid "Table Creation Wizard"
6851
+ msgstr ""
6852
+
6853
+ #: templates/edit_table.inc.php:11
6854
+ msgid "wpDataTables documentation on this page"
6855
+ msgstr ""
6856
+
6857
+ #: templates/edit_table.inc.php:19
6858
+ msgid "To insert the table on your page use the shortcode"
6859
+ msgstr ""
6860
+
6861
+ #: templates/edit_table.inc.php:32
6862
+ msgid "Data source and main settings"
6863
+ msgstr ""
6864
+
6865
+ #: templates/edit_table.inc.php:46
6866
+ msgid "General setup"
6867
+ msgstr ""
6868
+
6869
+ #: templates/edit_table.inc.php:62
6870
+ msgid "If you want to display a header above your table, enter it here"
6871
+ msgstr ""
6872
+
6873
+ #: templates/edit_table.inc.php:71
6874
+ msgid "Uncheck if you do not want to show the table title on the page"
6875
+ msgstr ""
6876
+
6877
+ #: templates/edit_table.inc.php:77
6878
+ msgid "Table type"
6879
+ msgstr ""
6880
+
6881
+ #: templates/edit_table.inc.php:81
6882
+ msgid "Select a table type..."
6883
+ msgstr ""
6884
+
6885
+ #: templates/edit_table.inc.php:83
6886
+ msgid ""
6887
+ "MySQL\n"
6888
+ "\t\t\t\t\t\t\t\t\t\t\t\t\t\tquery"
6889
+ msgstr ""
6890
+
6891
+ #: templates/edit_table.inc.php:93
6892
+ msgid "Choose a type of input source for your table"
6893
+ msgstr ""
6894
+
6895
+ #: templates/edit_table.inc.php:99
6896
+ msgid "Edit data"
6897
+ msgstr "Daten bearbeiten"
6898
+
6899
+ #: templates/edit_table.inc.php:102
6900
+ msgid "Go to editor"
6901
+ msgstr ""
6902
+
6903
+ #: templates/edit_table.inc.php:103
6904
+ msgid "Go to Excel-like editor"
6905
+ msgstr ""
6906
+
6907
+ #: templates/edit_table.inc.php:104
6908
+ msgid "Open the table in back-end editor to modify table data"
6909
+ msgstr ""
6910
+
6911
+ #: templates/edit_table.inc.php:110
6912
+ msgid ""
6913
+ "Enter MySQL SELECT query that will return the data for your wpDataTable. "
6914
+ "Make sure that this query works and returns data. If you are not sure what "
6915
+ "is a MySQL query please consider using Excel data source, or spend some time "
6916
+ "reading MySQL manuals"
6917
+ msgstr ""
6918
+
6919
+ #: templates/edit_table.inc.php:110
6920
+ msgid "MySQL query"
6921
+ msgstr ""
6922
+
6923
+ #: templates/edit_table.inc.php:116
6924
+ msgid ""
6925
+ "Enter the text of your MySQL query here. You can use a number of "
6926
+ "placeholders to make the dataset in the table flexible and be able to return "
6927
+ "different sets of data by calling it with different shortcodes"
6928
+ msgstr ""
6929
+
6930
+ #: templates/edit_table.inc.php:117
6931
+ msgid "MySQL query placeholders (toggle show/hide)"
6932
+ msgstr ""
6933
+
6934
+ #: templates/edit_table.inc.php:121
6935
+ msgid "Placeholder"
6936
+ msgstr ""
6937
+
6938
+ #: templates/edit_table.inc.php:122
6939
+ msgid "Description, example"
6940
+ msgstr ""
6941
+
6942
+ #: templates/edit_table.inc.php:123
6943
+ msgid "Define default for table generation"
6944
+ msgstr ""
6945
+
6946
+ #: templates/edit_table.inc.php:130
6947
+ msgid ""
6948
+ "Returns the numeric value of the currently logged in user ID (wp_users "
6949
+ "table). Returns 0 for non-logged in users. If your current user does not "
6950
+ "have rows in the table you can redefine it here (it will not be stored, used "
6951
+ "only to read the table structure)."
6952
+ msgstr ""
6953
+
6954
+ #: templates/edit_table.inc.php:131
6955
+ msgid "Example: SELECT * FROM mytable WHERE user_id = %CURRENT_USER_ID%"
6956
+ msgstr ""
6957
+
6958
+ #: templates/edit_table.inc.php:138
6959
+ msgid ""
6960
+ "Variable for using in the shortcode. Can be used in filter values. It is "
6961
+ "necessary for wpDataTables to retrieve actual data from the DB at the moment "
6962
+ "of wpDataTable generation to read the columns structure, so make sure the "
6963
+ "query returns something. You can define the default variables values here, "
6964
+ "they will be used for table creation, and as defaults if not defined in "
6965
+ "shortcode."
6966
+ msgstr ""
6967
+
6968
+ #: templates/edit_table.inc.php:139
6969
+ msgid ""
6970
+ "Example: SELECT * FROM mytable WHERE mycolumn >= %VAR1% AND mycolumn <= "
6971
+ "%VAR2%"
6972
+ msgstr ""
6973
+
6974
+ #: templates/edit_table.inc.php:146 templates/edit_table.inc.php:153
6975
+ msgid "Variable for using in the shortcode."
6976
+ msgstr ""
6977
+
6978
+ #: templates/edit_table.inc.php:160
6979
+ msgid ""
6980
+ "Prefix of the current WordPress DB installation. Defaults to \"wp_\", but "
6981
+ "may be different if defined so in WordPress config."
6982
+ msgstr ""
6983
+
6984
+ #: templates/edit_table.inc.php:170
6985
+ msgid "Input file or URL"
6986
+ msgstr ""
6987
+
6988
+ #: templates/edit_table.inc.php:175
6989
+ msgid "Upload your file or provide the full URL here"
6990
+ msgstr ""
6991
+
6992
+ #: templates/edit_table.inc.php:175
6993
+ msgid ""
6994
+ "It is allowed to use placeholders (variables) in URLs. Read about "
6995
+ "placeholders "
6996
+ msgstr ""
6997
+
6998
+ #: templates/edit_table.inc.php:175
6999
+ msgid "here."
7000
+ msgstr "hier."
7001
+
7002
+ #: templates/edit_table.inc.php:175
7003
+ msgid "For CSV or Excel input sources only uploaded files are supported"
7004
+ msgstr ""
7005
+
7006
+ #: templates/edit_table.inc.php:175
7007
+ msgid ""
7008
+ "For Google Spreadsheets: please do not forget to publish the spreadsheet "
7009
+ "before pasting the URL"
7010
+ msgstr ""
7011
+
7012
+ #: templates/edit_table.inc.php:186
7013
+ msgid "Make table editable from the front-end"
7014
+ msgstr ""
7015
+
7016
+ #: templates/edit_table.inc.php:186
7017
+ msgid ""
7018
+ "Works only for MySQL-based tables with server-side processing, and can only "
7019
+ "update one table on MySQL side"
7020
+ msgstr ""
7021
+
7022
+ #: templates/edit_table.inc.php:187
7023
+ msgid ""
7024
+ "Please save the table first so wpDataTables would read the columns data so "
7025
+ "that feature would become available."
7026
+ msgstr ""
7027
+
7028
+ #: templates/edit_table.inc.php:198
7029
+ msgid "Name of the MySQL table which will be used for updates from front-end"
7030
+ msgstr ""
7031
+
7032
+ #: templates/edit_table.inc.php:207 templates/edit_table.inc.php:254
7033
+ msgid ""
7034
+ "Please save the table first so wpDataTables would initialize the columns"
7035
+ msgstr ""
7036
+
7037
+ #: templates/edit_table.inc.php:210
7038
+ msgid "Please choose an ID column for editing..."
7039
+ msgstr ""
7040
+
7041
+ #: templates/edit_table.inc.php:217
7042
+ msgid ""
7043
+ "Please choose a column, values from which will be used as row unique "
7044
+ "identifier. MUST be auto-increment integer on MySQL side so insert/edit/"
7045
+ "delete would work correctly!"
7046
+ msgstr ""
7047
+
7048
+ #: templates/edit_table.inc.php:218
7049
+ msgid ""
7050
+ "wpDataTables will guess the correct column if it is called \"id\" or \"ID\" "
7051
+ "on MySQL side"
7052
+ msgstr ""
7053
+
7054
+ #: templates/edit_table.inc.php:223
7055
+ msgid "Inline editing"
7056
+ msgstr ""
7057
+
7058
+ #: templates/edit_table.inc.php:227
7059
+ msgid ""
7060
+ "Check this checkbox if you would like to be able to edit the table data "
7061
+ "inline, by double-clicking a cell, not only in a modal dialog"
7062
+ msgstr ""
7063
+
7064
+ #: templates/edit_table.inc.php:236
7065
+ msgid ""
7066
+ "Check this checkbox if you would like to get the New, Edit and Delete "
7067
+ "buttons in a popover on click on a table row, instead of in TableTools block "
7068
+ "above the table"
7069
+ msgstr ""
7070
+
7071
+ #: templates/edit_table.inc.php:241
7072
+ msgid "Users see and edit only their data"
7073
+ msgstr ""
7074
+
7075
+ #: templates/edit_table.inc.php:245
7076
+ msgid "Limit editing to user's own data only"
7077
+ msgstr ""
7078
+
7079
+ #: templates/edit_table.inc.php:245
7080
+ msgid ""
7081
+ "Set this to checked if you would like front-end users to see and edit only "
7082
+ "their own data, i.e. rows with their WordPress user ID"
7083
+ msgstr ""
7084
+
7085
+ #: templates/edit_table.inc.php:257
7086
+ msgid "Please choose a user ID column..."
7087
+ msgstr ""
7088
+
7089
+ #: templates/edit_table.inc.php:271
7090
+ msgid "Choose roles"
7091
+ msgstr ""
7092
+
7093
+ #: templates/edit_table.inc.php:272
7094
+ msgid ""
7095
+ "Roles which are allowed to edit the table (leave blank to alllow editing for "
7096
+ "everyone)"
7097
+ msgstr ""
7098
+
7099
+ #: templates/edit_table.inc.php:277
7100
+ msgid "Additional settings"
7101
+ msgstr ""
7102
+
7103
+ #: templates/edit_table.inc.php:287
7104
+ msgid ""
7105
+ "Server-side processing for MySQL-based tables. Required for front-end editing"
7106
+ msgstr ""
7107
+
7108
+ #: templates/edit_table.inc.php:296
7109
+ msgid ""
7110
+ "Auto-refresh interval in seconds for tables with server-side processing. "
7111
+ "Leave blank or zero to disable auto-refresh."
7112
+ msgstr ""
7113
+
7114
+ #: templates/edit_table.inc.php:306
7115
+ msgid ""
7116
+ "Check this checkbox if you would like this table to be responsive - display "
7117
+ "differently on desktops, tablets and mobiles"
7118
+ msgstr ""
7119
+
7120
+ #: templates/edit_table.inc.php:315
7121
+ msgid ""
7122
+ "Check this checkbox if you would like this table to be horizontal scrollable"
7123
+ msgstr ""
7124
+
7125
+ #: templates/edit_table.inc.php:320
7126
+ msgid "Hide table until page is completely loaded"
7127
+ msgstr ""
7128
+
7129
+ #: templates/edit_table.inc.php:324
7130
+ msgid ""
7131
+ "Check this checkbox if you would prevent table from showing until the page "
7132
+ "loads completely. May be useful for slowly loading pages"
7133
+ msgstr ""
7134
+
7135
+ #: templates/edit_table.inc.php:335
7136
+ msgid ""
7137
+ "Check this checkbox if you would like to have a filter below each column"
7138
+ msgstr ""
7139
+
7140
+ #: templates/edit_table.inc.php:345
7141
+ msgid ""
7142
+ "Check this checkbox if you would like to have the advanced filter in a form"
7143
+ msgstr ""
7144
+
7145
+ #: templates/edit_table.inc.php:354
7146
+ msgid ""
7147
+ "Check this checkbox if you would like to have the table tools (copy, save to "
7148
+ "excel, save to CSV, etc) enabled for this table"
7149
+ msgstr ""
7150
+
7151
+ #: templates/edit_table.inc.php:361
7152
+ msgid "Configure table tools (toggle show/hide)"
7153
+ msgstr ""
7154
+
7155
+ #: templates/edit_table.inc.php:363
7156
+ msgid "Show column visibility button"
7157
+ msgstr ""
7158
+
7159
+ #: templates/edit_table.inc.php:364
7160
+ msgid "Show print button"
7161
+ msgstr ""
7162
+
7163
+ #: templates/edit_table.inc.php:365
7164
+ msgid "Show copy to clipboard button"
7165
+ msgstr ""
7166
+
7167
+ #: templates/edit_table.inc.php:366
7168
+ msgid "Show Excel export button"
7169
+ msgstr ""
7170
+
7171
+ #: templates/edit_table.inc.php:367
7172
+ msgid "Show CSV export button"
7173
+ msgstr ""
7174
+
7175
+ #: templates/edit_table.inc.php:368
7176
+ msgid "Show PDF export button"
7177
+ msgstr ""
7178
+
7179
+ #: templates/edit_table.inc.php:374
7180
+ msgid "Enable sorting"
7181
+ msgstr ""
7182
+
7183
+ #: templates/edit_table.inc.php:378
7184
+ msgid ""
7185
+ "Check this checkbox if you would like to have sorting feature in your table"
7186
+ msgstr ""
7187
+
7188
+ #: templates/edit_table.inc.php:383
7189
+ msgid "Limit table layout"
7190
+ msgstr ""
7191
+
7192
+ #: templates/edit_table.inc.php:387
7193
+ #, php-format
7194
+ msgid ""
7195
+ "Check this checkbox if you would like to limit the table's width to 100% of "
7196
+ "parent container (div)"
7197
+ msgstr ""
7198
+
7199
+ #: templates/edit_table.inc.php:396
7200
+ msgid ""
7201
+ "Check this checkbox if you would like words in cells to wrap and to extend "
7202
+ "row's height. Leave unchecked if you want to leave one-line row heights."
7203
+ msgstr ""
7204
+
7205
+ #: templates/edit_table.inc.php:401
7206
+ msgid "Display length"
7207
+ msgstr ""
7208
+
7209
+ #: templates/edit_table.inc.php:405 templates/edit_table.inc.php:406
7210
+ #: templates/edit_table.inc.php:407 templates/edit_table.inc.php:408
7211
+ msgid "entries"
7212
+ msgstr ""
7213
+
7214
+ #: templates/edit_table.inc.php:411
7215
+ msgid ""
7216
+ "This options defines the default number of entries on the page for this table"
7217
+ msgstr ""
7218
+
7219
+ #: templates/edit_table.inc.php:433
7220
+ msgid "Optional column setup"
7221
+ msgstr ""
7222
+
7223
+ #: templates/edit_table.inc.php:436 templates/edit_table.inc.php:459
7224
+ msgid "Ungroup"
7225
+ msgstr ""
7226
+
7227
+ #: templates/edit_table.inc.php:437 templates/edit_table.inc.php:460
7228
+ msgid "Add formula..."
7229
+ msgstr ""
7230
+
7231
+ #: templates/edit_table.inc.php:448
7232
+ msgid ""
7233
+ "You can change the column settings in this step, but this is not required, "
7234
+ "since default options have already been generated for you"
7235
+ msgstr ""
7236
+
7237
+ #: templates/edit_table.inc.php:449
7238
+ msgid "Warning"
7239
+ msgstr ""
7240
+
7241
+ #: templates/edit_table.inc.php:449
7242
+ msgid ""
7243
+ "If you change the table settings, save the table before modifying the column "
7244
+ "settings, because the column set can be changed and you may lose your changes"
7245
+ msgstr ""
7246
+
7247
+ #: templates/edit_table.inc.php:484
7248
+ msgid "Merge values"
7249
+ msgstr ""
7250
+
7251
+ #: templates/edit_table.inc.php:485
7252
+ msgid "There are already defined possible values."
7253
+ msgstr ""
7254
+
7255
+ #: templates/edit_table.inc.php:486
7256
+ msgid "Do you want to merge new values with existing?"
7257
+ msgstr ""
7258
+
7259
+ #: templates/edit_table.inc.php:544
7260
+ msgid "Separate with"
7261
+ msgstr ""
7262
+
7263
+ #: templates/edit_table.inc.php:544
7264
+ msgid "Used in advanced filterdropdown and in the editor dialog"
7265
+ msgstr ""
7266
+
7267
+ #: templates/edit_table.inc.php:547
7268
+ msgid "Create from column values"
7269
+ msgstr ""
7270
+
7271
+ #: templates/edit_table.inc.php:548
7272
+ msgid "Clear values"
7273
+ msgstr ""
7274
+
7275
+ #: templates/edit_table.inc.php:558
7276
+ msgid "Default value(s)"
7277
+ msgstr ""
7278
+
7279
+ #: templates/edit_table.inc.php:560
7280
+ msgid ""
7281
+ "Predefined filter value, default editor input value. Separate multiple "
7282
+ "values with \"|\". Placeholders supported."
7283
+ msgstr ""
7284
+
7285
+ #: templates/edit_table.inc.php:594
7286
+ msgid "Formula for calculation:"
7287
+ msgstr ""
7288
+
7289
+ #: templates/edit_table.inc.php:595
7290
+ msgid "Formula constructor"
7291
+ msgstr ""
7292
+
7293
+ #: templates/edit_table.inc.php:603
7294
+ msgid "Editor input type:"
7295
+ msgstr ""
7296
+
7297
+ #: templates/edit_table.inc.php:613
7298
+ msgid "Cannot be empty:"
7299
+ msgstr ""
7300
+
7301
+ #: templates/edit_table.inc.php:658
7302
+ msgid "Default sort column"
7303
+ msgstr ""
7304
+
7305
+ #: templates/edit_table.inc.php:672
7306
+ msgid "Show a total for this column in footer"
7307
+ msgstr ""
7308
+
7309
+ #: templates/edit_table.inc.php:704
7310
+ msgid "Width"
7311
+ msgstr "Breite"
7312
+
7313
+ #: templates/edit_table.inc.php:706
7314
+ #, php-format
7315
+ msgid ""
7316
+ "Input width for column (in percents with % or pixels without \"px\"). Leave "
7317
+ "blank if you want to leave auto width"
7318
+ msgstr ""
7319
+
7320
+ #: templates/edit_table.inc.php:714
7321
+ msgid "Display text before"
7322
+ msgstr ""
7323
+
7324
+ #: templates/edit_table.inc.php:722
7325
+ msgid "Display text after"
7326
+ msgstr ""
7327
+
7328
+ #: templates/edit_table.inc.php:738
7329
+ msgid "Visible"
7330
+ msgstr ""
7331
+
7332
+ #: templates/edit_table.inc.php:752
7333
+ msgid ""
7334
+ "Conditional formatting allows you to add special formatting rules depending "
7335
+ "on different values of the cell in this column. E.g. you can add a CSS class "
7336
+ "or color to cell or whole row, etc"
7337
+ msgstr ""
7338
+
7339
+ #: templates/edit_table.inc.php:756
7340
+ msgid "Define rules"
7341
+ msgstr ""
7342
+
7343
+ #: templates/edit_table.inc.php:802
7344
+ msgid "Table saved!"
7345
+ msgstr ""
7346
+
7347
+ #: templates/frontend/excel_table_main.inc.php:28
7348
+ #: templates/wpdatatables_excel_table_main.inc.php:26
7349
+ msgid "Search"
7350
+ msgstr "Suche"
7351
+
7352
+ #: templates/settings.inc.php:12
7353
+ msgid "wpDataTables documentation on this feature"
7354
+ msgstr ""
7355
+
7356
+ #: templates/settings.inc.php:13
7357
+ msgid "wpDataTables settings"
7358
+ msgstr ""
7359
+
7360
+ #: templates/settings.inc.php:35
7361
+ msgid "Use separate MySQL connection"
7362
+ msgstr "Verwenden Sie eine separate MySQL-Verbindung"
7363
+
7364
+ #: templates/settings.inc.php:39
7365
+ msgid ""
7366
+ "If this checkbox is checked, wpDataTables will use its own connection to "
7367
+ "MySQL bases. In other case it will use the main WordPress MySQL connection."
7368
+ msgstr ""
7369
+ "Wenn dieses Kontrollkästchen aktiviert ist, verwendet wpDataTables eine "
7370
+ "eigene Verbindung zu MySQL-Basen. In anderen Fällen wird die Hauptverbindung "
7371
+ "von WordPress MySQL verwendet."
7372
+
7373
+ #: templates/settings.inc.php:56
7374
+ msgid "Pick the language which will be used in tables interface"
7375
+ msgstr ""
7376
+
7377
+ #: templates/settings.inc.php:69
7378
+ msgid "How many tables to show in the browse page"
7379
+ msgstr ""
7380
+
7381
+ #: templates/settings.inc.php:78 templates/settings.inc.php:79
7382
+ msgid "Skin"
7383
+ msgstr ""
7384
+
7385
+ #: templates/settings.inc.php:81
7386
+ msgid "Choose the base skin for the plugin"
7387
+ msgstr ""
7388
+
7389
+ #: templates/settings.inc.php:93
7390
+ msgid ""
7391
+ "Choose where you would like to render the advanced filter for tables where "
7392
+ "enabled"
7393
+ msgstr ""
7394
+
7395
+ #: templates/settings.inc.php:114
7396
+ msgid "Pick the date format to use in date column type"
7397
+ msgstr ""
7398
+
7399
+ #: templates/settings.inc.php:126
7400
+ msgid "Pick the time format to use in datetime and time column type"
7401
+ msgstr ""
7402
+
7403
+ #: templates/settings.inc.php:147
7404
+ msgid "Define the amount of decimal places for the float numbers"
7405
+ msgstr ""
7406
+
7407
+ #: templates/settings.inc.php:152
7408
+ msgid "Timepicker step (min)"
7409
+ msgstr ""
7410
+
7411
+ #: templates/settings.inc.php:156
7412
+ msgid "Define the minutes step for the timepicker based filters and editors."
7413
+ msgstr ""
7414
+
7415
+ #: templates/settings.inc.php:165
7416
+ msgid ""
7417
+ "If this checkbox is checked all numerical values will be aligned to the "
7418
+ "right of the cell"
7419
+ msgstr ""
7420
+
7421
+ #: templates/settings.inc.php:185
7422
+ msgid "Here you can specify width (in pixels) will be treated as a mobile."
7423
+ msgstr ""
7424
+
7425
+ #: templates/settings.inc.php:192 templates/settings.inc.php:433
7426
+ #: templates/settings.inc.php:481
7427
+ msgid "Save options"
7428
+ msgstr ""
7429
+
7430
+ #: templates/settings.inc.php:207 templates/settings.inc.php:449
7431
+ msgid "Leave the setting blank to use default value"
7432
+ msgstr ""
7433
+
7434
+ #: templates/settings.inc.php:212
7435
+ msgid "Table font color"
7436
+ msgstr ""
7437
+
7438
+ #: templates/settings.inc.php:216
7439
+ msgid "This color is used for the main font in table cells"
7440
+ msgstr ""
7441
+
7442
+ #: templates/settings.inc.php:221
7443
+ msgid "Header background color"
7444
+ msgstr ""
7445
+
7446
+ #: templates/settings.inc.php:225
7447
+ msgid "The color is used for background of the table header"
7448
+ msgstr ""
7449
+
7450
+ #: templates/settings.inc.php:230
7451
+ msgid "Header border color"
7452
+ msgstr ""
7453
+
7454
+ #: templates/settings.inc.php:234
7455
+ msgid "This color is used for the border in the table header"
7456
+ msgstr ""
7457
+
7458
+ #: templates/settings.inc.php:239
7459
+ msgid "Header font color"
7460
+ msgstr ""
7461
+
7462
+ #: templates/settings.inc.php:243
7463
+ msgid "This color is used for the font in the table header"
7464
+ msgstr ""
7465
+
7466
+ #: templates/settings.inc.php:248
7467
+ msgid "Header active and hover color"
7468
+ msgstr ""
7469
+
7470
+ #: templates/settings.inc.php:252
7471
+ msgid ""
7472
+ "This color is used when you hover the mouse above the table header, or when "
7473
+ "you choose a column"
7474
+ msgstr ""
7475
+
7476
+ #: templates/settings.inc.php:257
7477
+ msgid "Table inner border color"
7478
+ msgstr ""
7479
+
7480
+ #: templates/settings.inc.php:261
7481
+ msgid "This color is used for the inner border in the table between cells"
7482
+ msgstr ""
7483
+
7484
+ #: templates/settings.inc.php:266
7485
+ msgid "Table outer border color"
7486
+ msgstr ""
7487
+
7488
+ #: templates/settings.inc.php:270
7489
+ msgid "This color is used for the outer border of the whole table body"
7490
+ msgstr ""
7491
+
7492
+ #: templates/settings.inc.php:275
7493
+ msgid "Even row background color"
7494
+ msgstr ""
7495
+
7496
+ #: templates/settings.inc.php:279
7497
+ msgid "This color is used for for background in even rows"
7498
+ msgstr ""
7499
+
7500
+ #: templates/settings.inc.php:284
7501
+ msgid "Odd row background color"
7502
+ msgstr ""
7503
+
7504
+ #: templates/settings.inc.php:288
7505
+ msgid "This color is used for for background in odd rows"
7506
+ msgstr ""
7507
+
7508
+ #: templates/settings.inc.php:293
7509
+ msgid "Hover row color"
7510
+ msgstr ""
7511
+
7512
+ #: templates/settings.inc.php:297
7513
+ msgid ""
7514
+ "This color is used for to highlight the row when you hover your mouse above "
7515
+ "it"
7516
+ msgstr ""
7517
+
7518
+ #: templates/settings.inc.php:302
7519
+ msgid "Cell color in active (sorted) columns for even rows"
7520
+ msgstr ""
7521
+
7522
+ #: templates/settings.inc.php:306
7523
+ msgid ""
7524
+ "This color is used for background in cells which are in the active columns "
7525
+ "(columns used for sorting) in even rows"
7526
+ msgstr ""
7527
+
7528
+ #: templates/settings.inc.php:311
7529
+ msgid "Cell color in active (sorted) columns for odd rows"
7530
+ msgstr ""
7531
+
7532
+ #: templates/settings.inc.php:315
7533
+ msgid ""
7534
+ "This color is used for background in cells which are in the active columns "
7535
+ "(columns used for sorting) in odd rows"
7536
+ msgstr ""
7537
+
7538
+ #: templates/settings.inc.php:320
7539
+ msgid "Backround color for selected rows"
7540
+ msgstr ""
7541
+
7542
+ #: templates/settings.inc.php:324
7543
+ msgid "This color is used for background in selected rows"
7544
+ msgstr ""
7545
+
7546
+ #: templates/settings.inc.php:329
7547
+ msgid "Buttons background color"
7548
+ msgstr ""
7549
+
7550
+ #: templates/settings.inc.php:333
7551
+ msgid "This color is used for background in buttons"
7552
+ msgstr ""
7553
+
7554
+ #: templates/settings.inc.php:338
7555
+ msgid "Buttons border color"
7556
+ msgstr ""
7557
+
7558
+ #: templates/settings.inc.php:342
7559
+ msgid "This color is used for border in buttons"
7560
+ msgstr ""
7561
+
7562
+ #: templates/settings.inc.php:347
7563
+ msgid "Buttons font color"
7564
+ msgstr ""
7565
+
7566
+ #: templates/settings.inc.php:351
7567
+ msgid "This color is used for font in buttons"
7568
+ msgstr ""
7569
+
7570
+ #: templates/settings.inc.php:356
7571
+ msgid "Buttons background hover color"
7572
+ msgstr ""
7573
+
7574
+ #: templates/settings.inc.php:360
7575
+ msgid ""
7576
+ "This color will be used for button backgrounds when you hover above them"
7577
+ msgstr ""
7578
+
7579
+ #: templates/settings.inc.php:365
7580
+ msgid "Buttons hover font color"
7581
+ msgstr ""
7582
+
7583
+ #: templates/settings.inc.php:369
7584
+ msgid "This color will be used for buttons font when you hover above them"
7585
+ msgstr ""
7586
+
7587
+ #: templates/settings.inc.php:378
7588
+ msgid ""
7589
+ "This color will be used for wpDataTable popup (filter, datepicker) fonts"
7590
+ msgstr ""
7591
+
7592
+ #: templates/settings.inc.php:383
7593
+ msgid "Modals background color"
7594
+ msgstr ""
7595
+
7596
+ #: templates/settings.inc.php:387
7597
+ msgid ""
7598
+ "This color will be used for wpDataTable popup (filter, datepicker) background"
7599
+ msgstr ""
7600
+
7601
+ #: templates/settings.inc.php:392
7602
+ msgid "Overlay background color"
7603
+ msgstr ""
7604
+
7605
+ #: templates/settings.inc.php:396
7606
+ msgid ""
7607
+ "This color will be used for overlay which appears below the plugin popups"
7608
+ msgstr ""
7609
+
7610
+ #: templates/settings.inc.php:405
7611
+ msgid "This color will be used for button borders when you hover above them"
7612
+ msgstr ""
7613
+
7614
+ #: templates/settings.inc.php:419
7615
+ msgid "Table font"
7616
+ msgstr ""
7617
+
7618
+ #: templates/settings.inc.php:458
7619
+ msgid ""
7620
+ "This JS will be inserted as an inline script block on every page that has a "
7621
+ "wpDataTable"
7622
+ msgstr ""
7623
+
7624
+ #: templates/settings.inc.php:467
7625
+ msgid ""
7626
+ "This CSS will be inserted as an inline style block on every page that has a "
7627
+ "wpDataTable"
7628
+ msgstr ""
7629
+
7630
+ #: templates/settings.inc.php:472
7631
+ msgid "Use minified wpDataTables Javascript"
7632
+ msgstr ""
7633
+
7634
+ #: templates/settings.inc.php:476
7635
+ msgid ""
7636
+ "Uncheck if you would like to make some changes to the main wpDataTables JS "
7637
+ "file (assets/js/wpdatatables/wpdatatables.js). Minified is inserted by "
7638
+ "default (better performance)"
7639
+ msgstr ""
7640
+
7641
+ #: templates/settings.inc.php:521
7642
+ msgid "Premium version only!"
7643
+ msgstr ""
7644
+
7645
+ #: templates/settings.inc.php:521
7646
+ msgid ""
7647
+ "Sorry, this function is available only in FULL version of wpDataTables along "
7648
+ "with many others! Please go to our <a href=\\\"http://wpdatatables.com/\\"
7649
+ "\">website</a> to see the full list and to purchase!"
7650
+ msgstr ""
7651
+
7652
+ #: templates/settings.inc.php:625
7653
+ msgid "Settings saved successfully"
7654
+ msgstr ""
7655
+
7656
+ #: templates/settings.inc.php:627
7657
+ msgid "There was a problem saving your settings"
7658
+ msgstr ""
7659
+
7660
+ #: widgets/class.wpDataChartsElementorWidget.php:28
7661
+ msgid "wpDataChart content"
7662
+ msgstr "wpDataChart-Inhalt"
7663
+
7664
+ #: widgets/class.wpDataChartsElementorWidget.php:35
7665
+ msgid "Select wpDataChart:"
7666
+ msgstr "Wählen Sie wpDataChart:"
7667
+
7668
+ #: widgets/class.wpDataTablesElementorWidget.php:28
7669
+ msgid "wpDataTable content"
7670
+ msgstr "wpDataTable-Inhalt"
7671
+
7672
+ #: widgets/class.wpDataTablesElementorWidget.php:35
7673
+ msgid "Select wpDataTable:"
7674
+ msgstr "wpDataTable wählen:"
7675
+
7676
+ #: widgets/class.wpDataTablesElementorWidget.php:45
7677
+ msgid "Set name for export file:"
7678
+ msgstr "Name für Exportdatei festlegen:"
7679
+
7680
+ #: widgets/class.wpDataTablesElementorWidget.php:48
7681
+ msgid "Insert name for export file"
7682
+ msgstr "Name für Exportdatei einfügen"
7683
+
7684
+ #~ msgid "tr"
7685
+ #~ msgstr "tr"
7686
+
7687
+ #~ msgid "There was an error while trying to import table"
7688
+ #~ msgstr "Beim Laden der Tabelle ist ein Fehler aufgetreten"
7689
+
7690
+ #~ msgid "There was an error while trying to import table. Exception: "
7691
+ #~ msgstr "Beim Laden der Tabelle ist ein Fehler aufgetreten. Ausnahme: "
7692
+
7693
+ #~ msgid "There was an error trying to update the row! Error: "
7694
+ #~ msgstr "Beim Aktualisieren der Zeile ist ein Fehler aufgetreten! Fehler: "
7695
+
7696
+ #~ msgid "There was an error trying to insert a new row! Error: "
7697
+ #~ msgstr ""
7698
+ #~ "Beim Einfügen einer neuen Zeile ist ein Fehler aufgetreten! Fehler: "
7699
+
7700
+ #~ msgid "Bad column names supplied: "
7701
+ #~ msgstr "Falsche Spaltennamen angegeben: "
7702
+
7703
+ #~ msgid "ID column not supplied"
7704
+ #~ msgstr "ID-Spalte nicht angegeben"
7705
+
7706
+ #~ msgid "ID column not supplied for a cell"
7707
+ #~ msgstr "ID-Spalte für eine Zelle nicht angegeben"
7708
+
7709
+ #~ msgid "Nothing to delete."
7710
+ #~ msgstr "Nichts zu löschen."
7711
+
7712
+ #~ msgid "Bad request format."
7713
+ #~ msgstr "Schlechtes Anfrageformat."
7714
+
7715
+ #~ msgid "You don't have permission to change this table."
7716
+ #~ msgstr "Sie haben keine Berechtigung, diese Tabelle zu ändern."
7717
+
7718
+ #, fuzzy
7719
+ #~ msgid "Supplied id column not exist."
7720
+ #~ msgstr "Die angegebene ID-Spalte ist nicht vorhanden."
7721
+
7722
+ #~ msgid "There was an error trying to delete row! Error: "
7723
+ #~ msgstr "Beim Löschen der Zeile ist ein Fehler aufgetreten! Fehler: "
7724
+
7725
+ #, fuzzy
7726
+ #~ msgid "settings"
7727
+ #~ msgstr "Einstellungen"
7728
+
7729
+ #~ msgid ""
7730
+ #~ "To receive automatic updates license activation is required. Please visit "
7731
+ #~ "%s to activate wpDataTables."
7732
+ #~ msgstr ""
7733
+ #~ "Um automatische Updates zu erhalten, ist eine Lizenzaktivierung "
7734
+ #~ "erforderlich. Bitte besuchen Sie %s, um wpDataTables zu aktivieren."
7735
+
7736
+ #~ msgid "There was an error when trying to create the table on MySQL side"
7737
+ #~ msgstr ""
7738
+ #~ "Beim Versuch, die Tabelle auf MySQL-Seite zu erstellen, ist ein Fehler "
7739
+ #~ "aufgetreten"
7740
+
7741
+ #~ msgid ""
7742
+ #~ "<div class=\"alert alert-danger\"><i class=\"wpdt-icon-exclamation-"
7743
+ #~ "triangle\"></i>No results found. Please check if this query is correct! "
7744
+ #~ "Table Constructor needs a query that returns data to build a wpDataTable."
7745
+ #~ msgstr ""
7746
+ #~ "<div class=\"alert alert-danger\"><i class=\"wpdt-icon-exclamation-"
7747
+ #~ "triangle\"></i> Keine Ergebnisse gefunden. Bitte überprüfen Sie, ob diese "
7748
+ #~ "Abfrage korrekt ist! Der Tabellenkonstruktor benötigt eine Abfrage, die "
7749
+ #~ "Daten zurückgibt, um eine wpDataTable zu erstellen."
7750
+
7751
+ #~ msgid "Empty file"
7752
+ #~ msgstr "Leere Datai"
7753
+
7754
+ #~ msgid ""
7755
+ #~ "Could not read Google spreadsheet, please check if the URL is correct and "
7756
+ #~ "the spreadsheet is published to everyone"
7757
+ #~ msgstr ""
7758
+ #~ "Die Google-Tabellen konnte nicht gelesen werden. Überprüfen Sie, ob die "
7759
+ #~ "URL korrekt ist und die Tabelle für alle veröffentlicht wurde"
7760
+
7761
+ #~ msgid "Could not read input file!"
7762
+ #~ msgstr "Eingabedatei konnte nicht gelesen werden!"
7763
+
7764
+ #~ msgid "File format not supported!"
7765
+ #~ msgstr "Dateiformat nicht unterstützt!"
7766
+
7767
+ #~ msgid "Filter"
7768
+ #~ msgstr "Filter"
7769
+
7770
+ #~ msgid "New title"
7771
+ #~ msgstr "Neuer Titel"
7772
+
7773
+ #~ msgid "Title:"
7774
+ #~ msgstr "Titel:"
7775
+
7776
+ #~ msgid "Spline Chart"
7777
+ #~ msgstr "Spline-Diagramm"
7778
+
7779
+ #~ msgid "Basic Area Chart"
7780
+ #~ msgstr "Grundlegendes Flächendiagramm"
7781
+
7782
+ #~ msgid "Stacked Area Chart"
7783
+ #~ msgstr "Gestapeltes Flächendiagramm"
7784
+
7785
+ #~ msgid "Basic Bar Chart"
7786
+ #~ msgstr "Grundlegendes Balkendiagramm"
7787
+
7788
+ #~ msgid "Basic Column Chart"
7789
+ #~ msgstr "Grundlegendes Säulendiagramm"
7790
+
7791
+ #~ msgid "Stacked Column Chart"
7792
+ #~ msgstr "Gestapeltes Säulendiagramm"
7793
+
7794
+ #~ msgid "Pie With Gradient Chart"
7795
+ #~ msgstr "Kreisdiagramm mit Farbverlauf"
7796
+
7797
+ #~ msgid "Scatter Plot"
7798
+ #~ msgstr "Streudiagramm"
7799
+
7800
+ #~ msgid "3D Column Chart"
7801
+ #~ msgstr "3D-Säulendiagramm"
7802
+
7803
+ #~ msgid "3D Pie Chart"
7804
+ #~ msgstr "3D-Kreisdiagramm"
7805
+
7806
+ #~ msgid "3D Donut Chart"
7807
+ #~ msgstr "3D Donut-Diagramm"
7808
+
7809
+ #~ msgid "Treemap Chart"
7810
+ #~ msgstr "Treemap-Diagramm"
7811
+
7812
+ #~ msgid "Treemap level Chart"
7813
+ #~ msgstr "Treemap level - Diagramm"
7814
+
7815
+ #~ msgid "Radar Chart"
7816
+ #~ msgstr "Radar-Diagramm"
7817
+
7818
+ #~ msgid "Polar Area Chart"
7819
+ #~ msgstr "Polar Flächendiagramm"
7820
+
7821
+ #, fuzzy
7822
+ #~ msgid "Doughnut Chart"
7823
+ #~ msgstr "Doughnut-Diagramm"
7824
+
7825
+ #~ msgid "Highcharts"
7826
+ #~ msgstr "Highcharts"
7827
+
7828
+ #~ msgid "Connection"
7829
+ #~ msgstr "Verbindung"
7830
+
7831
+ #~ msgid "Edit in Excel-like editor"
7832
+ #~ msgstr "Im Excel-ähnlichen Editor bearbeiten"
7833
+
7834
+ #~ msgid "SQL"
7835
+ #~ msgstr "SQL"
7836
+
7837
+ #~ msgid "Add new entry"
7838
+ #~ msgstr "Neuen Eintrag hinzufügen"
7839
+
7840
+ #~ msgid "You can't edit this field"
7841
+ #~ msgstr "Sie können dieses Feld nicht bearbeiten"
7842
+
7843
+ #~ msgid "Change"
7844
+ #~ msgstr "Ändern"
7845
+
7846
+ #~ msgid "Currently selected"
7847
+ #~ msgstr "Zurzeit ausgewählt"
7848
+
7849
+ #~ msgid "Edit entry"
7850
+ #~ msgstr "Eintrag ändern"
7851
+
7852
+ #~ msgid "Unable to retrieve results"
7853
+ #~ msgstr "Ergebnisse können nicht abgerufen werden"
7854
+
7855
+ #~ msgid "Row details"
7856
+ #~ msgstr "Zeilendetails"
7857
+
7858
+ #~ msgid "Nothing selected"
7859
+ #~ msgstr "Nichts ausgewählt"
7860
+
7861
+ #~ msgid "Choose an option in previous filters"
7862
+ #~ msgstr "Wählen Sie eine Option in vorherigen Filtern"
7863
+
7864
+ #~ msgid "Select file"
7865
+ #~ msgstr "Datei aussuchen"
7866
+
7867
+ #~ msgid "Start typing a search query"
7868
+ #~ msgstr "Beginnen Sie mit der Eingabe einer Suchabfrage"
7869
+
7870
+ #~ msgid "No Results"
7871
+ #~ msgstr "Keine Ergebnisse"
7872
+
7873
+ #~ msgid "Please enter more characters"
7874
+ #~ msgstr "Bitte geben Sie mehrere Zeichen ein"
7875
+
7876
+ #~ msgid "Search..."
7877
+ #~ msgstr "Suche..."
7878
+
7879
+ #~ msgid ""
7880
+ #~ "System info data has been copied to the clipboard. You can now paste it "
7881
+ #~ "in file or in support ticket."
7882
+ #~ msgstr ""
7883
+ #~ "Systeminfodaten wurden in die Zwischenablage kopiert. Sie können es jetzt "
7884
+ #~ "in eine Datei oder in ein Support-Ticket einfügen."
7885
+
7886
+ #~ msgid "Table name can not be empty! Please provide a name for your table."
7887
+ #~ msgstr ""
7888
+ #~ "Tabellenname darf nicht leer sein! Bitte geben Sie einen Namen für Ihre "
7889
+ #~ "Tabelle an."
7890
+
7891
+ #~ msgid "The purchase code is invalid or it has expired"
7892
+ #~ msgstr "Der Kaufcode ist ungültig oder abgelaufen"
7893
+
7894
+ #~ msgid "You have reached maximum number of registered domains"
7895
+ #~ msgstr "Sie haben die maximale Anzahl registrierter Domains erreicht"
7896
+
7897
+ #~ msgid "It seems you don't have a valid purchase of wpDataTables"
7898
+ #~ msgstr "Anscheinend haben Sie keinen gültigen Kauf von wpDataTables"
7899
+
7900
+ #~ msgid ""
7901
+ #~ "It seems you don't have a valid purchase of Powerful Filters for "
7902
+ #~ "wpDataTables"
7903
+ #~ msgstr ""
7904
+ #~ "Anscheinend haben Sie keinen gültigen Kauf von Powerful Filters für "
7905
+ #~ "wpDataTables"
7906
+
7907
+ #~ msgid ""
7908
+ #~ "It seems you don't have a valid purchase of Report Builder for "
7909
+ #~ "wpDataTables"
7910
+ #~ msgstr ""
7911
+ #~ "Anscheinend haben Sie keinen gültigen Kauf von Berichts-Generator für "
7912
+ #~ "wpDataTables"
7913
+
7914
+ #~ msgid ""
7915
+ #~ "It seems you don't have a valid purchase of Gravity Forms integration for "
7916
+ #~ "wpDataTables"
7917
+ #~ msgstr ""
7918
+ #~ "Anscheinend haben Sie keinen gültigen Kauf von Gravity Forms-Integration "
7919
+ #~ "für wpDataTables"
7920
+
7921
+ #~ msgid ""
7922
+ #~ "It seems you don't have a valid purchase of Formidable Forms integration "
7923
+ #~ "for wpDataTables"
7924
+ #~ msgstr ""
7925
+ #~ "Anscheinend haben Sie keinen gültigen Kauf für die Integration von "
7926
+ #~ "Formidable Forms für wpDataTables"
7927
+
7928
+ #~ msgid "Plugin has been activated"
7929
+ #~ msgstr "Plugin wurde aktiviert"
7930
+
7931
+ #~ msgid "Plugin has been deactivated"
7932
+ #~ msgstr "Plugin wurde deaktiviert"
7933
+
7934
+ #~ msgid "Activated with Envato"
7935
+ #~ msgstr "Mit Envato aktiviert"
7936
+
7937
+ #~ msgid "Activate with Envato"
7938
+ #~ msgstr "Mit Envato aktivieren"
7939
+
7940
+ #~ msgid "Unable to deactivate plugin. Please try again later."
7941
+ #~ msgstr ""
7942
+ #~ "Plugin kann nicht deaktiviert werden. Bitte versuchen Sie es später "
7943
+ #~ "erneut."
7944
+
7945
+ #~ msgid "The field cannot be empty!"
7946
+ #~ msgstr "Das Feld darf nicht leer sein!"
7947
+
7948
+ #~ msgid "Please choose the chart type."
7949
+ #~ msgstr "Bitte wählen Sie den Diagrammtyp."
7950
+
7951
+ #~ msgid "Please select wpDataTable from the dropdown."
7952
+ #~ msgstr "Bitte wählen Sie wpDataTable aus der Dropdown-Liste aus."
7953
+
7954
+ #~ msgid "Columns field cannot be empty."
7955
+ #~ msgstr "Das Spaltenfeld darf nicht leer sein."
7956
+
7957
+ #~ msgid ""
7958
+ #~ "The tutorial is not canceled, closed, or end properly. Please cancel it "
7959
+ #~ "by clicking on the Cancel button."
7960
+ #~ msgstr ""
7961
+ #~ "Das Tutorial wird nicht abgebrochen, geschlossen oder ordnungsgemäß "
7962
+ #~ "beendet. Bitte brechen Sie es ab, indem Sie auf die Schaltfläche "
7963
+ #~ "Abbrechen klicken."
7964
+
7965
+ #~ msgid "Please check the data source that you use for this table."
7966
+ #~ msgstr ""
7967
+ #~ "Bitte überprüfen Sie die Datenquelle, die Sie für diese Tabelle verwenden."
7968
+
7969
+ #~ msgid ""
7970
+ #~ "Please choose the data source that you need (SQL, Excel, CSV, JSON, "
7971
+ #~ "Google Spreadsheet, or PHP array) and then click 'Continue' button."
7972
+ #~ msgstr ""
7973
+ #~ "Wählen Sie die gewünschte Datenquelle aus (SQL, Excel, CSV, JSON, Google-"
7974
+ #~ "Tabellen oder PHP-Array) und klicken Sie dann auf die Schaltfläche "
7975
+ #~ "\"Weiter\"."
7976
+
7977
+ #~ msgid "Write SQL query"
7978
+ #~ msgstr "SQL-Abfrage schreiben"
7979
+
7980
+ #~ msgid "Please write your custom SQL query and then click 'Continue' button."
7981
+ #~ msgstr ""
7982
+ #~ "Bitte schreiben Sie Ihre benutzerdefinierte SQL-Abfrage und klicken Sie "
7983
+ #~ "dann auf \"Weiter\"."
7984
+
7985
+ #~ msgid ""
7986
+ #~ ", in this tutorial we will show you how to create a table manually, fully "
7987
+ #~ "in WordPress dashboard."
7988
+ #~ msgstr ""
7989
+ #~ ", in diesem Tutorial zeigen wir Ihnen, wie Sie eine Tabelle manuell und "
7990
+ #~ "vollständig im WordPress-Dashboard erstellen."
7991
+
7992
+ #~ msgid "Click on 'Create a Table' to access wpDataTables Table Wizard."
7993
+ #~ msgstr ""
7994
+ #~ "Klicken Sie auf \"Tabelle erstellen\", um auf den wpDataTables-"
7995
+ #~ "Tabellenassistenten zuzugreifen."
7996
+
7997
+ #~ msgid "Please select 'Create a table manually' to proceed."
7998
+ #~ msgstr "Bitte wählen Sie \"Tabelle manuell erstellen\", um fortzufahren."
7999
+
8000
+ #~ msgid "Click NEXT"
8001
+ #~ msgstr "Klicken Sie WEITER"
8002
+
8003
+ #~ msgid "Please click 'Next' button to continue."
8004
+ #~ msgstr "Bitte klicken Sie auf \"Weiter\", um fortzufahren."
8005
+
8006
+ #~ msgid "Welcome to manual table constructor"
8007
+ #~ msgstr "Willkommen beim manuellen Tabellenkonstruktor"
8008
+
8009
+ #~ msgid ""
8010
+ #~ "This table constructor will help you to create a table from scratch. "
8011
+ #~ "<br><br> Click 'Continue' to set section by section."
8012
+ #~ msgstr ""
8013
+ #~ "Mit diesem Tabellenkonstruktor können Sie eine Tabelle von Grund auf neu "
8014
+ #~ "erstellen. <br> <br> Klicken Sie auf \"Weiter\", um Abschnitt für "
8015
+ #~ "Abschnitt festzulegen."
8016
+
8017
+ #~ msgid "Choose names and number of columns."
8018
+ #~ msgstr "Wählen Sie die Namen und Anzahl der Spalten."
8019
+
8020
+ #~ msgid ""
8021
+ #~ "Give your table a name and choose how many columns it will have.<br><br> "
8022
+ #~ "Click the 'Continue' button when you’re ready to move forward."
8023
+ #~ msgstr ""
8024
+ #~ "Geben Sie Ihrer Tabelle einen Namen und wählen Sie aus, wie viele Spalten "
8025
+ #~ "sie enthalten soll. <br> <br> Klicken Sie auf die Schaltfläche \"Weiter"
8026
+ #~ "\", wenn Sie fortfahren möchten."
8027
+
8028
+ #~ msgid "Column creating wizard"
8029
+ #~ msgstr "Assistenten zum Erstellung der Spalten"
8030
+
8031
+ #~ msgid ""
8032
+ #~ "Here you can set the name, choose the type for each column, drag and drop "
8033
+ #~ "to reorder them or remove a column.<br><br> When you set everything, "
8034
+ #~ "click the 'Continue' button."
8035
+ #~ msgstr ""
8036
+ #~ "Hier können Sie den Namen festlegen, den Typ für jede Spalte auswählen, "
8037
+ #~ "per Ziehen und Ablegen neu anordnen oder eine Spalte entfernen. <br> <br> "
8038
+ #~ "Wenn Sie alles festgelegt haben, klicken Sie auf die Schaltfläche "
8039
+ #~ "'Weiter'."
8040
+
8041
+ #~ msgid "Congrats! You just configured your table."
8042
+ #~ msgstr "Glückwunsch! Sie haben gerade Ihre Tabelle konfiguriert."
8043
+
8044
+ #~ msgid ""
8045
+ #~ "To start working with it, finish the tutorial, click on the 'Create the "
8046
+ #~ "table' button and choose in which editor you would like to open it. "
8047
+ #~ msgstr ""
8048
+ #~ "Um damit zu arbeiten, beenden Sie das Tutorial, klicken Sie auf die "
8049
+ #~ "Schaltfläche \"Tabelle erstellen\" und wählen Sie aus, in welchem Editor "
8050
+ #~ "Sie es öffnen möchten. "
8051
+
8052
+ #~ msgid ""
8053
+ #~ ", this tutorial will show you how to create a table by importing data "
8054
+ #~ "from the existing data source."
8055
+ #~ msgstr ""
8056
+ #~ ", in diesem Tutorial erfahren Sie, wie Sie eine Tabelle erstellen, indem "
8057
+ #~ "Sie Daten aus der vorhandenen Datenquelle importieren."
8058
+
8059
+ #~ msgid ""
8060
+ #~ "Please select 'Create a table by importing data from a data source' to "
8061
+ #~ "proceed."
8062
+ #~ msgstr ""
8063
+ #~ "Bitte wählen Sie \"Tabelle durch Importieren von Daten aus einer "
8064
+ #~ "Datenquelle erstellen\", um fortzufahren."
8065
+
8066
+ #~ msgid "Choose your data source"
8067
+ #~ msgstr "Wählen Sie Ihre Datenquelle"
8068
+
8069
+ #~ msgid "Click 'Next'"
8070
+ #~ msgstr "Klicken Sie 'Weiter'"
8071
+
8072
+ #~ msgid "Now you can edit your table in the manual constructor"
8073
+ #~ msgstr "Jetzt können Sie Ihre Tabelle im manuellen Konstruktor bearbeiten"
8074
+
8075
+ #~ msgid ""
8076
+ #~ "This constructor will show you columns that will be saved in the database "
8077
+ #~ "based on your file.<br><br> Click 'Continue' button to check section by "
8078
+ #~ "section."
8079
+ #~ msgstr ""
8080
+ #~ "Dieser Konstruktor zeigt Ihnen Spalten an, die basierend auf Ihrer Datei "
8081
+ #~ "in der Datenbank gespeichert werden. <br> <br> Klicken Sie auf die "
8082
+ #~ "Schaltfläche 'Weiter', um Abschnitt für Abschnitt zu überprüfen."
8083
+
8084
+ #~ msgid "Choose a name for your table."
8085
+ #~ msgstr "Wählen Sie einen Namen für Ihre Tabelle."
8086
+
8087
+ #~ msgid "Welcome to Column Creating Wizard."
8088
+ #~ msgstr "Willkommen beim Assistenten zum Erstellen von Spalten."
8089
+
8090
+ #~ msgid ""
8091
+ #~ "Your data preview is here. You can change the name and type for each "
8092
+ #~ "column, drag and drop to reorder them, remove or add a column.<br><br> "
8093
+ #~ "When you set everything, click 'Continue' button."
8094
+ #~ msgstr ""
8095
+ #~ "Ihre Datenvorschau ist hier. Sie können den Namen und den Typ für jede "
8096
+ #~ "Spalte ändern, ziehen und ablegen, um sie neu anzuordnen, eine Spalte zu "
8097
+ #~ "entfernen oder hinzuzufügen. <br> <br> Wenn Sie alles festgelegt haben, "
8098
+ #~ "klicken Sie auf die Schaltfläche \"Weiter\"."
8099
+
8100
+ #~ msgid "Congrats! You are ready to create the table!"
8101
+ #~ msgstr "Glückwunsch! Jetzt können Sie die Tabelle erstellen!"
8102
+
8103
+ #~ msgid ""
8104
+ #~ ", in this tutorial, we will show you how to create a table by generating "
8105
+ #~ "a query from WordPress posts."
8106
+ #~ msgstr ""
8107
+ #~ ", in diesem Tutorial zeigen wir Ihnen, wie Sie eine Tabelle erstellen, "
8108
+ #~ "indem Sie eine Abfrage aus WordPress-Posts generieren."
8109
+
8110
+ #~ msgid ""
8111
+ #~ "Please select 'Generate a query to the WordPress database' to proceed."
8112
+ #~ msgstr ""
8113
+ #~ "Bitte wählen Sie \"Abfrage an die WordPress-Datenbank generieren\", um "
8114
+ #~ "fortzufahren."
8115
+
8116
+ #~ msgid "Welcome to MySQL query generator."
8117
+ #~ msgstr "Willkommen beim MySQL-Abfragegenerator."
8118
+
8119
+ #~ msgid ""
8120
+ #~ "Choose one or more post types from the lefthand side for your table, "
8121
+ #~ "either by dragging and dropping the post type names or by selecting post "
8122
+ #~ "types and clicking on the right arrow. Once the post types are marked as "
8123
+ #~ "selected, 'All post properties' section will be populated.<br><br>From "
8124
+ #~ "this section, you need to choose the post properties, you can as well "
8125
+ #~ "select the ones you want to show in the table either by dragging and "
8126
+ #~ "dropping or by selecting and clicking on the right arrow. When you "
8127
+ #~ "finish, click 'Continue' to move forward."
8128
+ #~ msgstr ""
8129
+ #~ "Wählen Sie einen oder mehrere Beitragstypen auf der linken Seite für Ihre "
8130
+ #~ "Tabelle aus, indem Sie entweder die Namen der Beitragstypen ziehen und "
8131
+ #~ "ablegen oder indem Sie Beitragstypen auswählen und auf den Pfeil nach "
8132
+ #~ "rechts klicken. Sobald die Beitragstypen als ausgewählt markiert sind, "
8133
+ #~ "wird der Abschnitt \"Alle Beitragseigenschaften\" ausgefüllt. <br> <br> "
8134
+ #~ "In diesem Abschnitt müssen Sie die Post-Eigenschaften auswählen. Sie "
8135
+ #~ "können auch diejenigen auswählen, die in der Tabelle angezeigt werden "
8136
+ #~ "sollen, entweder durch Ziehen und Ablegen oder durch Auswählen und "
8137
+ #~ "Klicken auf den Rechtspfeil. Wenn Sie fertig sind, klicken Sie auf "
8138
+ #~ "'Weiter', um fortzufahren."
8139
+
8140
+ #~ msgid "Choose relations"
8141
+ #~ msgstr "Wählen Sie die Beziehungen"
8142
+
8143
+ #~ msgid ""
8144
+ #~ "Define relations (joining rules) between post types.<br><br> Click "
8145
+ #~ "'Continue' button when you’re ready to move forward."
8146
+ #~ msgstr ""
8147
+ #~ "Definieren Sie die Beziehungen (Verbindungsregeln) zwischen "
8148
+ #~ "Beitragstypen. <br> <br> Klicken Sie auf die Schaltfläche 'Weiter', wenn "
8149
+ #~ "Sie bereit sind, fortzufahren."
8150
+
8151
+ #~ msgid "Define post types relations"
8152
+ #~ msgstr "Definieren Sie Post-Typ-Beziehungen"
8153
+
8154
+ #~ msgid ""
8155
+ #~ "When you define it toggle checkbox to have an inner join, uncheck to have "
8156
+ #~ "left join. <br><br> Click 'Continue' button when you’re ready to move "
8157
+ #~ "forward."
8158
+ #~ msgstr ""
8159
+ #~ "Wenn Sie sie definiert haben, aktivieren Sie das Kontrollkästchen für "
8160
+ #~ "einen inneren Join, deaktivieren für den linken Join zu haben. <br> <br> "
8161
+ #~ "Klicken Sie auf die Schaltfläche \"Weiter\", wenn Sie bereit sind, "
8162
+ #~ "fortzufahren."
8163
+
8164
+ #~ msgid "Set the conditions between the columns"
8165
+ #~ msgstr "Legen Sie die Bedingungen zwischen den Spalten fest"
8166
+
8167
+ #~ msgid ""
8168
+ #~ "Add and define conditions between columns in your table by clicking the "
8169
+ #~ "'+ Add Condition' button.<br><br> When you are ready, click 'Continue' "
8170
+ #~ "button to move forward."
8171
+ #~ msgstr ""
8172
+ #~ "Fügen Sie Bedingungen zwischen Spalten in Ihrer Tabelle hinzu und "
8173
+ #~ "definieren Sie sie, indem Sie auf die Schaltfläche '+ Bedingung "
8174
+ #~ "hinzufügen' klicken. <br> <br> Wenn Sie fertig sind, klicken Sie auf die "
8175
+ #~ "Schaltfläche 'Weiter', um fortzufahren."
8176
+
8177
+ #~ msgid "Set the grouping rules"
8178
+ #~ msgstr "Legen Sie die Gruppierungsregeln fest"
8179
+
8180
+ #~ msgid ""
8181
+ #~ "By the '+ Add Grouping' button, you can define the column grouping rules "
8182
+ #~ "for the table.<br><br> Once you're done, click \"Continue\" button to "
8183
+ #~ "move on."
8184
+ #~ msgstr ""
8185
+ #~ "Über die Schaltfläche '+ Gruppierung hinzufügen' können Sie die "
8186
+ #~ "Spaltengruppierungsregeln für die Tabelle definieren. <br> <br> Wenn Sie "
8187
+ #~ "fertig sind, klicken Sie auf die Schaltfläche \"Weiter\", um fortzufahren."
8188
+
8189
+ #~ msgid "We are creating your query..."
8190
+ #~ msgstr "Wir erstellen Ihre Anfrage..."
8191
+
8192
+ #~ msgid ""
8193
+ #~ "Please wait until wpDataTables query constructor builds the query for "
8194
+ #~ "you. Once done, it will show five lines of data as a preview. "
8195
+ #~ "<br><br>Click 'Continue' button when you see it in the background."
8196
+ #~ msgstr ""
8197
+ #~ "Warten Sie, bis der wpDataTables-Abfragekonstruktor die Abfrage für Sie "
8198
+ #~ "erstellt. Anschließend werden fünf Datenzeilen als Vorschau angezeigt. "
8199
+ #~ "<br> <br> Klicken Sie auf die Schaltfläche \"Weiter\", wenn Sie sie im "
8200
+ #~ "Hintergrund sehen."
8201
+
8202
+ #~ msgid "Your query preview is ready!"
8203
+ #~ msgstr "Ihre Abfragevorschau ist fertig!"
8204
+
8205
+ #~ msgid ""
8206
+ #~ "Here you see the query that wpDataTables generated for you. If you are "
8207
+ #~ "not completely satisfied with it, you can edit it straight from this "
8208
+ #~ "window.<br><br> Click \"Continue\" button to move on."
8209
+ #~ msgstr ""
8210
+ #~ "Hier sehen Sie die Abfrage, die wpDataTables für Sie generiert hat. Wenn "
8211
+ #~ "Sie damit nicht vollständig zufrieden sind, können Sie es direkt in "
8212
+ #~ "diesem Fenster bearbeiten. <br> <br> Klicken Sie auf \"Weiter\", um "
8213
+ #~ "fortzufahren."
8214
+
8215
+ #~ msgid "Preview of the first 5 rows."
8216
+ #~ msgstr "Vorschau der ersten 5 Zeilen."
8217
+
8218
+ #~ msgid ""
8219
+ #~ "Here you can see the first few rows the MySQL server returns using the "
8220
+ #~ "query provided. If you see “No data”, it means that the MySQL server "
8221
+ #~ "could not execute it, either because of an error in the query or because "
8222
+ #~ "it is simply returning an empty data-set, even though the syntax is "
8223
+ #~ "correct. <br>If this is the case, please click 'Skip Tutorial' and try to "
8224
+ #~ "create a new one. <br><br>If everything is fine, please click 'NEXT' to "
8225
+ #~ "continue."
8226
+ #~ msgstr ""
8227
+ #~ "Hier sehen Sie die ersten Zeilen, die der MySQL-Server mithilfe der "
8228
+ #~ "bereitgestellten Abfrage zurückgibt. Wenn \"Keine Daten\" angezeigt wird, "
8229
+ #~ "bedeutet dies, dass der MySQL-Server diese nicht ausführen konnte, "
8230
+ #~ "entweder aufgrund eines Fehlers in der Abfrage oder weil einfach ein "
8231
+ #~ "leerer Datensatz zurückgegeben wird, obwohl die Syntax korrekt ist. <br> "
8232
+ #~ "Wenn dies der Fall ist, klicken Sie bitte auf \"Tutorial überspringen\" "
8233
+ #~ "und versuchen Sie, eine neue zu erstellen. <br> <br> Wenn alles in "
8234
+ #~ "Ordnung ist, klicken Sie bitte auf 'WEITER', um fortzufahren."
8235
+
8236
+ #~ msgid ""
8237
+ #~ ", this tutorial will show you how to create a table by generating a query "
8238
+ #~ "from the MySQL database."
8239
+ #~ msgstr ""
8240
+ #~ ", in diesem Tutorial erfahren Sie, wie Sie eine Tabelle erstellen, indem "
8241
+ #~ "Sie eine Abfrage aus der MySQL-Datenbank generieren."
8242
+
8243
+ #~ msgid "Please select 'Generate a query to the MySQL database' to proceed."
8244
+ #~ msgstr ""
8245
+ #~ "Bitte wählen Sie \"Abfrage an die MySQL-Datenbank generieren\", um "
8246
+ #~ "fortzufahren."
8247
+
8248
+ #~ msgid "Welcome to MySQL query generator"
8249
+ #~ msgstr "Willkommen beim MySQL-Abfragegenerator"
8250
+
8251
+ #~ msgid ""
8252
+ #~ "Here you can choose one or more MySQL tables as data sources for your new "
8253
+ #~ "wpDataTable, either by dragging and dropping the table names or by "
8254
+ #~ "selecting the MySQL table and clicking the right arrow. 'All SQL columns' "
8255
+ #~ "section will be populated. Next, please choose which columns you would "
8256
+ #~ "like to show in the wpDataTable - as well, either with drag and drop or "
8257
+ #~ "by selecting columns and clicking on the right arrow to move them to the "
8258
+ #~ "'Selected SQL columns' section.<br><br> When you finish, click 'Continue' "
8259
+ #~ "button to move forward."
8260
+ #~ msgstr ""
8261
+ #~ "Hier können Sie eine oder mehrere MySQL-Tabellen als Datenquellen für "
8262
+ #~ "Ihre neue wpDataTable auswählen, indem Sie entweder die Tabellennamen "
8263
+ #~ "ziehen und ablegen oder die MySQL-Tabelle auswählen und auf den Pfeil "
8264
+ #~ "nach rechts klicken. Der Abschnitt \"Alle SQL-Spalten\" wird ausgefüllt. "
8265
+ #~ "Wählen Sie als Nächstes aus, welche Spalten in der wpDataTable angezeigt "
8266
+ #~ "werden sollen - entweder per Ziehen und Ablegen oder indem Sie Spalten "
8267
+ #~ "auswählen und auf den Rechtspfeil klicken, um sie in den Abschnitt "
8268
+ #~ "'Ausgewählte SQL-Spalten' zu verschieben. <br> <br > Wenn Sie fertig "
8269
+ #~ "sind, klicken Sie auf die Schaltfläche 'Weiter', um fortzufahren."
8270
+
8271
+ #~ msgid "Define SQL tables relations"
8272
+ #~ msgstr "Definieren Sie SQL-Tabellenbeziehungen"
8273
+
8274
+ #~ msgid ""
8275
+ #~ "Once you configure the relations, mark the checkbox for using an inner "
8276
+ #~ "join rule, or uncheck to use left join.<br><br> When you finish, click "
8277
+ #~ "'Continue' button to move forward."
8278
+ #~ msgstr ""
8279
+ #~ "Wenn Sie die Beziehungen konfiguriert haben, aktivieren Sie das "
8280
+ #~ "Kontrollkästchen für die Verwendung einer inneren Verknüpfungsregel oder "
8281
+ #~ "deaktivieren Sie die Option für die Verwendung der linken Verknüpfung. "
8282
+ #~ "<br> <br> Wenn Sie fertig sind, klicken Sie auf die Schaltfläche "
8283
+ #~ "'Weiter', um fortzufahren."
8284
+
8285
+ #~ msgid "Set conditions between the columns."
8286
+ #~ msgstr "Legen Sie die Bedingungen zwischen den Spalten fest."
8287
+
8288
+ #~ msgid ""
8289
+ #~ "Add and define conditions between columns in your table by clicking on "
8290
+ #~ "the button '+ Add Condition'.<br><br> When you finish, click on "
8291
+ #~ "'Continue' button to move forward."
8292
+ #~ msgstr ""
8293
+ #~ "Fügen Sie Bedingungen zwischen den Spalten in Ihrer Tabelle hinzu und "
8294
+ #~ "definieren Sie sie, indem Sie auf die Schaltfläche '+ Bedingung "
8295
+ #~ "hinzufügen' klicken. <br> <br> Wenn Sie fertig sind, klicken Sie auf die "
8296
+ #~ "Schaltfläche 'Weiter', um fortzufahren."
8297
+
8298
+ #~ msgid "Set grouping rules"
8299
+ #~ msgstr "Gruppierungsregeln festlegen"
8300
+
8301
+ #~ msgid ""
8302
+ #~ "By the '+ Add Grouping' button, you can define the column grouping rules "
8303
+ #~ "for the table.<br><br> Once you're done, click \"Continue\" button to "
8304
+ #~ "move on."
8305
+ #~ msgstr ""
8306
+ #~ "Über die Schaltfläche '+ Gruppierung hinzufügen' können Sie die "
8307
+ #~ "Spaltengruppierungsregeln für die Tabelle definieren. <br> <br> Wenn Sie "
8308
+ #~ "fertig sind, klicken Sie auf die Schaltfläche 'Weiter', um fortzufahren."
8309
+
8310
+ #~ msgid ""
8311
+ #~ "Please wait until wpDataTables query constructor builds the query for "
8312
+ #~ "you. Once done, it will show five lines of data as a preview.<br><br> "
8313
+ #~ "Click 'Continue' button when you see it in the background."
8314
+ #~ msgstr ""
8315
+ #~ "Warten Sie, bis der wpDataTables Abfragekonstruktor die Abfrage für Sie "
8316
+ #~ "erstellt. Sobald dies erledigt ist, werden fünf Datenzeilen als Vorschau "
8317
+ #~ "angezeigt. <br> <br> Klicken Sie auf die Schaltfläche 'Weiter', wenn Sie "
8318
+ #~ "sie im Hintergrund sehen."
8319
+
8320
+ #~ msgid ""
8321
+ #~ "Here you see the query that wpDataTables generated for you. If you are "
8322
+ #~ "not completely satisfied with it, you can edit it straight from this "
8323
+ #~ "window.<br><br> Click 'Continue' button to move forward."
8324
+ #~ msgstr ""
8325
+ #~ "Hier sehen Sie die Abfrage, die wpDataTables für Sie generiert hat. Wenn "
8326
+ #~ "Sie damit nicht vollständig zufrieden sind, können Sie es direkt in "
8327
+ #~ "diesem Fenster bearbeiten. <br> <br> Klicken Sie auf die Schaltfläche "
8328
+ #~ "'Weiter', um fortzufahren."
8329
+
8330
+ #~ msgid "Preview of the first 5 rows"
8331
+ #~ msgstr "Vorschau der ersten 5 Zeilen"
8332
+
8333
+ #~ msgid ""
8334
+ #~ "Here you can see the first few rows the MySQL server returns using the "
8335
+ #~ "query provided. If you see “No data”, it means that the MySQL server "
8336
+ #~ "could not execute it, either because of an error in the query or because "
8337
+ #~ "it is simply returning an empty data-set, even though the syntax is "
8338
+ #~ "correct. <br>If this is the case, please click 'Skip Tutorial' and try to "
8339
+ #~ "create a new one. <br>If everything is fine, please click 'Continue' to "
8340
+ #~ "move forward."
8341
+ #~ msgstr ""
8342
+ #~ "Hier sehen Sie die ersten Zeilen, die der MySQL-Server mithilfe der "
8343
+ #~ "bereitgestellten Abfrage zurückgibt. Wenn \"Keine Daten\" angezeigt wird, "
8344
+ #~ "bedeutet dies, dass der MySQL-Server diese nicht ausführen konnte, "
8345
+ #~ "entweder aufgrund eines Fehlers in der Abfrage oder weil einfach ein "
8346
+ #~ "leerer Datensatz zurückgegeben wird, obwohl die Syntax korrekt ist. <br> "
8347
+ #~ "Wenn dies der Fall ist, klicken Sie bitte auf \"Tutorial überspringen\" "
8348
+ #~ "und versuchen Sie, ein neuer zu erstellen. <br> Wenn alles in Ordnung "
8349
+ #~ "ist, klicken Sie bitte auf 'Weiter', um fortzufahren."
8350
+
8351
+ #~ msgid ""
8352
+ #~ "Click on the dropdown, and you will see several options that you can "
8353
+ #~ "choose from. <br><br>To continue, click on the dropdown."
8354
+ #~ msgstr ""
8355
+ #~ "Klicken Sie auf die Dropdown-Liste, um mehrere Optionen anzuzeigen, aus "
8356
+ #~ "denen Sie auswählen können. <br> <br> Um fortzufahren, klicken Sie auf "
8357
+ #~ "die Dropdown-Liste."
8358
+
8359
+ #~ msgid "Choose your desired chart engine."
8360
+ #~ msgstr "Wählen Sie Ihre gewünschte Chart-Engine."
8361
+
8362
+ #~ msgid ""
8363
+ #~ "By clicking on one of the three options, you will choose the engine that "
8364
+ #~ "will render your chart.<br><br> When you finish, please click 'Continue' "
8365
+ #~ "button to move forward."
8366
+ #~ msgstr ""
8367
+ #~ "Wenn Sie auf eine der drei Optionen klicken, wählen Sie die Engine aus, "
8368
+ #~ "die Ihr Diagramm rendern soll. <br> <br> Wenn Sie fertig sind, klicken "
8369
+ #~ "Sie auf die Schaltfläche 'Weiter', um fortzufahren."
8370
+
8371
+ #~ msgid "Different charts types based on the engine you choose. "
8372
+ #~ msgstr ""
8373
+ #~ "Verschiedene Diagrammtypen basierend auf der von Ihnen ausgewählten "
8374
+ #~ "Engine. "
8375
+
8376
+ #~ msgid ""
8377
+ #~ "No data fetched! <br/> If you are trying to save table for the first "
8378
+ #~ "time, please enter some date before saving so table could be set "
8379
+ #~ "accurately. <br/> You can remove it later if you need empty table to "
8380
+ #~ "start with."
8381
+ #~ msgstr ""
8382
+ #~ "Keine Daten abgerufen! <br/> Wenn Sie zum ersten Mal versuchen, eine "
8383
+ #~ "Tabelle zu speichern, geben Sie vor dem Speichern ein Datum ein, damit "
8384
+ #~ "die Tabelle genau eingestellt werden kann. <br/> Sie können es später "
8385
+ #~ "entfernen, wenn Sie zuerst eine leere Tabelle benötigen."
8386
+
8387
+ #~ msgid "Rendered query: "
8388
+ #~ msgstr "Gerenderte Abfrage: "
8389
+
8390
+ #~ msgid " MySQL said: "
8391
+ #~ msgstr " MySQL sagte: "
8392
+
8393
+ #~ msgid "Unable to calculate"
8394
+ #~ msgstr "Kann nicht berechnen"
8395
+
8396
+ #~ msgid "Result for first 5 rows: "
8397
+ #~ msgstr "Ergebnis für die ersten 5 Zeilen: "
8398
+
8399
+ #~ msgid "Unable to calculate, error message: "
8400
+ #~ msgstr "Berechnung nicht möglich, Fehlermeldung: "
8401
+
8402
+ #~ msgid "New entry"
8403
+ #~ msgstr "Neuer Eintrag"
8404
+
8405
+ #~ msgid "Edit"
8406
+ #~ msgstr "Bearbeiten"
8407
+
8408
+ #~ msgid "Learn more "
8409
+ #~ msgstr "Mehr erfahren "
8410
+
8411
+ #~ msgid "Purchase"
8412
+ #~ msgstr "Kauf"
8413
+
8414
+ #~ msgid "Installed"
8415
+ #~ msgstr "Eingerichtet"
8416
+
8417
+ #~ msgid "Vertical axis"
8418
+ #~ msgstr "Vertikale Achse"
8419
+
8420
+ #~ msgid "Show vertical axis"
8421
+ #~ msgstr "Vertikale Achse anzeigen"
8422
+
8423
+ #~ msgid "Pick Range"
8424
+ #~ msgstr "Auswahlbereich"
8425
+
8426
+ #~ msgid ""
8427
+ #~ " Please note that HighCharts license from verion 3.0.4 IS included with "
8428
+ #~ "wpDataTables and you DON'T NEED to purchase the license separately on"
8429
+ #~ msgstr ""
8430
+ #~ " Bitte beachten Sie, dass die HighCharts-Lizenz ab Version 3.0.4 in "
8431
+ #~ "wpDataTables ENTHALTEN IST und Sie die Lizenz NICHT separat erwerben "
8432
+ #~ "müssen"
8433
+
8434
+ #~ msgid "Zoom type"
8435
+ #~ msgstr "Zoomtyp"
8436
+
8437
+ #~ msgid "Decides in what dimensions the user can zoom by dragging the mouse"
8438
+ #~ msgstr ""
8439
+ #~ "Legt fest, in welchen Dimensionen der Benutzer durch Ziehen der Maus "
8440
+ #~ "zoomen kann"
8441
+
8442
+ #~ msgid "Panning"
8443
+ #~ msgstr "Panning"
8444
+
8445
+ #~ msgid ""
8446
+ #~ "Allow panning in a chart. Best used with panKey to combine zooming and "
8447
+ #~ "panning"
8448
+ #~ msgstr ""
8449
+ #~ "Panning in einem Diagramm zulassen. Am besten mit panKey kombinieren, um "
8450
+ #~ "Zoomen und Panning zu kombinieren"
8451
+
8452
+ #~ msgid "Pan key"
8453
+ #~ msgstr "Pan-Taste"
8454
+
8455
+ #~ msgid "Allows setting a key to switch between zooming and panning"
8456
+ #~ msgstr ""
8457
+ #~ "Ermöglicht das Einstellen einer Taste zum Umschalten zwischen Zoomen und "
8458
+ #~ "Panning"
8459
+
8460
+ #~ msgid "Plot background image"
8461
+ #~ msgstr "Plot Hintergrundbild"
8462
+
8463
+ #~ msgid "The URL for an image to use as the plot background."
8464
+ #~ msgstr ""
8465
+ #~ "Die URL für ein Bild, das als Plot-Hintergrund verwendet werden soll."
8466
+
8467
+ #~ msgid "Font style"
8468
+ #~ msgstr "Schriftstil"
8469
+
8470
+ #~ msgid "The default font style for all text in the chart"
8471
+ #~ msgstr "Der Standardschriftstil für den gesamten Text im Diagramm"
8472
+
8473
+ #~ msgid "The default font color for all text in the chart."
8474
+ #~ msgstr "Die Standardschriftfarbe für den gesamten Text im Diagramm."
8475
+
8476
+ #~ msgid "Grid line style"
8477
+ #~ msgstr "Gitterlinienstil"
8478
+
8479
+ #~ msgid "The dash or dot style of the grid lines"
8480
+ #~ msgstr "Der Strich- oder Punktstil der Gitterlinien"
8481
+
8482
+ #~ msgid "Title align"
8483
+ #~ msgstr "Titel Ausrichtung"
8484
+
8485
+ #~ msgid "The horizontal alignment of the title"
8486
+ #~ msgstr "Die waagerechte Ausrichtung des Titels"
8487
+
8488
+ #~ msgid "Title position"
8489
+ #~ msgstr "Titelposition"
8490
+
8491
+ #~ msgid ""
8492
+ #~ "Position of the title. Possible values are 'top', 'left', 'bottom' and "
8493
+ #~ "'right'"
8494
+ #~ msgstr ""
8495
+ #~ "Position des Titels. Mögliche Werte sind 'oben', 'links', 'unten' und "
8496
+ #~ "'rechts'."
8497
+
8498
+ #~ msgid "Title font name"
8499
+ #~ msgstr "Name der Titelschriftart"
8500
+
8501
+ #~ msgid "The default font face for text in the title."
8502
+ #~ msgstr "Die Standardschriftart für Text im Titel."
8503
+
8504
+ #~ msgid "Title font style"
8505
+ #~ msgstr "Titelschriftstil"
8506
+
8507
+ #~ msgid "The default font style for text in the title"
8508
+ #~ msgstr "Der Standardschriftstil für Text im Titel"
8509
+
8510
+ #~ msgid "Title font color"
8511
+ #~ msgstr "Titelschriftfarbe"
8512
+
8513
+ #~ msgid "The default font color for text in the title."
8514
+ #~ msgstr "Die Standardschriftfarbe für Text im Titel."
8515
+
8516
+ #~ msgid "Subtitle"
8517
+ #~ msgstr "Untertitel"
8518
+
8519
+ #~ msgid "The chart's subtitle."
8520
+ #~ msgstr "Der Untertitel des Diagramms."
8521
+
8522
+ #~ msgid "Subtitle align"
8523
+ #~ msgstr "Untertitel Ausrichtung"
8524
+
8525
+ #~ msgid "The horizontal alignment of the subtitle"
8526
+ #~ msgstr "Die waagerechte Ausrichtung des Untertitels"
8527
+
8528
+ #~ msgid "The background color for the tooltip."
8529
+ #~ msgstr "Die Hintergrundfarbe für den Tooltip."
8530
+
8531
+ #~ msgid "The pixel width of the tooltip border."
8532
+ #~ msgstr "Die Pixelbreite des Tooltip-Rahmens."
8533
+
8534
+ #~ msgid "The color of the tooltip border."
8535
+ #~ msgstr "Die Farbe des Tooltip-Rahmens."
8536
+
8537
+ #~ msgid "The radius of the rounded border corners."
8538
+ #~ msgstr "Der Radius der abgerundeten Rhmenecken."
8539
+
8540
+ #~ msgid "Shared tooltip"
8541
+ #~ msgstr "Geteilter Tooltip"
8542
+
8543
+ #~ msgid ""
8544
+ #~ "When the tooltip is shared, the entire plot area will capture mouse "
8545
+ #~ "movement or touch events"
8546
+ #~ msgstr ""
8547
+ #~ "Wenn der Tooltip geteilt wird, erfasst der gesamte Plotbereich "
8548
+ #~ "Mausbewegungen oder Berührungsereignisse"
8549
+
8550
+ #~ msgid "Share tooltip"
8551
+ #~ msgstr "Tooltip teilen"
8552
+
8553
+ #~ msgid "Value prefix"
8554
+ #~ msgstr "Wertpräfix"
8555
+
8556
+ #~ msgid "A string to prepend to each series' y value"
8557
+ #~ msgstr "Ein String, der dem y-Wert jeder Serie vorangestellt werden soll"
8558
+
8559
+ #~ msgid "Value suffix"
8560
+ #~ msgstr "Wertesuffix"
8561
+
8562
+ #~ msgid "A string to append to each series' y value"
8563
+ #~ msgstr "Ein String, der an den y-Wert jeder Serie angehängt werden soll"
8564
+
8565
+ #~ msgid "Enable or disable the legend"
8566
+ #~ msgstr "Aktivieren oder deaktivieren Sie die Legende"
8567
+
8568
+ #~ msgid "Show legend"
8569
+ #~ msgstr "Legende anzeigen"
8570
+
8571
+ #~ msgid "The background color of the legend."
8572
+ #~ msgstr "Die Hintergrundfarbe der Legende."
8573
+
8574
+ #~ msgid "A title to be added on top of the legend"
8575
+ #~ msgstr "Ein Titel, der über der Legende hinzugefügt werden soll"
8576
+
8577
+ #~ msgid "Layout"
8578
+ #~ msgstr "Layout"
8579
+
8580
+ #~ msgid "The layout of the legend items"
8581
+ #~ msgstr "Das Layout der Legendenelemente"
8582
+
8583
+ #~ msgid "Align"
8584
+ #~ msgstr "Ausrichten"
8585
+
8586
+ #~ msgid "The horizontal alignment of the legend box within the chart area"
8587
+ #~ msgstr ""
8588
+ #~ "Die waagerechte Ausrichtung des Legendenfelds innerhalb des "
8589
+ #~ "Diagrammbereichs"
8590
+
8591
+ #~ msgid "The width of the drawn border around the legend."
8592
+ #~ msgstr "Die Breite des gezeichneten Rahmens um die Legende."
8593
+
8594
+ #~ msgid "The color of the drawn border around the legend."
8595
+ #~ msgstr "Die Farbe des gezeichneten Rahmens um die Legende."
8596
+
8597
+ #~ msgid "The border corner radius of the legend."
8598
+ #~ msgstr "Der Rahmeneckradius der Legende."
8599
+
8600
+ #~ msgid "Legend position"
8601
+ #~ msgstr "Legendenposition"
8602
+
8603
+ #~ msgid ""
8604
+ #~ "Position of the legend. Possible values are 'top', 'left', 'bottom' and "
8605
+ #~ "'right'"
8606
+ #~ msgstr ""
8607
+ #~ "Position der Legende. Mögliche Werte sind 'oben', 'links', 'unten' und "
8608
+ #~ "'rechts'."
8609
+
8610
+ #~ msgid "Whether to enable the exporting module"
8611
+ #~ msgstr "Gibt an, ob das Exportmodul aktiviert werden soll"
8612
+
8613
+ #~ msgid "Export chart"
8614
+ #~ msgstr "Diagramm exportieren"
8615
+
8616
+ #~ msgid "Data labels"
8617
+ #~ msgstr "Datenbeschriftungen"
8618
+
8619
+ #~ msgid "Add data labels to improve readability of the exported chart"
8620
+ #~ msgstr ""
8621
+ #~ "Fügen Sie Datenbeschriftungen hinzu, um die Lesbarkeit des exportierten "
8622
+ #~ "Diagramms zu verbessern"
8623
+
8624
+ #~ msgid "Show data labels"
8625
+ #~ msgstr "Datenbeschriftungen anzeigen"
8626
+
8627
+ #~ msgid "File name"
8628
+ #~ msgstr "Dateiname"
8629
+
8630
+ #~ msgid "The filename, without extension, to use for the exported chart"
8631
+ #~ msgstr ""
8632
+ #~ "Der Dateiname ohne Erweiterung, der für das exportierte Diagramm "
8633
+ #~ "verwendet werden soll"
8634
+
8635
+ #~ msgid "The width of the original chart when exported."
8636
+ #~ msgstr "Die Breite des Originaldiagramms beim Export."
8637
+
8638
+ #~ msgid "Button align"
8639
+ #~ msgstr "Schaltfläche Ausrichtung"
8640
+
8641
+ #~ msgid "Alignment for the export button"
8642
+ #~ msgstr "Ausrichtung für die Exportschaltfläche"
8643
+
8644
+ #~ msgid "Button vertical align"
8645
+ #~ msgstr "Schaltfläche senkrecht ausrichten"
8646
+
8647
+ #~ msgid "The vertical alignment of the export button"
8648
+ #~ msgstr "Die senkrechte Ausrichtung der Exportschaltfläche"
8649
+
8650
+ #~ msgid "Button color"
8651
+ #~ msgstr "Schalteflächefarbe"
8652
+
8653
+ #~ msgid "The color of the symbol's stroke or line."
8654
+ #~ msgstr "Die Farbe des Strichs oder der Linie des Symbols."
8655
+
8656
+ #~ msgid "A text string to add to the individual button"
8657
+ #~ msgstr ""
8658
+ #~ "Eine Textstring, die der einzelnen Schaltflächen hinzugefügt werden soll"
8659
+
8660
+ #~ msgid "Whether to show the credits text"
8661
+ #~ msgstr "Gibt an, ob der Credits-Text angezeigt werden soll"
8662
+
8663
+ #~ msgid "Show credits"
8664
+ #~ msgstr "Credits anzeigen"
8665
+
8666
+ #~ msgid "Credits href"
8667
+ #~ msgstr "Credits href"
8668
+
8669
+ #~ msgid "The URL for the credits label"
8670
+ #~ msgstr "Die URL für das Credits-Beschriftung"
8671
+
8672
+ #~ msgid "Credits text"
8673
+ #~ msgstr "Credits Text"
8674
+
8675
+ #~ msgid "The text for the credits label"
8676
+ #~ msgstr "Der Text für das Credits-Beschriftung"
8677
+
8678
+ #~ msgid "Data preview"
8679
+ #~ msgstr "Datenvorschau"
8680
+
8681
+ #~ msgid ""
8682
+ #~ "Create a simple table with any data, merged cells, styling, star rating "
8683
+ #~ "and a lot more.<br> You get full control of formatting, but no sorting, "
8684
+ #~ "filtering, pagination or database connection like in data tables."
8685
+ #~ msgstr ""
8686
+ #~ "Erstellen Sie eine einfache Tabelle mit Daten, zusammengeführten Zellen, "
8687
+ #~ "Stil, Sternebewertung und vielen mehr. <br> Sie haben die volle Kontrolle "
8688
+ #~ "über die Formatierung, jedoch keine Sortierung, Filterung, Paginierung "
8689
+ #~ "oder Datenbankverbindung wie in Datentabellen."
8690
+
8691
+ #~ msgid ""
8692
+ #~ "Define the number and type of columns, and fill in the data manually in "
8693
+ #~ "WP admin. Table will be stored in the database and can be edited from WP "
8694
+ #~ "admin, or made front-end editable."
8695
+ #~ msgstr ""
8696
+ #~ "Definieren Sie die Anzahl und den Typ der Spalten und geben Sie die Daten "
8697
+ #~ "manuell in WP admin ein. Die Tabelle wird in der Datenbank gespeichert "
8698
+ #~ "und kann vom WP-Administrator oder im Front-End bearbeitet werden."
8699
+
8700
+ #~ msgid ""
8701
+ #~ "Excel, CSV, Google Spreadsheet. Data will be imported to the database, "
8702
+ #~ "the table can be edited in WP admin, or made front-end editable."
8703
+ #~ msgstr ""
8704
+ #~ "Excel, CSV, Google-Tabellen. Daten werden in die Datenbank importiert, "
8705
+ #~ "die Tabelle kann im WP-Administrator oder im Front-End bearbeitet werden."
8706
+
8707
+ #~ msgid ""
8708
+ #~ "Please provide some initial structure metadata before the table will be "
8709
+ #~ "created."
8710
+ #~ msgstr ""
8711
+ #~ "Bitte geben Sie einige anfängliche Strukturmetadaten an, bevor die "
8712
+ #~ "Tabelle erstellt wird."
8713
+
8714
+ #~ msgid ""
8715
+ #~ "This constructor will help you to create a table from scratch. You will "
8716
+ #~ "be able to edit the table content and metadata later manually at any time."
8717
+ #~ msgstr ""
8718
+ #~ "Dieser Konstruktor hilft Ihnen dabei, eine Tabelle von Grund auf neu zu "
8719
+ #~ "erstellen. Sie können den Tabelleninhalt und die Metadaten später "
8720
+ #~ "jederzeit manuell bearbeiten."
8721
+
8722
+ #~ msgid "Column names and types"
8723
+ #~ msgstr "Spaltennamen und -typen"
8724
+
8725
+ #~ msgid "Drag and drop to reorder columns"
8726
+ #~ msgstr "Ziehen und Ablegen, um die Spalten neu anzuordnen"
8727
+
8728
+ #~ msgid ""
8729
+ #~ "Upload your file or provide the full URL here. For CSV or Excel input "
8730
+ #~ "sources only URLs or paths from same servers are supported. For Google "
8731
+ #~ "Spreadsheets: please do not forget to publish the spreadsheet before "
8732
+ #~ "pasting the URL."
8733
+ #~ msgstr ""
8734
+ #~ "Laden Sie Ihre Datei hoch oder geben Sie hier die vollständige URL an. "
8735
+ #~ "Für CSV- oder Excel-Eingabequellen werden nur URLs oder Pfade von "
8736
+ #~ "denselben Servern unterstützt. Für Google-Tabellen: Vergessen Sie nicht, "
8737
+ #~ "die Tabelle zu veröffentlichen, bevor Sie die URL einfügen."
8738
+
8739
+ #~ msgid "Please choose the WP data which will be used to create a table."
8740
+ #~ msgstr ""
8741
+ #~ "Bitte wählen Sie die WP-Daten aus, die zum Erstellen einer Tabelle "
8742
+ #~ "verwendet werden sollen."
8743
+
8744
+ #~ msgid ""
8745
+ #~ "This constructor type will create a query to WordPress database and "
8746
+ #~ "create a wpDataTable based on this query. This table content cannot be "
8747
+ #~ "edited manually afterwards, but will always contain actual data from your "
8748
+ #~ "WordPress database."
8749
+ #~ msgstr ""
8750
+ #~ "Dieser Konstruktortyp erstellt eine Abfrage an die WordPress-Datenbank "
8751
+ #~ "und erstellt basierend auf dieser Abfrage eine wpDataTable. Dieser "
8752
+ #~ "Tabelleninhalt kann anschließend nicht manuell bearbeitet werden, enthält "
8753
+ #~ "jedoch immer die tatsächlichen Daten aus Ihrer WordPress-Datenbank."
8754
+
8755
+ #~ msgid "All post types"
8756
+ #~ msgstr "Alle Beitragstypen"
8757
+
8758
+ #~ msgid "Add or drag post types."
8759
+ #~ msgstr "Hinzufügen oder ziehen Beitragstypen."
8760
+
8761
+ #~ msgid "all"
8762
+ #~ msgstr "alle"
8763
+
8764
+ #~ msgid "Selected post types"
8765
+ #~ msgstr "Ausgewählte Beitragstypen"
8766
+
8767
+ #~ msgid "All post properties"
8768
+ #~ msgstr "Alle Post-Eigenschaften"
8769
+
8770
+ #~ msgid "Add or drag post properties."
8771
+ #~ msgstr "Hinzufügen oder Ziehen Post-Eigenschaften."
8772
+
8773
+ #~ msgid "Selected post properties"
8774
+ #~ msgstr "Ausgewählte Post-Eigenschaften"
8775
+
8776
+ #~ msgid "Post types relationship"
8777
+ #~ msgstr "Post-Typ-Beziehung"
8778
+
8779
+ #~ msgid ""
8780
+ #~ "When it is enabled, relations will be defined (joining rules) between "
8781
+ #~ "post types, otherwise relations between post types will not be defined "
8782
+ #~ "(do a full outer join)."
8783
+ #~ msgstr ""
8784
+ #~ "Wenn es aktiviert ist, werden Beziehungen zwischen Beitragstypen "
8785
+ #~ "definiert (Verknüpfungsregeln), andernfalls werden Beziehungen zwischen "
8786
+ #~ "Beitragstypen nicht definiert (vollständige äußere Verknüpfung "
8787
+ #~ "durchführen)."
8788
+
8789
+ #~ msgid "Define relations (joining rules) between post types"
8790
+ #~ msgstr ""
8791
+ #~ "Definieren Sie die Beziehungen (Verbindungsregeln) zwischen Beitragstypen"
8792
+
8793
+ #~ msgid "Check to have an inner join, uncheck to have left join."
8794
+ #~ msgstr ""
8795
+ #~ "Aktivieren Sie diese Option, um eine innere Verknüpfung zu erhalten, und "
8796
+ #~ "deaktivieren Sie die Option, um eine linke Verknüpfung zu erhalten."
8797
+
8798
+ #~ msgid "Add conditions"
8799
+ #~ msgstr "Bedingungen hinzufügen"
8800
+
8801
+ #~ msgid "Add conditions that you would like to have in the table."
8802
+ #~ msgstr "Fügen Sie Bedingungen hinzu, die Sie in der Tabelle haben möchten."
8803
+
8804
+ #~ msgid "Add condition"
8805
+ #~ msgstr "Bedingung hinzufügen"
8806
+
8807
+ #~ msgid "Add grouping rules"
8808
+ #~ msgstr "Gruppierungsregeln hinzufügen"
8809
+
8810
+ #~ msgid "Add grouping rules that you would like to have in the table."
8811
+ #~ msgstr ""
8812
+ #~ "Fügen Sie Gruppierungsregeln hinzu, die Sie in der Tabelle haben möchten."
8813
+
8814
+ #~ msgid "Add grouping"
8815
+ #~ msgstr "Gruppierung hinzufügen"
8816
+
8817
+ #~ msgid "Group by "
8818
+ #~ msgstr "Gruppieren nach "
8819
+
8820
+ #~ msgid "Please choose the SQL data which will be used to create a table."
8821
+ #~ msgstr ""
8822
+ #~ "Bitte wählen Sie die SQL-Daten aus, die zum Erstellen einer Tabelle "
8823
+ #~ "verwendet werden sollen."
8824
+
8825
+ #~ msgid "All SQL tables"
8826
+ #~ msgstr "Alle SQL-Tabellen"
8827
+
8828
+ #~ msgid "Add or drag MySQL tables."
8829
+ #~ msgstr "Hinzufügen oder Ziehen von MySQL-Tabellen."
8830
+
8831
+ #~ msgid "Selected SQL tables"
8832
+ #~ msgstr "Ausgewählte SQL-Tabellen"
8833
+
8834
+ #~ msgid "All SQL columns"
8835
+ #~ msgstr "Alle SQL-Spalten"
8836
+
8837
+ #~ msgid "Add or drag MySQL columns."
8838
+ #~ msgstr "Hinzufügen oder Ziehen von MySQL-Spalten."
8839
+
8840
+ #~ msgid "Selected SQL columns"
8841
+ #~ msgstr "Ausgewählte SQL-Spalten"
8842
+
8843
+ #~ msgid ""
8844
+ #~ "Please check which columns would you like to import and make sure that "
8845
+ #~ "the column types were imported correctly."
8846
+ #~ msgstr ""
8847
+ #~ "Bitte überprüfen Sie, welche Spalten Sie importieren möchten, und stellen "
8848
+ #~ "Sie sicher, dass die Spaltentypen korrekt importiert wurden."
8849
+
8850
+ #~ msgid "Preview the query that has been generated for you"
8851
+ #~ msgstr "Vorschau der für Sie generierten Abfrage"
8852
+
8853
+ #~ msgid "Click to refresh the table"
8854
+ #~ msgstr "Klicken Sie hier, um die Tabelle zu aktualisieren"
8855
+
8856
+ #~ msgid "Preview the 5 first result rows"
8857
+ #~ msgstr "Vorschau der 5 ersten Ergebniszeilen"
8858
+
8859
+ #~ msgid "Welcome, "
8860
+ #~ msgstr "Willkommen, "
8861
+
8862
+ #~ msgid "You are a premium user!"
8863
+ #~ msgstr "Sie sind ein Premium-Benutzer!"
8864
+
8865
+ #~ msgid "Manage your subscriptions"
8866
+ #~ msgstr "Verwalten Sie Ihre Abonnements"
8867
+
8868
+ #~ msgid "Thank you for choosing wpDataTables Premium"
8869
+ #~ msgstr ""
8870
+ #~ "Vielen Dank, dass Sie sich für wpDataTables Premium entschieden haben"
8871
+
8872
+ #~ msgid ""
8873
+ #~ "Enjoy using our premium features and professional support that we provide "
8874
+ #~ "through our "
8875
+ #~ msgstr ""
8876
+ #~ "Genießen Sie unsere Premium-Funktionen und professionelle Unterstützung, "
8877
+ #~ "die wir durch unsere "
8878
+
8879
+ #~ msgid " ticketing system."
8880
+ #~ msgstr " Ticketing System bieten."
8881
+
8882
+ #~ msgid ""
8883
+ #~ "While wpDataTables itself provides quite a large amount of features and "
8884
+ #~ "unlimited customisation, flexibility, you can achieve even more with our "
8885
+ #~ "premium addons."
8886
+ #~ msgstr ""
8887
+ #~ "Während wpDataTables selbst eine große Anzahl von Funktionen, unbegrenzte "
8888
+ #~ "Anpassungsmöglichkeiten und Flexibilität bietet, können Sie mit unseren "
8889
+ #~ "Premium-Addons noch mehr erreichen."
8890
+
8891
+ #~ msgid "Need booking plugin?"
8892
+ #~ msgstr "Benötigen Sie ein Buchungs-Plugin?"
8893
+
8894
+ #~ msgid "Rating: 4.8 - ‎123 reviews"
8895
+ #~ msgstr "Bewertung: 4.8 - 123 Bewertungen"
8896
+
8897
+ #~ msgid "Hi there, "
8898
+ #~ msgstr "Hallo, "
8899
+
8900
+ #~ msgid ""
8901
+ #~ " In order to make your acquaintance with wpDataTables smooth and easy, we "
8902
+ #~ "created these short interactive tutorials for different basic features of "
8903
+ #~ "wpDataTables. Choose the topic that you are interested in, and click "
8904
+ #~ msgstr ""
8905
+ #~ " Um Ihre Bekanntschaft mit wpDataTables reibungslos und einfach zu "
8906
+ #~ "gestalten, haben wir diese kurzen interaktiven Tutorials für verschiedene "
8907
+ #~ "Grundfunktionen von wpDataTables erstellt. Wählen Sie das Thema aus, an "
8908
+ #~ "dem Sie interessiert sind, und klicken Sie auf "
8909
+
8910
+ #~ msgid "Create a data table manually:"
8911
+ #~ msgstr "Erstellen Sie eine Datentabelle manuell:"
8912
+
8913
+ #~ msgid " learn how to build a table completely from the WordPress admin."
8914
+ #~ msgstr ""
8915
+ #~ " Erfahren Sie vom WordPress-Administrator, wie Sie eine Tabelle "
8916
+ #~ "vollständig erstellen."
8917
+
8918
+ #~ msgid ""
8919
+ #~ " create dynamic charts in WordPress with HighCharts, Chart.js or Google "
8920
+ #~ "Charts rendering engines"
8921
+ #~ msgstr ""
8922
+ #~ " Erstellen Sie dynamische Diagramme in WordPress mit Rendering-Engines "
8923
+ #~ "von HighCharts, Chart.js oder Google Charts"
8924
+
8925
+ #~ msgid ""
8926
+ #~ "Get the most out of wpDataTables Premium by using all of the powerful "
8927
+ #~ "features."
8928
+ #~ msgstr ""
8929
+ #~ "Holen Sie das Beste aus wpDataTables Premium heraus, indem Sie alle "
8930
+ #~ "leistungsstarken Funktionen nutzen."
8931
+
8932
+ #~ msgid "Thanks for choosing wpDataTables Premium"
8933
+ #~ msgstr ""
8934
+ #~ "Vielen Dank, dass Sie sich für wpDataTables Premium entschieden haben"
8935
+
8936
+ #~ msgid "Creating data tables from CSV files"
8937
+ #~ msgstr "Erstellen von Datentabellen aus CSV-Dateien"
8938
+
8939
+ #~ msgid "Creating data tables from JSON files"
8940
+ #~ msgstr "Erstellen von Datentabellen aus JSON-Dateien"
8941
+
8942
+ #~ msgid "Creating data tables from XML files"
8943
+ #~ msgstr "Erstellen von Datentabellen aus XML-Dateien"
8944
+
8945
+ #~ msgid "Creating data tables from Serialized PHP array"
8946
+ #~ msgstr "Erstellen von Datentabellen aus einem serialisierten PHP-Array"
8947
+
8948
+ #~ msgid ""
8949
+ #~ "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
8950
+ #~ "PDF, Copy and Print options)</span>"
8951
+ #~ msgstr ""
8952
+ #~ "Export von Tabellendaten <span style=\"font-size: 8px;\">(Export in "
8953
+ #~ "Excel, CSV, PDF, Kopieren- und Druckoptionen) </span>"
8954
+
8955
+ #~ msgid "Creating data tables from Google Spreadsheet"
8956
+ #~ msgstr "Erstellen von Datentabellen aus Google-Tabellen"
8957
+
8958
+ #~ msgid "Creating MySQL-based data tables from database"
8959
+ #~ msgstr "Erstellen von MySQL-basierten Datentabellen aus der Datenbank"
8960
+
8961
+ #~ msgid "Creating MySQL-based data tables from Wordpress post types"
8962
+ #~ msgstr ""
8963
+ #~ "Erstellen von MySQL-basierten Datentabellen aus Wordpress-Beitragstypen"
8964
+
8965
+ #~ msgid "Multiple databases support (MySQL, MS SQL and PostgreSQL)"
8966
+ #~ msgstr "Unterstützung mehrerer Datenbanken (MySQL, MS SQL und PostgreSQL)"
8967
+
8968
+ #~ msgid "Response time is slow and can be up to 3 business days."
8969
+ #~ msgstr "Die Reaktionszeit ist langsam und kann bis zu 3 Werktage betragen."
8970
+
8971
+ #~ msgid "Activation"
8972
+ #~ msgstr "Aktivierung"
8973
+
8974
+ #~ msgid ""
8975
+ #~ "Here you need to activate your licence by activate it with your Envato "
8976
+ #~ "account (if you purchase our plugins over Envato market) or enter the "
8977
+ #~ "purchase code that you have received in your email after the purchase "
8978
+ #~ "from our store.</br> If you cannot find this email please follow the next "
8979
+ #~ "instructions:."
8980
+ #~ msgstr ""
8981
+ #~ "Hier müssen Sie Ihre Lizenz aktivieren, indem Sie sie mit Ihrem Envato-"
8982
+ #~ "Konto aktivieren (wenn Sie unsere Plugins über den Envato-Markt kaufen) "
8983
+ #~ "oder den Kaufcode eingeben, den Sie nach dem Kauf in unserem Geschäft in "
8984
+ #~ "Ihrer E-Mail erhalten haben. </ Br> Wenn Sie dies nicht können Um diese E-"
8985
+ #~ "Mail zu finden, folgen Sie bitte den nächsten Anweisungen:."
8986
+
8987
+ #~ msgid "Access the store page "
8988
+ #~ msgstr "Greifen Sie auf die Store-Seite zu "
8989
+
8990
+ #~ msgid "here"
8991
+ #~ msgstr "hier"
8992
+
8993
+ #~ msgid "Choose Forgot Password option,"
8994
+ #~ msgstr "Wählen Sie die Option Passwort vergessen,"
8995
+
8996
+ #~ msgid ""
8997
+ #~ "Enter the email that you have used during the purchase and click Send "
8998
+ #~ "recovery email,"
8999
+ #~ msgstr ""
9000
+ #~ "Geben Sie die E-Mail-Adresse ein, die Sie während des Kaufs verwendet "
9001
+ #~ "haben, und klicken Sie auf Wiederherstellungs-E-Mail senden,"
9002
+
9003
+ #~ msgid "Use the password and email to log in to the store page,"
9004
+ #~ msgstr ""
9005
+ #~ "Verwenden Sie das Passwort und die E-Mail-Adresse, um sich auf der Store-"
9006
+ #~ "Seite anzumelden,"
9007
+
9008
+ #~ msgid ""
9009
+ #~ "Copy the purchase code from your dashboard page on the store and paste it "
9010
+ #~ "below."
9011
+ #~ msgstr ""
9012
+ #~ "Verwenden Sie das Passwort und die E-Mail-Adresse, um sich auf der Store-"
9013
+ #~ "Seite anzumelden."
9014
+
9015
+ #~ msgid ""
9016
+ #~ "If you still cannot find the purchase code please contact our support "
9017
+ #~ msgstr ""
9018
+ #~ "Wenn Sie den Kaufcode immer noch nicht finden, wenden Sie sich bitte an "
9019
+ #~ "unseren Support "
9020
+
9021
+ #~ msgid "TMS Store Purchase Code"
9022
+ #~ msgstr "TMS Store-Kaufcode"
9023
+
9024
+ #~ msgid ""
9025
+ #~ "If your brought the plugin directly on our website or in the Lite "
9026
+ #~ "version, enter TMS Store purchase code to enable auto updates."
9027
+ #~ msgstr ""
9028
+ #~ "Wenn Sie das Plugin direkt auf unserer Website oder in der Lite-Version "
9029
+ #~ "bereitgestellt haben, geben Sie den TMS Store-Kaufcode ein, um "
9030
+ #~ "automatische Updates zu aktivieren."
9031
+
9032
+ #~ msgid "Please enter your wpDataTables TMS Store Purchase Code"
9033
+ #~ msgstr "Bitte geben Sie Ihren wpDataTables TMS Store-Kaufcode ein"
9034
+
9035
+ #~ msgid "Activate "
9036
+ #~ msgstr "Aktivieren "
9037
+
9038
+ #~ msgid "Envato API"
9039
+ #~ msgstr "Envato API"
9040
+
9041
+ #~ msgid ""
9042
+ #~ "If you bought the plugin on the Envato (CodeCanyon) activate the plugin "
9043
+ #~ "using Envato API to enable auto updates."
9044
+ #~ msgstr ""
9045
+ #~ "Wenn Sie das Plugin auf dem Envato (CodeCanyon) gekauft haben, aktivieren "
9046
+ #~ "Sie das Plugin mithilfe der Envato-API, um automatische Updates zu "
9047
+ #~ "aktivieren."
9048
+
9049
+ #~ msgid "Deactivate "
9050
+ #~ msgstr "Deaktivieren "
9051
+
9052
+ #~ msgid ""
9053
+ #~ "Detail instruction how to enable Google API's and create your service "
9054
+ #~ "account you can find on this"
9055
+ #~ msgstr ""
9056
+ #~ "Detaillierte Anweisungen zum Aktivieren von Google-APIs und zum Erstellen "
9057
+ #~ "Ihres Dienstkontos finden Sie hier"
9058
+
9059
+ #~ msgid "link"
9060
+ #~ msgstr "link"
9061
+
9062
+ #~ msgid "Google service account data."
9063
+ #~ msgstr "Kontodaten des Google-Dienstes."
9064
+
9065
+ #~ msgid ""
9066
+ #~ "Here you will paste private key data from downloaded JSON file from "
9067
+ #~ "Google service account."
9068
+ #~ msgstr ""
9069
+ #~ "Hier fügen Sie private Schlüsseldaten aus der heruntergeladenen JSON-"
9070
+ #~ "Datei aus dem Google-Dienstkonto ein."
9071
+
9072
+ #~ msgid "Validate & Save"
9073
+ #~ msgstr "Validieren und speichern"
9074
+
9075
+ #~ msgid "Your Google service account:"
9076
+ #~ msgstr "Ihr Google-Dienstkonto:"
9077
+
9078
+ #~ msgid ""
9079
+ #~ "Now all your already created, published and shared Google Spreadsheets "
9080
+ #~ "that you are using in wpDataTables will be automatically synchronised and "
9081
+ #~ "when you update data in your Google Sheet it will be instantly shown in "
9082
+ #~ "wpDataTables as well. No more cache issues."
9083
+ #~ msgstr ""
9084
+ #~ "Jetzt werden alle bereits erstellten, veröffentlichten und geteilten "
9085
+ #~ "Google-Tabellen, die Sie in wpDataTables verwenden, automatisch "
9086
+ #~ "synchronisiert. Wenn Sie Daten in Ihrem Google Sheet aktualisieren, "
9087
+ #~ "werden diese sofort auch in wpDataTables angezeigt. Keine Cache-Probleme "
9088
+ #~ "mehr."
9089
+
9090
+ #~ msgid ""
9091
+ #~ "If you need to show data from Private Sheets (not published on the web or "
9092
+ #~ "share it with everyone), please copy your Google service account and then "
9093
+ #~ "share it with those Private Google spreadsheets that you will use in "
9094
+ #~ "wpDataTables. You can check out detail instruction how to do that on this"
9095
+ #~ msgstr ""
9096
+ #~ "Wenn Sie Daten aus privaten Sheets anzeigen müssen (nicht im Internet "
9097
+ #~ "veröffentlicht oder für alle geteilt), kopieren Sie bitte Ihr Google-"
9098
+ #~ "Dienstkonto und geben Sie sie dann die privaten Google-Tabellen, die Sie "
9099
+ #~ "in wpDataTables verwenden frei. Sie können die detaillierte Anleitung "
9100
+ #~ "dazu lesen"
9101
+
9102
+ #~ msgid "Remove account"
9103
+ #~ msgstr "Konto entfernen"
9104
+
9105
+ #~ msgid ""
9106
+ #~ "If the option is enabled, you can use shortcodes of other plugins for "
9107
+ #~ "generating content in table cells"
9108
+ #~ msgstr ""
9109
+ #~ "Wenn die Option aktiviert ist, können Sie Shortcodes anderer Plugins zum "
9110
+ #~ "Generieren von Inhalten in Tabellenzellen verwenden"
9111
+
9112
+ #~ msgid "How Integer and Float column types will be aligned in the cell"
9113
+ #~ msgstr ""
9114
+ #~ "Wie Integer- und Float-Spaltentypen in der Zelle ausgerichtet werden"
9115
+
9116
+ #~ msgid ""
9117
+ #~ "It is recommended to check this option if you want to keep your tables in "
9118
+ #~ "database after deleting wpDataTables plugin from the plugins page. If you "
9119
+ #~ "uncheck this option, all the tables will be permanently deleted after "
9120
+ #~ "deleting the plugin."
9121
+ #~ msgstr ""
9122
+ #~ "Es wird empfohlen, diese Option zu aktivieren, wenn Sie Ihre Tabellen "
9123
+ #~ "nach dem Löschen des Plugins wpDataTables von der Plugins-Seite in der "
9124
+ #~ "Datenbank behalten möchten. Wenn Sie diese Option deaktivieren, werden "
9125
+ #~ "alle Tabellen nach dem Löschen des Plugins dauerhaft gelöscht."
9126
+
9127
+ #~ msgid "Remove Lite vs Premium page"
9128
+ #~ msgstr "Entfernen Sie die Seite Lite vs Premium"
9129
+
9130
+ #~ msgid ""
9131
+ #~ "Check this option if you want to remove Lite vs Premium page from admin "
9132
+ #~ "menu."
9133
+ #~ msgstr ""
9134
+ #~ "Aktivieren Sie diese Option, wenn Sie die Seite Lite vs Premium aus dem "
9135
+ #~ "Admin-Menü entfernen möchten."
9136
+
9137
+ #~ msgid "Remove \"Lite vs Premium\" page from admin menu."
9138
+ #~ msgstr "Entfernen Sie die Seite \"Lite vs Premium\" aus dem Admin-Menü."
9139
+
9140
+ #~ msgid ""
9141
+ #~ "If this checkbox is checked, wpDataTables will use its own connection to "
9142
+ #~ "chosen vendor bases. In other case it will use the main WordPress MySQL "
9143
+ #~ "connection."
9144
+ #~ msgstr ""
9145
+ #~ "Wenn dieses Kontrollkästchen aktiviert ist, verwendet wpDataTables eine "
9146
+ #~ "eigene Verbindung zu ausgewählten Anbieterbasen. In anderen Fällen wird "
9147
+ #~ "die Hauptverbindung von WordPress MySQL verwendet."
9148
+
9149
+ #~ msgid "New connection"
9150
+ #~ msgstr "Neue Verbindung"
9151
+
9152
+ #~ msgid "Click this button to add new connection."
9153
+ #~ msgstr ""
9154
+ #~ "Klicken Sie auf diese Schaltfläche, um eine neue Verbindung hinzuzufügen."
9155
+
9156
+ #~ msgid "Add New Connection"
9157
+ #~ msgstr "Neue Verbindung hinzufügen"
9158
+
9159
+ #~ msgid "Connection Name"
9160
+ #~ msgstr "Verbindungsname"
9161
+
9162
+ #~ msgid "Connection Name."
9163
+ #~ msgstr "Verbindungsname."
9164
+
9165
+ #~ msgid ""
9166
+ #~ "Click this button to test if wpDataTables is able to connect to the DB "
9167
+ #~ "server with the details you provided."
9168
+ #~ msgstr ""
9169
+ #~ "Klicken Sie auf diese Schaltfläche, um zu testen, ob wpDataTables mit den "
9170
+ #~ "von Ihnen angegebenen Details eine Verbindung zum DB-Server herstellen "
9171
+ #~ "kann."
9172
+
9173
+ #~ msgid "Vendor"
9174
+ #~ msgstr "Anbieter"
9175
+
9176
+ #~ msgid "Pick the vendor."
9177
+ #~ msgstr "Wählen Sie den Anbieter."
9178
+
9179
+ #~ msgid "MSSQL"
9180
+ #~ msgstr "MSSQL"
9181
+
9182
+ #~ msgid "PostgreSQL"
9183
+ #~ msgstr "PostgreSQL"
9184
+
9185
+ #~ msgid "Name"
9186
+ #~ msgstr "Name"
9187
+
9188
+ #~ msgid "Database name."
9189
+ #~ msgstr "Datenbankname."
9190
+
9191
+ #~ msgid "Database name"
9192
+ #~ msgstr "Datenbankname"
9193
+
9194
+ #~ msgid "Host"
9195
+ #~ msgstr "Host"
9196
+
9197
+ #~ msgid "Host address."
9198
+ #~ msgstr "Host-Adresse."
9199
+
9200
+ #~ msgid "Host address"
9201
+ #~ msgstr "Host-Adresse"
9202
+
9203
+ #~ msgid "Port"
9204
+ #~ msgstr "Port"
9205
+
9206
+ #~ msgid "Port for the connection"
9207
+ #~ msgstr "Port für die Verbindung"
9208
+
9209
+ #~ msgid "User"
9210
+ #~ msgstr "Benutzer"
9211
+
9212
+ #~ msgid "Username for the connection."
9213
+ #~ msgstr "Benutzername für die Verbindung."
9214
+
9215
+ #~ msgid "Password"
9216
+ #~ msgstr "Kennwort"
9217
+
9218
+ #~ msgid "Password for the provided user."
9219
+ #~ msgstr "Passwort für den angegebenen Benutzer."
9220
+
9221
+ #~ msgid "Driver"
9222
+ #~ msgstr "Treiber"
9223
+
9224
+ #~ msgid "Pick the driver."
9225
+ #~ msgstr "Wählen Sie den Treiber."
9226
+
9227
+ #~ msgid "DBLIB"
9228
+ #~ msgstr "DBLIB"
9229
+
9230
+ #~ msgid "SQLSRV"
9231
+ #~ msgstr "SQLSRV"
9232
+
9233
+ #~ msgid "ODBC"
9234
+ #~ msgstr "ODBC"
9235
+
9236
+ #~ msgid "Default Connection"
9237
+ #~ msgstr "Standardverbindung"
9238
+
9239
+ #~ msgid "Set this connection as default."
9240
+ #~ msgstr "Stellen Sie diese Verbindung als Standard ein."
9241
+
9242
+ #~ msgid "Set this connection as default"
9243
+ #~ msgstr "Stellen Sie diese Verbindung als Standard ein"
9244
+
9245
+ #~ msgid "Delete this connection."
9246
+ #~ msgstr "Die Verbindung löschen."
9247
+
9248
+ #~ msgid "Separate MySQL connection"
9249
+ #~ msgstr "Separate MySQL-Verbindung"
9250
+
9251
+ #~ msgid "Submit a ticket"
9252
+ #~ msgstr "Senden Sie ein Ticket"
9253
+
9254
+ #~ msgid "Displays whether or not you have WordPress Multisite enabled."
9255
+ #~ msgstr "Zeigt an, ob Sie WordPress Multisite aktiviert haben oder nicht."
9256
+
9257
+ #~ msgid ""
9258
+ #~ "PDO is used to connect to separate database connection like MS SQL and "
9259
+ #~ "PostgreSQL."
9260
+ #~ msgstr ""
9261
+ #~ "PDO wird verwendet, um eine Verbindung zu einer separaten "
9262
+ #~ "Datenbankverbindung wie MS SQL und PostgreSQL herzustellen."
9263
+
9264
+ #~ msgid "Filtering"
9265
+ #~ msgstr "Filter"
9266
+
9267
+ #~ msgid "Table"
9268
+ #~ msgstr "Tabelle"
9269
+
9270
+ #~ msgid "Show column"
9271
+ #~ msgstr "Spalte anzeigen"
9272
+
9273
+ #~ msgid "Value from column"
9274
+ #~ msgstr "Wert aus der Spalte"
9275
+
9276
+ #~ msgid "Possible values in edit modal for foreign key column"
9277
+ #~ msgstr "Mögliche Werte im Bearbeitungsmodal für die Fremdschlüsselspalte"
9278
+
9279
+ #~ msgid ""
9280
+ #~ "By turning this on you will show all possible values in edit modal from "
9281
+ #~ "separate table that is connect with foreign keys when option Users can "
9282
+ #~ "see and edit own data is enabled"
9283
+ #~ msgstr ""
9284
+ #~ "Wenn Sie diese Option aktivieren, werden alle möglichen Werte im "
9285
+ #~ "Bearbeitungsmodal aus einer separaten Tabelle angezeigt, die mit "
9286
+ #~ "Fremdschlüsseln verbunden ist, wenn die Option Benutzer eigene Daten "
9287
+ #~ "anzeigen kann und Bearbeiten aktiviert ist"
9288
+
9289
+ #~ msgid "Allow all possible values in edit modal"
9290
+ #~ msgstr "Lassen Sie alle möglichen Werte im Bearbeitungsmodal zu"
9291
+
9292
+ #~ msgid "Multiselectbox"
9293
+ #~ msgstr "Multiselectbox"
9294
+
9295
+ #~ msgid "Range slider"
9296
+ #~ msgstr "Bereichsschieberegler"
9297
+
9298
+ #~ msgid "Enable number range slider for filtering"
9299
+ #~ msgstr "Aktivieren Sie den Schieberegler für den Nummernbereich zum Filtern"
9300
+
9301
+ #~ msgid "Number range slider"
9302
+ #~ msgstr "Nummernbereich Schieberegler"
9303
+
9304
+ #~ msgid "Render in modal"
9305
+ #~ msgstr "In Modal rendern"
9306
+
9307
+ #~ msgid "Render checkboxes in modal."
9308
+ #~ msgstr "Kontrollkästchen in modal rendern."
9309
+
9310
+ #~ msgid "Render checkboxes in modal"
9311
+ #~ msgstr "Kontrollkästchen in modal rendern"
9312
+
9313
+ #~ msgid "Enable/disable editing"
9314
+ #~ msgstr "Bearbeitung aktivieren/deaktivieren"
9315
+
9316
+ #~ msgid "Show/hide filters"
9317
+ #~ msgstr "Anzeigen/Ausblenden Filter"
9318
+
9319
+ #~ msgid "Show/hide on mobile"
9320
+ #~ msgstr "Anzeigen/Ausblenden auf Handy"
9321
+
9322
+ #~ msgid "Show/hide on tablet"
9323
+ #~ msgstr "Anzeigen/Ausblenden auf Tablet"
9324
+
9325
+ #~ msgid "Choose criteria"
9326
+ #~ msgstr "Wählen Sie Kriterien"
9327
+
9328
+ #~ msgid "Math operators"
9329
+ #~ msgstr "Mathematische Operatoren"
9330
+
9331
+ #~ msgid "Standard view"
9332
+ #~ msgstr "Standard Ansicht"
9333
+
9334
+ #~ msgid "Excel Like"
9335
+ #~ msgstr "Excel ähnlich"
9336
+
9337
+ #~ msgid "SQL query"
9338
+ #~ msgstr "SQL-Abfrage"
9339
+
9340
+ #~ msgid "Google Spreadsheet"
9341
+ #~ msgstr "Google-Tabellen"
9342
+
9343
+ #~ msgid "SQL Query"
9344
+ #~ msgstr "SQL-Abfrage"
9345
+
9346
+ #~ msgid ""
9347
+ #~ "Enter the text of your SQL query here - please make sure it returns "
9348
+ #~ "actual data first. You can use a number of placeholders to make the "
9349
+ #~ "dataset in the table flexible and be able to return different sets of "
9350
+ #~ "data by calling it with different shortcodes."
9351
+ #~ msgstr ""
9352
+ #~ "Geben Sie hier den Text Ihrer SQL-Abfrage ein - stellen Sie sicher, dass "
9353
+ #~ "zuerst die tatsächlichen Daten zurückgegeben werden. Sie können eine "
9354
+ #~ "Reihe von Platzhaltern verwenden, um das Dataset in der Tabelle flexibel "
9355
+ #~ "zu gestalten und verschiedene Datensätze zurückzugeben, indem Sie es mit "
9356
+ #~ "verschiedenen Shortcodes aufrufen."
9357
+
9358
+ #~ msgid "Show all rows in back-end"
9359
+ #~ msgstr "Alle Zeilen im Backend anzeigen"
9360
+
9361
+ #~ msgid ""
9362
+ #~ "If this is enabled, users will see all data for this table in admin area."
9363
+ #~ msgstr ""
9364
+ #~ "Wenn dies aktiviert ist, sehen Benutzer alle Daten für diese Tabelle im "
9365
+ #~ "Administrationsbereich."
9366
+
9367
+ #~ msgid "Show all rows for this table in admin area"
9368
+ #~ msgstr "Alle Zeilen für diese Tabelle im Admin-Bereich anzeigen"
9369
+
9370
+ #~ msgid ""
9371
+ #~ "Placeholders can be understood as predefined ‘search and replace‘ "
9372
+ #~ "templates; that will be replaced with some actual values at the execution "
9373
+ #~ "time; usually this is used for MySQL queries, but you can use it for "
9374
+ #~ "filtering and editing for manual tables and only filtering for tables "
9375
+ #~ "created from XML, JSON, Excel, CSV, Google Spreadsheet and PHP Serialized "
9376
+ #~ "array."
9377
+ #~ msgstr ""
9378
+ #~ "Platzhalter können als vordefinierte \"Suchen und Ersetzen\" -Vorlagen "
9379
+ #~ "verstanden werden; das wird zur Ausführungszeit durch einige tatsächliche "
9380
+ #~ "Werte ersetzt; Normalerweise wird dies für MySQL-Abfragen verwendet. Sie "
9381
+ #~ "können es jedoch zum Filtern und Bearbeiten von manuellen Tabellen und "
9382
+ #~ "nur zum Filtern von Tabellen verwenden, die aus XML, JSON, Excel, CSV, "
9383
+ #~ "Google-Tabellen und PHP Serialized Array erstellt wurden."
9384
+
9385
+ #~ msgid ""
9386
+ #~ "wpDataTables is the best-selling WordPress table plugin which makes your "
9387
+ #~ "work with tables, charts and data management easy. 40,000+ companies and "
9388
+ #~ "individuals already trust wpDataTables"
9389
+ #~ msgstr ""
9390
+ #~ "wpDataTables ist das meistverkaufte WordPress-Tabellen-Plugin, mit dem "
9391
+ #~ "Sie problemlos mit Tabellen, Diagramme und Daten verwalten können. Über "
9392
+ #~ "40.000 Unternehmen und Einzelpersonen vertrauen bereits wpDataTables"
9393
+
9394
+ #~ msgid "Create charts with Google Charts, HighCharts and Charts.js"
9395
+ #~ msgstr "Erstellen Sie Diagramme mit Google Charts, HighCharts und Charts.js"
9396
+
9397
+ #~ msgid ""
9398
+ #~ "Check out our FAQ section to find the answers to the popular questions "
9399
+ #~ "about plugin functionality and many more. "
9400
+ #~ msgstr ""
9401
+ #~ "In unserem FAQ-Bereich finden Sie Antworten auf die häufig gestellten "
9402
+ #~ "Fragen zur Plugin-Funktionalität und vieles mehr. "
9403
+
9404
+ #~ msgid "Please choose input type for columns that you want to edit"
9405
+ #~ msgstr ""
9406
+ #~ "Bitte wählen Sie den Eingabetyp für Spalten, die Sie bearbeiten möchten"
9407
+
9408
+ #~ msgid "Prev"
9409
+ #~ msgstr "Zurück"
9410
+
9411
+ #~ msgid "Apply and add new"
9412
+ #~ msgstr "Anwenden und neu hinzufügen"
9413
+
9414
+ #~ msgid "Submit"
9415
+ #~ msgstr "Einreichen"
9416
+
9417
+ #~ msgid " Clear all filters"
9418
+ #~ msgstr " Alle Filter zurücksetzen"
9419
+
9420
+ #~ msgid "Dynamic title for modals"
9421
+ #~ msgstr "Dynamischer Titel für Modals"
9422
+
9423
+ #~ msgid "Choose table view:"
9424
+ #~ msgstr "Wählen Sie die Tabellenansicht:"
9425
+
9426
+ #~ msgid "Excel-like wpDataTable"
9427
+ #~ msgstr "Excel-ähnliche wpDataTable"
9428
+
9429
+ #~ msgid "Set placeholder %VAR1%:"
9430
+ #~ msgstr "Platzhalter setzen %VAR1% :"
9431
+
9432
+ #~ msgid "Insert %VAR1% placeholder"
9433
+ #~ msgstr "Platzhalter %VAR1% einfügen"
9434
+
9435
+ #~ msgid "Set placeholder %VAR2%:"
9436
+ #~ msgstr "Platzhalter setzen %VAR2%:"
9437
+
9438
+ #~ msgid "Insert %VAR2% placeholder"
9439
+ #~ msgstr "Platzhalter %VAR2% einfügen"
9440
+
9441
+ #~ msgid "Set placeholder %VAR3%:"
9442
+ #~ msgstr "Platzhalter setzen %VAR3%:"
9443
+
9444
+ #~ msgid "Insert %VAR3% placeholder"
9445
+ #~ msgstr "Platzhalter %VAR3% einfügen"
9446
+
9447
+ #, fuzzy
9448
+ #~ msgid ""
9449
+ #~ "This constructor type will create a query to any SQL database database "
9450
+ #~ "and create a wpDataTable based on this query. This table content cannot "
9451
+ #~ "be edited manually afterwards, but will always contain actual data from "
9452
+ #~ "your SQL database."
9453
+ #~ msgstr ""
9454
+ #~ "Dieser Konstruktortyp erstellt eine Abfrage für eine beliebige SQL-"
9455
+ #~ "Datenbank-Datenbank und erstellt basierend auf dieser Abfrage eine "
9456
+ #~ "wpDataTable. Dieser Tabelleninhalt kann anschließend nicht manuell "
9457
+ #~ "bearbeitet werden, enthält jedoch immer die tatsächlichen Daten aus Ihrer "
9458
+ #~ "SQL-Datenbank."
9459
+
9460
+ #~ msgid ""
9461
+ #~ "A major update with a couple of new features, bug fixes and stability "
9462
+ #~ "improvements:"
9463
+ #~ msgstr ""
9464
+ #~ "Ein wichtiges Update mit einigen neuen Funktionen, Fehlerkorrekturen und "
9465
+ #~ "Stabilitätsverbesserungen:"
9466
+
9467
+ #~ msgid ""
9468
+ #~ "Feature: Connect Google Spreadsheets tables with Google Spreadsheet API"
9469
+ #~ msgstr "Funktion: Verbinden Sie Google-Tabellen mit der Google -API"
9470
+
9471
+ #, fuzzy
9472
+ #~ msgid ""
9473
+ #~ "Feature: Instant synchronization in wpdatatables after changes in Google "
9474
+ #~ "sheets"
9475
+ #~ msgstr ""
9476
+ #~ "Funktion: Sofortige Synchronisation in wpDataTables nach Änderungen in "
9477
+ #~ "Google Sheets"
9478
+
9479
+ #~ msgid "Feature: Creating tables from Private Google Spreadsheets"
9480
+ #~ msgstr "Funktion: Erstellen von Tabellen aus privaten Google-Tabellen"
9481
+
9482
+ #~ msgid "Feature: New option to set tables sorting order on browse pages."
9483
+ #~ msgstr ""
9484
+ #~ "Funktion: Neue Option zum Festlegen der Sortierreihenfolge für Tabellen "
9485
+ #~ "auf Durchsuchungsseiten."
9486
+
9487
+ #~ msgid "Compatibility with WordPress 5.6 approved."
9488
+ #~ msgstr "Kompatibilität mit WordPress 5.6 genehmigt."
9489
+
9490
+ #~ msgid "Compatibility with PHP 8 approved."
9491
+ #~ msgstr "Kompatibilität mit PHP 8 genehmigt."
9492
+
9493
+ #~ msgid ""
9494
+ #~ "Amelia is a simple yet powerful automated booking specialist, working "
9495
+ #~ "24/7 to make sure your customers can book appointments or events and pay "
9496
+ #~ "online even while you sleep! 15,000+ businesses from healthcare, beauty, "
9497
+ #~ "sports, automotive, educational, creative, HR and other industries use "
9498
+ #~ "Amelia to flawlessly manage 160,000+ appointments and events worldwide "
9499
+ #~ "each month."
9500
+ #~ msgstr ""
9501
+ #~ "Amelia ist eine einfache, aber leistungsstarke Spezialistin für "
9502
+ #~ "automatisierte Buchungen, die rund um die Uhr dafür sorgt, dass Ihre "
9503
+ #~ "Kunden Termine oder Veranstaltungen buchen und auch im Schlaf online "
9504
+ #~ "bezahlen können! Über 15.000 Unternehmen aus den Bereichen "
9505
+ #~ "Gesundheitswesen, Schönheit, Sport, Automobil, Bildung, Kreativwesen, "
9506
+ #~ "Humanressourcen und anderen Branchen nutzen Amelia, um jeden Monat mehr "
9507
+ #~ "als 160.000 Termine und Veranstaltungen weltweit fehlerfrei zu verwalten."
9508
+
9509
+ #~ msgid "Google Spreadsheet settings"
9510
+ #~ msgstr "Google-Tabellen Einstellungen"
9511
+
9512
+ #, fuzzy
9513
+ #~ msgid ""
9514
+ #~ "We provde proffesional support to all our users via our tiketing system."
9515
+ #~ msgstr ""
9516
+ #~ "Wir bieten allen unseren Benutzern professionelle Unterstützung über "
9517
+ #~ "unser Ticketsystem."
languages/en_US/wpdatatables-en_US.mo CHANGED
Binary file
languages/en_US/wpdatatables-en_US.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
- "POT-Creation-Date: 2021-02-26 13:10+0100\n"
5
- "PO-Revision-Date: 2021-02-26 13:10+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: en\n"
@@ -102,11 +102,8 @@ msgstr ""
102
  msgid "Welcome page"
103
  msgstr ""
104
 
105
- #: controllers/wdt_admin.php:116
106
- msgid "Get Premium"
107
- msgstr ""
108
-
109
- #: controllers/wdt_admin.php:117
110
  msgid "Go Premium"
111
  msgstr ""
112
 
@@ -132,76 +129,89 @@ msgstr ""
132
  msgid "Provided column is not Integer or Float column type"
133
  msgstr ""
134
 
135
- #: controllers/wdt_functions.php:830
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  msgid "Choose a table"
137
  msgstr ""
138
 
139
- #: controllers/wdt_functions.php:862
140
  msgid "Interactive Responsive Table"
141
  msgstr ""
142
 
143
- #: controllers/wdt_functions.php:863 controllers/wdt_functions.php:924
144
  msgid "Content"
145
  msgstr ""
146
 
147
- #: controllers/wdt_functions.php:869
148
  msgid "wpDataTable"
149
  msgstr ""
150
 
151
- #: controllers/wdt_functions.php:873
152
  msgid "Choose the wpDataTable from a dropdown"
153
  msgstr ""
154
 
155
- #: controllers/wdt_functions.php:878
156
  msgid "Table view"
157
  msgstr ""
158
 
159
- #: controllers/wdt_functions.php:882
160
  msgid "Regular wpDataTable"
161
  msgstr ""
162
 
163
- #: controllers/wdt_functions.php:884
164
  msgid "Excel-like table"
165
  msgstr ""
166
 
167
- #: controllers/wdt_functions.php:890
168
  msgid "Variable placeholder #1"
169
  msgstr ""
170
 
171
- #: controllers/wdt_functions.php:893 controllers/wdt_functions.php:901
172
- #: controllers/wdt_functions.php:909
173
  msgid "Variables"
174
  msgstr ""
175
 
176
- #: controllers/wdt_functions.php:894
177
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
178
  msgstr ""
179
 
180
- #: controllers/wdt_functions.php:898
181
  msgid "Variable placeholder #2"
182
  msgstr ""
183
 
184
- #: controllers/wdt_functions.php:902
185
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
186
  msgstr ""
187
 
188
- #: controllers/wdt_functions.php:906
189
  msgid "Variable placeholder #3"
190
  msgstr ""
191
 
192
- #: controllers/wdt_functions.php:910
193
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
194
  msgstr ""
195
 
196
- #: controllers/wdt_functions.php:923
197
  msgid "Google or Highcharts chart based on a wpDataTable"
198
  msgstr ""
199
 
200
- #: controllers/wdt_functions.php:930
201
  msgid "wpDataChart"
202
  msgstr ""
203
 
204
- #: controllers/wdt_functions.php:934
205
  msgid "Choose one of wpDataCharts from the list"
206
  msgstr ""
207
 
@@ -239,7 +249,7 @@ msgstr ""
239
  msgid "Shortcode"
240
  msgstr ""
241
 
242
- #: source/class.wdtbrowsechartstable.php:141
243
  #: source/class.wdtbrowsetable.php:168
244
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
245
  #: templates/admin/dashboard/dashboard.inc.php:153
@@ -247,99 +257,99 @@ msgstr ""
247
  msgid "Click to copy shortcode"
248
  msgstr ""
249
 
250
- #: source/class.wdtbrowsechartstable.php:150
251
  #: source/class.wdtbrowsetable.php:179
252
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
253
  #: templates/admin/browse/table/duplicate_modal.inc.php:64
254
  msgid "Duplicate"
255
  msgstr ""
256
 
257
- #: source/class.wdtbrowsechartstable.php:156
258
  #: source/class.wdtbrowsetable.php:185
259
  #: templates/admin/dashboard/dashboard.inc.php:261
260
  msgid "Configure"
261
  msgstr ""
262
 
263
- #: source/class.wdtbrowsechartstable.php:162
264
  #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
265
  #: templates/admin/browse/bulk_actions.inc.php:14
266
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
267
  msgid "Delete"
268
  msgstr ""
269
 
270
- #: source/class.wdtbrowsechartstable.php:217
271
- #: source/class.wdtbrowsechartstable.php:226
272
  msgid "Column Chart"
273
  msgstr ""
274
 
275
- #: source/class.wdtbrowsechartstable.php:220
276
- #: source/class.wdtbrowsechartstable.php:244
277
  msgid "Line Chart"
278
  msgstr ""
279
 
280
- #: source/class.wdtbrowsechartstable.php:223
281
- #: source/class.wdtbrowsechartstable.php:247
282
  msgid "Pie Chart"
283
  msgstr ""
284
 
285
- #: source/class.wdtbrowsechartstable.php:229
286
  #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
287
  #: templates/chart_wizard.inc.php:91
288
  msgid "Histogram"
289
  msgstr ""
290
 
291
- #: source/class.wdtbrowsechartstable.php:232
292
  msgid "Bar Chart"
293
  msgstr ""
294
 
295
- #: source/class.wdtbrowsechartstable.php:235
296
  msgid "Stacked Bar Chart"
297
  msgstr ""
298
 
299
- #: source/class.wdtbrowsechartstable.php:238
300
  msgid "Area Chart"
301
  msgstr ""
302
 
303
- #: source/class.wdtbrowsechartstable.php:241
304
  msgid "Stepped Area Chart"
305
  msgstr ""
306
 
307
- #: source/class.wdtbrowsechartstable.php:250
308
  msgid "Bubble Chart"
309
  msgstr ""
310
 
311
- #: source/class.wdtbrowsechartstable.php:253
312
  msgid "Donut Chart"
313
  msgstr ""
314
 
315
- #: source/class.wdtbrowsechartstable.php:256
316
  msgid "Gauge Chart"
317
  msgstr ""
318
 
319
- #: source/class.wdtbrowsechartstable.php:259
320
  msgid "Scatter Chart"
321
  msgstr ""
322
 
323
- #: source/class.wdtbrowsechartstable.php:262
324
  msgid "Candlestick Chart"
325
  msgstr ""
326
 
327
- #: source/class.wdtbrowsechartstable.php:265
328
  msgid "Waterfall Chart"
329
  msgstr ""
330
 
331
- #: source/class.wdtbrowsechartstable.php:278
332
  msgid "Google"
333
  msgstr ""
334
 
335
- #: source/class.wdtbrowsechartstable.php:345
336
  #: source/class.wdtbrowsetable.php:298
337
  #: templates/admin/chart_wizard/steps/step3.inc.php:11
338
  #: templates/admin/chart_wizard/steps/step3.inc.php:32
339
  msgid "Select All"
340
  msgstr ""
341
 
342
- #: source/class.wdtbrowsechartstable.php:398
343
  msgid "No wpDataCharts in the system yet."
344
  msgstr ""
345
 
@@ -1253,11 +1263,11 @@ msgid ""
1253
  "page. <br><br>You may now finish this tutorial. "
1254
  msgstr ""
1255
 
1256
- #: source/class.wpdatachart.php:703
1257
  msgid "Only one column can be of type String"
1258
  msgstr ""
1259
 
1260
- #: source/class.wpdatachart.php:706
1261
  msgid "You are mixing data types (several date axes and several number)"
1262
  msgstr ""
1263
 
@@ -1317,7 +1327,7 @@ msgstr ""
1317
  msgid "if you have some questions or problems with the plugin."
1318
  msgstr ""
1319
 
1320
- #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:499
1321
  msgid "wpDataTables Addons"
1322
  msgstr ""
1323
 
@@ -1331,12 +1341,12 @@ msgid ""
1331
  msgstr ""
1332
 
1333
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1334
- #: templates/admin/dashboard/dashboard.inc.php:570
1335
  msgid "Report Builder"
1336
  msgstr ""
1337
 
1338
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1339
- #: templates/admin/dashboard/dashboard.inc.php:574
1340
  msgid ""
1341
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1342
  "XLSX documents filled in with actual data from your database."
@@ -1362,7 +1372,7 @@ msgid "NEW"
1362
  msgstr ""
1363
 
1364
  #: templates/admin/addons/addons.inc.php:40
1365
- #: templates/admin/dashboard/dashboard.inc.php:517
1366
  msgid "Master Detail Tables for wpDataTables"
1367
  msgstr ""
1368
 
@@ -1383,7 +1393,7 @@ msgid "Learn more"
1383
  msgstr ""
1384
 
1385
  #: templates/admin/addons/addons.inc.php:67
1386
- #: templates/admin/dashboard/dashboard.inc.php:544
1387
  msgid "Powerful Filters for wpDataTables"
1388
  msgstr ""
1389
 
@@ -1395,24 +1405,24 @@ msgid ""
1395
  msgstr ""
1396
 
1397
  #: templates/admin/addons/addons.inc.php:120
1398
- #: templates/admin/dashboard/dashboard.inc.php:597
1399
  msgid "Formidable Forms integration for wpDataTables"
1400
  msgstr ""
1401
 
1402
  #: templates/admin/addons/addons.inc.php:123
1403
- #: templates/admin/dashboard/dashboard.inc.php:601
1404
  msgid ""
1405
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1406
  "create wpDataTables from Formidable Forms entries data."
1407
  msgstr ""
1408
 
1409
  #: templates/admin/addons/addons.inc.php:143
1410
- #: templates/admin/dashboard/dashboard.inc.php:623
1411
  msgid "Gravity Forms integration for wpDataTables"
1412
  msgstr ""
1413
 
1414
  #: templates/admin/addons/addons.inc.php:146
1415
- #: templates/admin/dashboard/dashboard.inc.php:627
1416
  msgid ""
1417
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1418
  "wpDataTables from Gravity Forms entries data."
@@ -1435,6 +1445,10 @@ msgstr ""
1435
  msgid "New chart title"
1436
  msgstr ""
1437
 
 
 
 
 
1438
  #: templates/admin/browse/table/browse.inc.php:25
1439
  msgid "Browse Tables"
1440
  msgstr ""
@@ -1873,7 +1887,7 @@ msgid "Axes"
1873
  msgstr ""
1874
 
1875
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1876
- #: templates/admin/chart_wizard/steps/step4.inc.php:532
1877
  msgid "Tooltip"
1878
  msgstr ""
1879
 
@@ -1903,7 +1917,7 @@ msgid "Curve type"
1903
  msgstr ""
1904
 
1905
  #: templates/admin/chart_wizard/steps/step4.inc.php:49
1906
- #: templates/admin/chart_wizard/steps/step4.inc.php:336
1907
  msgid "Controls the curve of the lines"
1908
  msgstr ""
1909
 
@@ -2035,155 +2049,164 @@ msgstr ""
2035
  msgid "The default font face for all text in the chart."
2036
  msgstr ""
2037
 
2038
- #: templates/admin/chart_wizard/steps/step4.inc.php:334
 
 
 
 
 
 
 
 
 
2039
  msgid "Grid"
2040
  msgstr ""
2041
 
2042
- #: templates/admin/chart_wizard/steps/step4.inc.php:340
2043
  msgid "Do you want to show grid on the chart"
2044
  msgstr ""
2045
 
2046
- #: templates/admin/chart_wizard/steps/step4.inc.php:345
2047
  msgid "Horizontal axis label"
2048
  msgstr ""
2049
 
2050
- #: templates/admin/chart_wizard/steps/step4.inc.php:347
2051
  msgid "Name of the horizontal axis."
2052
  msgstr ""
2053
 
2054
- #: templates/admin/chart_wizard/steps/step4.inc.php:362
2055
  msgid "Horizontal crosshair"
2056
  msgstr ""
2057
 
2058
- #: templates/admin/chart_wizard/steps/step4.inc.php:364
2059
  msgid ""
2060
  "Configure a horizontal crosshair that follows either the mouse pointer or "
2061
  "the hovered point lines"
2062
  msgstr ""
2063
 
2064
- #: templates/admin/chart_wizard/steps/step4.inc.php:368
2065
  msgid "Show x-Axis crosshair"
2066
  msgstr ""
2067
 
2068
- #: templates/admin/chart_wizard/steps/step4.inc.php:373
2069
  msgid "Horizontal axis direction"
2070
  msgstr ""
2071
 
2072
- #: templates/admin/chart_wizard/steps/step4.inc.php:375
2073
  msgid ""
2074
  "The direction in which the values along the horizontal axis grow. Specify -1 "
2075
  "to reverse the order of the values"
2076
  msgstr ""
2077
 
2078
- #: templates/admin/chart_wizard/steps/step4.inc.php:391
2079
  msgid "Vertical axis label"
2080
  msgstr ""
2081
 
2082
- #: templates/admin/chart_wizard/steps/step4.inc.php:393
2083
  msgid "Name of the vertical axis."
2084
  msgstr ""
2085
 
2086
- #: templates/admin/chart_wizard/steps/step4.inc.php:408
2087
  msgid "Vertical crosshair"
2088
  msgstr ""
2089
 
2090
- #: templates/admin/chart_wizard/steps/step4.inc.php:410
2091
  msgid ""
2092
  "Configure a vertical crosshair that follows either the mouse pointer or the "
2093
  "hovered point lines"
2094
  msgstr ""
2095
 
2096
- #: templates/admin/chart_wizard/steps/step4.inc.php:414
2097
  msgid "Show y-Axis crosshair"
2098
  msgstr ""
2099
 
2100
- #: templates/admin/chart_wizard/steps/step4.inc.php:419
2101
  msgid "Vertical axis direction"
2102
  msgstr ""
2103
 
2104
- #: templates/admin/chart_wizard/steps/step4.inc.php:421
2105
  msgid ""
2106
  "The direction in which the values along the vertical axis grow. Specify -1 "
2107
  "to reverse the order of the values"
2108
  msgstr ""
2109
 
2110
- #: templates/admin/chart_wizard/steps/step4.inc.php:438
2111
  msgid "Vertical axis min value"
2112
  msgstr ""
2113
 
2114
- #: templates/admin/chart_wizard/steps/step4.inc.php:440
2115
  msgid "The minimum value of the axis."
2116
  msgstr ""
2117
 
2118
- #: templates/admin/chart_wizard/steps/step4.inc.php:464
2119
  msgid "Vertical axis max value"
2120
  msgstr ""
2121
 
2122
- #: templates/admin/chart_wizard/steps/step4.inc.php:466
2123
  msgid "The maximum value of the axis."
2124
  msgstr ""
2125
 
2126
- #: templates/admin/chart_wizard/steps/step4.inc.php:489
2127
  msgid "Invert"
2128
  msgstr ""
2129
 
2130
- #: templates/admin/chart_wizard/steps/step4.inc.php:491
2131
  msgid ""
2132
  "Whether to invert the axes so that the x axis is vertical and y axis is "
2133
  "horizontal"
2134
  msgstr ""
2135
 
2136
- #: templates/admin/chart_wizard/steps/step4.inc.php:495
2137
  msgid "Invert chart axes"
2138
  msgstr ""
2139
 
2140
- #: templates/admin/chart_wizard/steps/step4.inc.php:505
2141
  msgid "Chart title"
2142
  msgstr ""
2143
 
2144
- #: templates/admin/chart_wizard/steps/step4.inc.php:507
2145
  msgid "Do you want to show the chart title on the page"
2146
  msgstr ""
2147
 
2148
- #: templates/admin/chart_wizard/steps/step4.inc.php:511
2149
  msgid "Show title"
2150
  msgstr ""
2151
 
2152
- #: templates/admin/chart_wizard/steps/step4.inc.php:516
2153
  msgid "Title floating"
2154
  msgstr ""
2155
 
2156
- #: templates/admin/chart_wizard/steps/step4.inc.php:518
2157
  msgid ""
2158
  "When the title is floating, the plot area will not move to make space for it"
2159
  msgstr ""
2160
 
2161
- #: templates/admin/chart_wizard/steps/step4.inc.php:522
2162
  msgid "Enable floating"
2163
  msgstr ""
2164
 
2165
- #: templates/admin/chart_wizard/steps/step4.inc.php:534
2166
  msgid "Enable or disable the tooltip"
2167
  msgstr ""
2168
 
2169
- #: templates/admin/chart_wizard/steps/step4.inc.php:538
2170
  msgid "Show tooltip"
2171
  msgstr ""
2172
 
2173
- #: templates/admin/chart_wizard/steps/step4.inc.php:549
2174
  msgid "Position"
2175
  msgstr ""
2176
 
2177
- #: templates/admin/chart_wizard/steps/step4.inc.php:551
2178
  msgid "Position of the legend"
2179
  msgstr ""
2180
 
2181
- #: templates/admin/chart_wizard/steps/step4.inc.php:569
2182
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2183
  msgid "Vertical align"
2184
  msgstr ""
2185
 
2186
- #: templates/admin/chart_wizard/steps/step4.inc.php:571
2187
  msgid "The vertical alignment of the legend box"
2188
  msgstr ""
2189
 
@@ -2621,177 +2644,209 @@ msgid "A minor update with a couple of improvements and bug fixes:"
2621
  msgstr ""
2622
 
2623
  #: templates/admin/dashboard/dashboard.inc.php:345
2624
- msgid ""
2625
- "<strong>Improvement:</strong> Added auto-save functionality after insert "
2626
- "media in Simple tables."
2627
  msgstr ""
2628
 
2629
  #: templates/admin/dashboard/dashboard.inc.php:346
2630
  msgid ""
2631
- "<strong>Improvement:</strong> Added translate functions on some strings."
 
2632
  msgstr ""
2633
 
2634
  #: templates/admin/dashboard/dashboard.inc.php:347
2635
  msgid ""
2636
- "<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin "
2637
- "area and filters for elementor widgets."
2638
  msgstr ""
2639
 
2640
  #: templates/admin/dashboard/dashboard.inc.php:348
2641
- msgid ""
2642
- "<strong>BugFix:</strong> Fixed issue with font in material skin and "
2643
- "background in graphite skin."
2644
  msgstr ""
2645
 
2646
  #: templates/admin/dashboard/dashboard.inc.php:349
2647
  msgid ""
2648
- "<strong>BugFix:</strong> Fixed issue with class name in Global font color "
2649
- "settings."
2650
  msgstr ""
2651
 
2652
  #: templates/admin/dashboard/dashboard.inc.php:350
2653
- msgid "Compatibility with WordPress 5.6.2 approved."
 
 
2654
  msgstr ""
2655
 
2656
  #: templates/admin/dashboard/dashboard.inc.php:351
 
 
 
 
 
 
 
 
 
 
2657
  msgid "Other small bug fixes and stability improvements."
2658
  msgstr ""
2659
 
2660
- #: templates/admin/dashboard/dashboard.inc.php:363
2661
  msgid "Go Premium!"
2662
  msgstr ""
2663
 
2664
- #: templates/admin/dashboard/dashboard.inc.php:369
2665
  msgid "View Comparison"
2666
  msgstr ""
2667
 
2668
- #: templates/admin/dashboard/dashboard.inc.php:377
2669
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2670
  msgid ""
2671
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2672
  "of the powerful features."
2673
  msgstr ""
2674
 
2675
- #: templates/admin/dashboard/dashboard.inc.php:381
2676
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
2677
  msgid "Create a table manually"
2678
  msgstr ""
2679
 
2680
- #: templates/admin/dashboard/dashboard.inc.php:384
2681
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
2682
  msgid "Creating tables from Google Spreadsheet"
2683
  msgstr ""
2684
 
2685
- #: templates/admin/dashboard/dashboard.inc.php:387
2686
- msgid ""
2687
- "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2688
- "tables via Google Sheet API"
2689
  msgstr ""
2690
 
2691
- #: templates/admin/dashboard/dashboard.inc.php:390
2692
- msgid ""
2693
- "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2694
- "tables from Private Google Spreadsheet"
2695
  msgstr ""
2696
 
2697
- #: templates/admin/dashboard/dashboard.inc.php:393
2698
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:318
2699
  msgid "Creating MySQL-based tables from database"
2700
  msgstr ""
2701
 
2702
- #: templates/admin/dashboard/dashboard.inc.php:396
2703
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
2704
  msgid "Creating MySQL-based tables from Wordpress post types"
2705
  msgstr ""
2706
 
2707
- #: templates/admin/dashboard/dashboard.inc.php:399
2708
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
 
 
 
 
 
 
 
 
 
2709
  #: templates/edit_table.inc.php:329
2710
  msgid "Advanced filtering"
2711
  msgstr ""
2712
 
2713
- #: templates/admin/dashboard/dashboard.inc.php:402
2714
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
 
 
 
 
 
 
 
 
 
 
2715
  #: templates/admin/table-settings/table_settings_block.inc.php:153
2716
  #: templates/edit_table.inc.php:282
2717
  msgid "Server-side processing"
2718
  msgstr ""
2719
 
2720
- #: templates/admin/dashboard/dashboard.inc.php:405
2721
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2722
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2723
  msgstr ""
2724
 
2725
- #: templates/admin/dashboard/dashboard.inc.php:408
2726
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2727
  msgid "Front-end table editing"
2728
  msgstr ""
2729
 
2730
- #: templates/admin/dashboard/dashboard.inc.php:411
2731
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2732
  msgid "Excel-like editing"
2733
  msgstr ""
2734
 
2735
- #: templates/admin/dashboard/dashboard.inc.php:414
2736
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2737
  msgid "Creating charts with Highcharts"
2738
  msgstr ""
2739
 
2740
- #: templates/admin/dashboard/dashboard.inc.php:417
2741
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2742
  msgid "Creating charts with Chart.js"
2743
  msgstr ""
2744
 
2745
- #: templates/admin/dashboard/dashboard.inc.php:420
2746
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
 
 
 
 
 
 
 
 
 
 
2747
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2748
  #: templates/edit_table.inc.php:301
2749
  msgid "Responsive"
2750
  msgstr ""
2751
 
2752
- #: templates/admin/dashboard/dashboard.inc.php:423
2753
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2754
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2755
  #: templates/edit_table.inc.php:750
2756
  msgid "Conditional formatting"
2757
  msgstr ""
2758
 
2759
- #: templates/admin/dashboard/dashboard.inc.php:426
2760
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2761
  msgid "Calculating Tools"
2762
  msgstr ""
2763
 
2764
- #: templates/admin/dashboard/dashboard.inc.php:429
2765
  msgid "Formula columns"
2766
  msgstr ""
2767
 
2768
- #: templates/admin/dashboard/dashboard.inc.php:432
2769
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2770
  #: templates/admin/table-settings/table_settings_block.inc.php:80
2771
  msgid "Placeholders"
2772
  msgstr ""
2773
 
2774
- #: templates/admin/dashboard/dashboard.inc.php:435
2775
  msgid "Premium support"
2776
  msgstr ""
2777
 
2778
- #: templates/admin/dashboard/dashboard.inc.php:439
2779
  msgid "Get Premium Today"
2780
  msgstr ""
2781
 
2782
- #: templates/admin/dashboard/dashboard.inc.php:446
2783
  msgid "News Blog"
2784
  msgstr ""
2785
 
2786
- #: templates/admin/dashboard/dashboard.inc.php:451
2787
  msgid "Checkout useful articles from wpdatatables.com"
2788
  msgstr ""
2789
 
2790
- #: templates/admin/dashboard/dashboard.inc.php:474
2791
- msgid "Please install and enable PHP extensions xml and dom on your server."
2792
- msgstr ""
2793
-
2794
- #: templates/admin/dashboard/dashboard.inc.php:482
2795
  msgid ""
2796
  "Never miss notifications about new cool features, promotions,\n"
2797
  " giveaways or freebies – subscribe to our "
@@ -2799,48 +2854,48 @@ msgid ""
2799
  " about 1 message per month and never spam!"
2800
  msgstr ""
2801
 
2802
- #: templates/admin/dashboard/dashboard.inc.php:500
2803
  msgid "Premium "
2804
  msgstr ""
2805
 
2806
- #: templates/admin/dashboard/dashboard.inc.php:503
2807
  msgid ""
2808
  "While wpDataTables itself provides quite a large amount of features and "
2809
  "unlimited customisation, flexibility, you can achieve even more with our "
2810
  "premium addons.(requires wpDataTables Premium version)"
2811
  msgstr ""
2812
 
2813
- #: templates/admin/dashboard/dashboard.inc.php:521
2814
  msgid ""
2815
  "A wpDataTables addon which allows showing additional details for a specific "
2816
  "row in a popup or a separate page or post."
2817
  msgstr ""
2818
 
2819
- #: templates/admin/dashboard/dashboard.inc.php:527
2820
- #: templates/admin/dashboard/dashboard.inc.php:554
2821
- #: templates/admin/dashboard/dashboard.inc.php:580
2822
- #: templates/admin/dashboard/dashboard.inc.php:607
2823
- #: templates/admin/dashboard/dashboard.inc.php:633
2824
- #: templates/admin/dashboard/dashboard.inc.php:666
2825
  msgid "Learn More"
2826
  msgstr ""
2827
 
2828
- #: templates/admin/dashboard/dashboard.inc.php:548
2829
  msgid ""
2830
  "An add-on for wpDataTables that provides powerful filtering features: "
2831
  "cascade filtering, applying filters on button click, hide table before "
2832
  "filtering."
2833
  msgstr ""
2834
 
2835
- #: templates/admin/dashboard/dashboard.inc.php:644
2836
  msgid "Need free booking plugin?"
2837
  msgstr ""
2838
 
2839
- #: templates/admin/dashboard/dashboard.inc.php:653
2840
  msgid "Appointments and Events WordPress Booking Plugin"
2841
  msgstr ""
2842
 
2843
- #: templates/admin/dashboard/dashboard.inc.php:656
2844
  msgid ""
2845
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2846
  "set up a fully-featured automated booking system on your WordPress website "
@@ -2851,26 +2906,26 @@ msgid ""
2851
  "each month."
2852
  msgstr ""
2853
 
2854
- #: templates/admin/dashboard/dashboard.inc.php:659
2855
  msgid "Rating: 4.3 - ‎97 reviews"
2856
  msgstr ""
2857
 
2858
- #: templates/admin/dashboard/dashboard.inc.php:662
2859
  msgid "Free Download"
2860
  msgstr ""
2861
 
2862
- #: templates/admin/dashboard/dashboard.inc.php:677
2863
  #: templates/admin/getting-started/getting_started.inc.php:184
2864
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:505
2865
  #: templates/admin/support/support.inc.php:78
2866
  #: templates/admin/system-info/system_info.inc.php:509
2867
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2868
  msgid "Made by"
2869
  msgstr ""
2870
 
2871
- #: templates/admin/dashboard/dashboard.inc.php:685
2872
  #: templates/admin/getting-started/getting_started.inc.php:192
2873
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:513
2874
  #: templates/admin/support/support.inc.php:45
2875
  #: templates/admin/support/support.inc.php:86
2876
  #: templates/admin/system-info/system_info.inc.php:517
@@ -2879,9 +2934,9 @@ msgstr ""
2879
  msgid "Documentation"
2880
  msgstr ""
2881
 
2882
- #: templates/admin/dashboard/dashboard.inc.php:689
2883
  #: templates/admin/getting-started/getting_started.inc.php:196
2884
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:517
2885
  #: templates/admin/support/support.inc.php:24
2886
  #: templates/admin/support/support.inc.php:90
2887
  #: templates/admin/system-info/system_info.inc.php:521
@@ -3007,7 +3062,7 @@ msgid "Lite vs Premium comparison"
3007
  msgstr ""
3008
 
3009
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3010
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:497
3011
  msgid "Go Premium Now"
3012
  msgstr ""
3013
 
@@ -3020,7 +3075,7 @@ msgid "Lite"
3020
  msgstr ""
3021
 
3022
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3023
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3024
  msgid "Premium"
3025
  msgstr ""
3026
 
@@ -3050,9 +3105,9 @@ msgstr ""
3050
 
3051
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3052
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3053
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:256
3054
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
3055
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:306
3056
  #: templates/admin/table-settings/table_settings_block.inc.php:84
3057
  msgid "NEW!"
3058
  msgstr ""
@@ -3076,6 +3131,10 @@ msgid "Sorting"
3076
  msgstr ""
3077
 
3078
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
 
 
 
 
3079
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3080
  #: templates/admin/table-settings/table_settings_block.inc.php:504
3081
  #: templates/admin/table-settings/table_settings_block.inc.php:512
@@ -3083,58 +3142,54 @@ msgstr ""
3083
  msgid "Pagination"
3084
  msgstr ""
3085
 
3086
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3087
  msgid ""
3088
  "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3089
  "PDF, and Copy and Print options)</span>"
3090
  msgstr ""
3091
 
3092
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3093
  msgid "Column Customization"
3094
  msgstr ""
3095
 
3096
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3097
  msgid "Global Table Customization"
3098
  msgstr ""
3099
 
3100
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
 
 
 
 
3101
  msgid "Creating Google charts"
3102
  msgstr ""
3103
 
3104
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3105
  msgid "Customize charts"
3106
  msgstr ""
3107
 
3108
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3109
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3110
  msgid "Limited"
3111
  msgstr ""
3112
 
3113
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:246
3114
  msgid "Some options are not available."
3115
  msgstr ""
3116
 
3117
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
3118
- msgid "Table Customization"
3119
- msgstr ""
3120
-
3121
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
3122
- msgid "Creating tables via Google Sheet API"
3123
- msgstr ""
3124
-
3125
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
3126
- msgid "Creating tables from Private Google Spreadsheet"
3127
  msgstr ""
3128
 
3129
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3130
  msgid "Support"
3131
  msgstr ""
3132
 
3133
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:480
3134
  msgid "Response time is slow and can be up to 5 business days."
3135
  msgstr ""
3136
 
3137
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:491
3138
  msgid ""
3139
  "* Please note that wpDataTables add-ons are not included in premium version "
3140
  "of plugin."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
+ "POT-Creation-Date: 2021-03-19 13:02+0100\n"
5
+ "PO-Revision-Date: 2021-03-19 13:02+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: en\n"
102
  msgid "Welcome page"
103
  msgstr ""
104
 
105
+ #: controllers/wdt_admin.php:116 controllers/wdt_admin.php:117
106
+ #: controllers/wdt_functions.php:826
 
 
 
107
  msgid "Go Premium"
108
  msgstr ""
109
 
129
  msgid "Provided column is not Integer or Float column type"
130
  msgstr ""
131
 
132
+ #: controllers/wdt_functions.php:821
133
+ msgid "Go to Settings"
134
+ msgstr ""
135
+
136
+ #: controllers/wdt_functions.php:850
137
+ #, php-format
138
+ msgid "By %s"
139
+ msgstr ""
140
+
141
+ #: controllers/wdt_functions.php:854
142
+ msgid "Docs"
143
+ msgstr ""
144
+
145
+ #: controllers/wdt_functions.php:882
146
  msgid "Choose a table"
147
  msgstr ""
148
 
149
+ #: controllers/wdt_functions.php:914
150
  msgid "Interactive Responsive Table"
151
  msgstr ""
152
 
153
+ #: controllers/wdt_functions.php:915 controllers/wdt_functions.php:976
154
  msgid "Content"
155
  msgstr ""
156
 
157
+ #: controllers/wdt_functions.php:921
158
  msgid "wpDataTable"
159
  msgstr ""
160
 
161
+ #: controllers/wdt_functions.php:925
162
  msgid "Choose the wpDataTable from a dropdown"
163
  msgstr ""
164
 
165
+ #: controllers/wdt_functions.php:930
166
  msgid "Table view"
167
  msgstr ""
168
 
169
+ #: controllers/wdt_functions.php:934
170
  msgid "Regular wpDataTable"
171
  msgstr ""
172
 
173
+ #: controllers/wdt_functions.php:936
174
  msgid "Excel-like table"
175
  msgstr ""
176
 
177
+ #: controllers/wdt_functions.php:942
178
  msgid "Variable placeholder #1"
179
  msgstr ""
180
 
181
+ #: controllers/wdt_functions.php:945 controllers/wdt_functions.php:953
182
+ #: controllers/wdt_functions.php:961
183
  msgid "Variables"
184
  msgstr ""
185
 
186
+ #: controllers/wdt_functions.php:946
187
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
188
  msgstr ""
189
 
190
+ #: controllers/wdt_functions.php:950
191
  msgid "Variable placeholder #2"
192
  msgstr ""
193
 
194
+ #: controllers/wdt_functions.php:954
195
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
196
  msgstr ""
197
 
198
+ #: controllers/wdt_functions.php:958
199
  msgid "Variable placeholder #3"
200
  msgstr ""
201
 
202
+ #: controllers/wdt_functions.php:962
203
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
204
  msgstr ""
205
 
206
+ #: controllers/wdt_functions.php:975
207
  msgid "Google or Highcharts chart based on a wpDataTable"
208
  msgstr ""
209
 
210
+ #: controllers/wdt_functions.php:982
211
  msgid "wpDataChart"
212
  msgstr ""
213
 
214
+ #: controllers/wdt_functions.php:986
215
  msgid "Choose one of wpDataCharts from the list"
216
  msgstr ""
217
 
249
  msgid "Shortcode"
250
  msgstr ""
251
 
252
+ #: source/class.wdtbrowsechartstable.php:153
253
  #: source/class.wdtbrowsetable.php:168
254
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
255
  #: templates/admin/dashboard/dashboard.inc.php:153
257
  msgid "Click to copy shortcode"
258
  msgstr ""
259
 
260
+ #: source/class.wdtbrowsechartstable.php:162
261
  #: source/class.wdtbrowsetable.php:179
262
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
263
  #: templates/admin/browse/table/duplicate_modal.inc.php:64
264
  msgid "Duplicate"
265
  msgstr ""
266
 
267
+ #: source/class.wdtbrowsechartstable.php:168
268
  #: source/class.wdtbrowsetable.php:185
269
  #: templates/admin/dashboard/dashboard.inc.php:261
270
  msgid "Configure"
271
  msgstr ""
272
 
273
+ #: source/class.wdtbrowsechartstable.php:174
274
  #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
275
  #: templates/admin/browse/bulk_actions.inc.php:14
276
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
277
  msgid "Delete"
278
  msgstr ""
279
 
280
+ #: source/class.wdtbrowsechartstable.php:229
281
+ #: source/class.wdtbrowsechartstable.php:238
282
  msgid "Column Chart"
283
  msgstr ""
284
 
285
+ #: source/class.wdtbrowsechartstable.php:232
286
+ #: source/class.wdtbrowsechartstable.php:256
287
  msgid "Line Chart"
288
  msgstr ""
289
 
290
+ #: source/class.wdtbrowsechartstable.php:235
291
+ #: source/class.wdtbrowsechartstable.php:259
292
  msgid "Pie Chart"
293
  msgstr ""
294
 
295
+ #: source/class.wdtbrowsechartstable.php:241
296
  #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
297
  #: templates/chart_wizard.inc.php:91
298
  msgid "Histogram"
299
  msgstr ""
300
 
301
+ #: source/class.wdtbrowsechartstable.php:244
302
  msgid "Bar Chart"
303
  msgstr ""
304
 
305
+ #: source/class.wdtbrowsechartstable.php:247
306
  msgid "Stacked Bar Chart"
307
  msgstr ""
308
 
309
+ #: source/class.wdtbrowsechartstable.php:250
310
  msgid "Area Chart"
311
  msgstr ""
312
 
313
+ #: source/class.wdtbrowsechartstable.php:253
314
  msgid "Stepped Area Chart"
315
  msgstr ""
316
 
317
+ #: source/class.wdtbrowsechartstable.php:262
318
  msgid "Bubble Chart"
319
  msgstr ""
320
 
321
+ #: source/class.wdtbrowsechartstable.php:265
322
  msgid "Donut Chart"
323
  msgstr ""
324
 
325
+ #: source/class.wdtbrowsechartstable.php:268
326
  msgid "Gauge Chart"
327
  msgstr ""
328
 
329
+ #: source/class.wdtbrowsechartstable.php:271
330
  msgid "Scatter Chart"
331
  msgstr ""
332
 
333
+ #: source/class.wdtbrowsechartstable.php:274
334
  msgid "Candlestick Chart"
335
  msgstr ""
336
 
337
+ #: source/class.wdtbrowsechartstable.php:277
338
  msgid "Waterfall Chart"
339
  msgstr ""
340
 
341
+ #: source/class.wdtbrowsechartstable.php:290
342
  msgid "Google"
343
  msgstr ""
344
 
345
+ #: source/class.wdtbrowsechartstable.php:357
346
  #: source/class.wdtbrowsetable.php:298
347
  #: templates/admin/chart_wizard/steps/step3.inc.php:11
348
  #: templates/admin/chart_wizard/steps/step3.inc.php:32
349
  msgid "Select All"
350
  msgstr ""
351
 
352
+ #: source/class.wdtbrowsechartstable.php:410
353
  msgid "No wpDataCharts in the system yet."
354
  msgstr ""
355
 
1263
  "page. <br><br>You may now finish this tutorial. "
1264
  msgstr ""
1265
 
1266
+ #: source/class.wpdatachart.php:718
1267
  msgid "Only one column can be of type String"
1268
  msgstr ""
1269
 
1270
+ #: source/class.wpdatachart.php:721
1271
  msgid "You are mixing data types (several date axes and several number)"
1272
  msgstr ""
1273
 
1327
  msgid "if you have some questions or problems with the plugin."
1328
  msgstr ""
1329
 
1330
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:521
1331
  msgid "wpDataTables Addons"
1332
  msgstr ""
1333
 
1341
  msgstr ""
1342
 
1343
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1344
+ #: templates/admin/dashboard/dashboard.inc.php:592
1345
  msgid "Report Builder"
1346
  msgstr ""
1347
 
1348
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1349
+ #: templates/admin/dashboard/dashboard.inc.php:596
1350
  msgid ""
1351
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1352
  "XLSX documents filled in with actual data from your database."
1372
  msgstr ""
1373
 
1374
  #: templates/admin/addons/addons.inc.php:40
1375
+ #: templates/admin/dashboard/dashboard.inc.php:539
1376
  msgid "Master Detail Tables for wpDataTables"
1377
  msgstr ""
1378
 
1393
  msgstr ""
1394
 
1395
  #: templates/admin/addons/addons.inc.php:67
1396
+ #: templates/admin/dashboard/dashboard.inc.php:566
1397
  msgid "Powerful Filters for wpDataTables"
1398
  msgstr ""
1399
 
1405
  msgstr ""
1406
 
1407
  #: templates/admin/addons/addons.inc.php:120
1408
+ #: templates/admin/dashboard/dashboard.inc.php:619
1409
  msgid "Formidable Forms integration for wpDataTables"
1410
  msgstr ""
1411
 
1412
  #: templates/admin/addons/addons.inc.php:123
1413
+ #: templates/admin/dashboard/dashboard.inc.php:623
1414
  msgid ""
1415
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1416
  "create wpDataTables from Formidable Forms entries data."
1417
  msgstr ""
1418
 
1419
  #: templates/admin/addons/addons.inc.php:143
1420
+ #: templates/admin/dashboard/dashboard.inc.php:645
1421
  msgid "Gravity Forms integration for wpDataTables"
1422
  msgstr ""
1423
 
1424
  #: templates/admin/addons/addons.inc.php:146
1425
+ #: templates/admin/dashboard/dashboard.inc.php:649
1426
  msgid ""
1427
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1428
  "wpDataTables from Gravity Forms entries data."
1445
  msgid "New chart title"
1446
  msgstr ""
1447
 
1448
+ #: templates/admin/browse/search_box.inc.php:7
1449
+ msgid "Search for items..."
1450
+ msgstr ""
1451
+
1452
  #: templates/admin/browse/table/browse.inc.php:25
1453
  msgid "Browse Tables"
1454
  msgstr ""
1887
  msgstr ""
1888
 
1889
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1890
+ #: templates/admin/chart_wizard/steps/step4.inc.php:543
1891
  msgid "Tooltip"
1892
  msgstr ""
1893
 
1917
  msgstr ""
1918
 
1919
  #: templates/admin/chart_wizard/steps/step4.inc.php:49
1920
+ #: templates/admin/chart_wizard/steps/step4.inc.php:347
1921
  msgid "Controls the curve of the lines"
1922
  msgstr ""
1923
 
2049
  msgid "The default font face for all text in the chart."
2050
  msgstr ""
2051
 
2052
+ #: templates/admin/chart_wizard/steps/step4.inc.php:330
2053
+ #: templates/admin/chart_wizard/steps/step4.inc.php:336
2054
+ msgid "3D"
2055
+ msgstr ""
2056
+
2057
+ #: templates/admin/chart_wizard/steps/step4.inc.php:332
2058
+ msgid "Check for 3D pie chart"
2059
+ msgstr ""
2060
+
2061
+ #: templates/admin/chart_wizard/steps/step4.inc.php:345
2062
  msgid "Grid"
2063
  msgstr ""
2064
 
2065
+ #: templates/admin/chart_wizard/steps/step4.inc.php:351
2066
  msgid "Do you want to show grid on the chart"
2067
  msgstr ""
2068
 
2069
+ #: templates/admin/chart_wizard/steps/step4.inc.php:356
2070
  msgid "Horizontal axis label"
2071
  msgstr ""
2072
 
2073
+ #: templates/admin/chart_wizard/steps/step4.inc.php:358
2074
  msgid "Name of the horizontal axis."
2075
  msgstr ""
2076
 
2077
+ #: templates/admin/chart_wizard/steps/step4.inc.php:373
2078
  msgid "Horizontal crosshair"
2079
  msgstr ""
2080
 
2081
+ #: templates/admin/chart_wizard/steps/step4.inc.php:375
2082
  msgid ""
2083
  "Configure a horizontal crosshair that follows either the mouse pointer or "
2084
  "the hovered point lines"
2085
  msgstr ""
2086
 
2087
+ #: templates/admin/chart_wizard/steps/step4.inc.php:379
2088
  msgid "Show x-Axis crosshair"
2089
  msgstr ""
2090
 
2091
+ #: templates/admin/chart_wizard/steps/step4.inc.php:384
2092
  msgid "Horizontal axis direction"
2093
  msgstr ""
2094
 
2095
+ #: templates/admin/chart_wizard/steps/step4.inc.php:386
2096
  msgid ""
2097
  "The direction in which the values along the horizontal axis grow. Specify -1 "
2098
  "to reverse the order of the values"
2099
  msgstr ""
2100
 
2101
+ #: templates/admin/chart_wizard/steps/step4.inc.php:402
2102
  msgid "Vertical axis label"
2103
  msgstr ""
2104
 
2105
+ #: templates/admin/chart_wizard/steps/step4.inc.php:404
2106
  msgid "Name of the vertical axis."
2107
  msgstr ""
2108
 
2109
+ #: templates/admin/chart_wizard/steps/step4.inc.php:419
2110
  msgid "Vertical crosshair"
2111
  msgstr ""
2112
 
2113
+ #: templates/admin/chart_wizard/steps/step4.inc.php:421
2114
  msgid ""
2115
  "Configure a vertical crosshair that follows either the mouse pointer or the "
2116
  "hovered point lines"
2117
  msgstr ""
2118
 
2119
+ #: templates/admin/chart_wizard/steps/step4.inc.php:425
2120
  msgid "Show y-Axis crosshair"
2121
  msgstr ""
2122
 
2123
+ #: templates/admin/chart_wizard/steps/step4.inc.php:430
2124
  msgid "Vertical axis direction"
2125
  msgstr ""
2126
 
2127
+ #: templates/admin/chart_wizard/steps/step4.inc.php:432
2128
  msgid ""
2129
  "The direction in which the values along the vertical axis grow. Specify -1 "
2130
  "to reverse the order of the values"
2131
  msgstr ""
2132
 
2133
+ #: templates/admin/chart_wizard/steps/step4.inc.php:449
2134
  msgid "Vertical axis min value"
2135
  msgstr ""
2136
 
2137
+ #: templates/admin/chart_wizard/steps/step4.inc.php:451
2138
  msgid "The minimum value of the axis."
2139
  msgstr ""
2140
 
2141
+ #: templates/admin/chart_wizard/steps/step4.inc.php:475
2142
  msgid "Vertical axis max value"
2143
  msgstr ""
2144
 
2145
+ #: templates/admin/chart_wizard/steps/step4.inc.php:477
2146
  msgid "The maximum value of the axis."
2147
  msgstr ""
2148
 
2149
+ #: templates/admin/chart_wizard/steps/step4.inc.php:500
2150
  msgid "Invert"
2151
  msgstr ""
2152
 
2153
+ #: templates/admin/chart_wizard/steps/step4.inc.php:502
2154
  msgid ""
2155
  "Whether to invert the axes so that the x axis is vertical and y axis is "
2156
  "horizontal"
2157
  msgstr ""
2158
 
2159
+ #: templates/admin/chart_wizard/steps/step4.inc.php:506
2160
  msgid "Invert chart axes"
2161
  msgstr ""
2162
 
2163
+ #: templates/admin/chart_wizard/steps/step4.inc.php:516
2164
  msgid "Chart title"
2165
  msgstr ""
2166
 
2167
+ #: templates/admin/chart_wizard/steps/step4.inc.php:518
2168
  msgid "Do you want to show the chart title on the page"
2169
  msgstr ""
2170
 
2171
+ #: templates/admin/chart_wizard/steps/step4.inc.php:522
2172
  msgid "Show title"
2173
  msgstr ""
2174
 
2175
+ #: templates/admin/chart_wizard/steps/step4.inc.php:527
2176
  msgid "Title floating"
2177
  msgstr ""
2178
 
2179
+ #: templates/admin/chart_wizard/steps/step4.inc.php:529
2180
  msgid ""
2181
  "When the title is floating, the plot area will not move to make space for it"
2182
  msgstr ""
2183
 
2184
+ #: templates/admin/chart_wizard/steps/step4.inc.php:533
2185
  msgid "Enable floating"
2186
  msgstr ""
2187
 
2188
+ #: templates/admin/chart_wizard/steps/step4.inc.php:545
2189
  msgid "Enable or disable the tooltip"
2190
  msgstr ""
2191
 
2192
+ #: templates/admin/chart_wizard/steps/step4.inc.php:549
2193
  msgid "Show tooltip"
2194
  msgstr ""
2195
 
2196
+ #: templates/admin/chart_wizard/steps/step4.inc.php:560
2197
  msgid "Position"
2198
  msgstr ""
2199
 
2200
+ #: templates/admin/chart_wizard/steps/step4.inc.php:562
2201
  msgid "Position of the legend"
2202
  msgstr ""
2203
 
2204
+ #: templates/admin/chart_wizard/steps/step4.inc.php:580
2205
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2206
  msgid "Vertical align"
2207
  msgstr ""
2208
 
2209
+ #: templates/admin/chart_wizard/steps/step4.inc.php:582
2210
  msgid "The vertical alignment of the legend box"
2211
  msgstr ""
2212
 
2644
  msgstr ""
2645
 
2646
  #: templates/admin/dashboard/dashboard.inc.php:345
2647
+ msgid "<strong>Feature:</strong> Add new option for creating 3D pie chart."
 
 
2648
  msgstr ""
2649
 
2650
  #: templates/admin/dashboard/dashboard.inc.php:346
2651
  msgid ""
2652
+ "<strong>Feature:</strong> Search for tables and charts using ID on browse "
2653
+ "pages."
2654
  msgstr ""
2655
 
2656
  #: templates/admin/dashboard/dashboard.inc.php:347
2657
  msgid ""
2658
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2659
+ "media in Simple tables."
2660
  msgstr ""
2661
 
2662
  #: templates/admin/dashboard/dashboard.inc.php:348
2663
+ msgid "<strong>Improvement:</strong> Added German translation"
 
 
2664
  msgstr ""
2665
 
2666
  #: templates/admin/dashboard/dashboard.inc.php:349
2667
  msgid ""
2668
+ "<strong>Bugfix:</strong> Fixed issue with Fatal errors if allow_url_fopen is "
2669
+ "turned off on server."
2670
  msgstr ""
2671
 
2672
  #: templates/admin/dashboard/dashboard.inc.php:350
2673
+ msgid ""
2674
+ "<strong>BugFix:</strong> Fixed issue with loading simple table preview after "
2675
+ "clicking on back button in browser from some pages."
2676
  msgstr ""
2677
 
2678
  #: templates/admin/dashboard/dashboard.inc.php:351
2679
+ msgid ""
2680
+ "<strong>BugFix:</strong> Fixed issue with inserting “px” in column width "
2681
+ "option."
2682
+ msgstr ""
2683
+
2684
+ #: templates/admin/dashboard/dashboard.inc.php:352
2685
+ msgid "Compatibility with WordPress 5.7 approved."
2686
+ msgstr ""
2687
+
2688
+ #: templates/admin/dashboard/dashboard.inc.php:353
2689
  msgid "Other small bug fixes and stability improvements."
2690
  msgstr ""
2691
 
2692
+ #: templates/admin/dashboard/dashboard.inc.php:365
2693
  msgid "Go Premium!"
2694
  msgstr ""
2695
 
2696
+ #: templates/admin/dashboard/dashboard.inc.php:371
2697
  msgid "View Comparison"
2698
  msgstr ""
2699
 
2700
+ #: templates/admin/dashboard/dashboard.inc.php:379
2701
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2702
  msgid ""
2703
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2704
  "of the powerful features."
2705
  msgstr ""
2706
 
2707
+ #: templates/admin/dashboard/dashboard.inc.php:383
2708
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
2709
  msgid "Create a table manually"
2710
  msgstr ""
2711
 
2712
+ #: templates/admin/dashboard/dashboard.inc.php:386
2713
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:304
2714
  msgid "Creating tables from Google Spreadsheet"
2715
  msgstr ""
2716
 
2717
+ #: templates/admin/dashboard/dashboard.inc.php:389
2718
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:316
2719
+ msgid "Creating tables via Google Sheet API"
 
2720
  msgstr ""
2721
 
2722
+ #: templates/admin/dashboard/dashboard.inc.php:392
2723
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2724
+ msgid "Creating tables from Private Google Spreadsheet"
 
2725
  msgstr ""
2726
 
2727
+ #: templates/admin/dashboard/dashboard.inc.php:395
2728
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2729
  msgid "Creating MySQL-based tables from database"
2730
  msgstr ""
2731
 
2732
+ #: templates/admin/dashboard/dashboard.inc.php:398
2733
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2734
  msgid "Creating MySQL-based tables from Wordpress post types"
2735
  msgstr ""
2736
 
2737
+ #: templates/admin/dashboard/dashboard.inc.php:401
2738
+ msgid "Creating tables where users can see and edit own data"
2739
+ msgstr ""
2740
+
2741
+ #: templates/admin/dashboard/dashboard.inc.php:404
2742
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2743
+ msgid "Creating table relations (Foreign key)"
2744
+ msgstr ""
2745
+
2746
+ #: templates/admin/dashboard/dashboard.inc.php:407
2747
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2748
  #: templates/edit_table.inc.php:329
2749
  msgid "Advanced filtering"
2750
  msgstr ""
2751
 
2752
+ #: templates/admin/dashboard/dashboard.inc.php:410
2753
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2754
+ msgid "Pre-filtering tables through URL"
2755
+ msgstr ""
2756
+
2757
+ #: templates/admin/dashboard/dashboard.inc.php:413
2758
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
2759
+ msgid "Table Customization"
2760
+ msgstr ""
2761
+
2762
+ #: templates/admin/dashboard/dashboard.inc.php:416
2763
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2764
  #: templates/admin/table-settings/table_settings_block.inc.php:153
2765
  #: templates/edit_table.inc.php:282
2766
  msgid "Server-side processing"
2767
  msgstr ""
2768
 
2769
+ #: templates/admin/dashboard/dashboard.inc.php:419
2770
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2771
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2772
  msgstr ""
2773
 
2774
+ #: templates/admin/dashboard/dashboard.inc.php:422
2775
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2776
  msgid "Front-end table editing"
2777
  msgstr ""
2778
 
2779
+ #: templates/admin/dashboard/dashboard.inc.php:425
2780
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2781
  msgid "Excel-like editing"
2782
  msgstr ""
2783
 
2784
+ #: templates/admin/dashboard/dashboard.inc.php:428
2785
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2786
  msgid "Creating charts with Highcharts"
2787
  msgstr ""
2788
 
2789
+ #: templates/admin/dashboard/dashboard.inc.php:431
2790
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
2791
  msgid "Creating charts with Chart.js"
2792
  msgstr ""
2793
 
2794
+ #: templates/admin/dashboard/dashboard.inc.php:434
2795
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:486
2796
+ msgid "Follow table filtering in charts"
2797
+ msgstr ""
2798
+
2799
+ #: templates/admin/dashboard/dashboard.inc.php:437
2800
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:498
2801
+ msgid "Grouping data in Charts"
2802
+ msgstr ""
2803
+
2804
+ #: templates/admin/dashboard/dashboard.inc.php:440
2805
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:510
2806
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2807
  #: templates/edit_table.inc.php:301
2808
  msgid "Responsive"
2809
  msgstr ""
2810
 
2811
+ #: templates/admin/dashboard/dashboard.inc.php:443
2812
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:522
2813
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2814
  #: templates/edit_table.inc.php:750
2815
  msgid "Conditional formatting"
2816
  msgstr ""
2817
 
2818
+ #: templates/admin/dashboard/dashboard.inc.php:446
2819
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:534
2820
  msgid "Calculating Tools"
2821
  msgstr ""
2822
 
2823
+ #: templates/admin/dashboard/dashboard.inc.php:449
2824
  msgid "Formula columns"
2825
  msgstr ""
2826
 
2827
+ #: templates/admin/dashboard/dashboard.inc.php:452
2828
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:546
2829
  #: templates/admin/table-settings/table_settings_block.inc.php:80
2830
  msgid "Placeholders"
2831
  msgstr ""
2832
 
2833
+ #: templates/admin/dashboard/dashboard.inc.php:455
2834
  msgid "Premium support"
2835
  msgstr ""
2836
 
2837
+ #: templates/admin/dashboard/dashboard.inc.php:459
2838
  msgid "Get Premium Today"
2839
  msgstr ""
2840
 
2841
+ #: templates/admin/dashboard/dashboard.inc.php:466
2842
  msgid "News Blog"
2843
  msgstr ""
2844
 
2845
+ #: templates/admin/dashboard/dashboard.inc.php:471
2846
  msgid "Checkout useful articles from wpdatatables.com"
2847
  msgstr ""
2848
 
2849
+ #: templates/admin/dashboard/dashboard.inc.php:504
 
 
 
 
2850
  msgid ""
2851
  "Never miss notifications about new cool features, promotions,\n"
2852
  " giveaways or freebies – subscribe to our "
2854
  " about 1 message per month and never spam!"
2855
  msgstr ""
2856
 
2857
+ #: templates/admin/dashboard/dashboard.inc.php:522
2858
  msgid "Premium "
2859
  msgstr ""
2860
 
2861
+ #: templates/admin/dashboard/dashboard.inc.php:525
2862
  msgid ""
2863
  "While wpDataTables itself provides quite a large amount of features and "
2864
  "unlimited customisation, flexibility, you can achieve even more with our "
2865
  "premium addons.(requires wpDataTables Premium version)"
2866
  msgstr ""
2867
 
2868
+ #: templates/admin/dashboard/dashboard.inc.php:543
2869
  msgid ""
2870
  "A wpDataTables addon which allows showing additional details for a specific "
2871
  "row in a popup or a separate page or post."
2872
  msgstr ""
2873
 
2874
+ #: templates/admin/dashboard/dashboard.inc.php:549
2875
+ #: templates/admin/dashboard/dashboard.inc.php:576
2876
+ #: templates/admin/dashboard/dashboard.inc.php:602
2877
+ #: templates/admin/dashboard/dashboard.inc.php:629
2878
+ #: templates/admin/dashboard/dashboard.inc.php:655
2879
+ #: templates/admin/dashboard/dashboard.inc.php:688
2880
  msgid "Learn More"
2881
  msgstr ""
2882
 
2883
+ #: templates/admin/dashboard/dashboard.inc.php:570
2884
  msgid ""
2885
  "An add-on for wpDataTables that provides powerful filtering features: "
2886
  "cascade filtering, applying filters on button click, hide table before "
2887
  "filtering."
2888
  msgstr ""
2889
 
2890
+ #: templates/admin/dashboard/dashboard.inc.php:666
2891
  msgid "Need free booking plugin?"
2892
  msgstr ""
2893
 
2894
+ #: templates/admin/dashboard/dashboard.inc.php:675
2895
  msgid "Appointments and Events WordPress Booking Plugin"
2896
  msgstr ""
2897
 
2898
+ #: templates/admin/dashboard/dashboard.inc.php:678
2899
  msgid ""
2900
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2901
  "set up a fully-featured automated booking system on your WordPress website "
2906
  "each month."
2907
  msgstr ""
2908
 
2909
+ #: templates/admin/dashboard/dashboard.inc.php:681
2910
  msgid "Rating: 4.3 - ‎97 reviews"
2911
  msgstr ""
2912
 
2913
+ #: templates/admin/dashboard/dashboard.inc.php:684
2914
  msgid "Free Download"
2915
  msgstr ""
2916
 
2917
+ #: templates/admin/dashboard/dashboard.inc.php:699
2918
  #: templates/admin/getting-started/getting_started.inc.php:184
2919
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:589
2920
  #: templates/admin/support/support.inc.php:78
2921
  #: templates/admin/system-info/system_info.inc.php:509
2922
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2923
  msgid "Made by"
2924
  msgstr ""
2925
 
2926
+ #: templates/admin/dashboard/dashboard.inc.php:707
2927
  #: templates/admin/getting-started/getting_started.inc.php:192
2928
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:597
2929
  #: templates/admin/support/support.inc.php:45
2930
  #: templates/admin/support/support.inc.php:86
2931
  #: templates/admin/system-info/system_info.inc.php:517
2934
  msgid "Documentation"
2935
  msgstr ""
2936
 
2937
+ #: templates/admin/dashboard/dashboard.inc.php:711
2938
  #: templates/admin/getting-started/getting_started.inc.php:196
2939
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:601
2940
  #: templates/admin/support/support.inc.php:24
2941
  #: templates/admin/support/support.inc.php:90
2942
  #: templates/admin/system-info/system_info.inc.php:521
3062
  msgstr ""
3063
 
3064
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3065
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:581
3066
  msgid "Go Premium Now"
3067
  msgstr ""
3068
 
3075
  msgstr ""
3076
 
3077
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3078
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:568
3079
  msgid "Premium"
3080
  msgstr ""
3081
 
3105
 
3106
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3107
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3108
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3109
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
3110
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
3111
  #: templates/admin/table-settings/table_settings_block.inc.php:84
3112
  msgid "NEW!"
3113
  msgstr ""
3131
  msgstr ""
3132
 
3133
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3134
+ msgid "Row grouping"
3135
+ msgstr ""
3136
+
3137
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3138
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3139
  #: templates/admin/table-settings/table_settings_block.inc.php:504
3140
  #: templates/admin/table-settings/table_settings_block.inc.php:512
3142
  msgid "Pagination"
3143
  msgstr ""
3144
 
3145
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3146
  msgid ""
3147
  "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3148
  "PDF, and Copy and Print options)</span>"
3149
  msgstr ""
3150
 
3151
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3152
  msgid "Column Customization"
3153
  msgstr ""
3154
 
3155
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
3156
  msgid "Global Table Customization"
3157
  msgstr ""
3158
 
3159
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3160
+ msgid "WP Bakery, Elementor and Gutenberg support"
3161
+ msgstr ""
3162
+
3163
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:252
3164
  msgid "Creating Google charts"
3165
  msgstr ""
3166
 
3167
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:264
3168
  msgid "Customize charts"
3169
  msgstr ""
3170
 
3171
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
3172
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:562
3173
  msgid "Limited"
3174
  msgstr ""
3175
 
3176
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:270
3177
  msgid "Some options are not available."
3178
  msgstr ""
3179
 
3180
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
3181
+ msgid "Creating tables where users can see and edit only their own data"
 
 
 
 
 
 
 
 
3182
  msgstr ""
3183
 
3184
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:558
3185
  msgid "Support"
3186
  msgstr ""
3187
 
3188
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:564
3189
  msgid "Response time is slow and can be up to 5 business days."
3190
  msgstr ""
3191
 
3192
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:575
3193
  msgid ""
3194
  "* Please note that wpDataTables add-ons are not included in premium version "
3195
  "of plugin."
languages/fr_FR/wpdatatables-fr_FR.mo CHANGED
Binary file
languages/fr_FR/wpdatatables-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
- "POT-Creation-Date: 2021-02-26 13:11+0100\n"
5
- "PO-Revision-Date: 2021-02-26 13:11+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: fr_FR\n"
@@ -88,11 +88,8 @@ msgstr "Suppléments d’extension"
88
  msgid "Welcome page"
89
  msgstr "Page d'accueil"
90
 
91
- #: controllers/wdt_admin.php:116
92
- msgid "Get Premium"
93
- msgstr ""
94
-
95
- #: controllers/wdt_admin.php:117
96
  msgid "Go Premium"
97
  msgstr ""
98
 
@@ -120,82 +117,95 @@ msgid "Provided column is not Integer or Float column type"
120
  msgstr ""
121
  "La colonne fournie n’est pas un type de colonne de nombre entier ou à vigule"
122
 
123
- #: controllers/wdt_functions.php:830
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  msgid "Choose a table"
125
  msgstr "Choisissez un tableau"
126
 
127
- #: controllers/wdt_functions.php:862
128
  msgid "Interactive Responsive Table"
129
  msgstr "Tableau interactif adaptatif"
130
 
131
- #: controllers/wdt_functions.php:863 controllers/wdt_functions.php:924
132
  msgid "Content"
133
  msgstr "Contenu"
134
 
135
- #: controllers/wdt_functions.php:869
136
  msgid "wpDataTable"
137
  msgstr "wpDataTable"
138
 
139
- #: controllers/wdt_functions.php:873
140
  msgid "Choose the wpDataTable from a dropdown"
141
  msgstr "Choisissez le wpDataTable dans une liste déroulante"
142
 
143
- #: controllers/wdt_functions.php:878
144
  msgid "Table view"
145
  msgstr "Vue tableau"
146
 
147
- #: controllers/wdt_functions.php:882
148
  msgid "Regular wpDataTable"
149
  msgstr "WpDataTable ordinaire"
150
 
151
- #: controllers/wdt_functions.php:884
152
  msgid "Excel-like table"
153
  msgstr "Tableau de type Excel"
154
 
155
- #: controllers/wdt_functions.php:890
156
  msgid "Variable placeholder #1"
157
  msgstr "Texte indicatif variable #1"
158
 
159
- #: controllers/wdt_functions.php:893 controllers/wdt_functions.php:901
160
- #: controllers/wdt_functions.php:909
161
  msgid "Variables"
162
  msgstr "Variables"
163
 
164
- #: controllers/wdt_functions.php:894
165
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
166
  msgstr ""
167
  "Si vous avez utilisé le texte indicatif VAR1, vous pouvez lui attribuer une "
168
  "valeur ici"
169
 
170
- #: controllers/wdt_functions.php:898
171
  msgid "Variable placeholder #2"
172
  msgstr "Texte indicatif variable #2"
173
 
174
- #: controllers/wdt_functions.php:902
175
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
176
  msgstr ""
177
  "Si vous avez utilisé le texte indicatif VAR2, vous pouvez lui attribuer une "
178
  "valeur ici"
179
 
180
- #: controllers/wdt_functions.php:906
181
  msgid "Variable placeholder #3"
182
  msgstr "Texte indicatif variable #3"
183
 
184
- #: controllers/wdt_functions.php:910
185
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
186
  msgstr ""
187
  "Si vous avez utilisé le texte indicatif VAR3, vous pouvez lui attribuer une "
188
  "valeur ici"
189
 
190
- #: controllers/wdt_functions.php:923
191
  msgid "Google or Highcharts chart based on a wpDataTable"
192
  msgstr "Graphique Google ou HighCharts basé sur un wpDataTable"
193
 
194
- #: controllers/wdt_functions.php:930
195
  msgid "wpDataChart"
196
  msgstr "wpDataChart"
197
 
198
- #: controllers/wdt_functions.php:934
199
  msgid "Choose one of wpDataCharts from the list"
200
  msgstr "Choisissez l’un des wpDataCharts dans la liste"
201
 
@@ -239,7 +249,7 @@ msgstr ""
239
  msgid "Shortcode"
240
  msgstr ""
241
 
242
- #: source/class.wdtbrowsechartstable.php:141
243
  #: source/class.wdtbrowsetable.php:168
244
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
245
  #: templates/admin/dashboard/dashboard.inc.php:153
@@ -247,99 +257,99 @@ msgstr ""
247
  msgid "Click to copy shortcode"
248
  msgstr "Cliquez pour copier le shortcode"
249
 
250
- #: source/class.wdtbrowsechartstable.php:150
251
  #: source/class.wdtbrowsetable.php:179
252
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
253
  #: templates/admin/browse/table/duplicate_modal.inc.php:64
254
  msgid "Duplicate"
255
  msgstr "Dupliquer"
256
 
257
- #: source/class.wdtbrowsechartstable.php:156
258
  #: source/class.wdtbrowsetable.php:185
259
  #: templates/admin/dashboard/dashboard.inc.php:261
260
  msgid "Configure"
261
  msgstr "Configurer"
262
 
263
- #: source/class.wdtbrowsechartstable.php:162
264
  #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
265
  #: templates/admin/browse/bulk_actions.inc.php:14
266
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
267
  msgid "Delete"
268
  msgstr "Effacer"
269
 
270
- #: source/class.wdtbrowsechartstable.php:217
271
- #: source/class.wdtbrowsechartstable.php:226
272
  msgid "Column Chart"
273
  msgstr "Graphique à colonnes"
274
 
275
- #: source/class.wdtbrowsechartstable.php:220
276
- #: source/class.wdtbrowsechartstable.php:244
277
  msgid "Line Chart"
278
  msgstr "Graphique en ligne"
279
 
280
- #: source/class.wdtbrowsechartstable.php:223
281
- #: source/class.wdtbrowsechartstable.php:247
282
  msgid "Pie Chart"
283
  msgstr "Camembert"
284
 
285
- #: source/class.wdtbrowsechartstable.php:229
286
  #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
287
  #: templates/chart_wizard.inc.php:91
288
  msgid "Histogram"
289
  msgstr "Histogramme"
290
 
291
- #: source/class.wdtbrowsechartstable.php:232
292
  msgid "Bar Chart"
293
  msgstr "Diagramme à bandes"
294
 
295
- #: source/class.wdtbrowsechartstable.php:235
296
  msgid "Stacked Bar Chart"
297
  msgstr "Diagramme à barres empilées"
298
 
299
- #: source/class.wdtbrowsechartstable.php:238
300
  msgid "Area Chart"
301
  msgstr "Diagramme de zone"
302
 
303
- #: source/class.wdtbrowsechartstable.php:241
304
  msgid "Stepped Area Chart"
305
  msgstr "Diagramme de zone en escalier"
306
 
307
- #: source/class.wdtbrowsechartstable.php:250
308
  msgid "Bubble Chart"
309
  msgstr "Diagramme à bulles"
310
 
311
- #: source/class.wdtbrowsechartstable.php:253
312
  msgid "Donut Chart"
313
  msgstr "Graphique Donut"
314
 
315
- #: source/class.wdtbrowsechartstable.php:256
316
  msgid "Gauge Chart"
317
  msgstr "Graphique de jauge"
318
 
319
- #: source/class.wdtbrowsechartstable.php:259
320
  msgid "Scatter Chart"
321
  msgstr "Diagramme de dispersion"
322
 
323
- #: source/class.wdtbrowsechartstable.php:262
324
  msgid "Candlestick Chart"
325
  msgstr "Graphique en chandelier"
326
 
327
- #: source/class.wdtbrowsechartstable.php:265
328
  msgid "Waterfall Chart"
329
  msgstr "Graphique en cascade"
330
 
331
- #: source/class.wdtbrowsechartstable.php:278
332
  msgid "Google"
333
  msgstr "Google"
334
 
335
- #: source/class.wdtbrowsechartstable.php:345
336
  #: source/class.wdtbrowsetable.php:298
337
  #: templates/admin/chart_wizard/steps/step3.inc.php:11
338
  #: templates/admin/chart_wizard/steps/step3.inc.php:32
339
  msgid "Select All"
340
  msgstr "Tout sélectionner"
341
 
342
- #: source/class.wdtbrowsechartstable.php:398
343
  msgid "No wpDataCharts in the system yet."
344
  msgstr "Aucun wpDataCharts dans le système pour le moment."
345
 
@@ -1341,11 +1351,11 @@ msgstr ""
1341
  "n'importe quel WP article ou page. <br><br>Vous pouvez maintenant terminer "
1342
  "ce tutoriel. "
1343
 
1344
- #: source/class.wpdatachart.php:703
1345
  msgid "Only one column can be of type String"
1346
  msgstr "Une seule colonne peut être de type Chaîne de caractères"
1347
 
1348
- #: source/class.wpdatachart.php:706
1349
  msgid "You are mixing data types (several date axes and several number)"
1350
  msgstr ""
1351
  "Vous mélangez des types de données (plusieurs axes de dates et plusieurs "
@@ -1410,7 +1420,7 @@ msgstr ""
1410
  msgid "if you have some questions or problems with the plugin."
1411
  msgstr ""
1412
 
1413
- #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:499
1414
  msgid "wpDataTables Addons"
1415
  msgstr "Modules complémentaires pour wpDataTables"
1416
 
@@ -1430,12 +1440,12 @@ msgstr ""
1430
  "créateurs de wpDataTables et les développeurs tiers, donc restez à l’écoute."
1431
 
1432
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1433
- #: templates/admin/dashboard/dashboard.inc.php:570
1434
  msgid "Report Builder"
1435
  msgstr "Report Builder"
1436
 
1437
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1438
- #: templates/admin/dashboard/dashboard.inc.php:574
1439
  msgid ""
1440
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1441
  "XLSX documents filled in with actual data from your database."
@@ -1463,7 +1473,7 @@ msgid "NEW"
1463
  msgstr "NOUVEAU"
1464
 
1465
  #: templates/admin/addons/addons.inc.php:40
1466
- #: templates/admin/dashboard/dashboard.inc.php:517
1467
  msgid "Master Detail Tables for wpDataTables"
1468
  msgstr "Principaux tableaux détaillés pour wpDataTables"
1469
 
@@ -1489,7 +1499,7 @@ msgid "Learn more"
1489
  msgstr "En savoir plus"
1490
 
1491
  #: templates/admin/addons/addons.inc.php:67
1492
- #: templates/admin/dashboard/dashboard.inc.php:544
1493
  msgid "Powerful Filters for wpDataTables"
1494
  msgstr "Filtres puissants pour les wpDataTables"
1495
 
@@ -1505,12 +1515,12 @@ msgstr ""
1505
  "l’utilisateur ne définisse les valeurs de recherche."
1506
 
1507
  #: templates/admin/addons/addons.inc.php:120
1508
- #: templates/admin/dashboard/dashboard.inc.php:597
1509
  msgid "Formidable Forms integration for wpDataTables"
1510
  msgstr "Intégration de Formidable Forms pour wpDataTables"
1511
 
1512
  #: templates/admin/addons/addons.inc.php:123
1513
- #: templates/admin/dashboard/dashboard.inc.php:601
1514
  msgid ""
1515
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1516
  "create wpDataTables from Formidable Forms entries data."
@@ -1520,12 +1530,12 @@ msgstr ""
1520
  "Formidable Forms."
1521
 
1522
  #: templates/admin/addons/addons.inc.php:143
1523
- #: templates/admin/dashboard/dashboard.inc.php:623
1524
  msgid "Gravity Forms integration for wpDataTables"
1525
  msgstr "Intégration de Gravity Forms pour wpDataTables"
1526
 
1527
  #: templates/admin/addons/addons.inc.php:146
1528
- #: templates/admin/dashboard/dashboard.inc.php:627
1529
  msgid ""
1530
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1531
  "wpDataTables from Gravity Forms entries data."
@@ -1550,6 +1560,10 @@ msgstr "Dupliquer graphique"
1550
  msgid "New chart title"
1551
  msgstr "Nouveau titre du graphique"
1552
 
 
 
 
 
1553
  #: templates/admin/browse/table/browse.inc.php:25
1554
  msgid "Browse Tables"
1555
  msgstr "Parcourir les tableaux"
@@ -2013,7 +2027,7 @@ msgid "Axes"
2013
  msgstr "Axes"
2014
 
2015
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
2016
- #: templates/admin/chart_wizard/steps/step4.inc.php:532
2017
  msgid "Tooltip"
2018
  msgstr "Info-bulle"
2019
 
@@ -2045,7 +2059,7 @@ msgid "Curve type"
2045
  msgstr "Type de courbe"
2046
 
2047
  #: templates/admin/chart_wizard/steps/step4.inc.php:49
2048
- #: templates/admin/chart_wizard/steps/step4.inc.php:336
2049
  msgid "Controls the curve of the lines"
2050
  msgstr "Contrôle la courbe des lignes"
2051
 
@@ -2185,27 +2199,36 @@ msgstr "Nom de la police"
2185
  msgid "The default font face for all text in the chart."
2186
  msgstr "La police de caractères par défaut pour tout le texte du graphique."
2187
 
2188
- #: templates/admin/chart_wizard/steps/step4.inc.php:334
 
 
 
 
 
 
 
 
 
2189
  msgid "Grid"
2190
  msgstr "La grille"
2191
 
2192
- #: templates/admin/chart_wizard/steps/step4.inc.php:340
2193
  msgid "Do you want to show grid on the chart"
2194
  msgstr "Voulez-vous afficher la grille sur le graphique"
2195
 
2196
- #: templates/admin/chart_wizard/steps/step4.inc.php:345
2197
  msgid "Horizontal axis label"
2198
  msgstr "Libellé de l’axe horizontal"
2199
 
2200
- #: templates/admin/chart_wizard/steps/step4.inc.php:347
2201
  msgid "Name of the horizontal axis."
2202
  msgstr "Nom de l’axe horizontal."
2203
 
2204
- #: templates/admin/chart_wizard/steps/step4.inc.php:362
2205
  msgid "Horizontal crosshair"
2206
  msgstr "Réticule horizontal"
2207
 
2208
- #: templates/admin/chart_wizard/steps/step4.inc.php:364
2209
  msgid ""
2210
  "Configure a horizontal crosshair that follows either the mouse pointer or "
2211
  "the hovered point lines"
@@ -2213,15 +2236,15 @@ msgstr ""
2213
  "Configurez un réticule horizontal qui suit soit le pointeur de la souris, "
2214
  "soit les lignes de point survolées"
2215
 
2216
- #: templates/admin/chart_wizard/steps/step4.inc.php:368
2217
  msgid "Show x-Axis crosshair"
2218
  msgstr "Afficher le réticule de l’axe des x"
2219
 
2220
- #: templates/admin/chart_wizard/steps/step4.inc.php:373
2221
  msgid "Horizontal axis direction"
2222
  msgstr "Direction de l’axe horizontal"
2223
 
2224
- #: templates/admin/chart_wizard/steps/step4.inc.php:375
2225
  msgid ""
2226
  "The direction in which the values along the horizontal axis grow. Specify -1 "
2227
  "to reverse the order of the values"
@@ -2229,19 +2252,19 @@ msgstr ""
2229
  "La direction dans laquelle les valeurs sur l’axe horizontal augmentent. "
2230
  "Spécifiez -1 pour inverser l’ordre des valeurs"
2231
 
2232
- #: templates/admin/chart_wizard/steps/step4.inc.php:391
2233
  msgid "Vertical axis label"
2234
  msgstr "Libellé de l’axe vertical"
2235
 
2236
- #: templates/admin/chart_wizard/steps/step4.inc.php:393
2237
  msgid "Name of the vertical axis."
2238
  msgstr "Nom de l’axe vertical."
2239
 
2240
- #: templates/admin/chart_wizard/steps/step4.inc.php:408
2241
  msgid "Vertical crosshair"
2242
  msgstr "Réticule vertical"
2243
 
2244
- #: templates/admin/chart_wizard/steps/step4.inc.php:410
2245
  msgid ""
2246
  "Configure a vertical crosshair that follows either the mouse pointer or the "
2247
  "hovered point lines"
@@ -2249,15 +2272,15 @@ msgstr ""
2249
  "Configurez un réticule vertical qui suit soit le pointeur de la souris, soit "
2250
  "les lignes de point survolées"
2251
 
2252
- #: templates/admin/chart_wizard/steps/step4.inc.php:414
2253
  msgid "Show y-Axis crosshair"
2254
  msgstr "Afficher le réticule de l’axe des y"
2255
 
2256
- #: templates/admin/chart_wizard/steps/step4.inc.php:419
2257
  msgid "Vertical axis direction"
2258
  msgstr "Direction de l’axe vertical"
2259
 
2260
- #: templates/admin/chart_wizard/steps/step4.inc.php:421
2261
  msgid ""
2262
  "The direction in which the values along the vertical axis grow. Specify -1 "
2263
  "to reverse the order of the values"
@@ -2265,27 +2288,27 @@ msgstr ""
2265
  "La direction dans laquelle les valeurs sur l’axe vertical augmentent. "
2266
  "Spécifiez -1 pour inverser l’ordre des valeurs"
2267
 
2268
- #: templates/admin/chart_wizard/steps/step4.inc.php:438
2269
  msgid "Vertical axis min value"
2270
  msgstr "Valeur minimale de l’axe vertical"
2271
 
2272
- #: templates/admin/chart_wizard/steps/step4.inc.php:440
2273
  msgid "The minimum value of the axis."
2274
  msgstr "La valeur minimale de l’axe."
2275
 
2276
- #: templates/admin/chart_wizard/steps/step4.inc.php:464
2277
  msgid "Vertical axis max value"
2278
  msgstr "Valeur maximale de l’axe vertical"
2279
 
2280
- #: templates/admin/chart_wizard/steps/step4.inc.php:466
2281
  msgid "The maximum value of the axis."
2282
  msgstr "La valeur maximale de l’axe."
2283
 
2284
- #: templates/admin/chart_wizard/steps/step4.inc.php:489
2285
  msgid "Invert"
2286
  msgstr "Inverser"
2287
 
2288
- #: templates/admin/chart_wizard/steps/step4.inc.php:491
2289
  msgid ""
2290
  "Whether to invert the axes so that the x axis is vertical and y axis is "
2291
  "horizontal"
@@ -2293,59 +2316,59 @@ msgstr ""
2293
  "Indique si les axes doivent être inversés pour que l’axe x soit vertical et "
2294
  "que l’axe y soit horizontal"
2295
 
2296
- #: templates/admin/chart_wizard/steps/step4.inc.php:495
2297
  msgid "Invert chart axes"
2298
  msgstr "Inverser les axes du graphique"
2299
 
2300
- #: templates/admin/chart_wizard/steps/step4.inc.php:505
2301
  msgid "Chart title"
2302
  msgstr "Titre du graphique"
2303
 
2304
- #: templates/admin/chart_wizard/steps/step4.inc.php:507
2305
  msgid "Do you want to show the chart title on the page"
2306
  msgstr "Voulez-vous afficher le titre du graphique sur la page"
2307
 
2308
- #: templates/admin/chart_wizard/steps/step4.inc.php:511
2309
  msgid "Show title"
2310
  msgstr "Montrer le titre"
2311
 
2312
- #: templates/admin/chart_wizard/steps/step4.inc.php:516
2313
  msgid "Title floating"
2314
  msgstr "Titre flottant"
2315
 
2316
- #: templates/admin/chart_wizard/steps/step4.inc.php:518
2317
  msgid ""
2318
  "When the title is floating, the plot area will not move to make space for it"
2319
  msgstr ""
2320
  "Lorsque le titre est flottant, la zone de tracé ne bouge pas pour faire de "
2321
  "la place"
2322
 
2323
- #: templates/admin/chart_wizard/steps/step4.inc.php:522
2324
  msgid "Enable floating"
2325
  msgstr "Activer le flottement"
2326
 
2327
- #: templates/admin/chart_wizard/steps/step4.inc.php:534
2328
  msgid "Enable or disable the tooltip"
2329
  msgstr "Activer ou désactiver l’info-bulle"
2330
 
2331
- #: templates/admin/chart_wizard/steps/step4.inc.php:538
2332
  msgid "Show tooltip"
2333
  msgstr "Afficher l’info-bulle"
2334
 
2335
- #: templates/admin/chart_wizard/steps/step4.inc.php:549
2336
  msgid "Position"
2337
  msgstr "Position"
2338
 
2339
- #: templates/admin/chart_wizard/steps/step4.inc.php:551
2340
  msgid "Position of the legend"
2341
  msgstr "Position de la légende"
2342
 
2343
- #: templates/admin/chart_wizard/steps/step4.inc.php:569
2344
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2345
  msgid "Vertical align"
2346
  msgstr "Alignement vertical"
2347
 
2348
- #: templates/admin/chart_wizard/steps/step4.inc.php:571
2349
  msgid "The vertical alignment of the legend box"
2350
  msgstr "L’alignement vertical de la boîte de légende"
2351
 
@@ -2802,178 +2825,210 @@ msgid "A minor update with a couple of improvements and bug fixes:"
2802
  msgstr ""
2803
 
2804
  #: templates/admin/dashboard/dashboard.inc.php:345
2805
- msgid ""
2806
- "<strong>Improvement:</strong> Added auto-save functionality after insert "
2807
- "media in Simple tables."
2808
  msgstr ""
2809
 
2810
  #: templates/admin/dashboard/dashboard.inc.php:346
2811
  msgid ""
2812
- "<strong>Improvement:</strong> Added translate functions on some strings."
 
2813
  msgstr ""
2814
 
2815
  #: templates/admin/dashboard/dashboard.inc.php:347
2816
  msgid ""
2817
- "<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin "
2818
- "area and filters for elementor widgets."
2819
  msgstr ""
2820
 
2821
  #: templates/admin/dashboard/dashboard.inc.php:348
2822
- msgid ""
2823
- "<strong>BugFix:</strong> Fixed issue with font in material skin and "
2824
- "background in graphite skin."
2825
  msgstr ""
2826
 
2827
  #: templates/admin/dashboard/dashboard.inc.php:349
2828
  msgid ""
2829
- "<strong>BugFix:</strong> Fixed issue with class name in Global font color "
2830
- "settings."
2831
  msgstr ""
2832
 
2833
  #: templates/admin/dashboard/dashboard.inc.php:350
2834
- msgid "Compatibility with WordPress 5.6.2 approved."
 
 
2835
  msgstr ""
2836
 
2837
  #: templates/admin/dashboard/dashboard.inc.php:351
 
 
 
 
 
 
 
 
 
 
2838
  msgid "Other small bug fixes and stability improvements."
2839
  msgstr ""
2840
 
2841
- #: templates/admin/dashboard/dashboard.inc.php:363
2842
  msgid "Go Premium!"
2843
  msgstr ""
2844
 
2845
- #: templates/admin/dashboard/dashboard.inc.php:369
2846
  msgid "View Comparison"
2847
  msgstr ""
2848
 
2849
- #: templates/admin/dashboard/dashboard.inc.php:377
2850
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2851
  msgid ""
2852
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2853
  "of the powerful features."
2854
  msgstr ""
2855
 
2856
- #: templates/admin/dashboard/dashboard.inc.php:381
2857
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
2858
  msgid "Create a table manually"
2859
  msgstr "Créer un tableau manuellement"
2860
 
2861
- #: templates/admin/dashboard/dashboard.inc.php:384
2862
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
2863
  msgid "Creating tables from Google Spreadsheet"
2864
  msgstr "Création de tableaux à partir de Google Spreadsheet"
2865
 
2866
- #: templates/admin/dashboard/dashboard.inc.php:387
2867
- msgid ""
2868
- "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2869
- "tables via Google Sheet API"
2870
  msgstr ""
2871
 
2872
- #: templates/admin/dashboard/dashboard.inc.php:390
2873
- msgid ""
2874
- "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2875
- "tables from Private Google Spreadsheet"
2876
  msgstr ""
2877
 
2878
- #: templates/admin/dashboard/dashboard.inc.php:393
2879
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:318
2880
  msgid "Creating MySQL-based tables from database"
2881
  msgstr "Création de tableaux basés sur MySQL à partir d'une base de données"
2882
 
2883
- #: templates/admin/dashboard/dashboard.inc.php:396
2884
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
2885
  msgid "Creating MySQL-based tables from Wordpress post types"
2886
  msgstr ""
2887
  "Création de tableaux basés sur MySQL à partir d'articles types Wordpress"
2888
 
2889
- #: templates/admin/dashboard/dashboard.inc.php:399
2890
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
 
 
 
 
 
 
 
 
 
2891
  #: templates/edit_table.inc.php:329
2892
  msgid "Advanced filtering"
2893
  msgstr "Filtrage avancé"
2894
 
2895
- #: templates/admin/dashboard/dashboard.inc.php:402
2896
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
 
 
 
 
 
 
 
 
 
 
2897
  #: templates/admin/table-settings/table_settings_block.inc.php:153
2898
  #: templates/edit_table.inc.php:282
2899
  msgid "Server-side processing"
2900
  msgstr "Traitement côté serveur"
2901
 
2902
- #: templates/admin/dashboard/dashboard.inc.php:405
2903
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2904
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2905
  msgstr ""
2906
 
2907
- #: templates/admin/dashboard/dashboard.inc.php:408
2908
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2909
  msgid "Front-end table editing"
2910
  msgstr "Montage de tableaux en interface visuelle"
2911
 
2912
- #: templates/admin/dashboard/dashboard.inc.php:411
2913
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2914
  msgid "Excel-like editing"
2915
  msgstr "Montage comme sur Excel"
2916
 
2917
- #: templates/admin/dashboard/dashboard.inc.php:414
2918
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2919
  msgid "Creating charts with Highcharts"
2920
  msgstr "Créer des graphiques avec Highcharts"
2921
 
2922
- #: templates/admin/dashboard/dashboard.inc.php:417
2923
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2924
  msgid "Creating charts with Chart.js"
2925
  msgstr "Créer des graphiques avec Chart.js"
2926
 
2927
- #: templates/admin/dashboard/dashboard.inc.php:420
2928
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
 
 
 
 
 
 
 
 
 
 
2929
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2930
  #: templates/edit_table.inc.php:301
2931
  msgid "Responsive"
2932
  msgstr "Réactif"
2933
 
2934
- #: templates/admin/dashboard/dashboard.inc.php:423
2935
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2936
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2937
  #: templates/edit_table.inc.php:750
2938
  msgid "Conditional formatting"
2939
  msgstr "Mise en forme conditionnelle"
2940
 
2941
- #: templates/admin/dashboard/dashboard.inc.php:426
2942
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2943
  msgid "Calculating Tools"
2944
  msgstr "Outils de calcul"
2945
 
2946
- #: templates/admin/dashboard/dashboard.inc.php:429
2947
  msgid "Formula columns"
2948
  msgstr ""
2949
 
2950
- #: templates/admin/dashboard/dashboard.inc.php:432
2951
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2952
  #: templates/admin/table-settings/table_settings_block.inc.php:80
2953
  msgid "Placeholders"
2954
  msgstr "Textes indicatifs"
2955
 
2956
- #: templates/admin/dashboard/dashboard.inc.php:435
2957
  msgid "Premium support"
2958
  msgstr ""
2959
 
2960
- #: templates/admin/dashboard/dashboard.inc.php:439
2961
  msgid "Get Premium Today"
2962
  msgstr ""
2963
 
2964
- #: templates/admin/dashboard/dashboard.inc.php:446
2965
  msgid "News Blog"
2966
  msgstr "Nouvelles du blog"
2967
 
2968
- #: templates/admin/dashboard/dashboard.inc.php:451
2969
  msgid "Checkout useful articles from wpdatatables.com"
2970
  msgstr "Consultez les articles utiles de wpdatables.com"
2971
 
2972
- #: templates/admin/dashboard/dashboard.inc.php:474
2973
- msgid "Please install and enable PHP extensions xml and dom on your server."
2974
- msgstr ""
2975
-
2976
- #: templates/admin/dashboard/dashboard.inc.php:482
2977
  msgid ""
2978
  "Never miss notifications about new cool features, promotions,\n"
2979
  " giveaways or freebies – subscribe to our "
@@ -2987,18 +3042,18 @@ msgstr ""
2987
  " environ 1 message par mois et jamais de "
2988
  "spam !"
2989
 
2990
- #: templates/admin/dashboard/dashboard.inc.php:500
2991
  msgid "Premium "
2992
  msgstr ""
2993
 
2994
- #: templates/admin/dashboard/dashboard.inc.php:503
2995
  msgid ""
2996
  "While wpDataTables itself provides quite a large amount of features and "
2997
  "unlimited customisation, flexibility, you can achieve even more with our "
2998
  "premium addons.(requires wpDataTables Premium version)"
2999
  msgstr ""
3000
 
3001
- #: templates/admin/dashboard/dashboard.inc.php:521
3002
  msgid ""
3003
  "A wpDataTables addon which allows showing additional details for a specific "
3004
  "row in a popup or a separate page or post."
@@ -3006,16 +3061,16 @@ msgstr ""
3006
  "Un addon wpDataTables qui permet d'afficher des détails supplémentaires pour "
3007
  "une ligne spécifique dans un popup ou une page ou un message séparé."
3008
 
3009
- #: templates/admin/dashboard/dashboard.inc.php:527
3010
- #: templates/admin/dashboard/dashboard.inc.php:554
3011
- #: templates/admin/dashboard/dashboard.inc.php:580
3012
- #: templates/admin/dashboard/dashboard.inc.php:607
3013
- #: templates/admin/dashboard/dashboard.inc.php:633
3014
- #: templates/admin/dashboard/dashboard.inc.php:666
3015
  msgid "Learn More"
3016
  msgstr "En savoir plus"
3017
 
3018
- #: templates/admin/dashboard/dashboard.inc.php:548
3019
  msgid ""
3020
  "An add-on for wpDataTables that provides powerful filtering features: "
3021
  "cascade filtering, applying filters on button click, hide table before "
@@ -3025,15 +3080,15 @@ msgstr ""
3025
  "filtrage en cascade, application de filtres en un clic de bouton, masquage "
3026
  "du tableau avant le filtrage."
3027
 
3028
- #: templates/admin/dashboard/dashboard.inc.php:644
3029
  msgid "Need free booking plugin?"
3030
  msgstr ""
3031
 
3032
- #: templates/admin/dashboard/dashboard.inc.php:653
3033
  msgid "Appointments and Events WordPress Booking Plugin"
3034
  msgstr "Rendez-vous et événements Extension de réservation WordPress"
3035
 
3036
- #: templates/admin/dashboard/dashboard.inc.php:656
3037
  msgid ""
3038
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
3039
  "set up a fully-featured automated booking system on your WordPress website "
@@ -3044,26 +3099,26 @@ msgid ""
3044
  "each month."
3045
  msgstr ""
3046
 
3047
- #: templates/admin/dashboard/dashboard.inc.php:659
3048
  msgid "Rating: 4.3 - ‎97 reviews"
3049
  msgstr ""
3050
 
3051
- #: templates/admin/dashboard/dashboard.inc.php:662
3052
  msgid "Free Download"
3053
  msgstr ""
3054
 
3055
- #: templates/admin/dashboard/dashboard.inc.php:677
3056
  #: templates/admin/getting-started/getting_started.inc.php:184
3057
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:505
3058
  #: templates/admin/support/support.inc.php:78
3059
  #: templates/admin/system-info/system_info.inc.php:509
3060
  #: templates/admin/welcome_page/welcome_page.inc.php:358
3061
  msgid "Made by"
3062
  msgstr "Réalisé par"
3063
 
3064
- #: templates/admin/dashboard/dashboard.inc.php:685
3065
  #: templates/admin/getting-started/getting_started.inc.php:192
3066
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:513
3067
  #: templates/admin/support/support.inc.php:45
3068
  #: templates/admin/support/support.inc.php:86
3069
  #: templates/admin/system-info/system_info.inc.php:517
@@ -3072,9 +3127,9 @@ msgstr "Réalisé par"
3072
  msgid "Documentation"
3073
  msgstr "Documentation"
3074
 
3075
- #: templates/admin/dashboard/dashboard.inc.php:689
3076
  #: templates/admin/getting-started/getting_started.inc.php:196
3077
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:517
3078
  #: templates/admin/support/support.inc.php:24
3079
  #: templates/admin/support/support.inc.php:90
3080
  #: templates/admin/system-info/system_info.inc.php:521
@@ -3211,7 +3266,7 @@ msgid "Lite vs Premium comparison"
3211
  msgstr "Comparaison entre les versions Lite et Premium"
3212
 
3213
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3214
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:497
3215
  msgid "Go Premium Now"
3216
  msgstr ""
3217
 
@@ -3224,7 +3279,7 @@ msgid "Lite"
3224
  msgstr "Version allégée"
3225
 
3226
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3227
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3228
  msgid "Premium"
3229
  msgstr "Premium"
3230
 
@@ -3254,9 +3309,9 @@ msgstr ""
3254
 
3255
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3256
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3257
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:256
3258
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
3259
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:306
3260
  #: templates/admin/table-settings/table_settings_block.inc.php:84
3261
  msgid "NEW!"
3262
  msgstr ""
@@ -3282,6 +3337,10 @@ msgid "Sorting"
3282
  msgstr "Tri"
3283
 
3284
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
 
 
 
 
3285
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3286
  #: templates/admin/table-settings/table_settings_block.inc.php:504
3287
  #: templates/admin/table-settings/table_settings_block.inc.php:512
@@ -3289,58 +3348,54 @@ msgstr "Tri"
3289
  msgid "Pagination"
3290
  msgstr "Pagination"
3291
 
3292
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3293
  msgid ""
3294
  "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3295
  "PDF, and Copy and Print options)</span>"
3296
  msgstr ""
3297
 
3298
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3299
  msgid "Column Customization"
3300
  msgstr "Personnalisation des colonnes"
3301
 
3302
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3303
  msgid "Global Table Customization"
3304
  msgstr "Personnalisation du tableau global"
3305
 
3306
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
 
 
 
 
3307
  msgid "Creating Google charts"
3308
  msgstr "Créer des graphiques Google"
3309
 
3310
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3311
  msgid "Customize charts"
3312
  msgstr ""
3313
 
3314
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3315
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3316
  msgid "Limited"
3317
  msgstr "Limitée"
3318
 
3319
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:246
3320
  msgid "Some options are not available."
3321
  msgstr ""
3322
 
3323
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
3324
- msgid "Table Customization"
3325
- msgstr ""
3326
-
3327
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
3328
- msgid "Creating tables via Google Sheet API"
3329
- msgstr ""
3330
-
3331
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
3332
- msgid "Creating tables from Private Google Spreadsheet"
3333
  msgstr ""
3334
 
3335
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3336
  msgid "Support"
3337
  msgstr "Centre d'assistance"
3338
 
3339
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:480
3340
  msgid "Response time is slow and can be up to 5 business days."
3341
  msgstr ""
3342
 
3343
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:491
3344
  msgid ""
3345
  "* Please note that wpDataTables add-ons are not included in premium version "
3346
  "of plugin."
@@ -8320,12 +8375,6 @@ msgstr ""
8320
  #~ msgid "The default font color for all text in the chart."
8321
  #~ msgstr "La couleur de police par défaut pour tout le texte du graphique."
8322
 
8323
- #~ msgid "3D"
8324
- #~ msgstr "3D"
8325
-
8326
- #~ msgid "Check for 3D pie chart"
8327
- #~ msgstr "Cochez pour le camembert 3D"
8328
-
8329
  #~ msgid "Grid line style"
8330
  #~ msgstr "Style de ligne de la grille"
8331
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
+ "POT-Creation-Date: 2021-03-19 13:04+0100\n"
5
+ "PO-Revision-Date: 2021-03-19 13:04+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: fr_FR\n"
88
  msgid "Welcome page"
89
  msgstr "Page d'accueil"
90
 
91
+ #: controllers/wdt_admin.php:116 controllers/wdt_admin.php:117
92
+ #: controllers/wdt_functions.php:826
 
 
 
93
  msgid "Go Premium"
94
  msgstr ""
95
 
117
  msgstr ""
118
  "La colonne fournie n’est pas un type de colonne de nombre entier ou à vigule"
119
 
120
+ #: controllers/wdt_functions.php:821
121
+ msgid "Go to Settings"
122
+ msgstr ""
123
+
124
+ #: controllers/wdt_functions.php:850
125
+ #, php-format
126
+ msgid "By %s"
127
+ msgstr ""
128
+
129
+ #: controllers/wdt_functions.php:854
130
+ msgid "Docs"
131
+ msgstr ""
132
+
133
+ #: controllers/wdt_functions.php:882
134
  msgid "Choose a table"
135
  msgstr "Choisissez un tableau"
136
 
137
+ #: controllers/wdt_functions.php:914
138
  msgid "Interactive Responsive Table"
139
  msgstr "Tableau interactif adaptatif"
140
 
141
+ #: controllers/wdt_functions.php:915 controllers/wdt_functions.php:976
142
  msgid "Content"
143
  msgstr "Contenu"
144
 
145
+ #: controllers/wdt_functions.php:921
146
  msgid "wpDataTable"
147
  msgstr "wpDataTable"
148
 
149
+ #: controllers/wdt_functions.php:925
150
  msgid "Choose the wpDataTable from a dropdown"
151
  msgstr "Choisissez le wpDataTable dans une liste déroulante"
152
 
153
+ #: controllers/wdt_functions.php:930
154
  msgid "Table view"
155
  msgstr "Vue tableau"
156
 
157
+ #: controllers/wdt_functions.php:934
158
  msgid "Regular wpDataTable"
159
  msgstr "WpDataTable ordinaire"
160
 
161
+ #: controllers/wdt_functions.php:936
162
  msgid "Excel-like table"
163
  msgstr "Tableau de type Excel"
164
 
165
+ #: controllers/wdt_functions.php:942
166
  msgid "Variable placeholder #1"
167
  msgstr "Texte indicatif variable #1"
168
 
169
+ #: controllers/wdt_functions.php:945 controllers/wdt_functions.php:953
170
+ #: controllers/wdt_functions.php:961
171
  msgid "Variables"
172
  msgstr "Variables"
173
 
174
+ #: controllers/wdt_functions.php:946
175
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
176
  msgstr ""
177
  "Si vous avez utilisé le texte indicatif VAR1, vous pouvez lui attribuer une "
178
  "valeur ici"
179
 
180
+ #: controllers/wdt_functions.php:950
181
  msgid "Variable placeholder #2"
182
  msgstr "Texte indicatif variable #2"
183
 
184
+ #: controllers/wdt_functions.php:954
185
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
186
  msgstr ""
187
  "Si vous avez utilisé le texte indicatif VAR2, vous pouvez lui attribuer une "
188
  "valeur ici"
189
 
190
+ #: controllers/wdt_functions.php:958
191
  msgid "Variable placeholder #3"
192
  msgstr "Texte indicatif variable #3"
193
 
194
+ #: controllers/wdt_functions.php:962
195
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
196
  msgstr ""
197
  "Si vous avez utilisé le texte indicatif VAR3, vous pouvez lui attribuer une "
198
  "valeur ici"
199
 
200
+ #: controllers/wdt_functions.php:975
201
  msgid "Google or Highcharts chart based on a wpDataTable"
202
  msgstr "Graphique Google ou HighCharts basé sur un wpDataTable"
203
 
204
+ #: controllers/wdt_functions.php:982
205
  msgid "wpDataChart"
206
  msgstr "wpDataChart"
207
 
208
+ #: controllers/wdt_functions.php:986
209
  msgid "Choose one of wpDataCharts from the list"
210
  msgstr "Choisissez l’un des wpDataCharts dans la liste"
211
 
249
  msgid "Shortcode"
250
  msgstr ""
251
 
252
+ #: source/class.wdtbrowsechartstable.php:153
253
  #: source/class.wdtbrowsetable.php:168
254
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
255
  #: templates/admin/dashboard/dashboard.inc.php:153
257
  msgid "Click to copy shortcode"
258
  msgstr "Cliquez pour copier le shortcode"
259
 
260
+ #: source/class.wdtbrowsechartstable.php:162
261
  #: source/class.wdtbrowsetable.php:179
262
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
263
  #: templates/admin/browse/table/duplicate_modal.inc.php:64
264
  msgid "Duplicate"
265
  msgstr "Dupliquer"
266
 
267
+ #: source/class.wdtbrowsechartstable.php:168
268
  #: source/class.wdtbrowsetable.php:185
269
  #: templates/admin/dashboard/dashboard.inc.php:261
270
  msgid "Configure"
271
  msgstr "Configurer"
272
 
273
+ #: source/class.wdtbrowsechartstable.php:174
274
  #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
275
  #: templates/admin/browse/bulk_actions.inc.php:14
276
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
277
  msgid "Delete"
278
  msgstr "Effacer"
279
 
280
+ #: source/class.wdtbrowsechartstable.php:229
281
+ #: source/class.wdtbrowsechartstable.php:238
282
  msgid "Column Chart"
283
  msgstr "Graphique à colonnes"
284
 
285
+ #: source/class.wdtbrowsechartstable.php:232
286
+ #: source/class.wdtbrowsechartstable.php:256
287
  msgid "Line Chart"
288
  msgstr "Graphique en ligne"
289
 
290
+ #: source/class.wdtbrowsechartstable.php:235
291
+ #: source/class.wdtbrowsechartstable.php:259
292
  msgid "Pie Chart"
293
  msgstr "Camembert"
294
 
295
+ #: source/class.wdtbrowsechartstable.php:241
296
  #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
297
  #: templates/chart_wizard.inc.php:91
298
  msgid "Histogram"
299
  msgstr "Histogramme"
300
 
301
+ #: source/class.wdtbrowsechartstable.php:244
302
  msgid "Bar Chart"
303
  msgstr "Diagramme à bandes"
304
 
305
+ #: source/class.wdtbrowsechartstable.php:247
306
  msgid "Stacked Bar Chart"
307
  msgstr "Diagramme à barres empilées"
308
 
309
+ #: source/class.wdtbrowsechartstable.php:250
310
  msgid "Area Chart"
311
  msgstr "Diagramme de zone"
312
 
313
+ #: source/class.wdtbrowsechartstable.php:253
314
  msgid "Stepped Area Chart"
315
  msgstr "Diagramme de zone en escalier"
316
 
317
+ #: source/class.wdtbrowsechartstable.php:262
318
  msgid "Bubble Chart"
319
  msgstr "Diagramme à bulles"
320
 
321
+ #: source/class.wdtbrowsechartstable.php:265
322
  msgid "Donut Chart"
323
  msgstr "Graphique Donut"
324
 
325
+ #: source/class.wdtbrowsechartstable.php:268
326
  msgid "Gauge Chart"
327
  msgstr "Graphique de jauge"
328
 
329
+ #: source/class.wdtbrowsechartstable.php:271
330
  msgid "Scatter Chart"
331
  msgstr "Diagramme de dispersion"
332
 
333
+ #: source/class.wdtbrowsechartstable.php:274
334
  msgid "Candlestick Chart"
335
  msgstr "Graphique en chandelier"
336
 
337
+ #: source/class.wdtbrowsechartstable.php:277
338
  msgid "Waterfall Chart"
339
  msgstr "Graphique en cascade"
340
 
341
+ #: source/class.wdtbrowsechartstable.php:290
342
  msgid "Google"
343
  msgstr "Google"
344
 
345
+ #: source/class.wdtbrowsechartstable.php:357
346
  #: source/class.wdtbrowsetable.php:298
347
  #: templates/admin/chart_wizard/steps/step3.inc.php:11
348
  #: templates/admin/chart_wizard/steps/step3.inc.php:32
349
  msgid "Select All"
350
  msgstr "Tout sélectionner"
351
 
352
+ #: source/class.wdtbrowsechartstable.php:410
353
  msgid "No wpDataCharts in the system yet."
354
  msgstr "Aucun wpDataCharts dans le système pour le moment."
355
 
1351
  "n'importe quel WP article ou page. <br><br>Vous pouvez maintenant terminer "
1352
  "ce tutoriel. "
1353
 
1354
+ #: source/class.wpdatachart.php:718
1355
  msgid "Only one column can be of type String"
1356
  msgstr "Une seule colonne peut être de type Chaîne de caractères"
1357
 
1358
+ #: source/class.wpdatachart.php:721
1359
  msgid "You are mixing data types (several date axes and several number)"
1360
  msgstr ""
1361
  "Vous mélangez des types de données (plusieurs axes de dates et plusieurs "
1420
  msgid "if you have some questions or problems with the plugin."
1421
  msgstr ""
1422
 
1423
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:521
1424
  msgid "wpDataTables Addons"
1425
  msgstr "Modules complémentaires pour wpDataTables"
1426
 
1440
  "créateurs de wpDataTables et les développeurs tiers, donc restez à l’écoute."
1441
 
1442
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1443
+ #: templates/admin/dashboard/dashboard.inc.php:592
1444
  msgid "Report Builder"
1445
  msgstr "Report Builder"
1446
 
1447
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1448
+ #: templates/admin/dashboard/dashboard.inc.php:596
1449
  msgid ""
1450
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1451
  "XLSX documents filled in with actual data from your database."
1473
  msgstr "NOUVEAU"
1474
 
1475
  #: templates/admin/addons/addons.inc.php:40
1476
+ #: templates/admin/dashboard/dashboard.inc.php:539
1477
  msgid "Master Detail Tables for wpDataTables"
1478
  msgstr "Principaux tableaux détaillés pour wpDataTables"
1479
 
1499
  msgstr "En savoir plus"
1500
 
1501
  #: templates/admin/addons/addons.inc.php:67
1502
+ #: templates/admin/dashboard/dashboard.inc.php:566
1503
  msgid "Powerful Filters for wpDataTables"
1504
  msgstr "Filtres puissants pour les wpDataTables"
1505
 
1515
  "l’utilisateur ne définisse les valeurs de recherche."
1516
 
1517
  #: templates/admin/addons/addons.inc.php:120
1518
+ #: templates/admin/dashboard/dashboard.inc.php:619
1519
  msgid "Formidable Forms integration for wpDataTables"
1520
  msgstr "Intégration de Formidable Forms pour wpDataTables"
1521
 
1522
  #: templates/admin/addons/addons.inc.php:123
1523
+ #: templates/admin/dashboard/dashboard.inc.php:623
1524
  msgid ""
1525
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1526
  "create wpDataTables from Formidable Forms entries data."
1530
  "Formidable Forms."
1531
 
1532
  #: templates/admin/addons/addons.inc.php:143
1533
+ #: templates/admin/dashboard/dashboard.inc.php:645
1534
  msgid "Gravity Forms integration for wpDataTables"
1535
  msgstr "Intégration de Gravity Forms pour wpDataTables"
1536
 
1537
  #: templates/admin/addons/addons.inc.php:146
1538
+ #: templates/admin/dashboard/dashboard.inc.php:649
1539
  msgid ""
1540
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1541
  "wpDataTables from Gravity Forms entries data."
1560
  msgid "New chart title"
1561
  msgstr "Nouveau titre du graphique"
1562
 
1563
+ #: templates/admin/browse/search_box.inc.php:7
1564
+ msgid "Search for items..."
1565
+ msgstr ""
1566
+
1567
  #: templates/admin/browse/table/browse.inc.php:25
1568
  msgid "Browse Tables"
1569
  msgstr "Parcourir les tableaux"
2027
  msgstr "Axes"
2028
 
2029
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
2030
+ #: templates/admin/chart_wizard/steps/step4.inc.php:543
2031
  msgid "Tooltip"
2032
  msgstr "Info-bulle"
2033
 
2059
  msgstr "Type de courbe"
2060
 
2061
  #: templates/admin/chart_wizard/steps/step4.inc.php:49
2062
+ #: templates/admin/chart_wizard/steps/step4.inc.php:347
2063
  msgid "Controls the curve of the lines"
2064
  msgstr "Contrôle la courbe des lignes"
2065
 
2199
  msgid "The default font face for all text in the chart."
2200
  msgstr "La police de caractères par défaut pour tout le texte du graphique."
2201
 
2202
+ #: templates/admin/chart_wizard/steps/step4.inc.php:330
2203
+ #: templates/admin/chart_wizard/steps/step4.inc.php:336
2204
+ msgid "3D"
2205
+ msgstr "3D"
2206
+
2207
+ #: templates/admin/chart_wizard/steps/step4.inc.php:332
2208
+ msgid "Check for 3D pie chart"
2209
+ msgstr "Cochez pour le camembert 3D"
2210
+
2211
+ #: templates/admin/chart_wizard/steps/step4.inc.php:345
2212
  msgid "Grid"
2213
  msgstr "La grille"
2214
 
2215
+ #: templates/admin/chart_wizard/steps/step4.inc.php:351
2216
  msgid "Do you want to show grid on the chart"
2217
  msgstr "Voulez-vous afficher la grille sur le graphique"
2218
 
2219
+ #: templates/admin/chart_wizard/steps/step4.inc.php:356
2220
  msgid "Horizontal axis label"
2221
  msgstr "Libellé de l’axe horizontal"
2222
 
2223
+ #: templates/admin/chart_wizard/steps/step4.inc.php:358
2224
  msgid "Name of the horizontal axis."
2225
  msgstr "Nom de l’axe horizontal."
2226
 
2227
+ #: templates/admin/chart_wizard/steps/step4.inc.php:373
2228
  msgid "Horizontal crosshair"
2229
  msgstr "Réticule horizontal"
2230
 
2231
+ #: templates/admin/chart_wizard/steps/step4.inc.php:375
2232
  msgid ""
2233
  "Configure a horizontal crosshair that follows either the mouse pointer or "
2234
  "the hovered point lines"
2236
  "Configurez un réticule horizontal qui suit soit le pointeur de la souris, "
2237
  "soit les lignes de point survolées"
2238
 
2239
+ #: templates/admin/chart_wizard/steps/step4.inc.php:379
2240
  msgid "Show x-Axis crosshair"
2241
  msgstr "Afficher le réticule de l’axe des x"
2242
 
2243
+ #: templates/admin/chart_wizard/steps/step4.inc.php:384
2244
  msgid "Horizontal axis direction"
2245
  msgstr "Direction de l’axe horizontal"
2246
 
2247
+ #: templates/admin/chart_wizard/steps/step4.inc.php:386
2248
  msgid ""
2249
  "The direction in which the values along the horizontal axis grow. Specify -1 "
2250
  "to reverse the order of the values"
2252
  "La direction dans laquelle les valeurs sur l’axe horizontal augmentent. "
2253
  "Spécifiez -1 pour inverser l’ordre des valeurs"
2254
 
2255
+ #: templates/admin/chart_wizard/steps/step4.inc.php:402
2256
  msgid "Vertical axis label"
2257
  msgstr "Libellé de l’axe vertical"
2258
 
2259
+ #: templates/admin/chart_wizard/steps/step4.inc.php:404
2260
  msgid "Name of the vertical axis."
2261
  msgstr "Nom de l’axe vertical."
2262
 
2263
+ #: templates/admin/chart_wizard/steps/step4.inc.php:419
2264
  msgid "Vertical crosshair"
2265
  msgstr "Réticule vertical"
2266
 
2267
+ #: templates/admin/chart_wizard/steps/step4.inc.php:421
2268
  msgid ""
2269
  "Configure a vertical crosshair that follows either the mouse pointer or the "
2270
  "hovered point lines"
2272
  "Configurez un réticule vertical qui suit soit le pointeur de la souris, soit "
2273
  "les lignes de point survolées"
2274
 
2275
+ #: templates/admin/chart_wizard/steps/step4.inc.php:425
2276
  msgid "Show y-Axis crosshair"
2277
  msgstr "Afficher le réticule de l’axe des y"
2278
 
2279
+ #: templates/admin/chart_wizard/steps/step4.inc.php:430
2280
  msgid "Vertical axis direction"
2281
  msgstr "Direction de l’axe vertical"
2282
 
2283
+ #: templates/admin/chart_wizard/steps/step4.inc.php:432
2284
  msgid ""
2285
  "The direction in which the values along the vertical axis grow. Specify -1 "
2286
  "to reverse the order of the values"
2288
  "La direction dans laquelle les valeurs sur l’axe vertical augmentent. "
2289
  "Spécifiez -1 pour inverser l’ordre des valeurs"
2290
 
2291
+ #: templates/admin/chart_wizard/steps/step4.inc.php:449
2292
  msgid "Vertical axis min value"
2293
  msgstr "Valeur minimale de l’axe vertical"
2294
 
2295
+ #: templates/admin/chart_wizard/steps/step4.inc.php:451
2296
  msgid "The minimum value of the axis."
2297
  msgstr "La valeur minimale de l’axe."
2298
 
2299
+ #: templates/admin/chart_wizard/steps/step4.inc.php:475
2300
  msgid "Vertical axis max value"
2301
  msgstr "Valeur maximale de l’axe vertical"
2302
 
2303
+ #: templates/admin/chart_wizard/steps/step4.inc.php:477
2304
  msgid "The maximum value of the axis."
2305
  msgstr "La valeur maximale de l’axe."
2306
 
2307
+ #: templates/admin/chart_wizard/steps/step4.inc.php:500
2308
  msgid "Invert"
2309
  msgstr "Inverser"
2310
 
2311
+ #: templates/admin/chart_wizard/steps/step4.inc.php:502
2312
  msgid ""
2313
  "Whether to invert the axes so that the x axis is vertical and y axis is "
2314
  "horizontal"
2316
  "Indique si les axes doivent être inversés pour que l’axe x soit vertical et "
2317
  "que l’axe y soit horizontal"
2318
 
2319
+ #: templates/admin/chart_wizard/steps/step4.inc.php:506
2320
  msgid "Invert chart axes"
2321
  msgstr "Inverser les axes du graphique"
2322
 
2323
+ #: templates/admin/chart_wizard/steps/step4.inc.php:516
2324
  msgid "Chart title"
2325
  msgstr "Titre du graphique"
2326
 
2327
+ #: templates/admin/chart_wizard/steps/step4.inc.php:518
2328
  msgid "Do you want to show the chart title on the page"
2329
  msgstr "Voulez-vous afficher le titre du graphique sur la page"
2330
 
2331
+ #: templates/admin/chart_wizard/steps/step4.inc.php:522
2332
  msgid "Show title"
2333
  msgstr "Montrer le titre"
2334
 
2335
+ #: templates/admin/chart_wizard/steps/step4.inc.php:527
2336
  msgid "Title floating"
2337
  msgstr "Titre flottant"
2338
 
2339
+ #: templates/admin/chart_wizard/steps/step4.inc.php:529
2340
  msgid ""
2341
  "When the title is floating, the plot area will not move to make space for it"
2342
  msgstr ""
2343
  "Lorsque le titre est flottant, la zone de tracé ne bouge pas pour faire de "
2344
  "la place"
2345
 
2346
+ #: templates/admin/chart_wizard/steps/step4.inc.php:533
2347
  msgid "Enable floating"
2348
  msgstr "Activer le flottement"
2349
 
2350
+ #: templates/admin/chart_wizard/steps/step4.inc.php:545
2351
  msgid "Enable or disable the tooltip"
2352
  msgstr "Activer ou désactiver l’info-bulle"
2353
 
2354
+ #: templates/admin/chart_wizard/steps/step4.inc.php:549
2355
  msgid "Show tooltip"
2356
  msgstr "Afficher l’info-bulle"
2357
 
2358
+ #: templates/admin/chart_wizard/steps/step4.inc.php:560
2359
  msgid "Position"
2360
  msgstr "Position"
2361
 
2362
+ #: templates/admin/chart_wizard/steps/step4.inc.php:562
2363
  msgid "Position of the legend"
2364
  msgstr "Position de la légende"
2365
 
2366
+ #: templates/admin/chart_wizard/steps/step4.inc.php:580
2367
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2368
  msgid "Vertical align"
2369
  msgstr "Alignement vertical"
2370
 
2371
+ #: templates/admin/chart_wizard/steps/step4.inc.php:582
2372
  msgid "The vertical alignment of the legend box"
2373
  msgstr "L’alignement vertical de la boîte de légende"
2374
 
2825
  msgstr ""
2826
 
2827
  #: templates/admin/dashboard/dashboard.inc.php:345
2828
+ msgid "<strong>Feature:</strong> Add new option for creating 3D pie chart."
 
 
2829
  msgstr ""
2830
 
2831
  #: templates/admin/dashboard/dashboard.inc.php:346
2832
  msgid ""
2833
+ "<strong>Feature:</strong> Search for tables and charts using ID on browse "
2834
+ "pages."
2835
  msgstr ""
2836
 
2837
  #: templates/admin/dashboard/dashboard.inc.php:347
2838
  msgid ""
2839
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2840
+ "media in Simple tables."
2841
  msgstr ""
2842
 
2843
  #: templates/admin/dashboard/dashboard.inc.php:348
2844
+ msgid "<strong>Improvement:</strong> Added German translation"
 
 
2845
  msgstr ""
2846
 
2847
  #: templates/admin/dashboard/dashboard.inc.php:349
2848
  msgid ""
2849
+ "<strong>Bugfix:</strong> Fixed issue with Fatal errors if allow_url_fopen is "
2850
+ "turned off on server."
2851
  msgstr ""
2852
 
2853
  #: templates/admin/dashboard/dashboard.inc.php:350
2854
+ msgid ""
2855
+ "<strong>BugFix:</strong> Fixed issue with loading simple table preview after "
2856
+ "clicking on back button in browser from some pages."
2857
  msgstr ""
2858
 
2859
  #: templates/admin/dashboard/dashboard.inc.php:351
2860
+ msgid ""
2861
+ "<strong>BugFix:</strong> Fixed issue with inserting “px” in column width "
2862
+ "option."
2863
+ msgstr ""
2864
+
2865
+ #: templates/admin/dashboard/dashboard.inc.php:352
2866
+ msgid "Compatibility with WordPress 5.7 approved."
2867
+ msgstr ""
2868
+
2869
+ #: templates/admin/dashboard/dashboard.inc.php:353
2870
  msgid "Other small bug fixes and stability improvements."
2871
  msgstr ""
2872
 
2873
+ #: templates/admin/dashboard/dashboard.inc.php:365
2874
  msgid "Go Premium!"
2875
  msgstr ""
2876
 
2877
+ #: templates/admin/dashboard/dashboard.inc.php:371
2878
  msgid "View Comparison"
2879
  msgstr ""
2880
 
2881
+ #: templates/admin/dashboard/dashboard.inc.php:379
2882
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2883
  msgid ""
2884
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2885
  "of the powerful features."
2886
  msgstr ""
2887
 
2888
+ #: templates/admin/dashboard/dashboard.inc.php:383
2889
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
2890
  msgid "Create a table manually"
2891
  msgstr "Créer un tableau manuellement"
2892
 
2893
+ #: templates/admin/dashboard/dashboard.inc.php:386
2894
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:304
2895
  msgid "Creating tables from Google Spreadsheet"
2896
  msgstr "Création de tableaux à partir de Google Spreadsheet"
2897
 
2898
+ #: templates/admin/dashboard/dashboard.inc.php:389
2899
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:316
2900
+ msgid "Creating tables via Google Sheet API"
 
2901
  msgstr ""
2902
 
2903
+ #: templates/admin/dashboard/dashboard.inc.php:392
2904
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2905
+ msgid "Creating tables from Private Google Spreadsheet"
 
2906
  msgstr ""
2907
 
2908
+ #: templates/admin/dashboard/dashboard.inc.php:395
2909
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2910
  msgid "Creating MySQL-based tables from database"
2911
  msgstr "Création de tableaux basés sur MySQL à partir d'une base de données"
2912
 
2913
+ #: templates/admin/dashboard/dashboard.inc.php:398
2914
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2915
  msgid "Creating MySQL-based tables from Wordpress post types"
2916
  msgstr ""
2917
  "Création de tableaux basés sur MySQL à partir d'articles types Wordpress"
2918
 
2919
+ #: templates/admin/dashboard/dashboard.inc.php:401
2920
+ msgid "Creating tables where users can see and edit own data"
2921
+ msgstr ""
2922
+
2923
+ #: templates/admin/dashboard/dashboard.inc.php:404
2924
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2925
+ msgid "Creating table relations (Foreign key)"
2926
+ msgstr ""
2927
+
2928
+ #: templates/admin/dashboard/dashboard.inc.php:407
2929
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2930
  #: templates/edit_table.inc.php:329
2931
  msgid "Advanced filtering"
2932
  msgstr "Filtrage avancé"
2933
 
2934
+ #: templates/admin/dashboard/dashboard.inc.php:410
2935
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2936
+ msgid "Pre-filtering tables through URL"
2937
+ msgstr ""
2938
+
2939
+ #: templates/admin/dashboard/dashboard.inc.php:413
2940
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
2941
+ msgid "Table Customization"
2942
+ msgstr ""
2943
+
2944
+ #: templates/admin/dashboard/dashboard.inc.php:416
2945
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2946
  #: templates/admin/table-settings/table_settings_block.inc.php:153
2947
  #: templates/edit_table.inc.php:282
2948
  msgid "Server-side processing"
2949
  msgstr "Traitement côté serveur"
2950
 
2951
+ #: templates/admin/dashboard/dashboard.inc.php:419
2952
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2953
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2954
  msgstr ""
2955
 
2956
+ #: templates/admin/dashboard/dashboard.inc.php:422
2957
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2958
  msgid "Front-end table editing"
2959
  msgstr "Montage de tableaux en interface visuelle"
2960
 
2961
+ #: templates/admin/dashboard/dashboard.inc.php:425
2962
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2963
  msgid "Excel-like editing"
2964
  msgstr "Montage comme sur Excel"
2965
 
2966
+ #: templates/admin/dashboard/dashboard.inc.php:428
2967
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2968
  msgid "Creating charts with Highcharts"
2969
  msgstr "Créer des graphiques avec Highcharts"
2970
 
2971
+ #: templates/admin/dashboard/dashboard.inc.php:431
2972
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
2973
  msgid "Creating charts with Chart.js"
2974
  msgstr "Créer des graphiques avec Chart.js"
2975
 
2976
+ #: templates/admin/dashboard/dashboard.inc.php:434
2977
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:486
2978
+ msgid "Follow table filtering in charts"
2979
+ msgstr ""
2980
+
2981
+ #: templates/admin/dashboard/dashboard.inc.php:437
2982
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:498
2983
+ msgid "Grouping data in Charts"
2984
+ msgstr ""
2985
+
2986
+ #: templates/admin/dashboard/dashboard.inc.php:440
2987
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:510
2988
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2989
  #: templates/edit_table.inc.php:301
2990
  msgid "Responsive"
2991
  msgstr "Réactif"
2992
 
2993
+ #: templates/admin/dashboard/dashboard.inc.php:443
2994
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:522
2995
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2996
  #: templates/edit_table.inc.php:750
2997
  msgid "Conditional formatting"
2998
  msgstr "Mise en forme conditionnelle"
2999
 
3000
+ #: templates/admin/dashboard/dashboard.inc.php:446
3001
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:534
3002
  msgid "Calculating Tools"
3003
  msgstr "Outils de calcul"
3004
 
3005
+ #: templates/admin/dashboard/dashboard.inc.php:449
3006
  msgid "Formula columns"
3007
  msgstr ""
3008
 
3009
+ #: templates/admin/dashboard/dashboard.inc.php:452
3010
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:546
3011
  #: templates/admin/table-settings/table_settings_block.inc.php:80
3012
  msgid "Placeholders"
3013
  msgstr "Textes indicatifs"
3014
 
3015
+ #: templates/admin/dashboard/dashboard.inc.php:455
3016
  msgid "Premium support"
3017
  msgstr ""
3018
 
3019
+ #: templates/admin/dashboard/dashboard.inc.php:459
3020
  msgid "Get Premium Today"
3021
  msgstr ""
3022
 
3023
+ #: templates/admin/dashboard/dashboard.inc.php:466
3024
  msgid "News Blog"
3025
  msgstr "Nouvelles du blog"
3026
 
3027
+ #: templates/admin/dashboard/dashboard.inc.php:471
3028
  msgid "Checkout useful articles from wpdatatables.com"
3029
  msgstr "Consultez les articles utiles de wpdatables.com"
3030
 
3031
+ #: templates/admin/dashboard/dashboard.inc.php:504
 
 
 
 
3032
  msgid ""
3033
  "Never miss notifications about new cool features, promotions,\n"
3034
  " giveaways or freebies – subscribe to our "
3042
  " environ 1 message par mois et jamais de "
3043
  "spam !"
3044
 
3045
+ #: templates/admin/dashboard/dashboard.inc.php:522
3046
  msgid "Premium "
3047
  msgstr ""
3048
 
3049
+ #: templates/admin/dashboard/dashboard.inc.php:525
3050
  msgid ""
3051
  "While wpDataTables itself provides quite a large amount of features and "
3052
  "unlimited customisation, flexibility, you can achieve even more with our "
3053
  "premium addons.(requires wpDataTables Premium version)"
3054
  msgstr ""
3055
 
3056
+ #: templates/admin/dashboard/dashboard.inc.php:543
3057
  msgid ""
3058
  "A wpDataTables addon which allows showing additional details for a specific "
3059
  "row in a popup or a separate page or post."
3061
  "Un addon wpDataTables qui permet d'afficher des détails supplémentaires pour "
3062
  "une ligne spécifique dans un popup ou une page ou un message séparé."
3063
 
3064
+ #: templates/admin/dashboard/dashboard.inc.php:549
3065
+ #: templates/admin/dashboard/dashboard.inc.php:576
3066
+ #: templates/admin/dashboard/dashboard.inc.php:602
3067
+ #: templates/admin/dashboard/dashboard.inc.php:629
3068
+ #: templates/admin/dashboard/dashboard.inc.php:655
3069
+ #: templates/admin/dashboard/dashboard.inc.php:688
3070
  msgid "Learn More"
3071
  msgstr "En savoir plus"
3072
 
3073
+ #: templates/admin/dashboard/dashboard.inc.php:570
3074
  msgid ""
3075
  "An add-on for wpDataTables that provides powerful filtering features: "
3076
  "cascade filtering, applying filters on button click, hide table before "
3080
  "filtrage en cascade, application de filtres en un clic de bouton, masquage "
3081
  "du tableau avant le filtrage."
3082
 
3083
+ #: templates/admin/dashboard/dashboard.inc.php:666
3084
  msgid "Need free booking plugin?"
3085
  msgstr ""
3086
 
3087
+ #: templates/admin/dashboard/dashboard.inc.php:675
3088
  msgid "Appointments and Events WordPress Booking Plugin"
3089
  msgstr "Rendez-vous et événements Extension de réservation WordPress"
3090
 
3091
+ #: templates/admin/dashboard/dashboard.inc.php:678
3092
  msgid ""
3093
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
3094
  "set up a fully-featured automated booking system on your WordPress website "
3099
  "each month."
3100
  msgstr ""
3101
 
3102
+ #: templates/admin/dashboard/dashboard.inc.php:681
3103
  msgid "Rating: 4.3 - ‎97 reviews"
3104
  msgstr ""
3105
 
3106
+ #: templates/admin/dashboard/dashboard.inc.php:684
3107
  msgid "Free Download"
3108
  msgstr ""
3109
 
3110
+ #: templates/admin/dashboard/dashboard.inc.php:699
3111
  #: templates/admin/getting-started/getting_started.inc.php:184
3112
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:589
3113
  #: templates/admin/support/support.inc.php:78
3114
  #: templates/admin/system-info/system_info.inc.php:509
3115
  #: templates/admin/welcome_page/welcome_page.inc.php:358
3116
  msgid "Made by"
3117
  msgstr "Réalisé par"
3118
 
3119
+ #: templates/admin/dashboard/dashboard.inc.php:707
3120
  #: templates/admin/getting-started/getting_started.inc.php:192
3121
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:597
3122
  #: templates/admin/support/support.inc.php:45
3123
  #: templates/admin/support/support.inc.php:86
3124
  #: templates/admin/system-info/system_info.inc.php:517
3127
  msgid "Documentation"
3128
  msgstr "Documentation"
3129
 
3130
+ #: templates/admin/dashboard/dashboard.inc.php:711
3131
  #: templates/admin/getting-started/getting_started.inc.php:196
3132
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:601
3133
  #: templates/admin/support/support.inc.php:24
3134
  #: templates/admin/support/support.inc.php:90
3135
  #: templates/admin/system-info/system_info.inc.php:521
3266
  msgstr "Comparaison entre les versions Lite et Premium"
3267
 
3268
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3269
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:581
3270
  msgid "Go Premium Now"
3271
  msgstr ""
3272
 
3279
  msgstr "Version allégée"
3280
 
3281
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3282
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:568
3283
  msgid "Premium"
3284
  msgstr "Premium"
3285
 
3309
 
3310
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3311
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3312
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3313
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
3314
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
3315
  #: templates/admin/table-settings/table_settings_block.inc.php:84
3316
  msgid "NEW!"
3317
  msgstr ""
3337
  msgstr "Tri"
3338
 
3339
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3340
+ msgid "Row grouping"
3341
+ msgstr ""
3342
+
3343
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3344
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3345
  #: templates/admin/table-settings/table_settings_block.inc.php:504
3346
  #: templates/admin/table-settings/table_settings_block.inc.php:512
3348
  msgid "Pagination"
3349
  msgstr "Pagination"
3350
 
3351
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3352
  msgid ""
3353
  "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3354
  "PDF, and Copy and Print options)</span>"
3355
  msgstr ""
3356
 
3357
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3358
  msgid "Column Customization"
3359
  msgstr "Personnalisation des colonnes"
3360
 
3361
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
3362
  msgid "Global Table Customization"
3363
  msgstr "Personnalisation du tableau global"
3364
 
3365
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3366
+ msgid "WP Bakery, Elementor and Gutenberg support"
3367
+ msgstr ""
3368
+
3369
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:252
3370
  msgid "Creating Google charts"
3371
  msgstr "Créer des graphiques Google"
3372
 
3373
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:264
3374
  msgid "Customize charts"
3375
  msgstr ""
3376
 
3377
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
3378
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:562
3379
  msgid "Limited"
3380
  msgstr "Limitée"
3381
 
3382
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:270
3383
  msgid "Some options are not available."
3384
  msgstr ""
3385
 
3386
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
3387
+ msgid "Creating tables where users can see and edit only their own data"
 
 
 
 
 
 
 
 
3388
  msgstr ""
3389
 
3390
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:558
3391
  msgid "Support"
3392
  msgstr "Centre d'assistance"
3393
 
3394
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:564
3395
  msgid "Response time is slow and can be up to 5 business days."
3396
  msgstr ""
3397
 
3398
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:575
3399
  msgid ""
3400
  "* Please note that wpDataTables add-ons are not included in premium version "
3401
  "of plugin."
8375
  #~ msgid "The default font color for all text in the chart."
8376
  #~ msgstr "La couleur de police par défaut pour tout le texte du graphique."
8377
 
 
 
 
 
 
 
8378
  #~ msgid "Grid line style"
8379
  #~ msgstr "Style de ligne de la grille"
8380
 
languages/hu_HU/wpdatatables-hu_HU.mo CHANGED
Binary file
languages/hu_HU/wpdatatables-hu_HU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
- "POT-Creation-Date: 2021-02-26 13:11+0100\n"
5
- "PO-Revision-Date: 2021-02-26 13:11+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: hu\n"
@@ -89,11 +89,8 @@ msgstr ""
89
  msgid "Welcome page"
90
  msgstr ""
91
 
92
- #: controllers/wdt_admin.php:116
93
- msgid "Get Premium"
94
- msgstr ""
95
-
96
- #: controllers/wdt_admin.php:117
97
  msgid "Go Premium"
98
  msgstr ""
99
 
@@ -119,76 +116,89 @@ msgstr ""
119
  msgid "Provided column is not Integer or Float column type"
120
  msgstr ""
121
 
122
- #: controllers/wdt_functions.php:830
 
 
 
 
 
 
 
 
 
 
 
 
 
123
  msgid "Choose a table"
124
  msgstr ""
125
 
126
- #: controllers/wdt_functions.php:862
127
  msgid "Interactive Responsive Table"
128
  msgstr ""
129
 
130
- #: controllers/wdt_functions.php:863 controllers/wdt_functions.php:924
131
  msgid "Content"
132
  msgstr ""
133
 
134
- #: controllers/wdt_functions.php:869
135
  msgid "wpDataTable"
136
  msgstr ""
137
 
138
- #: controllers/wdt_functions.php:873
139
  msgid "Choose the wpDataTable from a dropdown"
140
  msgstr ""
141
 
142
- #: controllers/wdt_functions.php:878
143
  msgid "Table view"
144
  msgstr ""
145
 
146
- #: controllers/wdt_functions.php:882
147
  msgid "Regular wpDataTable"
148
  msgstr ""
149
 
150
- #: controllers/wdt_functions.php:884
151
  msgid "Excel-like table"
152
  msgstr ""
153
 
154
- #: controllers/wdt_functions.php:890
155
  msgid "Variable placeholder #1"
156
  msgstr ""
157
 
158
- #: controllers/wdt_functions.php:893 controllers/wdt_functions.php:901
159
- #: controllers/wdt_functions.php:909
160
  msgid "Variables"
161
  msgstr ""
162
 
163
- #: controllers/wdt_functions.php:894
164
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
165
  msgstr ""
166
 
167
- #: controllers/wdt_functions.php:898
168
  msgid "Variable placeholder #2"
169
  msgstr ""
170
 
171
- #: controllers/wdt_functions.php:902
172
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
173
  msgstr ""
174
 
175
- #: controllers/wdt_functions.php:906
176
  msgid "Variable placeholder #3"
177
  msgstr ""
178
 
179
- #: controllers/wdt_functions.php:910
180
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
181
  msgstr ""
182
 
183
- #: controllers/wdt_functions.php:923
184
  msgid "Google or Highcharts chart based on a wpDataTable"
185
  msgstr ""
186
 
187
- #: controllers/wdt_functions.php:930
188
  msgid "wpDataChart"
189
  msgstr ""
190
 
191
- #: controllers/wdt_functions.php:934
192
  msgid "Choose one of wpDataCharts from the list"
193
  msgstr ""
194
 
@@ -226,7 +236,7 @@ msgstr ""
226
  msgid "Shortcode"
227
  msgstr ""
228
 
229
- #: source/class.wdtbrowsechartstable.php:141
230
  #: source/class.wdtbrowsetable.php:168
231
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
232
  #: templates/admin/dashboard/dashboard.inc.php:153
@@ -234,99 +244,99 @@ msgstr ""
234
  msgid "Click to copy shortcode"
235
  msgstr ""
236
 
237
- #: source/class.wdtbrowsechartstable.php:150
238
  #: source/class.wdtbrowsetable.php:179
239
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
240
  #: templates/admin/browse/table/duplicate_modal.inc.php:64
241
  msgid "Duplicate"
242
  msgstr ""
243
 
244
- #: source/class.wdtbrowsechartstable.php:156
245
  #: source/class.wdtbrowsetable.php:185
246
  #: templates/admin/dashboard/dashboard.inc.php:261
247
  msgid "Configure"
248
  msgstr ""
249
 
250
- #: source/class.wdtbrowsechartstable.php:162
251
  #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
252
  #: templates/admin/browse/bulk_actions.inc.php:14
253
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
254
  msgid "Delete"
255
  msgstr ""
256
 
257
- #: source/class.wdtbrowsechartstable.php:217
258
- #: source/class.wdtbrowsechartstable.php:226
259
  msgid "Column Chart"
260
  msgstr ""
261
 
262
- #: source/class.wdtbrowsechartstable.php:220
263
- #: source/class.wdtbrowsechartstable.php:244
264
  msgid "Line Chart"
265
  msgstr ""
266
 
267
- #: source/class.wdtbrowsechartstable.php:223
268
- #: source/class.wdtbrowsechartstable.php:247
269
  msgid "Pie Chart"
270
  msgstr ""
271
 
272
- #: source/class.wdtbrowsechartstable.php:229
273
  #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
274
  #: templates/chart_wizard.inc.php:91
275
  msgid "Histogram"
276
  msgstr ""
277
 
278
- #: source/class.wdtbrowsechartstable.php:232
279
  msgid "Bar Chart"
280
  msgstr ""
281
 
282
- #: source/class.wdtbrowsechartstable.php:235
283
  msgid "Stacked Bar Chart"
284
  msgstr ""
285
 
286
- #: source/class.wdtbrowsechartstable.php:238
287
  msgid "Area Chart"
288
  msgstr ""
289
 
290
- #: source/class.wdtbrowsechartstable.php:241
291
  msgid "Stepped Area Chart"
292
  msgstr ""
293
 
294
- #: source/class.wdtbrowsechartstable.php:250
295
  msgid "Bubble Chart"
296
  msgstr ""
297
 
298
- #: source/class.wdtbrowsechartstable.php:253
299
  msgid "Donut Chart"
300
  msgstr ""
301
 
302
- #: source/class.wdtbrowsechartstable.php:256
303
  msgid "Gauge Chart"
304
  msgstr ""
305
 
306
- #: source/class.wdtbrowsechartstable.php:259
307
  msgid "Scatter Chart"
308
  msgstr ""
309
 
310
- #: source/class.wdtbrowsechartstable.php:262
311
  msgid "Candlestick Chart"
312
  msgstr ""
313
 
314
- #: source/class.wdtbrowsechartstable.php:265
315
  msgid "Waterfall Chart"
316
  msgstr ""
317
 
318
- #: source/class.wdtbrowsechartstable.php:278
319
  msgid "Google"
320
  msgstr ""
321
 
322
- #: source/class.wdtbrowsechartstable.php:345
323
  #: source/class.wdtbrowsetable.php:298
324
  #: templates/admin/chart_wizard/steps/step3.inc.php:11
325
  #: templates/admin/chart_wizard/steps/step3.inc.php:32
326
  msgid "Select All"
327
  msgstr ""
328
 
329
- #: source/class.wdtbrowsechartstable.php:398
330
  msgid "No wpDataCharts in the system yet."
331
  msgstr ""
332
 
@@ -1240,11 +1250,11 @@ msgid ""
1240
  "page. <br><br>You may now finish this tutorial. "
1241
  msgstr ""
1242
 
1243
- #: source/class.wpdatachart.php:703
1244
  msgid "Only one column can be of type String"
1245
  msgstr ""
1246
 
1247
- #: source/class.wpdatachart.php:706
1248
  msgid "You are mixing data types (several date axes and several number)"
1249
  msgstr ""
1250
 
@@ -1304,7 +1314,7 @@ msgstr ""
1304
  msgid "if you have some questions or problems with the plugin."
1305
  msgstr ""
1306
 
1307
- #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:499
1308
  msgid "wpDataTables Addons"
1309
  msgstr ""
1310
 
@@ -1318,12 +1328,12 @@ msgid ""
1318
  msgstr ""
1319
 
1320
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1321
- #: templates/admin/dashboard/dashboard.inc.php:570
1322
  msgid "Report Builder"
1323
  msgstr ""
1324
 
1325
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1326
- #: templates/admin/dashboard/dashboard.inc.php:574
1327
  msgid ""
1328
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1329
  "XLSX documents filled in with actual data from your database."
@@ -1349,7 +1359,7 @@ msgid "NEW"
1349
  msgstr ""
1350
 
1351
  #: templates/admin/addons/addons.inc.php:40
1352
- #: templates/admin/dashboard/dashboard.inc.php:517
1353
  msgid "Master Detail Tables for wpDataTables"
1354
  msgstr ""
1355
 
@@ -1370,7 +1380,7 @@ msgid "Learn more"
1370
  msgstr ""
1371
 
1372
  #: templates/admin/addons/addons.inc.php:67
1373
- #: templates/admin/dashboard/dashboard.inc.php:544
1374
  msgid "Powerful Filters for wpDataTables"
1375
  msgstr ""
1376
 
@@ -1382,24 +1392,24 @@ msgid ""
1382
  msgstr ""
1383
 
1384
  #: templates/admin/addons/addons.inc.php:120
1385
- #: templates/admin/dashboard/dashboard.inc.php:597
1386
  msgid "Formidable Forms integration for wpDataTables"
1387
  msgstr ""
1388
 
1389
  #: templates/admin/addons/addons.inc.php:123
1390
- #: templates/admin/dashboard/dashboard.inc.php:601
1391
  msgid ""
1392
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1393
  "create wpDataTables from Formidable Forms entries data."
1394
  msgstr ""
1395
 
1396
  #: templates/admin/addons/addons.inc.php:143
1397
- #: templates/admin/dashboard/dashboard.inc.php:623
1398
  msgid "Gravity Forms integration for wpDataTables"
1399
  msgstr ""
1400
 
1401
  #: templates/admin/addons/addons.inc.php:146
1402
- #: templates/admin/dashboard/dashboard.inc.php:627
1403
  msgid ""
1404
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1405
  "wpDataTables from Gravity Forms entries data."
@@ -1422,6 +1432,10 @@ msgstr ""
1422
  msgid "New chart title"
1423
  msgstr ""
1424
 
 
 
 
 
1425
  #: templates/admin/browse/table/browse.inc.php:25
1426
  msgid "Browse Tables"
1427
  msgstr ""
@@ -1860,7 +1874,7 @@ msgid "Axes"
1860
  msgstr ""
1861
 
1862
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1863
- #: templates/admin/chart_wizard/steps/step4.inc.php:532
1864
  msgid "Tooltip"
1865
  msgstr ""
1866
 
@@ -1890,7 +1904,7 @@ msgid "Curve type"
1890
  msgstr ""
1891
 
1892
  #: templates/admin/chart_wizard/steps/step4.inc.php:49
1893
- #: templates/admin/chart_wizard/steps/step4.inc.php:336
1894
  msgid "Controls the curve of the lines"
1895
  msgstr ""
1896
 
@@ -2022,155 +2036,164 @@ msgstr ""
2022
  msgid "The default font face for all text in the chart."
2023
  msgstr ""
2024
 
2025
- #: templates/admin/chart_wizard/steps/step4.inc.php:334
 
 
 
 
 
 
 
 
 
2026
  msgid "Grid"
2027
  msgstr ""
2028
 
2029
- #: templates/admin/chart_wizard/steps/step4.inc.php:340
2030
  msgid "Do you want to show grid on the chart"
2031
  msgstr ""
2032
 
2033
- #: templates/admin/chart_wizard/steps/step4.inc.php:345
2034
  msgid "Horizontal axis label"
2035
  msgstr ""
2036
 
2037
- #: templates/admin/chart_wizard/steps/step4.inc.php:347
2038
  msgid "Name of the horizontal axis."
2039
  msgstr ""
2040
 
2041
- #: templates/admin/chart_wizard/steps/step4.inc.php:362
2042
  msgid "Horizontal crosshair"
2043
  msgstr ""
2044
 
2045
- #: templates/admin/chart_wizard/steps/step4.inc.php:364
2046
  msgid ""
2047
  "Configure a horizontal crosshair that follows either the mouse pointer or "
2048
  "the hovered point lines"
2049
  msgstr ""
2050
 
2051
- #: templates/admin/chart_wizard/steps/step4.inc.php:368
2052
  msgid "Show x-Axis crosshair"
2053
  msgstr ""
2054
 
2055
- #: templates/admin/chart_wizard/steps/step4.inc.php:373
2056
  msgid "Horizontal axis direction"
2057
  msgstr ""
2058
 
2059
- #: templates/admin/chart_wizard/steps/step4.inc.php:375
2060
  msgid ""
2061
  "The direction in which the values along the horizontal axis grow. Specify -1 "
2062
  "to reverse the order of the values"
2063
  msgstr ""
2064
 
2065
- #: templates/admin/chart_wizard/steps/step4.inc.php:391
2066
  msgid "Vertical axis label"
2067
  msgstr ""
2068
 
2069
- #: templates/admin/chart_wizard/steps/step4.inc.php:393
2070
  msgid "Name of the vertical axis."
2071
  msgstr ""
2072
 
2073
- #: templates/admin/chart_wizard/steps/step4.inc.php:408
2074
  msgid "Vertical crosshair"
2075
  msgstr ""
2076
 
2077
- #: templates/admin/chart_wizard/steps/step4.inc.php:410
2078
  msgid ""
2079
  "Configure a vertical crosshair that follows either the mouse pointer or the "
2080
  "hovered point lines"
2081
  msgstr ""
2082
 
2083
- #: templates/admin/chart_wizard/steps/step4.inc.php:414
2084
  msgid "Show y-Axis crosshair"
2085
  msgstr ""
2086
 
2087
- #: templates/admin/chart_wizard/steps/step4.inc.php:419
2088
  msgid "Vertical axis direction"
2089
  msgstr ""
2090
 
2091
- #: templates/admin/chart_wizard/steps/step4.inc.php:421
2092
  msgid ""
2093
  "The direction in which the values along the vertical axis grow. Specify -1 "
2094
  "to reverse the order of the values"
2095
  msgstr ""
2096
 
2097
- #: templates/admin/chart_wizard/steps/step4.inc.php:438
2098
  msgid "Vertical axis min value"
2099
  msgstr ""
2100
 
2101
- #: templates/admin/chart_wizard/steps/step4.inc.php:440
2102
  msgid "The minimum value of the axis."
2103
  msgstr ""
2104
 
2105
- #: templates/admin/chart_wizard/steps/step4.inc.php:464
2106
  msgid "Vertical axis max value"
2107
  msgstr ""
2108
 
2109
- #: templates/admin/chart_wizard/steps/step4.inc.php:466
2110
  msgid "The maximum value of the axis."
2111
  msgstr ""
2112
 
2113
- #: templates/admin/chart_wizard/steps/step4.inc.php:489
2114
  msgid "Invert"
2115
  msgstr ""
2116
 
2117
- #: templates/admin/chart_wizard/steps/step4.inc.php:491
2118
  msgid ""
2119
  "Whether to invert the axes so that the x axis is vertical and y axis is "
2120
  "horizontal"
2121
  msgstr ""
2122
 
2123
- #: templates/admin/chart_wizard/steps/step4.inc.php:495
2124
  msgid "Invert chart axes"
2125
  msgstr ""
2126
 
2127
- #: templates/admin/chart_wizard/steps/step4.inc.php:505
2128
  msgid "Chart title"
2129
  msgstr ""
2130
 
2131
- #: templates/admin/chart_wizard/steps/step4.inc.php:507
2132
  msgid "Do you want to show the chart title on the page"
2133
  msgstr ""
2134
 
2135
- #: templates/admin/chart_wizard/steps/step4.inc.php:511
2136
  msgid "Show title"
2137
  msgstr ""
2138
 
2139
- #: templates/admin/chart_wizard/steps/step4.inc.php:516
2140
  msgid "Title floating"
2141
  msgstr ""
2142
 
2143
- #: templates/admin/chart_wizard/steps/step4.inc.php:518
2144
  msgid ""
2145
  "When the title is floating, the plot area will not move to make space for it"
2146
  msgstr ""
2147
 
2148
- #: templates/admin/chart_wizard/steps/step4.inc.php:522
2149
  msgid "Enable floating"
2150
  msgstr ""
2151
 
2152
- #: templates/admin/chart_wizard/steps/step4.inc.php:534
2153
  msgid "Enable or disable the tooltip"
2154
  msgstr ""
2155
 
2156
- #: templates/admin/chart_wizard/steps/step4.inc.php:538
2157
  msgid "Show tooltip"
2158
  msgstr ""
2159
 
2160
- #: templates/admin/chart_wizard/steps/step4.inc.php:549
2161
  msgid "Position"
2162
  msgstr ""
2163
 
2164
- #: templates/admin/chart_wizard/steps/step4.inc.php:551
2165
  msgid "Position of the legend"
2166
  msgstr ""
2167
 
2168
- #: templates/admin/chart_wizard/steps/step4.inc.php:569
2169
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2170
  msgid "Vertical align"
2171
  msgstr ""
2172
 
2173
- #: templates/admin/chart_wizard/steps/step4.inc.php:571
2174
  msgid "The vertical alignment of the legend box"
2175
  msgstr ""
2176
 
@@ -2608,177 +2631,209 @@ msgid "A minor update with a couple of improvements and bug fixes:"
2608
  msgstr ""
2609
 
2610
  #: templates/admin/dashboard/dashboard.inc.php:345
2611
- msgid ""
2612
- "<strong>Improvement:</strong> Added auto-save functionality after insert "
2613
- "media in Simple tables."
2614
  msgstr ""
2615
 
2616
  #: templates/admin/dashboard/dashboard.inc.php:346
2617
  msgid ""
2618
- "<strong>Improvement:</strong> Added translate functions on some strings."
 
2619
  msgstr ""
2620
 
2621
  #: templates/admin/dashboard/dashboard.inc.php:347
2622
  msgid ""
2623
- "<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin "
2624
- "area and filters for elementor widgets."
2625
  msgstr ""
2626
 
2627
  #: templates/admin/dashboard/dashboard.inc.php:348
2628
- msgid ""
2629
- "<strong>BugFix:</strong> Fixed issue with font in material skin and "
2630
- "background in graphite skin."
2631
  msgstr ""
2632
 
2633
  #: templates/admin/dashboard/dashboard.inc.php:349
2634
  msgid ""
2635
- "<strong>BugFix:</strong> Fixed issue with class name in Global font color "
2636
- "settings."
2637
  msgstr ""
2638
 
2639
  #: templates/admin/dashboard/dashboard.inc.php:350
2640
- msgid "Compatibility with WordPress 5.6.2 approved."
 
 
2641
  msgstr ""
2642
 
2643
  #: templates/admin/dashboard/dashboard.inc.php:351
 
 
 
 
 
 
 
 
 
 
2644
  msgid "Other small bug fixes and stability improvements."
2645
  msgstr ""
2646
 
2647
- #: templates/admin/dashboard/dashboard.inc.php:363
2648
  msgid "Go Premium!"
2649
  msgstr ""
2650
 
2651
- #: templates/admin/dashboard/dashboard.inc.php:369
2652
  msgid "View Comparison"
2653
  msgstr ""
2654
 
2655
- #: templates/admin/dashboard/dashboard.inc.php:377
2656
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2657
  msgid ""
2658
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2659
  "of the powerful features."
2660
  msgstr ""
2661
 
2662
- #: templates/admin/dashboard/dashboard.inc.php:381
2663
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
2664
  msgid "Create a table manually"
2665
  msgstr ""
2666
 
2667
- #: templates/admin/dashboard/dashboard.inc.php:384
2668
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
2669
  msgid "Creating tables from Google Spreadsheet"
2670
  msgstr ""
2671
 
2672
- #: templates/admin/dashboard/dashboard.inc.php:387
2673
- msgid ""
2674
- "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2675
- "tables via Google Sheet API"
2676
  msgstr ""
2677
 
2678
- #: templates/admin/dashboard/dashboard.inc.php:390
2679
- msgid ""
2680
- "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2681
- "tables from Private Google Spreadsheet"
2682
  msgstr ""
2683
 
2684
- #: templates/admin/dashboard/dashboard.inc.php:393
2685
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:318
2686
  msgid "Creating MySQL-based tables from database"
2687
  msgstr ""
2688
 
2689
- #: templates/admin/dashboard/dashboard.inc.php:396
2690
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
2691
  msgid "Creating MySQL-based tables from Wordpress post types"
2692
  msgstr ""
2693
 
2694
- #: templates/admin/dashboard/dashboard.inc.php:399
2695
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
 
 
 
 
 
 
 
 
 
2696
  #: templates/edit_table.inc.php:329
2697
  msgid "Advanced filtering"
2698
  msgstr ""
2699
 
2700
- #: templates/admin/dashboard/dashboard.inc.php:402
2701
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
 
 
 
 
 
 
 
 
 
 
2702
  #: templates/admin/table-settings/table_settings_block.inc.php:153
2703
  #: templates/edit_table.inc.php:282
2704
  msgid "Server-side processing"
2705
  msgstr ""
2706
 
2707
- #: templates/admin/dashboard/dashboard.inc.php:405
2708
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2709
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2710
  msgstr ""
2711
 
2712
- #: templates/admin/dashboard/dashboard.inc.php:408
2713
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2714
  msgid "Front-end table editing"
2715
  msgstr ""
2716
 
2717
- #: templates/admin/dashboard/dashboard.inc.php:411
2718
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2719
  msgid "Excel-like editing"
2720
  msgstr ""
2721
 
2722
- #: templates/admin/dashboard/dashboard.inc.php:414
2723
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2724
  msgid "Creating charts with Highcharts"
2725
  msgstr ""
2726
 
2727
- #: templates/admin/dashboard/dashboard.inc.php:417
2728
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2729
  msgid "Creating charts with Chart.js"
2730
  msgstr ""
2731
 
2732
- #: templates/admin/dashboard/dashboard.inc.php:420
2733
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
 
 
 
 
 
 
 
 
 
 
2734
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2735
  #: templates/edit_table.inc.php:301
2736
  msgid "Responsive"
2737
  msgstr ""
2738
 
2739
- #: templates/admin/dashboard/dashboard.inc.php:423
2740
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2741
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2742
  #: templates/edit_table.inc.php:750
2743
  msgid "Conditional formatting"
2744
  msgstr ""
2745
 
2746
- #: templates/admin/dashboard/dashboard.inc.php:426
2747
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2748
  msgid "Calculating Tools"
2749
  msgstr ""
2750
 
2751
- #: templates/admin/dashboard/dashboard.inc.php:429
2752
  msgid "Formula columns"
2753
  msgstr ""
2754
 
2755
- #: templates/admin/dashboard/dashboard.inc.php:432
2756
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2757
  #: templates/admin/table-settings/table_settings_block.inc.php:80
2758
  msgid "Placeholders"
2759
  msgstr ""
2760
 
2761
- #: templates/admin/dashboard/dashboard.inc.php:435
2762
  msgid "Premium support"
2763
  msgstr ""
2764
 
2765
- #: templates/admin/dashboard/dashboard.inc.php:439
2766
  msgid "Get Premium Today"
2767
  msgstr ""
2768
 
2769
- #: templates/admin/dashboard/dashboard.inc.php:446
2770
  msgid "News Blog"
2771
  msgstr ""
2772
 
2773
- #: templates/admin/dashboard/dashboard.inc.php:451
2774
  msgid "Checkout useful articles from wpdatatables.com"
2775
  msgstr ""
2776
 
2777
- #: templates/admin/dashboard/dashboard.inc.php:474
2778
- msgid "Please install and enable PHP extensions xml and dom on your server."
2779
- msgstr ""
2780
-
2781
- #: templates/admin/dashboard/dashboard.inc.php:482
2782
  msgid ""
2783
  "Never miss notifications about new cool features, promotions,\n"
2784
  " giveaways or freebies – subscribe to our "
@@ -2786,48 +2841,48 @@ msgid ""
2786
  " about 1 message per month and never spam!"
2787
  msgstr ""
2788
 
2789
- #: templates/admin/dashboard/dashboard.inc.php:500
2790
  msgid "Premium "
2791
  msgstr ""
2792
 
2793
- #: templates/admin/dashboard/dashboard.inc.php:503
2794
  msgid ""
2795
  "While wpDataTables itself provides quite a large amount of features and "
2796
  "unlimited customisation, flexibility, you can achieve even more with our "
2797
  "premium addons.(requires wpDataTables Premium version)"
2798
  msgstr ""
2799
 
2800
- #: templates/admin/dashboard/dashboard.inc.php:521
2801
  msgid ""
2802
  "A wpDataTables addon which allows showing additional details for a specific "
2803
  "row in a popup or a separate page or post."
2804
  msgstr ""
2805
 
2806
- #: templates/admin/dashboard/dashboard.inc.php:527
2807
- #: templates/admin/dashboard/dashboard.inc.php:554
2808
- #: templates/admin/dashboard/dashboard.inc.php:580
2809
- #: templates/admin/dashboard/dashboard.inc.php:607
2810
- #: templates/admin/dashboard/dashboard.inc.php:633
2811
- #: templates/admin/dashboard/dashboard.inc.php:666
2812
  msgid "Learn More"
2813
  msgstr ""
2814
 
2815
- #: templates/admin/dashboard/dashboard.inc.php:548
2816
  msgid ""
2817
  "An add-on for wpDataTables that provides powerful filtering features: "
2818
  "cascade filtering, applying filters on button click, hide table before "
2819
  "filtering."
2820
  msgstr ""
2821
 
2822
- #: templates/admin/dashboard/dashboard.inc.php:644
2823
  msgid "Need free booking plugin?"
2824
  msgstr ""
2825
 
2826
- #: templates/admin/dashboard/dashboard.inc.php:653
2827
  msgid "Appointments and Events WordPress Booking Plugin"
2828
  msgstr ""
2829
 
2830
- #: templates/admin/dashboard/dashboard.inc.php:656
2831
  msgid ""
2832
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2833
  "set up a fully-featured automated booking system on your WordPress website "
@@ -2838,26 +2893,26 @@ msgid ""
2838
  "each month."
2839
  msgstr ""
2840
 
2841
- #: templates/admin/dashboard/dashboard.inc.php:659
2842
  msgid "Rating: 4.3 - ‎97 reviews"
2843
  msgstr ""
2844
 
2845
- #: templates/admin/dashboard/dashboard.inc.php:662
2846
  msgid "Free Download"
2847
  msgstr ""
2848
 
2849
- #: templates/admin/dashboard/dashboard.inc.php:677
2850
  #: templates/admin/getting-started/getting_started.inc.php:184
2851
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:505
2852
  #: templates/admin/support/support.inc.php:78
2853
  #: templates/admin/system-info/system_info.inc.php:509
2854
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2855
  msgid "Made by"
2856
  msgstr ""
2857
 
2858
- #: templates/admin/dashboard/dashboard.inc.php:685
2859
  #: templates/admin/getting-started/getting_started.inc.php:192
2860
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:513
2861
  #: templates/admin/support/support.inc.php:45
2862
  #: templates/admin/support/support.inc.php:86
2863
  #: templates/admin/system-info/system_info.inc.php:517
@@ -2866,9 +2921,9 @@ msgstr ""
2866
  msgid "Documentation"
2867
  msgstr ""
2868
 
2869
- #: templates/admin/dashboard/dashboard.inc.php:689
2870
  #: templates/admin/getting-started/getting_started.inc.php:196
2871
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:517
2872
  #: templates/admin/support/support.inc.php:24
2873
  #: templates/admin/support/support.inc.php:90
2874
  #: templates/admin/system-info/system_info.inc.php:521
@@ -2994,7 +3049,7 @@ msgid "Lite vs Premium comparison"
2994
  msgstr ""
2995
 
2996
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
2997
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:497
2998
  msgid "Go Premium Now"
2999
  msgstr ""
3000
 
@@ -3007,7 +3062,7 @@ msgid "Lite"
3007
  msgstr ""
3008
 
3009
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3010
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3011
  msgid "Premium"
3012
  msgstr ""
3013
 
@@ -3037,9 +3092,9 @@ msgstr ""
3037
 
3038
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3039
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3040
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:256
3041
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
3042
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:306
3043
  #: templates/admin/table-settings/table_settings_block.inc.php:84
3044
  msgid "NEW!"
3045
  msgstr ""
@@ -3063,6 +3118,10 @@ msgid "Sorting"
3063
  msgstr ""
3064
 
3065
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
 
 
 
 
3066
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3067
  #: templates/admin/table-settings/table_settings_block.inc.php:504
3068
  #: templates/admin/table-settings/table_settings_block.inc.php:512
@@ -3070,58 +3129,54 @@ msgstr ""
3070
  msgid "Pagination"
3071
  msgstr ""
3072
 
3073
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3074
  msgid ""
3075
  "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3076
  "PDF, and Copy and Print options)</span>"
3077
  msgstr ""
3078
 
3079
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3080
  msgid "Column Customization"
3081
  msgstr ""
3082
 
3083
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3084
  msgid "Global Table Customization"
3085
  msgstr ""
3086
 
3087
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
 
 
 
 
3088
  msgid "Creating Google charts"
3089
  msgstr ""
3090
 
3091
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3092
  msgid "Customize charts"
3093
  msgstr ""
3094
 
3095
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3096
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3097
  msgid "Limited"
3098
  msgstr ""
3099
 
3100
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:246
3101
  msgid "Some options are not available."
3102
  msgstr ""
3103
 
3104
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
3105
- msgid "Table Customization"
3106
- msgstr ""
3107
-
3108
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
3109
- msgid "Creating tables via Google Sheet API"
3110
- msgstr ""
3111
-
3112
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
3113
- msgid "Creating tables from Private Google Spreadsheet"
3114
  msgstr ""
3115
 
3116
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3117
  msgid "Support"
3118
  msgstr ""
3119
 
3120
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:480
3121
  msgid "Response time is slow and can be up to 5 business days."
3122
  msgstr ""
3123
 
3124
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:491
3125
  msgid ""
3126
  "* Please note that wpDataTables add-ons are not included in premium version "
3127
  "of plugin."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
+ "POT-Creation-Date: 2021-03-19 13:04+0100\n"
5
+ "PO-Revision-Date: 2021-03-19 13:04+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: hu\n"
89
  msgid "Welcome page"
90
  msgstr ""
91
 
92
+ #: controllers/wdt_admin.php:116 controllers/wdt_admin.php:117
93
+ #: controllers/wdt_functions.php:826
 
 
 
94
  msgid "Go Premium"
95
  msgstr ""
96
 
116
  msgid "Provided column is not Integer or Float column type"
117
  msgstr ""
118
 
119
+ #: controllers/wdt_functions.php:821
120
+ msgid "Go to Settings"
121
+ msgstr ""
122
+
123
+ #: controllers/wdt_functions.php:850
124
+ #, php-format
125
+ msgid "By %s"
126
+ msgstr ""
127
+
128
+ #: controllers/wdt_functions.php:854
129
+ msgid "Docs"
130
+ msgstr ""
131
+
132
+ #: controllers/wdt_functions.php:882
133
  msgid "Choose a table"
134
  msgstr ""
135
 
136
+ #: controllers/wdt_functions.php:914
137
  msgid "Interactive Responsive Table"
138
  msgstr ""
139
 
140
+ #: controllers/wdt_functions.php:915 controllers/wdt_functions.php:976
141
  msgid "Content"
142
  msgstr ""
143
 
144
+ #: controllers/wdt_functions.php:921
145
  msgid "wpDataTable"
146
  msgstr ""
147
 
148
+ #: controllers/wdt_functions.php:925
149
  msgid "Choose the wpDataTable from a dropdown"
150
  msgstr ""
151
 
152
+ #: controllers/wdt_functions.php:930
153
  msgid "Table view"
154
  msgstr ""
155
 
156
+ #: controllers/wdt_functions.php:934
157
  msgid "Regular wpDataTable"
158
  msgstr ""
159
 
160
+ #: controllers/wdt_functions.php:936
161
  msgid "Excel-like table"
162
  msgstr ""
163
 
164
+ #: controllers/wdt_functions.php:942
165
  msgid "Variable placeholder #1"
166
  msgstr ""
167
 
168
+ #: controllers/wdt_functions.php:945 controllers/wdt_functions.php:953
169
+ #: controllers/wdt_functions.php:961
170
  msgid "Variables"
171
  msgstr ""
172
 
173
+ #: controllers/wdt_functions.php:946
174
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
175
  msgstr ""
176
 
177
+ #: controllers/wdt_functions.php:950
178
  msgid "Variable placeholder #2"
179
  msgstr ""
180
 
181
+ #: controllers/wdt_functions.php:954
182
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
183
  msgstr ""
184
 
185
+ #: controllers/wdt_functions.php:958
186
  msgid "Variable placeholder #3"
187
  msgstr ""
188
 
189
+ #: controllers/wdt_functions.php:962
190
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
191
  msgstr ""
192
 
193
+ #: controllers/wdt_functions.php:975
194
  msgid "Google or Highcharts chart based on a wpDataTable"
195
  msgstr ""
196
 
197
+ #: controllers/wdt_functions.php:982
198
  msgid "wpDataChart"
199
  msgstr ""
200
 
201
+ #: controllers/wdt_functions.php:986
202
  msgid "Choose one of wpDataCharts from the list"
203
  msgstr ""
204
 
236
  msgid "Shortcode"
237
  msgstr ""
238
 
239
+ #: source/class.wdtbrowsechartstable.php:153
240
  #: source/class.wdtbrowsetable.php:168
241
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
242
  #: templates/admin/dashboard/dashboard.inc.php:153
244
  msgid "Click to copy shortcode"
245
  msgstr ""
246
 
247
+ #: source/class.wdtbrowsechartstable.php:162
248
  #: source/class.wdtbrowsetable.php:179
249
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
250
  #: templates/admin/browse/table/duplicate_modal.inc.php:64
251
  msgid "Duplicate"
252
  msgstr ""
253
 
254
+ #: source/class.wdtbrowsechartstable.php:168
255
  #: source/class.wdtbrowsetable.php:185
256
  #: templates/admin/dashboard/dashboard.inc.php:261
257
  msgid "Configure"
258
  msgstr ""
259
 
260
+ #: source/class.wdtbrowsechartstable.php:174
261
  #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
262
  #: templates/admin/browse/bulk_actions.inc.php:14
263
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
264
  msgid "Delete"
265
  msgstr ""
266
 
267
+ #: source/class.wdtbrowsechartstable.php:229
268
+ #: source/class.wdtbrowsechartstable.php:238
269
  msgid "Column Chart"
270
  msgstr ""
271
 
272
+ #: source/class.wdtbrowsechartstable.php:232
273
+ #: source/class.wdtbrowsechartstable.php:256
274
  msgid "Line Chart"
275
  msgstr ""
276
 
277
+ #: source/class.wdtbrowsechartstable.php:235
278
+ #: source/class.wdtbrowsechartstable.php:259
279
  msgid "Pie Chart"
280
  msgstr ""
281
 
282
+ #: source/class.wdtbrowsechartstable.php:241
283
  #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
284
  #: templates/chart_wizard.inc.php:91
285
  msgid "Histogram"
286
  msgstr ""
287
 
288
+ #: source/class.wdtbrowsechartstable.php:244
289
  msgid "Bar Chart"
290
  msgstr ""
291
 
292
+ #: source/class.wdtbrowsechartstable.php:247
293
  msgid "Stacked Bar Chart"
294
  msgstr ""
295
 
296
+ #: source/class.wdtbrowsechartstable.php:250
297
  msgid "Area Chart"
298
  msgstr ""
299
 
300
+ #: source/class.wdtbrowsechartstable.php:253
301
  msgid "Stepped Area Chart"
302
  msgstr ""
303
 
304
+ #: source/class.wdtbrowsechartstable.php:262
305
  msgid "Bubble Chart"
306
  msgstr ""
307
 
308
+ #: source/class.wdtbrowsechartstable.php:265
309
  msgid "Donut Chart"
310
  msgstr ""
311
 
312
+ #: source/class.wdtbrowsechartstable.php:268
313
  msgid "Gauge Chart"
314
  msgstr ""
315
 
316
+ #: source/class.wdtbrowsechartstable.php:271
317
  msgid "Scatter Chart"
318
  msgstr ""
319
 
320
+ #: source/class.wdtbrowsechartstable.php:274
321
  msgid "Candlestick Chart"
322
  msgstr ""
323
 
324
+ #: source/class.wdtbrowsechartstable.php:277
325
  msgid "Waterfall Chart"
326
  msgstr ""
327
 
328
+ #: source/class.wdtbrowsechartstable.php:290
329
  msgid "Google"
330
  msgstr ""
331
 
332
+ #: source/class.wdtbrowsechartstable.php:357
333
  #: source/class.wdtbrowsetable.php:298
334
  #: templates/admin/chart_wizard/steps/step3.inc.php:11
335
  #: templates/admin/chart_wizard/steps/step3.inc.php:32
336
  msgid "Select All"
337
  msgstr ""
338
 
339
+ #: source/class.wdtbrowsechartstable.php:410
340
  msgid "No wpDataCharts in the system yet."
341
  msgstr ""
342
 
1250
  "page. <br><br>You may now finish this tutorial. "
1251
  msgstr ""
1252
 
1253
+ #: source/class.wpdatachart.php:718
1254
  msgid "Only one column can be of type String"
1255
  msgstr ""
1256
 
1257
+ #: source/class.wpdatachart.php:721
1258
  msgid "You are mixing data types (several date axes and several number)"
1259
  msgstr ""
1260
 
1314
  msgid "if you have some questions or problems with the plugin."
1315
  msgstr ""
1316
 
1317
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:521
1318
  msgid "wpDataTables Addons"
1319
  msgstr ""
1320
 
1328
  msgstr ""
1329
 
1330
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1331
+ #: templates/admin/dashboard/dashboard.inc.php:592
1332
  msgid "Report Builder"
1333
  msgstr ""
1334
 
1335
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1336
+ #: templates/admin/dashboard/dashboard.inc.php:596
1337
  msgid ""
1338
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1339
  "XLSX documents filled in with actual data from your database."
1359
  msgstr ""
1360
 
1361
  #: templates/admin/addons/addons.inc.php:40
1362
+ #: templates/admin/dashboard/dashboard.inc.php:539
1363
  msgid "Master Detail Tables for wpDataTables"
1364
  msgstr ""
1365
 
1380
  msgstr ""
1381
 
1382
  #: templates/admin/addons/addons.inc.php:67
1383
+ #: templates/admin/dashboard/dashboard.inc.php:566
1384
  msgid "Powerful Filters for wpDataTables"
1385
  msgstr ""
1386
 
1392
  msgstr ""
1393
 
1394
  #: templates/admin/addons/addons.inc.php:120
1395
+ #: templates/admin/dashboard/dashboard.inc.php:619
1396
  msgid "Formidable Forms integration for wpDataTables"
1397
  msgstr ""
1398
 
1399
  #: templates/admin/addons/addons.inc.php:123
1400
+ #: templates/admin/dashboard/dashboard.inc.php:623
1401
  msgid ""
1402
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1403
  "create wpDataTables from Formidable Forms entries data."
1404
  msgstr ""
1405
 
1406
  #: templates/admin/addons/addons.inc.php:143
1407
+ #: templates/admin/dashboard/dashboard.inc.php:645
1408
  msgid "Gravity Forms integration for wpDataTables"
1409
  msgstr ""
1410
 
1411
  #: templates/admin/addons/addons.inc.php:146
1412
+ #: templates/admin/dashboard/dashboard.inc.php:649
1413
  msgid ""
1414
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1415
  "wpDataTables from Gravity Forms entries data."
1432
  msgid "New chart title"
1433
  msgstr ""
1434
 
1435
+ #: templates/admin/browse/search_box.inc.php:7
1436
+ msgid "Search for items..."
1437
+ msgstr ""
1438
+
1439
  #: templates/admin/browse/table/browse.inc.php:25
1440
  msgid "Browse Tables"
1441
  msgstr ""
1874
  msgstr ""
1875
 
1876
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1877
+ #: templates/admin/chart_wizard/steps/step4.inc.php:543
1878
  msgid "Tooltip"
1879
  msgstr ""
1880
 
1904
  msgstr ""
1905
 
1906
  #: templates/admin/chart_wizard/steps/step4.inc.php:49
1907
+ #: templates/admin/chart_wizard/steps/step4.inc.php:347
1908
  msgid "Controls the curve of the lines"
1909
  msgstr ""
1910
 
2036
  msgid "The default font face for all text in the chart."
2037
  msgstr ""
2038
 
2039
+ #: templates/admin/chart_wizard/steps/step4.inc.php:330
2040
+ #: templates/admin/chart_wizard/steps/step4.inc.php:336
2041
+ msgid "3D"
2042
+ msgstr ""
2043
+
2044
+ #: templates/admin/chart_wizard/steps/step4.inc.php:332
2045
+ msgid "Check for 3D pie chart"
2046
+ msgstr ""
2047
+
2048
+ #: templates/admin/chart_wizard/steps/step4.inc.php:345
2049
  msgid "Grid"
2050
  msgstr ""
2051
 
2052
+ #: templates/admin/chart_wizard/steps/step4.inc.php:351
2053
  msgid "Do you want to show grid on the chart"
2054
  msgstr ""
2055
 
2056
+ #: templates/admin/chart_wizard/steps/step4.inc.php:356
2057
  msgid "Horizontal axis label"
2058
  msgstr ""
2059
 
2060
+ #: templates/admin/chart_wizard/steps/step4.inc.php:358
2061
  msgid "Name of the horizontal axis."
2062
  msgstr ""
2063
 
2064
+ #: templates/admin/chart_wizard/steps/step4.inc.php:373
2065
  msgid "Horizontal crosshair"
2066
  msgstr ""
2067
 
2068
+ #: templates/admin/chart_wizard/steps/step4.inc.php:375
2069
  msgid ""
2070
  "Configure a horizontal crosshair that follows either the mouse pointer or "
2071
  "the hovered point lines"
2072
  msgstr ""
2073
 
2074
+ #: templates/admin/chart_wizard/steps/step4.inc.php:379
2075
  msgid "Show x-Axis crosshair"
2076
  msgstr ""
2077
 
2078
+ #: templates/admin/chart_wizard/steps/step4.inc.php:384
2079
  msgid "Horizontal axis direction"
2080
  msgstr ""
2081
 
2082
+ #: templates/admin/chart_wizard/steps/step4.inc.php:386
2083
  msgid ""
2084
  "The direction in which the values along the horizontal axis grow. Specify -1 "
2085
  "to reverse the order of the values"
2086
  msgstr ""
2087
 
2088
+ #: templates/admin/chart_wizard/steps/step4.inc.php:402
2089
  msgid "Vertical axis label"
2090
  msgstr ""
2091
 
2092
+ #: templates/admin/chart_wizard/steps/step4.inc.php:404
2093
  msgid "Name of the vertical axis."
2094
  msgstr ""
2095
 
2096
+ #: templates/admin/chart_wizard/steps/step4.inc.php:419
2097
  msgid "Vertical crosshair"
2098
  msgstr ""
2099
 
2100
+ #: templates/admin/chart_wizard/steps/step4.inc.php:421
2101
  msgid ""
2102
  "Configure a vertical crosshair that follows either the mouse pointer or the "
2103
  "hovered point lines"
2104
  msgstr ""
2105
 
2106
+ #: templates/admin/chart_wizard/steps/step4.inc.php:425
2107
  msgid "Show y-Axis crosshair"
2108
  msgstr ""
2109
 
2110
+ #: templates/admin/chart_wizard/steps/step4.inc.php:430
2111
  msgid "Vertical axis direction"
2112
  msgstr ""
2113
 
2114
+ #: templates/admin/chart_wizard/steps/step4.inc.php:432
2115
  msgid ""
2116
  "The direction in which the values along the vertical axis grow. Specify -1 "
2117
  "to reverse the order of the values"
2118
  msgstr ""
2119
 
2120
+ #: templates/admin/chart_wizard/steps/step4.inc.php:449
2121
  msgid "Vertical axis min value"
2122
  msgstr ""
2123
 
2124
+ #: templates/admin/chart_wizard/steps/step4.inc.php:451
2125
  msgid "The minimum value of the axis."
2126
  msgstr ""
2127
 
2128
+ #: templates/admin/chart_wizard/steps/step4.inc.php:475
2129
  msgid "Vertical axis max value"
2130
  msgstr ""
2131
 
2132
+ #: templates/admin/chart_wizard/steps/step4.inc.php:477
2133
  msgid "The maximum value of the axis."
2134
  msgstr ""
2135
 
2136
+ #: templates/admin/chart_wizard/steps/step4.inc.php:500
2137
  msgid "Invert"
2138
  msgstr ""
2139
 
2140
+ #: templates/admin/chart_wizard/steps/step4.inc.php:502
2141
  msgid ""
2142
  "Whether to invert the axes so that the x axis is vertical and y axis is "
2143
  "horizontal"
2144
  msgstr ""
2145
 
2146
+ #: templates/admin/chart_wizard/steps/step4.inc.php:506
2147
  msgid "Invert chart axes"
2148
  msgstr ""
2149
 
2150
+ #: templates/admin/chart_wizard/steps/step4.inc.php:516
2151
  msgid "Chart title"
2152
  msgstr ""
2153
 
2154
+ #: templates/admin/chart_wizard/steps/step4.inc.php:518
2155
  msgid "Do you want to show the chart title on the page"
2156
  msgstr ""
2157
 
2158
+ #: templates/admin/chart_wizard/steps/step4.inc.php:522
2159
  msgid "Show title"
2160
  msgstr ""
2161
 
2162
+ #: templates/admin/chart_wizard/steps/step4.inc.php:527
2163
  msgid "Title floating"
2164
  msgstr ""
2165
 
2166
+ #: templates/admin/chart_wizard/steps/step4.inc.php:529
2167
  msgid ""
2168
  "When the title is floating, the plot area will not move to make space for it"
2169
  msgstr ""
2170
 
2171
+ #: templates/admin/chart_wizard/steps/step4.inc.php:533
2172
  msgid "Enable floating"
2173
  msgstr ""
2174
 
2175
+ #: templates/admin/chart_wizard/steps/step4.inc.php:545
2176
  msgid "Enable or disable the tooltip"
2177
  msgstr ""
2178
 
2179
+ #: templates/admin/chart_wizard/steps/step4.inc.php:549
2180
  msgid "Show tooltip"
2181
  msgstr ""
2182
 
2183
+ #: templates/admin/chart_wizard/steps/step4.inc.php:560
2184
  msgid "Position"
2185
  msgstr ""
2186
 
2187
+ #: templates/admin/chart_wizard/steps/step4.inc.php:562
2188
  msgid "Position of the legend"
2189
  msgstr ""
2190
 
2191
+ #: templates/admin/chart_wizard/steps/step4.inc.php:580
2192
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2193
  msgid "Vertical align"
2194
  msgstr ""
2195
 
2196
+ #: templates/admin/chart_wizard/steps/step4.inc.php:582
2197
  msgid "The vertical alignment of the legend box"
2198
  msgstr ""
2199
 
2631
  msgstr ""
2632
 
2633
  #: templates/admin/dashboard/dashboard.inc.php:345
2634
+ msgid "<strong>Feature:</strong> Add new option for creating 3D pie chart."
 
 
2635
  msgstr ""
2636
 
2637
  #: templates/admin/dashboard/dashboard.inc.php:346
2638
  msgid ""
2639
+ "<strong>Feature:</strong> Search for tables and charts using ID on browse "
2640
+ "pages."
2641
  msgstr ""
2642
 
2643
  #: templates/admin/dashboard/dashboard.inc.php:347
2644
  msgid ""
2645
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2646
+ "media in Simple tables."
2647
  msgstr ""
2648
 
2649
  #: templates/admin/dashboard/dashboard.inc.php:348
2650
+ msgid "<strong>Improvement:</strong> Added German translation"
 
 
2651
  msgstr ""
2652
 
2653
  #: templates/admin/dashboard/dashboard.inc.php:349
2654
  msgid ""
2655
+ "<strong>Bugfix:</strong> Fixed issue with Fatal errors if allow_url_fopen is "
2656
+ "turned off on server."
2657
  msgstr ""
2658
 
2659
  #: templates/admin/dashboard/dashboard.inc.php:350
2660
+ msgid ""
2661
+ "<strong>BugFix:</strong> Fixed issue with loading simple table preview after "
2662
+ "clicking on back button in browser from some pages."
2663
  msgstr ""
2664
 
2665
  #: templates/admin/dashboard/dashboard.inc.php:351
2666
+ msgid ""
2667
+ "<strong>BugFix:</strong> Fixed issue with inserting “px” in column width "
2668
+ "option."
2669
+ msgstr ""
2670
+
2671
+ #: templates/admin/dashboard/dashboard.inc.php:352
2672
+ msgid "Compatibility with WordPress 5.7 approved."
2673
+ msgstr ""
2674
+
2675
+ #: templates/admin/dashboard/dashboard.inc.php:353
2676
  msgid "Other small bug fixes and stability improvements."
2677
  msgstr ""
2678
 
2679
+ #: templates/admin/dashboard/dashboard.inc.php:365
2680
  msgid "Go Premium!"
2681
  msgstr ""
2682
 
2683
+ #: templates/admin/dashboard/dashboard.inc.php:371
2684
  msgid "View Comparison"
2685
  msgstr ""
2686
 
2687
+ #: templates/admin/dashboard/dashboard.inc.php:379
2688
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2689
  msgid ""
2690
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2691
  "of the powerful features."
2692
  msgstr ""
2693
 
2694
+ #: templates/admin/dashboard/dashboard.inc.php:383
2695
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
2696
  msgid "Create a table manually"
2697
  msgstr ""
2698
 
2699
+ #: templates/admin/dashboard/dashboard.inc.php:386
2700
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:304
2701
  msgid "Creating tables from Google Spreadsheet"
2702
  msgstr ""
2703
 
2704
+ #: templates/admin/dashboard/dashboard.inc.php:389
2705
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:316
2706
+ msgid "Creating tables via Google Sheet API"
 
2707
  msgstr ""
2708
 
2709
+ #: templates/admin/dashboard/dashboard.inc.php:392
2710
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2711
+ msgid "Creating tables from Private Google Spreadsheet"
 
2712
  msgstr ""
2713
 
2714
+ #: templates/admin/dashboard/dashboard.inc.php:395
2715
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2716
  msgid "Creating MySQL-based tables from database"
2717
  msgstr ""
2718
 
2719
+ #: templates/admin/dashboard/dashboard.inc.php:398
2720
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2721
  msgid "Creating MySQL-based tables from Wordpress post types"
2722
  msgstr ""
2723
 
2724
+ #: templates/admin/dashboard/dashboard.inc.php:401
2725
+ msgid "Creating tables where users can see and edit own data"
2726
+ msgstr ""
2727
+
2728
+ #: templates/admin/dashboard/dashboard.inc.php:404
2729
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2730
+ msgid "Creating table relations (Foreign key)"
2731
+ msgstr ""
2732
+
2733
+ #: templates/admin/dashboard/dashboard.inc.php:407
2734
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2735
  #: templates/edit_table.inc.php:329
2736
  msgid "Advanced filtering"
2737
  msgstr ""
2738
 
2739
+ #: templates/admin/dashboard/dashboard.inc.php:410
2740
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2741
+ msgid "Pre-filtering tables through URL"
2742
+ msgstr ""
2743
+
2744
+ #: templates/admin/dashboard/dashboard.inc.php:413
2745
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
2746
+ msgid "Table Customization"
2747
+ msgstr ""
2748
+
2749
+ #: templates/admin/dashboard/dashboard.inc.php:416
2750
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2751
  #: templates/admin/table-settings/table_settings_block.inc.php:153
2752
  #: templates/edit_table.inc.php:282
2753
  msgid "Server-side processing"
2754
  msgstr ""
2755
 
2756
+ #: templates/admin/dashboard/dashboard.inc.php:419
2757
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2758
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2759
  msgstr ""
2760
 
2761
+ #: templates/admin/dashboard/dashboard.inc.php:422
2762
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2763
  msgid "Front-end table editing"
2764
  msgstr ""
2765
 
2766
+ #: templates/admin/dashboard/dashboard.inc.php:425
2767
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2768
  msgid "Excel-like editing"
2769
  msgstr ""
2770
 
2771
+ #: templates/admin/dashboard/dashboard.inc.php:428
2772
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2773
  msgid "Creating charts with Highcharts"
2774
  msgstr ""
2775
 
2776
+ #: templates/admin/dashboard/dashboard.inc.php:431
2777
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
2778
  msgid "Creating charts with Chart.js"
2779
  msgstr ""
2780
 
2781
+ #: templates/admin/dashboard/dashboard.inc.php:434
2782
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:486
2783
+ msgid "Follow table filtering in charts"
2784
+ msgstr ""
2785
+
2786
+ #: templates/admin/dashboard/dashboard.inc.php:437
2787
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:498
2788
+ msgid "Grouping data in Charts"
2789
+ msgstr ""
2790
+
2791
+ #: templates/admin/dashboard/dashboard.inc.php:440
2792
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:510
2793
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2794
  #: templates/edit_table.inc.php:301
2795
  msgid "Responsive"
2796
  msgstr ""
2797
 
2798
+ #: templates/admin/dashboard/dashboard.inc.php:443
2799
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:522
2800
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2801
  #: templates/edit_table.inc.php:750
2802
  msgid "Conditional formatting"
2803
  msgstr ""
2804
 
2805
+ #: templates/admin/dashboard/dashboard.inc.php:446
2806
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:534
2807
  msgid "Calculating Tools"
2808
  msgstr ""
2809
 
2810
+ #: templates/admin/dashboard/dashboard.inc.php:449
2811
  msgid "Formula columns"
2812
  msgstr ""
2813
 
2814
+ #: templates/admin/dashboard/dashboard.inc.php:452
2815
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:546
2816
  #: templates/admin/table-settings/table_settings_block.inc.php:80
2817
  msgid "Placeholders"
2818
  msgstr ""
2819
 
2820
+ #: templates/admin/dashboard/dashboard.inc.php:455
2821
  msgid "Premium support"
2822
  msgstr ""
2823
 
2824
+ #: templates/admin/dashboard/dashboard.inc.php:459
2825
  msgid "Get Premium Today"
2826
  msgstr ""
2827
 
2828
+ #: templates/admin/dashboard/dashboard.inc.php:466
2829
  msgid "News Blog"
2830
  msgstr ""
2831
 
2832
+ #: templates/admin/dashboard/dashboard.inc.php:471
2833
  msgid "Checkout useful articles from wpdatatables.com"
2834
  msgstr ""
2835
 
2836
+ #: templates/admin/dashboard/dashboard.inc.php:504
 
 
 
 
2837
  msgid ""
2838
  "Never miss notifications about new cool features, promotions,\n"
2839
  " giveaways or freebies – subscribe to our "
2841
  " about 1 message per month and never spam!"
2842
  msgstr ""
2843
 
2844
+ #: templates/admin/dashboard/dashboard.inc.php:522
2845
  msgid "Premium "
2846
  msgstr ""
2847
 
2848
+ #: templates/admin/dashboard/dashboard.inc.php:525
2849
  msgid ""
2850
  "While wpDataTables itself provides quite a large amount of features and "
2851
  "unlimited customisation, flexibility, you can achieve even more with our "
2852
  "premium addons.(requires wpDataTables Premium version)"
2853
  msgstr ""
2854
 
2855
+ #: templates/admin/dashboard/dashboard.inc.php:543
2856
  msgid ""
2857
  "A wpDataTables addon which allows showing additional details for a specific "
2858
  "row in a popup or a separate page or post."
2859
  msgstr ""
2860
 
2861
+ #: templates/admin/dashboard/dashboard.inc.php:549
2862
+ #: templates/admin/dashboard/dashboard.inc.php:576
2863
+ #: templates/admin/dashboard/dashboard.inc.php:602
2864
+ #: templates/admin/dashboard/dashboard.inc.php:629
2865
+ #: templates/admin/dashboard/dashboard.inc.php:655
2866
+ #: templates/admin/dashboard/dashboard.inc.php:688
2867
  msgid "Learn More"
2868
  msgstr ""
2869
 
2870
+ #: templates/admin/dashboard/dashboard.inc.php:570
2871
  msgid ""
2872
  "An add-on for wpDataTables that provides powerful filtering features: "
2873
  "cascade filtering, applying filters on button click, hide table before "
2874
  "filtering."
2875
  msgstr ""
2876
 
2877
+ #: templates/admin/dashboard/dashboard.inc.php:666
2878
  msgid "Need free booking plugin?"
2879
  msgstr ""
2880
 
2881
+ #: templates/admin/dashboard/dashboard.inc.php:675
2882
  msgid "Appointments and Events WordPress Booking Plugin"
2883
  msgstr ""
2884
 
2885
+ #: templates/admin/dashboard/dashboard.inc.php:678
2886
  msgid ""
2887
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2888
  "set up a fully-featured automated booking system on your WordPress website "
2893
  "each month."
2894
  msgstr ""
2895
 
2896
+ #: templates/admin/dashboard/dashboard.inc.php:681
2897
  msgid "Rating: 4.3 - ‎97 reviews"
2898
  msgstr ""
2899
 
2900
+ #: templates/admin/dashboard/dashboard.inc.php:684
2901
  msgid "Free Download"
2902
  msgstr ""
2903
 
2904
+ #: templates/admin/dashboard/dashboard.inc.php:699
2905
  #: templates/admin/getting-started/getting_started.inc.php:184
2906
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:589
2907
  #: templates/admin/support/support.inc.php:78
2908
  #: templates/admin/system-info/system_info.inc.php:509
2909
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2910
  msgid "Made by"
2911
  msgstr ""
2912
 
2913
+ #: templates/admin/dashboard/dashboard.inc.php:707
2914
  #: templates/admin/getting-started/getting_started.inc.php:192
2915
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:597
2916
  #: templates/admin/support/support.inc.php:45
2917
  #: templates/admin/support/support.inc.php:86
2918
  #: templates/admin/system-info/system_info.inc.php:517
2921
  msgid "Documentation"
2922
  msgstr ""
2923
 
2924
+ #: templates/admin/dashboard/dashboard.inc.php:711
2925
  #: templates/admin/getting-started/getting_started.inc.php:196
2926
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:601
2927
  #: templates/admin/support/support.inc.php:24
2928
  #: templates/admin/support/support.inc.php:90
2929
  #: templates/admin/system-info/system_info.inc.php:521
3049
  msgstr ""
3050
 
3051
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3052
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:581
3053
  msgid "Go Premium Now"
3054
  msgstr ""
3055
 
3062
  msgstr ""
3063
 
3064
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3065
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:568
3066
  msgid "Premium"
3067
  msgstr ""
3068
 
3092
 
3093
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3094
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3095
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3096
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
3097
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
3098
  #: templates/admin/table-settings/table_settings_block.inc.php:84
3099
  msgid "NEW!"
3100
  msgstr ""
3118
  msgstr ""
3119
 
3120
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3121
+ msgid "Row grouping"
3122
+ msgstr ""
3123
+
3124
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3125
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3126
  #: templates/admin/table-settings/table_settings_block.inc.php:504
3127
  #: templates/admin/table-settings/table_settings_block.inc.php:512
3129
  msgid "Pagination"
3130
  msgstr ""
3131
 
3132
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3133
  msgid ""
3134
  "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3135
  "PDF, and Copy and Print options)</span>"
3136
  msgstr ""
3137
 
3138
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3139
  msgid "Column Customization"
3140
  msgstr ""
3141
 
3142
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
3143
  msgid "Global Table Customization"
3144
  msgstr ""
3145
 
3146
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3147
+ msgid "WP Bakery, Elementor and Gutenberg support"
3148
+ msgstr ""
3149
+
3150
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:252
3151
  msgid "Creating Google charts"
3152
  msgstr ""
3153
 
3154
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:264
3155
  msgid "Customize charts"
3156
  msgstr ""
3157
 
3158
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
3159
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:562
3160
  msgid "Limited"
3161
  msgstr ""
3162
 
3163
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:270
3164
  msgid "Some options are not available."
3165
  msgstr ""
3166
 
3167
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
3168
+ msgid "Creating tables where users can see and edit only their own data"
 
 
 
 
 
 
 
 
3169
  msgstr ""
3170
 
3171
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:558
3172
  msgid "Support"
3173
  msgstr ""
3174
 
3175
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:564
3176
  msgid "Response time is slow and can be up to 5 business days."
3177
  msgstr ""
3178
 
3179
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:575
3180
  msgid ""
3181
  "* Please note that wpDataTables add-ons are not included in premium version "
3182
  "of plugin."
languages/nl_NL/nl_NL.mo CHANGED
Binary file
languages/nl_NL/nl_NL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
- "POT-Creation-Date: 2021-02-26 13:11+0100\n"
5
- "PO-Revision-Date: 2021-02-26 13:11+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: en\n"
@@ -149,11 +149,8 @@ msgstr ""
149
  msgid "Welcome page"
150
  msgstr ""
151
 
152
- #: controllers/wdt_admin.php:116
153
- msgid "Get Premium"
154
- msgstr ""
155
-
156
- #: controllers/wdt_admin.php:117
157
  msgid "Go Premium"
158
  msgstr ""
159
 
@@ -180,81 +177,94 @@ msgstr "wpDataTable met geleverde ID niet gevonden!"
180
  msgid "Provided column is not Integer or Float column type"
181
  msgstr ""
182
 
183
- #: controllers/wdt_functions.php:830
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  #, fuzzy
185
  msgid "Choose a table"
186
  msgstr "Kies rollen"
187
 
188
- #: controllers/wdt_functions.php:862
189
  msgid "Interactive Responsive Table"
190
  msgstr ""
191
 
192
- #: controllers/wdt_functions.php:863 controllers/wdt_functions.php:924
193
  msgid "Content"
194
  msgstr ""
195
 
196
- #: controllers/wdt_functions.php:869
197
  #, fuzzy
198
  msgid "wpDataTable"
199
  msgstr "wpDataTable aanpassen"
200
 
201
- #: controllers/wdt_functions.php:873
202
  msgid "Choose the wpDataTable from a dropdown"
203
  msgstr ""
204
 
205
- #: controllers/wdt_functions.php:878
206
  #, fuzzy
207
  msgid "Table view"
208
  msgstr "Tabel titel"
209
 
210
- #: controllers/wdt_functions.php:882
211
  #, fuzzy
212
  msgid "Regular wpDataTable"
213
  msgstr "Gebruik in wpDataTable"
214
 
215
- #: controllers/wdt_functions.php:884
216
  #, fuzzy
217
  msgid "Excel-like table"
218
  msgstr "Excel bestand"
219
 
220
- #: controllers/wdt_functions.php:890
221
  msgid "Variable placeholder #1"
222
  msgstr ""
223
 
224
- #: controllers/wdt_functions.php:893 controllers/wdt_functions.php:901
225
- #: controllers/wdt_functions.php:909
226
  msgid "Variables"
227
  msgstr ""
228
 
229
- #: controllers/wdt_functions.php:894
230
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
231
  msgstr ""
232
 
233
- #: controllers/wdt_functions.php:898
234
  msgid "Variable placeholder #2"
235
  msgstr ""
236
 
237
- #: controllers/wdt_functions.php:902
238
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
239
  msgstr ""
240
 
241
- #: controllers/wdt_functions.php:906
242
  msgid "Variable placeholder #3"
243
  msgstr ""
244
 
245
- #: controllers/wdt_functions.php:910
246
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
247
  msgstr ""
248
 
249
- #: controllers/wdt_functions.php:923
250
  msgid "Google or Highcharts chart based on a wpDataTable"
251
  msgstr ""
252
 
253
- #: controllers/wdt_functions.php:930
254
  msgid "wpDataChart"
255
  msgstr ""
256
 
257
- #: controllers/wdt_functions.php:934
258
  msgid "Choose one of wpDataCharts from the list"
259
  msgstr ""
260
 
@@ -293,7 +303,7 @@ msgstr ""
293
  msgid "Shortcode"
294
  msgstr ""
295
 
296
- #: source/class.wdtbrowsechartstable.php:141
297
  #: source/class.wdtbrowsetable.php:168
298
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
299
  #: templates/admin/dashboard/dashboard.inc.php:153
@@ -302,109 +312,109 @@ msgstr ""
302
  msgid "Click to copy shortcode"
303
  msgstr "Klik om te openen"
304
 
305
- #: source/class.wdtbrowsechartstable.php:150
306
  #: source/class.wdtbrowsetable.php:179
307
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
308
  #: templates/admin/browse/table/duplicate_modal.inc.php:64
309
  msgid "Duplicate"
310
  msgstr "Dubbel"
311
 
312
- #: source/class.wdtbrowsechartstable.php:156
313
  #: source/class.wdtbrowsetable.php:185
314
  #: templates/admin/dashboard/dashboard.inc.php:261
315
  msgid "Configure"
316
  msgstr ""
317
 
318
- #: source/class.wdtbrowsechartstable.php:162
319
  #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
320
  #: templates/admin/browse/bulk_actions.inc.php:14
321
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
322
  msgid "Delete"
323
  msgstr "Verwijderen"
324
 
325
- #: source/class.wdtbrowsechartstable.php:217
326
- #: source/class.wdtbrowsechartstable.php:226
327
  #, fuzzy
328
  msgid "Column Chart"
329
  msgstr "Kolomgrafiek"
330
 
331
- #: source/class.wdtbrowsechartstable.php:220
332
- #: source/class.wdtbrowsechartstable.php:244
333
  #, fuzzy
334
  msgid "Line Chart"
335
  msgstr "Lijngrafiek"
336
 
337
- #: source/class.wdtbrowsechartstable.php:223
338
- #: source/class.wdtbrowsechartstable.php:247
339
  #, fuzzy
340
  msgid "Pie Chart"
341
  msgstr "Taartdiagram"
342
 
343
- #: source/class.wdtbrowsechartstable.php:229
344
  #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
345
  #: templates/chart_wizard.inc.php:91
346
  msgid "Histogram"
347
  msgstr ""
348
 
349
- #: source/class.wdtbrowsechartstable.php:232
350
  #, fuzzy
351
  msgid "Bar Chart"
352
  msgstr "Staafgrafiek"
353
 
354
- #: source/class.wdtbrowsechartstable.php:235
355
  #, fuzzy
356
  msgid "Stacked Bar Chart"
357
  msgstr "Staafgrafiek"
358
 
359
- #: source/class.wdtbrowsechartstable.php:238
360
  #, fuzzy
361
  msgid "Area Chart"
362
  msgstr "Omgevingsgrafiek"
363
 
364
- #: source/class.wdtbrowsechartstable.php:241
365
  #, fuzzy
366
  msgid "Stepped Area Chart"
367
  msgstr "Omgevingsgrafiek"
368
 
369
- #: source/class.wdtbrowsechartstable.php:250
370
  msgid "Bubble Chart"
371
  msgstr ""
372
 
373
- #: source/class.wdtbrowsechartstable.php:253
374
  #, fuzzy
375
  msgid "Donut Chart"
376
  msgstr "Geen grafiek"
377
 
378
- #: source/class.wdtbrowsechartstable.php:256
379
  #, fuzzy
380
  msgid "Gauge Chart"
381
  msgstr "Staafgrafiek"
382
 
383
- #: source/class.wdtbrowsechartstable.php:259
384
  #, fuzzy
385
  msgid "Scatter Chart"
386
  msgstr "Staafgrafiek"
387
 
388
- #: source/class.wdtbrowsechartstable.php:262
389
  msgid "Candlestick Chart"
390
  msgstr ""
391
 
392
- #: source/class.wdtbrowsechartstable.php:265
393
  msgid "Waterfall Chart"
394
  msgstr ""
395
 
396
- #: source/class.wdtbrowsechartstable.php:278
397
  msgid "Google"
398
  msgstr ""
399
 
400
- #: source/class.wdtbrowsechartstable.php:345
401
  #: source/class.wdtbrowsetable.php:298
402
  #: templates/admin/chart_wizard/steps/step3.inc.php:11
403
  #: templates/admin/chart_wizard/steps/step3.inc.php:32
404
  msgid "Select All"
405
  msgstr ""
406
 
407
- #: source/class.wdtbrowsechartstable.php:398
408
  #, fuzzy
409
  msgid "No wpDataCharts in the system yet."
410
  msgstr "Nog geen wpDataTables in het systeem"
@@ -1334,11 +1344,11 @@ msgid ""
1334
  "page. <br><br>You may now finish this tutorial. "
1335
  msgstr ""
1336
 
1337
- #: source/class.wpdatachart.php:703
1338
  msgid "Only one column can be of type String"
1339
  msgstr ""
1340
 
1341
- #: source/class.wpdatachart.php:706
1342
  msgid "You are mixing data types (several date axes and several number)"
1343
  msgstr ""
1344
 
@@ -1399,7 +1409,7 @@ msgstr ""
1399
  msgid "if you have some questions or problems with the plugin."
1400
  msgstr "als je vragen of problemen hebt met deze plugin."
1401
 
1402
- #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:499
1403
  msgid "wpDataTables Addons"
1404
  msgstr ""
1405
 
@@ -1413,12 +1423,12 @@ msgid ""
1413
  msgstr ""
1414
 
1415
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1416
- #: templates/admin/dashboard/dashboard.inc.php:570
1417
  msgid "Report Builder"
1418
  msgstr ""
1419
 
1420
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1421
- #: templates/admin/dashboard/dashboard.inc.php:574
1422
  msgid ""
1423
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1424
  "XLSX documents filled in with actual data from your database."
@@ -1444,7 +1454,7 @@ msgid "NEW"
1444
  msgstr ""
1445
 
1446
  #: templates/admin/addons/addons.inc.php:40
1447
- #: templates/admin/dashboard/dashboard.inc.php:517
1448
  msgid "Master Detail Tables for wpDataTables"
1449
  msgstr ""
1450
 
@@ -1465,7 +1475,7 @@ msgid "Learn more"
1465
  msgstr ""
1466
 
1467
  #: templates/admin/addons/addons.inc.php:67
1468
- #: templates/admin/dashboard/dashboard.inc.php:544
1469
  msgid "Powerful Filters for wpDataTables"
1470
  msgstr ""
1471
 
@@ -1477,24 +1487,24 @@ msgid ""
1477
  msgstr ""
1478
 
1479
  #: templates/admin/addons/addons.inc.php:120
1480
- #: templates/admin/dashboard/dashboard.inc.php:597
1481
  msgid "Formidable Forms integration for wpDataTables"
1482
  msgstr ""
1483
 
1484
  #: templates/admin/addons/addons.inc.php:123
1485
- #: templates/admin/dashboard/dashboard.inc.php:601
1486
  msgid ""
1487
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1488
  "create wpDataTables from Formidable Forms entries data."
1489
  msgstr ""
1490
 
1491
  #: templates/admin/addons/addons.inc.php:143
1492
- #: templates/admin/dashboard/dashboard.inc.php:623
1493
  msgid "Gravity Forms integration for wpDataTables"
1494
  msgstr ""
1495
 
1496
  #: templates/admin/addons/addons.inc.php:146
1497
- #: templates/admin/dashboard/dashboard.inc.php:627
1498
  msgid ""
1499
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1500
  "wpDataTables from Gravity Forms entries data."
@@ -1520,6 +1530,10 @@ msgstr "Dubbel"
1520
  msgid "New chart title"
1521
  msgstr "Grafiek titel"
1522
 
 
 
 
 
1523
  #: templates/admin/browse/table/browse.inc.php:25
1524
  msgid "Browse Tables"
1525
  msgstr ""
@@ -1993,7 +2007,7 @@ msgid "Axes"
1993
  msgstr ""
1994
 
1995
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1996
- #: templates/admin/chart_wizard/steps/step4.inc.php:532
1997
  msgid "Tooltip"
1998
  msgstr ""
1999
 
@@ -2027,7 +2041,7 @@ msgid "Curve type"
2027
  msgstr "Kolom type"
2028
 
2029
  #: templates/admin/chart_wizard/steps/step4.inc.php:49
2030
- #: templates/admin/chart_wizard/steps/step4.inc.php:336
2031
  #, fuzzy
2032
  msgid "Controls the curve of the lines"
2033
  msgstr "Kies een skin voor de plugin"
@@ -2173,159 +2187,168 @@ msgstr ""
2173
  msgid "The default font face for all text in the chart."
2174
  msgstr ""
2175
 
2176
- #: templates/admin/chart_wizard/steps/step4.inc.php:334
 
 
 
 
 
 
 
 
 
2177
  msgid "Grid"
2178
  msgstr ""
2179
 
2180
- #: templates/admin/chart_wizard/steps/step4.inc.php:340
2181
  msgid "Do you want to show grid on the chart"
2182
  msgstr ""
2183
 
2184
- #: templates/admin/chart_wizard/steps/step4.inc.php:345
2185
  msgid "Horizontal axis label"
2186
  msgstr ""
2187
 
2188
- #: templates/admin/chart_wizard/steps/step4.inc.php:347
2189
  msgid "Name of the horizontal axis."
2190
  msgstr ""
2191
 
2192
- #: templates/admin/chart_wizard/steps/step4.inc.php:362
2193
  msgid "Horizontal crosshair"
2194
  msgstr ""
2195
 
2196
- #: templates/admin/chart_wizard/steps/step4.inc.php:364
2197
  msgid ""
2198
  "Configure a horizontal crosshair that follows either the mouse pointer or "
2199
  "the hovered point lines"
2200
  msgstr ""
2201
 
2202
- #: templates/admin/chart_wizard/steps/step4.inc.php:368
2203
  msgid "Show x-Axis crosshair"
2204
  msgstr ""
2205
 
2206
- #: templates/admin/chart_wizard/steps/step4.inc.php:373
2207
  msgid "Horizontal axis direction"
2208
  msgstr ""
2209
 
2210
- #: templates/admin/chart_wizard/steps/step4.inc.php:375
2211
  msgid ""
2212
  "The direction in which the values along the horizontal axis grow. Specify -1 "
2213
  "to reverse the order of the values"
2214
  msgstr ""
2215
 
2216
- #: templates/admin/chart_wizard/steps/step4.inc.php:391
2217
  msgid "Vertical axis label"
2218
  msgstr ""
2219
 
2220
- #: templates/admin/chart_wizard/steps/step4.inc.php:393
2221
  msgid "Name of the vertical axis."
2222
  msgstr ""
2223
 
2224
- #: templates/admin/chart_wizard/steps/step4.inc.php:408
2225
  msgid "Vertical crosshair"
2226
  msgstr ""
2227
 
2228
- #: templates/admin/chart_wizard/steps/step4.inc.php:410
2229
  msgid ""
2230
  "Configure a vertical crosshair that follows either the mouse pointer or the "
2231
  "hovered point lines"
2232
  msgstr ""
2233
 
2234
- #: templates/admin/chart_wizard/steps/step4.inc.php:414
2235
  msgid "Show y-Axis crosshair"
2236
  msgstr ""
2237
 
2238
- #: templates/admin/chart_wizard/steps/step4.inc.php:419
2239
  msgid "Vertical axis direction"
2240
  msgstr ""
2241
 
2242
- #: templates/admin/chart_wizard/steps/step4.inc.php:421
2243
  msgid ""
2244
  "The direction in which the values along the vertical axis grow. Specify -1 "
2245
  "to reverse the order of the values"
2246
  msgstr ""
2247
 
2248
- #: templates/admin/chart_wizard/steps/step4.inc.php:438
2249
  msgid "Vertical axis min value"
2250
  msgstr ""
2251
 
2252
- #: templates/admin/chart_wizard/steps/step4.inc.php:440
2253
  msgid "The minimum value of the axis."
2254
  msgstr ""
2255
 
2256
- #: templates/admin/chart_wizard/steps/step4.inc.php:464
2257
  msgid "Vertical axis max value"
2258
  msgstr ""
2259
 
2260
- #: templates/admin/chart_wizard/steps/step4.inc.php:466
2261
  msgid "The maximum value of the axis."
2262
  msgstr ""
2263
 
2264
- #: templates/admin/chart_wizard/steps/step4.inc.php:489
2265
  msgid "Invert"
2266
  msgstr ""
2267
 
2268
- #: templates/admin/chart_wizard/steps/step4.inc.php:491
2269
  msgid ""
2270
  "Whether to invert the axes so that the x axis is vertical and y axis is "
2271
  "horizontal"
2272
  msgstr ""
2273
 
2274
- #: templates/admin/chart_wizard/steps/step4.inc.php:495
2275
  #, fuzzy
2276
  msgid "Invert chart axes"
2277
  msgstr "Render grafieken/diagrammen"
2278
 
2279
- #: templates/admin/chart_wizard/steps/step4.inc.php:505
2280
  msgid "Chart title"
2281
  msgstr "Grafiek titel"
2282
 
2283
- #: templates/admin/chart_wizard/steps/step4.inc.php:507
2284
  msgid "Do you want to show the chart title on the page"
2285
  msgstr ""
2286
 
2287
- #: templates/admin/chart_wizard/steps/step4.inc.php:511
2288
  #, fuzzy
2289
  msgid "Show title"
2290
  msgstr "Nieuwe titel"
2291
 
2292
- #: templates/admin/chart_wizard/steps/step4.inc.php:516
2293
  msgid "Title floating"
2294
  msgstr ""
2295
 
2296
- #: templates/admin/chart_wizard/steps/step4.inc.php:518
2297
  msgid ""
2298
  "When the title is floating, the plot area will not move to make space for it"
2299
  msgstr ""
2300
 
2301
- #: templates/admin/chart_wizard/steps/step4.inc.php:522
2302
  #, fuzzy
2303
  msgid "Enable floating"
2304
  msgstr "Sorteren inschakelen"
2305
 
2306
- #: templates/admin/chart_wizard/steps/step4.inc.php:534
2307
  msgid "Enable or disable the tooltip"
2308
  msgstr ""
2309
 
2310
- #: templates/admin/chart_wizard/steps/step4.inc.php:538
2311
  msgid "Show tooltip"
2312
  msgstr ""
2313
 
2314
- #: templates/admin/chart_wizard/steps/step4.inc.php:549
2315
  #, fuzzy
2316
  msgid "Position"
2317
  msgstr "Kolom positie"
2318
 
2319
- #: templates/admin/chart_wizard/steps/step4.inc.php:551
2320
  msgid "Position of the legend"
2321
  msgstr ""
2322
 
2323
- #: templates/admin/chart_wizard/steps/step4.inc.php:569
2324
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2325
  msgid "Vertical align"
2326
  msgstr ""
2327
 
2328
- #: templates/admin/chart_wizard/steps/step4.inc.php:571
2329
  msgid "The vertical alignment of the legend box"
2330
  msgstr ""
2331
 
@@ -2767,178 +2790,210 @@ msgid "A minor update with a couple of improvements and bug fixes:"
2767
  msgstr ""
2768
 
2769
  #: templates/admin/dashboard/dashboard.inc.php:345
2770
- msgid ""
2771
- "<strong>Improvement:</strong> Added auto-save functionality after insert "
2772
- "media in Simple tables."
2773
  msgstr ""
2774
 
2775
  #: templates/admin/dashboard/dashboard.inc.php:346
2776
  msgid ""
2777
- "<strong>Improvement:</strong> Added translate functions on some strings."
 
2778
  msgstr ""
2779
 
2780
  #: templates/admin/dashboard/dashboard.inc.php:347
2781
  msgid ""
2782
- "<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin "
2783
- "area and filters for elementor widgets."
2784
  msgstr ""
2785
 
2786
  #: templates/admin/dashboard/dashboard.inc.php:348
2787
- msgid ""
2788
- "<strong>BugFix:</strong> Fixed issue with font in material skin and "
2789
- "background in graphite skin."
2790
  msgstr ""
2791
 
2792
  #: templates/admin/dashboard/dashboard.inc.php:349
2793
  msgid ""
2794
- "<strong>BugFix:</strong> Fixed issue with class name in Global font color "
2795
- "settings."
2796
  msgstr ""
2797
 
2798
  #: templates/admin/dashboard/dashboard.inc.php:350
2799
- msgid "Compatibility with WordPress 5.6.2 approved."
 
 
2800
  msgstr ""
2801
 
2802
  #: templates/admin/dashboard/dashboard.inc.php:351
 
 
 
 
 
 
 
 
 
 
2803
  msgid "Other small bug fixes and stability improvements."
2804
  msgstr ""
2805
 
2806
- #: templates/admin/dashboard/dashboard.inc.php:363
2807
  msgid "Go Premium!"
2808
  msgstr ""
2809
 
2810
- #: templates/admin/dashboard/dashboard.inc.php:369
2811
  msgid "View Comparison"
2812
  msgstr ""
2813
 
2814
- #: templates/admin/dashboard/dashboard.inc.php:377
2815
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2816
  msgid ""
2817
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2818
  "of the powerful features."
2819
  msgstr ""
2820
 
2821
- #: templates/admin/dashboard/dashboard.inc.php:381
2822
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
2823
  msgid "Create a table manually"
2824
  msgstr ""
2825
 
2826
- #: templates/admin/dashboard/dashboard.inc.php:384
2827
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
2828
  msgid "Creating tables from Google Spreadsheet"
2829
  msgstr ""
2830
 
2831
- #: templates/admin/dashboard/dashboard.inc.php:387
2832
- msgid ""
2833
- "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2834
- "tables via Google Sheet API"
2835
  msgstr ""
2836
 
2837
- #: templates/admin/dashboard/dashboard.inc.php:390
2838
- msgid ""
2839
- "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2840
- "tables from Private Google Spreadsheet"
2841
  msgstr ""
2842
 
2843
- #: templates/admin/dashboard/dashboard.inc.php:393
2844
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:318
2845
  msgid "Creating MySQL-based tables from database"
2846
  msgstr ""
2847
 
2848
- #: templates/admin/dashboard/dashboard.inc.php:396
2849
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
2850
  msgid "Creating MySQL-based tables from Wordpress post types"
2851
  msgstr ""
2852
 
2853
- #: templates/admin/dashboard/dashboard.inc.php:399
2854
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
 
 
 
 
 
 
 
 
 
2855
  #: templates/edit_table.inc.php:329
2856
  msgid "Advanced filtering"
2857
  msgstr ""
2858
 
2859
- #: templates/admin/dashboard/dashboard.inc.php:402
2860
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
 
 
 
 
 
 
 
 
 
 
2861
  #: templates/admin/table-settings/table_settings_block.inc.php:153
2862
  #: templates/edit_table.inc.php:282
2863
  msgid "Server-side processing"
2864
  msgstr "Server-side verwerking"
2865
 
2866
- #: templates/admin/dashboard/dashboard.inc.php:405
2867
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2868
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2869
  msgstr ""
2870
 
2871
- #: templates/admin/dashboard/dashboard.inc.php:408
2872
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2873
  msgid "Front-end table editing"
2874
  msgstr ""
2875
 
2876
- #: templates/admin/dashboard/dashboard.inc.php:411
2877
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2878
  msgid "Excel-like editing"
2879
  msgstr ""
2880
 
2881
- #: templates/admin/dashboard/dashboard.inc.php:414
2882
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2883
  msgid "Creating charts with Highcharts"
2884
  msgstr ""
2885
 
2886
- #: templates/admin/dashboard/dashboard.inc.php:417
2887
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2888
  msgid "Creating charts with Chart.js"
2889
  msgstr ""
2890
 
2891
- #: templates/admin/dashboard/dashboard.inc.php:420
2892
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
 
 
 
 
 
 
 
 
 
 
2893
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2894
  #: templates/edit_table.inc.php:301
2895
  msgid "Responsive"
2896
  msgstr ""
2897
 
2898
- #: templates/admin/dashboard/dashboard.inc.php:423
2899
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2900
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2901
  #: templates/edit_table.inc.php:750
2902
  #, fuzzy
2903
  msgid "Conditional formatting"
2904
  msgstr "Extra instellingen"
2905
 
2906
- #: templates/admin/dashboard/dashboard.inc.php:426
2907
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2908
  msgid "Calculating Tools"
2909
  msgstr ""
2910
 
2911
- #: templates/admin/dashboard/dashboard.inc.php:429
2912
  msgid "Formula columns"
2913
  msgstr ""
2914
 
2915
- #: templates/admin/dashboard/dashboard.inc.php:432
2916
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2917
  #: templates/admin/table-settings/table_settings_block.inc.php:80
2918
  msgid "Placeholders"
2919
  msgstr ""
2920
 
2921
- #: templates/admin/dashboard/dashboard.inc.php:435
2922
  msgid "Premium support"
2923
  msgstr ""
2924
 
2925
- #: templates/admin/dashboard/dashboard.inc.php:439
2926
  msgid "Get Premium Today"
2927
  msgstr ""
2928
 
2929
- #: templates/admin/dashboard/dashboard.inc.php:446
2930
  msgid "News Blog"
2931
  msgstr ""
2932
 
2933
- #: templates/admin/dashboard/dashboard.inc.php:451
2934
  msgid "Checkout useful articles from wpdatatables.com"
2935
  msgstr ""
2936
 
2937
- #: templates/admin/dashboard/dashboard.inc.php:474
2938
- msgid "Please install and enable PHP extensions xml and dom on your server."
2939
- msgstr ""
2940
-
2941
- #: templates/admin/dashboard/dashboard.inc.php:482
2942
  msgid ""
2943
  "Never miss notifications about new cool features, promotions,\n"
2944
  " giveaways or freebies – subscribe to our "
@@ -2946,48 +3001,48 @@ msgid ""
2946
  " about 1 message per month and never spam!"
2947
  msgstr ""
2948
 
2949
- #: templates/admin/dashboard/dashboard.inc.php:500
2950
  msgid "Premium "
2951
  msgstr ""
2952
 
2953
- #: templates/admin/dashboard/dashboard.inc.php:503
2954
  msgid ""
2955
  "While wpDataTables itself provides quite a large amount of features and "
2956
  "unlimited customisation, flexibility, you can achieve even more with our "
2957
  "premium addons.(requires wpDataTables Premium version)"
2958
  msgstr ""
2959
 
2960
- #: templates/admin/dashboard/dashboard.inc.php:521
2961
  msgid ""
2962
  "A wpDataTables addon which allows showing additional details for a specific "
2963
  "row in a popup or a separate page or post."
2964
  msgstr ""
2965
 
2966
- #: templates/admin/dashboard/dashboard.inc.php:527
2967
- #: templates/admin/dashboard/dashboard.inc.php:554
2968
- #: templates/admin/dashboard/dashboard.inc.php:580
2969
- #: templates/admin/dashboard/dashboard.inc.php:607
2970
- #: templates/admin/dashboard/dashboard.inc.php:633
2971
- #: templates/admin/dashboard/dashboard.inc.php:666
2972
  msgid "Learn More"
2973
  msgstr ""
2974
 
2975
- #: templates/admin/dashboard/dashboard.inc.php:548
2976
  msgid ""
2977
  "An add-on for wpDataTables that provides powerful filtering features: "
2978
  "cascade filtering, applying filters on button click, hide table before "
2979
  "filtering."
2980
  msgstr ""
2981
 
2982
- #: templates/admin/dashboard/dashboard.inc.php:644
2983
  msgid "Need free booking plugin?"
2984
  msgstr ""
2985
 
2986
- #: templates/admin/dashboard/dashboard.inc.php:653
2987
  msgid "Appointments and Events WordPress Booking Plugin"
2988
  msgstr ""
2989
 
2990
- #: templates/admin/dashboard/dashboard.inc.php:656
2991
  msgid ""
2992
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2993
  "set up a fully-featured automated booking system on your WordPress website "
@@ -2998,26 +3053,26 @@ msgid ""
2998
  "each month."
2999
  msgstr ""
3000
 
3001
- #: templates/admin/dashboard/dashboard.inc.php:659
3002
  msgid "Rating: 4.3 - ‎97 reviews"
3003
  msgstr ""
3004
 
3005
- #: templates/admin/dashboard/dashboard.inc.php:662
3006
  msgid "Free Download"
3007
  msgstr ""
3008
 
3009
- #: templates/admin/dashboard/dashboard.inc.php:677
3010
  #: templates/admin/getting-started/getting_started.inc.php:184
3011
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:505
3012
  #: templates/admin/support/support.inc.php:78
3013
  #: templates/admin/system-info/system_info.inc.php:509
3014
  #: templates/admin/welcome_page/welcome_page.inc.php:358
3015
  msgid "Made by"
3016
  msgstr ""
3017
 
3018
- #: templates/admin/dashboard/dashboard.inc.php:685
3019
  #: templates/admin/getting-started/getting_started.inc.php:192
3020
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:513
3021
  #: templates/admin/support/support.inc.php:45
3022
  #: templates/admin/support/support.inc.php:86
3023
  #: templates/admin/system-info/system_info.inc.php:517
@@ -3027,9 +3082,9 @@ msgstr ""
3027
  msgid "Documentation"
3028
  msgstr "wpDataTables documentatie"
3029
 
3030
- #: templates/admin/dashboard/dashboard.inc.php:689
3031
  #: templates/admin/getting-started/getting_started.inc.php:196
3032
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:517
3033
  #: templates/admin/support/support.inc.php:24
3034
  #: templates/admin/support/support.inc.php:90
3035
  #: templates/admin/system-info/system_info.inc.php:521
@@ -3155,7 +3210,7 @@ msgid "Lite vs Premium comparison"
3155
  msgstr ""
3156
 
3157
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3158
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:497
3159
  msgid "Go Premium Now"
3160
  msgstr ""
3161
 
@@ -3168,7 +3223,7 @@ msgid "Lite"
3168
  msgstr ""
3169
 
3170
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3171
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3172
  msgid "Premium"
3173
  msgstr ""
3174
 
@@ -3198,9 +3253,9 @@ msgstr ""
3198
 
3199
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3200
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3201
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:256
3202
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
3203
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:306
3204
  #: templates/admin/table-settings/table_settings_block.inc.php:84
3205
  msgid "NEW!"
3206
  msgstr ""
@@ -3224,6 +3279,10 @@ msgid "Sorting"
3224
  msgstr ""
3225
 
3226
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
 
 
 
 
3227
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3228
  #: templates/admin/table-settings/table_settings_block.inc.php:504
3229
  #: templates/admin/table-settings/table_settings_block.inc.php:512
@@ -3231,58 +3290,54 @@ msgstr ""
3231
  msgid "Pagination"
3232
  msgstr ""
3233
 
3234
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3235
  msgid ""
3236
  "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3237
  "PDF, and Copy and Print options)</span>"
3238
  msgstr ""
3239
 
3240
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3241
  msgid "Column Customization"
3242
  msgstr ""
3243
 
3244
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3245
  msgid "Global Table Customization"
3246
  msgstr ""
3247
 
3248
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
 
 
 
 
3249
  msgid "Creating Google charts"
3250
  msgstr ""
3251
 
3252
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3253
  msgid "Customize charts"
3254
  msgstr ""
3255
 
3256
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3257
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3258
  msgid "Limited"
3259
  msgstr ""
3260
 
3261
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:246
3262
  msgid "Some options are not available."
3263
  msgstr ""
3264
 
3265
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
3266
- msgid "Table Customization"
3267
- msgstr ""
3268
-
3269
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
3270
- msgid "Creating tables via Google Sheet API"
3271
- msgstr ""
3272
-
3273
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
3274
- msgid "Creating tables from Private Google Spreadsheet"
3275
  msgstr ""
3276
 
3277
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3278
  msgid "Support"
3279
  msgstr ""
3280
 
3281
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:480
3282
  msgid "Response time is slow and can be up to 5 business days."
3283
  msgstr ""
3284
 
3285
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:491
3286
  msgid ""
3287
  "* Please note that wpDataTables add-ons are not included in premium version "
3288
  "of plugin."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
+ "POT-Creation-Date: 2021-03-19 13:03+0100\n"
5
+ "PO-Revision-Date: 2021-03-19 13:03+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: en\n"
149
  msgid "Welcome page"
150
  msgstr ""
151
 
152
+ #: controllers/wdt_admin.php:116 controllers/wdt_admin.php:117
153
+ #: controllers/wdt_functions.php:826
 
 
 
154
  msgid "Go Premium"
155
  msgstr ""
156
 
177
  msgid "Provided column is not Integer or Float column type"
178
  msgstr ""
179
 
180
+ #: controllers/wdt_functions.php:821
181
+ msgid "Go to Settings"
182
+ msgstr ""
183
+
184
+ #: controllers/wdt_functions.php:850
185
+ #, php-format
186
+ msgid "By %s"
187
+ msgstr ""
188
+
189
+ #: controllers/wdt_functions.php:854
190
+ msgid "Docs"
191
+ msgstr ""
192
+
193
+ #: controllers/wdt_functions.php:882
194
  #, fuzzy
195
  msgid "Choose a table"
196
  msgstr "Kies rollen"
197
 
198
+ #: controllers/wdt_functions.php:914
199
  msgid "Interactive Responsive Table"
200
  msgstr ""
201
 
202
+ #: controllers/wdt_functions.php:915 controllers/wdt_functions.php:976
203
  msgid "Content"
204
  msgstr ""
205
 
206
+ #: controllers/wdt_functions.php:921
207
  #, fuzzy
208
  msgid "wpDataTable"
209
  msgstr "wpDataTable aanpassen"
210
 
211
+ #: controllers/wdt_functions.php:925
212
  msgid "Choose the wpDataTable from a dropdown"
213
  msgstr ""
214
 
215
+ #: controllers/wdt_functions.php:930
216
  #, fuzzy
217
  msgid "Table view"
218
  msgstr "Tabel titel"
219
 
220
+ #: controllers/wdt_functions.php:934
221
  #, fuzzy
222
  msgid "Regular wpDataTable"
223
  msgstr "Gebruik in wpDataTable"
224
 
225
+ #: controllers/wdt_functions.php:936
226
  #, fuzzy
227
  msgid "Excel-like table"
228
  msgstr "Excel bestand"
229
 
230
+ #: controllers/wdt_functions.php:942
231
  msgid "Variable placeholder #1"
232
  msgstr ""
233
 
234
+ #: controllers/wdt_functions.php:945 controllers/wdt_functions.php:953
235
+ #: controllers/wdt_functions.php:961
236
  msgid "Variables"
237
  msgstr ""
238
 
239
+ #: controllers/wdt_functions.php:946
240
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
241
  msgstr ""
242
 
243
+ #: controllers/wdt_functions.php:950
244
  msgid "Variable placeholder #2"
245
  msgstr ""
246
 
247
+ #: controllers/wdt_functions.php:954
248
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
249
  msgstr ""
250
 
251
+ #: controllers/wdt_functions.php:958
252
  msgid "Variable placeholder #3"
253
  msgstr ""
254
 
255
+ #: controllers/wdt_functions.php:962
256
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
257
  msgstr ""
258
 
259
+ #: controllers/wdt_functions.php:975
260
  msgid "Google or Highcharts chart based on a wpDataTable"
261
  msgstr ""
262
 
263
+ #: controllers/wdt_functions.php:982
264
  msgid "wpDataChart"
265
  msgstr ""
266
 
267
+ #: controllers/wdt_functions.php:986
268
  msgid "Choose one of wpDataCharts from the list"
269
  msgstr ""
270
 
303
  msgid "Shortcode"
304
  msgstr ""
305
 
306
+ #: source/class.wdtbrowsechartstable.php:153
307
  #: source/class.wdtbrowsetable.php:168
308
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
309
  #: templates/admin/dashboard/dashboard.inc.php:153
312
  msgid "Click to copy shortcode"
313
  msgstr "Klik om te openen"
314
 
315
+ #: source/class.wdtbrowsechartstable.php:162
316
  #: source/class.wdtbrowsetable.php:179
317
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
318
  #: templates/admin/browse/table/duplicate_modal.inc.php:64
319
  msgid "Duplicate"
320
  msgstr "Dubbel"
321
 
322
+ #: source/class.wdtbrowsechartstable.php:168
323
  #: source/class.wdtbrowsetable.php:185
324
  #: templates/admin/dashboard/dashboard.inc.php:261
325
  msgid "Configure"
326
  msgstr ""
327
 
328
+ #: source/class.wdtbrowsechartstable.php:174
329
  #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
330
  #: templates/admin/browse/bulk_actions.inc.php:14
331
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
332
  msgid "Delete"
333
  msgstr "Verwijderen"
334
 
335
+ #: source/class.wdtbrowsechartstable.php:229
336
+ #: source/class.wdtbrowsechartstable.php:238
337
  #, fuzzy
338
  msgid "Column Chart"
339
  msgstr "Kolomgrafiek"
340
 
341
+ #: source/class.wdtbrowsechartstable.php:232
342
+ #: source/class.wdtbrowsechartstable.php:256
343
  #, fuzzy
344
  msgid "Line Chart"
345
  msgstr "Lijngrafiek"
346
 
347
+ #: source/class.wdtbrowsechartstable.php:235
348
+ #: source/class.wdtbrowsechartstable.php:259
349
  #, fuzzy
350
  msgid "Pie Chart"
351
  msgstr "Taartdiagram"
352
 
353
+ #: source/class.wdtbrowsechartstable.php:241
354
  #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
355
  #: templates/chart_wizard.inc.php:91
356
  msgid "Histogram"
357
  msgstr ""
358
 
359
+ #: source/class.wdtbrowsechartstable.php:244
360
  #, fuzzy
361
  msgid "Bar Chart"
362
  msgstr "Staafgrafiek"
363
 
364
+ #: source/class.wdtbrowsechartstable.php:247
365
  #, fuzzy
366
  msgid "Stacked Bar Chart"
367
  msgstr "Staafgrafiek"
368
 
369
+ #: source/class.wdtbrowsechartstable.php:250
370
  #, fuzzy
371
  msgid "Area Chart"
372
  msgstr "Omgevingsgrafiek"
373
 
374
+ #: source/class.wdtbrowsechartstable.php:253
375
  #, fuzzy
376
  msgid "Stepped Area Chart"
377
  msgstr "Omgevingsgrafiek"
378
 
379
+ #: source/class.wdtbrowsechartstable.php:262
380
  msgid "Bubble Chart"
381
  msgstr ""
382
 
383
+ #: source/class.wdtbrowsechartstable.php:265
384
  #, fuzzy
385
  msgid "Donut Chart"
386
  msgstr "Geen grafiek"
387
 
388
+ #: source/class.wdtbrowsechartstable.php:268
389
  #, fuzzy
390
  msgid "Gauge Chart"
391
  msgstr "Staafgrafiek"
392
 
393
+ #: source/class.wdtbrowsechartstable.php:271
394
  #, fuzzy
395
  msgid "Scatter Chart"
396
  msgstr "Staafgrafiek"
397
 
398
+ #: source/class.wdtbrowsechartstable.php:274
399
  msgid "Candlestick Chart"
400
  msgstr ""
401
 
402
+ #: source/class.wdtbrowsechartstable.php:277
403
  msgid "Waterfall Chart"
404
  msgstr ""
405
 
406
+ #: source/class.wdtbrowsechartstable.php:290
407
  msgid "Google"
408
  msgstr ""
409
 
410
+ #: source/class.wdtbrowsechartstable.php:357
411
  #: source/class.wdtbrowsetable.php:298
412
  #: templates/admin/chart_wizard/steps/step3.inc.php:11
413
  #: templates/admin/chart_wizard/steps/step3.inc.php:32
414
  msgid "Select All"
415
  msgstr ""
416
 
417
+ #: source/class.wdtbrowsechartstable.php:410
418
  #, fuzzy
419
  msgid "No wpDataCharts in the system yet."
420
  msgstr "Nog geen wpDataTables in het systeem"
1344
  "page. <br><br>You may now finish this tutorial. "
1345
  msgstr ""
1346
 
1347
+ #: source/class.wpdatachart.php:718
1348
  msgid "Only one column can be of type String"
1349
  msgstr ""
1350
 
1351
+ #: source/class.wpdatachart.php:721
1352
  msgid "You are mixing data types (several date axes and several number)"
1353
  msgstr ""
1354
 
1409
  msgid "if you have some questions or problems with the plugin."
1410
  msgstr "als je vragen of problemen hebt met deze plugin."
1411
 
1412
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:521
1413
  msgid "wpDataTables Addons"
1414
  msgstr ""
1415
 
1423
  msgstr ""
1424
 
1425
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1426
+ #: templates/admin/dashboard/dashboard.inc.php:592
1427
  msgid "Report Builder"
1428
  msgstr ""
1429
 
1430
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1431
+ #: templates/admin/dashboard/dashboard.inc.php:596
1432
  msgid ""
1433
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1434
  "XLSX documents filled in with actual data from your database."
1454
  msgstr ""
1455
 
1456
  #: templates/admin/addons/addons.inc.php:40
1457
+ #: templates/admin/dashboard/dashboard.inc.php:539
1458
  msgid "Master Detail Tables for wpDataTables"
1459
  msgstr ""
1460
 
1475
  msgstr ""
1476
 
1477
  #: templates/admin/addons/addons.inc.php:67
1478
+ #: templates/admin/dashboard/dashboard.inc.php:566
1479
  msgid "Powerful Filters for wpDataTables"
1480
  msgstr ""
1481
 
1487
  msgstr ""
1488
 
1489
  #: templates/admin/addons/addons.inc.php:120
1490
+ #: templates/admin/dashboard/dashboard.inc.php:619
1491
  msgid "Formidable Forms integration for wpDataTables"
1492
  msgstr ""
1493
 
1494
  #: templates/admin/addons/addons.inc.php:123
1495
+ #: templates/admin/dashboard/dashboard.inc.php:623
1496
  msgid ""
1497
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1498
  "create wpDataTables from Formidable Forms entries data."
1499
  msgstr ""
1500
 
1501
  #: templates/admin/addons/addons.inc.php:143
1502
+ #: templates/admin/dashboard/dashboard.inc.php:645
1503
  msgid "Gravity Forms integration for wpDataTables"
1504
  msgstr ""
1505
 
1506
  #: templates/admin/addons/addons.inc.php:146
1507
+ #: templates/admin/dashboard/dashboard.inc.php:649
1508
  msgid ""
1509
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1510
  "wpDataTables from Gravity Forms entries data."
1530
  msgid "New chart title"
1531
  msgstr "Grafiek titel"
1532
 
1533
+ #: templates/admin/browse/search_box.inc.php:7
1534
+ msgid "Search for items..."
1535
+ msgstr ""
1536
+
1537
  #: templates/admin/browse/table/browse.inc.php:25
1538
  msgid "Browse Tables"
1539
  msgstr ""
2007
  msgstr ""
2008
 
2009
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
2010
+ #: templates/admin/chart_wizard/steps/step4.inc.php:543
2011
  msgid "Tooltip"
2012
  msgstr ""
2013
 
2041
  msgstr "Kolom type"
2042
 
2043
  #: templates/admin/chart_wizard/steps/step4.inc.php:49
2044
+ #: templates/admin/chart_wizard/steps/step4.inc.php:347
2045
  #, fuzzy
2046
  msgid "Controls the curve of the lines"
2047
  msgstr "Kies een skin voor de plugin"
2187
  msgid "The default font face for all text in the chart."
2188
  msgstr ""
2189
 
2190
+ #: templates/admin/chart_wizard/steps/step4.inc.php:330
2191
+ #: templates/admin/chart_wizard/steps/step4.inc.php:336
2192
+ msgid "3D"
2193
+ msgstr ""
2194
+
2195
+ #: templates/admin/chart_wizard/steps/step4.inc.php:332
2196
+ msgid "Check for 3D pie chart"
2197
+ msgstr ""
2198
+
2199
+ #: templates/admin/chart_wizard/steps/step4.inc.php:345
2200
  msgid "Grid"
2201
  msgstr ""
2202
 
2203
+ #: templates/admin/chart_wizard/steps/step4.inc.php:351
2204
  msgid "Do you want to show grid on the chart"
2205
  msgstr ""
2206
 
2207
+ #: templates/admin/chart_wizard/steps/step4.inc.php:356
2208
  msgid "Horizontal axis label"
2209
  msgstr ""
2210
 
2211
+ #: templates/admin/chart_wizard/steps/step4.inc.php:358
2212
  msgid "Name of the horizontal axis."
2213
  msgstr ""
2214
 
2215
+ #: templates/admin/chart_wizard/steps/step4.inc.php:373
2216
  msgid "Horizontal crosshair"
2217
  msgstr ""
2218
 
2219
+ #: templates/admin/chart_wizard/steps/step4.inc.php:375
2220
  msgid ""
2221
  "Configure a horizontal crosshair that follows either the mouse pointer or "
2222
  "the hovered point lines"
2223
  msgstr ""
2224
 
2225
+ #: templates/admin/chart_wizard/steps/step4.inc.php:379
2226
  msgid "Show x-Axis crosshair"
2227
  msgstr ""
2228
 
2229
+ #: templates/admin/chart_wizard/steps/step4.inc.php:384
2230
  msgid "Horizontal axis direction"
2231
  msgstr ""
2232
 
2233
+ #: templates/admin/chart_wizard/steps/step4.inc.php:386
2234
  msgid ""
2235
  "The direction in which the values along the horizontal axis grow. Specify -1 "
2236
  "to reverse the order of the values"
2237
  msgstr ""
2238
 
2239
+ #: templates/admin/chart_wizard/steps/step4.inc.php:402
2240
  msgid "Vertical axis label"
2241
  msgstr ""
2242
 
2243
+ #: templates/admin/chart_wizard/steps/step4.inc.php:404
2244
  msgid "Name of the vertical axis."
2245
  msgstr ""
2246
 
2247
+ #: templates/admin/chart_wizard/steps/step4.inc.php:419
2248
  msgid "Vertical crosshair"
2249
  msgstr ""
2250
 
2251
+ #: templates/admin/chart_wizard/steps/step4.inc.php:421
2252
  msgid ""
2253
  "Configure a vertical crosshair that follows either the mouse pointer or the "
2254
  "hovered point lines"
2255
  msgstr ""
2256
 
2257
+ #: templates/admin/chart_wizard/steps/step4.inc.php:425
2258
  msgid "Show y-Axis crosshair"
2259
  msgstr ""
2260
 
2261
+ #: templates/admin/chart_wizard/steps/step4.inc.php:430
2262
  msgid "Vertical axis direction"
2263
  msgstr ""
2264
 
2265
+ #: templates/admin/chart_wizard/steps/step4.inc.php:432
2266
  msgid ""
2267
  "The direction in which the values along the vertical axis grow. Specify -1 "
2268
  "to reverse the order of the values"
2269
  msgstr ""
2270
 
2271
+ #: templates/admin/chart_wizard/steps/step4.inc.php:449
2272
  msgid "Vertical axis min value"
2273
  msgstr ""
2274
 
2275
+ #: templates/admin/chart_wizard/steps/step4.inc.php:451
2276
  msgid "The minimum value of the axis."
2277
  msgstr ""
2278
 
2279
+ #: templates/admin/chart_wizard/steps/step4.inc.php:475
2280
  msgid "Vertical axis max value"
2281
  msgstr ""
2282
 
2283
+ #: templates/admin/chart_wizard/steps/step4.inc.php:477
2284
  msgid "The maximum value of the axis."
2285
  msgstr ""
2286
 
2287
+ #: templates/admin/chart_wizard/steps/step4.inc.php:500
2288
  msgid "Invert"
2289
  msgstr ""
2290
 
2291
+ #: templates/admin/chart_wizard/steps/step4.inc.php:502
2292
  msgid ""
2293
  "Whether to invert the axes so that the x axis is vertical and y axis is "
2294
  "horizontal"
2295
  msgstr ""
2296
 
2297
+ #: templates/admin/chart_wizard/steps/step4.inc.php:506
2298
  #, fuzzy
2299
  msgid "Invert chart axes"
2300
  msgstr "Render grafieken/diagrammen"
2301
 
2302
+ #: templates/admin/chart_wizard/steps/step4.inc.php:516
2303
  msgid "Chart title"
2304
  msgstr "Grafiek titel"
2305
 
2306
+ #: templates/admin/chart_wizard/steps/step4.inc.php:518
2307
  msgid "Do you want to show the chart title on the page"
2308
  msgstr ""
2309
 
2310
+ #: templates/admin/chart_wizard/steps/step4.inc.php:522
2311
  #, fuzzy
2312
  msgid "Show title"
2313
  msgstr "Nieuwe titel"
2314
 
2315
+ #: templates/admin/chart_wizard/steps/step4.inc.php:527
2316
  msgid "Title floating"
2317
  msgstr ""
2318
 
2319
+ #: templates/admin/chart_wizard/steps/step4.inc.php:529
2320
  msgid ""
2321
  "When the title is floating, the plot area will not move to make space for it"
2322
  msgstr ""
2323
 
2324
+ #: templates/admin/chart_wizard/steps/step4.inc.php:533
2325
  #, fuzzy
2326
  msgid "Enable floating"
2327
  msgstr "Sorteren inschakelen"
2328
 
2329
+ #: templates/admin/chart_wizard/steps/step4.inc.php:545
2330
  msgid "Enable or disable the tooltip"
2331
  msgstr ""
2332
 
2333
+ #: templates/admin/chart_wizard/steps/step4.inc.php:549
2334
  msgid "Show tooltip"
2335
  msgstr ""
2336
 
2337
+ #: templates/admin/chart_wizard/steps/step4.inc.php:560
2338
  #, fuzzy
2339
  msgid "Position"
2340
  msgstr "Kolom positie"
2341
 
2342
+ #: templates/admin/chart_wizard/steps/step4.inc.php:562
2343
  msgid "Position of the legend"
2344
  msgstr ""
2345
 
2346
+ #: templates/admin/chart_wizard/steps/step4.inc.php:580
2347
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2348
  msgid "Vertical align"
2349
  msgstr ""
2350
 
2351
+ #: templates/admin/chart_wizard/steps/step4.inc.php:582
2352
  msgid "The vertical alignment of the legend box"
2353
  msgstr ""
2354
 
2790
  msgstr ""
2791
 
2792
  #: templates/admin/dashboard/dashboard.inc.php:345
2793
+ msgid "<strong>Feature:</strong> Add new option for creating 3D pie chart."
 
 
2794
  msgstr ""
2795
 
2796
  #: templates/admin/dashboard/dashboard.inc.php:346
2797
  msgid ""
2798
+ "<strong>Feature:</strong> Search for tables and charts using ID on browse "
2799
+ "pages."
2800
  msgstr ""
2801
 
2802
  #: templates/admin/dashboard/dashboard.inc.php:347
2803
  msgid ""
2804
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2805
+ "media in Simple tables."
2806
  msgstr ""
2807
 
2808
  #: templates/admin/dashboard/dashboard.inc.php:348
2809
+ msgid "<strong>Improvement:</strong> Added German translation"
 
 
2810
  msgstr ""
2811
 
2812
  #: templates/admin/dashboard/dashboard.inc.php:349
2813
  msgid ""
2814
+ "<strong>Bugfix:</strong> Fixed issue with Fatal errors if allow_url_fopen is "
2815
+ "turned off on server."
2816
  msgstr ""
2817
 
2818
  #: templates/admin/dashboard/dashboard.inc.php:350
2819
+ msgid ""
2820
+ "<strong>BugFix:</strong> Fixed issue with loading simple table preview after "
2821
+ "clicking on back button in browser from some pages."
2822
  msgstr ""
2823
 
2824
  #: templates/admin/dashboard/dashboard.inc.php:351
2825
+ msgid ""
2826
+ "<strong>BugFix:</strong> Fixed issue with inserting “px” in column width "
2827
+ "option."
2828
+ msgstr ""
2829
+
2830
+ #: templates/admin/dashboard/dashboard.inc.php:352
2831
+ msgid "Compatibility with WordPress 5.7 approved."
2832
+ msgstr ""
2833
+
2834
+ #: templates/admin/dashboard/dashboard.inc.php:353
2835
  msgid "Other small bug fixes and stability improvements."
2836
  msgstr ""
2837
 
2838
+ #: templates/admin/dashboard/dashboard.inc.php:365
2839
  msgid "Go Premium!"
2840
  msgstr ""
2841
 
2842
+ #: templates/admin/dashboard/dashboard.inc.php:371
2843
  msgid "View Comparison"
2844
  msgstr ""
2845
 
2846
+ #: templates/admin/dashboard/dashboard.inc.php:379
2847
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2848
  msgid ""
2849
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2850
  "of the powerful features."
2851
  msgstr ""
2852
 
2853
+ #: templates/admin/dashboard/dashboard.inc.php:383
2854
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
2855
  msgid "Create a table manually"
2856
  msgstr ""
2857
 
2858
+ #: templates/admin/dashboard/dashboard.inc.php:386
2859
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:304
2860
  msgid "Creating tables from Google Spreadsheet"
2861
  msgstr ""
2862
 
2863
+ #: templates/admin/dashboard/dashboard.inc.php:389
2864
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:316
2865
+ msgid "Creating tables via Google Sheet API"
 
2866
  msgstr ""
2867
 
2868
+ #: templates/admin/dashboard/dashboard.inc.php:392
2869
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2870
+ msgid "Creating tables from Private Google Spreadsheet"
 
2871
  msgstr ""
2872
 
2873
+ #: templates/admin/dashboard/dashboard.inc.php:395
2874
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2875
  msgid "Creating MySQL-based tables from database"
2876
  msgstr ""
2877
 
2878
+ #: templates/admin/dashboard/dashboard.inc.php:398
2879
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2880
  msgid "Creating MySQL-based tables from Wordpress post types"
2881
  msgstr ""
2882
 
2883
+ #: templates/admin/dashboard/dashboard.inc.php:401
2884
+ msgid "Creating tables where users can see and edit own data"
2885
+ msgstr ""
2886
+
2887
+ #: templates/admin/dashboard/dashboard.inc.php:404
2888
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2889
+ msgid "Creating table relations (Foreign key)"
2890
+ msgstr ""
2891
+
2892
+ #: templates/admin/dashboard/dashboard.inc.php:407
2893
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2894
  #: templates/edit_table.inc.php:329
2895
  msgid "Advanced filtering"
2896
  msgstr ""
2897
 
2898
+ #: templates/admin/dashboard/dashboard.inc.php:410
2899
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2900
+ msgid "Pre-filtering tables through URL"
2901
+ msgstr ""
2902
+
2903
+ #: templates/admin/dashboard/dashboard.inc.php:413
2904
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
2905
+ msgid "Table Customization"
2906
+ msgstr ""
2907
+
2908
+ #: templates/admin/dashboard/dashboard.inc.php:416
2909
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2910
  #: templates/admin/table-settings/table_settings_block.inc.php:153
2911
  #: templates/edit_table.inc.php:282
2912
  msgid "Server-side processing"
2913
  msgstr "Server-side verwerking"
2914
 
2915
+ #: templates/admin/dashboard/dashboard.inc.php:419
2916
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2917
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2918
  msgstr ""
2919
 
2920
+ #: templates/admin/dashboard/dashboard.inc.php:422
2921
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2922
  msgid "Front-end table editing"
2923
  msgstr ""
2924
 
2925
+ #: templates/admin/dashboard/dashboard.inc.php:425
2926
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2927
  msgid "Excel-like editing"
2928
  msgstr ""
2929
 
2930
+ #: templates/admin/dashboard/dashboard.inc.php:428
2931
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2932
  msgid "Creating charts with Highcharts"
2933
  msgstr ""
2934
 
2935
+ #: templates/admin/dashboard/dashboard.inc.php:431
2936
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
2937
  msgid "Creating charts with Chart.js"
2938
  msgstr ""
2939
 
2940
+ #: templates/admin/dashboard/dashboard.inc.php:434
2941
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:486
2942
+ msgid "Follow table filtering in charts"
2943
+ msgstr ""
2944
+
2945
+ #: templates/admin/dashboard/dashboard.inc.php:437
2946
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:498
2947
+ msgid "Grouping data in Charts"
2948
+ msgstr ""
2949
+
2950
+ #: templates/admin/dashboard/dashboard.inc.php:440
2951
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:510
2952
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2953
  #: templates/edit_table.inc.php:301
2954
  msgid "Responsive"
2955
  msgstr ""
2956
 
2957
+ #: templates/admin/dashboard/dashboard.inc.php:443
2958
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:522
2959
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2960
  #: templates/edit_table.inc.php:750
2961
  #, fuzzy
2962
  msgid "Conditional formatting"
2963
  msgstr "Extra instellingen"
2964
 
2965
+ #: templates/admin/dashboard/dashboard.inc.php:446
2966
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:534
2967
  msgid "Calculating Tools"
2968
  msgstr ""
2969
 
2970
+ #: templates/admin/dashboard/dashboard.inc.php:449
2971
  msgid "Formula columns"
2972
  msgstr ""
2973
 
2974
+ #: templates/admin/dashboard/dashboard.inc.php:452
2975
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:546
2976
  #: templates/admin/table-settings/table_settings_block.inc.php:80
2977
  msgid "Placeholders"
2978
  msgstr ""
2979
 
2980
+ #: templates/admin/dashboard/dashboard.inc.php:455
2981
  msgid "Premium support"
2982
  msgstr ""
2983
 
2984
+ #: templates/admin/dashboard/dashboard.inc.php:459
2985
  msgid "Get Premium Today"
2986
  msgstr ""
2987
 
2988
+ #: templates/admin/dashboard/dashboard.inc.php:466
2989
  msgid "News Blog"
2990
  msgstr ""
2991
 
2992
+ #: templates/admin/dashboard/dashboard.inc.php:471
2993
  msgid "Checkout useful articles from wpdatatables.com"
2994
  msgstr ""
2995
 
2996
+ #: templates/admin/dashboard/dashboard.inc.php:504
 
 
 
 
2997
  msgid ""
2998
  "Never miss notifications about new cool features, promotions,\n"
2999
  " giveaways or freebies – subscribe to our "
3001
  " about 1 message per month and never spam!"
3002
  msgstr ""
3003
 
3004
+ #: templates/admin/dashboard/dashboard.inc.php:522
3005
  msgid "Premium "
3006
  msgstr ""
3007
 
3008
+ #: templates/admin/dashboard/dashboard.inc.php:525
3009
  msgid ""
3010
  "While wpDataTables itself provides quite a large amount of features and "
3011
  "unlimited customisation, flexibility, you can achieve even more with our "
3012
  "premium addons.(requires wpDataTables Premium version)"
3013
  msgstr ""
3014
 
3015
+ #: templates/admin/dashboard/dashboard.inc.php:543
3016
  msgid ""
3017
  "A wpDataTables addon which allows showing additional details for a specific "
3018
  "row in a popup or a separate page or post."
3019
  msgstr ""
3020
 
3021
+ #: templates/admin/dashboard/dashboard.inc.php:549
3022
+ #: templates/admin/dashboard/dashboard.inc.php:576
3023
+ #: templates/admin/dashboard/dashboard.inc.php:602
3024
+ #: templates/admin/dashboard/dashboard.inc.php:629
3025
+ #: templates/admin/dashboard/dashboard.inc.php:655
3026
+ #: templates/admin/dashboard/dashboard.inc.php:688
3027
  msgid "Learn More"
3028
  msgstr ""
3029
 
3030
+ #: templates/admin/dashboard/dashboard.inc.php:570
3031
  msgid ""
3032
  "An add-on for wpDataTables that provides powerful filtering features: "
3033
  "cascade filtering, applying filters on button click, hide table before "
3034
  "filtering."
3035
  msgstr ""
3036
 
3037
+ #: templates/admin/dashboard/dashboard.inc.php:666
3038
  msgid "Need free booking plugin?"
3039
  msgstr ""
3040
 
3041
+ #: templates/admin/dashboard/dashboard.inc.php:675
3042
  msgid "Appointments and Events WordPress Booking Plugin"
3043
  msgstr ""
3044
 
3045
+ #: templates/admin/dashboard/dashboard.inc.php:678
3046
  msgid ""
3047
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
3048
  "set up a fully-featured automated booking system on your WordPress website "
3053
  "each month."
3054
  msgstr ""
3055
 
3056
+ #: templates/admin/dashboard/dashboard.inc.php:681
3057
  msgid "Rating: 4.3 - ‎97 reviews"
3058
  msgstr ""
3059
 
3060
+ #: templates/admin/dashboard/dashboard.inc.php:684
3061
  msgid "Free Download"
3062
  msgstr ""
3063
 
3064
+ #: templates/admin/dashboard/dashboard.inc.php:699
3065
  #: templates/admin/getting-started/getting_started.inc.php:184
3066
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:589
3067
  #: templates/admin/support/support.inc.php:78
3068
  #: templates/admin/system-info/system_info.inc.php:509
3069
  #: templates/admin/welcome_page/welcome_page.inc.php:358
3070
  msgid "Made by"
3071
  msgstr ""
3072
 
3073
+ #: templates/admin/dashboard/dashboard.inc.php:707
3074
  #: templates/admin/getting-started/getting_started.inc.php:192
3075
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:597
3076
  #: templates/admin/support/support.inc.php:45
3077
  #: templates/admin/support/support.inc.php:86
3078
  #: templates/admin/system-info/system_info.inc.php:517
3082
  msgid "Documentation"
3083
  msgstr "wpDataTables documentatie"
3084
 
3085
+ #: templates/admin/dashboard/dashboard.inc.php:711
3086
  #: templates/admin/getting-started/getting_started.inc.php:196
3087
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:601
3088
  #: templates/admin/support/support.inc.php:24
3089
  #: templates/admin/support/support.inc.php:90
3090
  #: templates/admin/system-info/system_info.inc.php:521
3210
  msgstr ""
3211
 
3212
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3213
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:581
3214
  msgid "Go Premium Now"
3215
  msgstr ""
3216
 
3223
  msgstr ""
3224
 
3225
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3226
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:568
3227
  msgid "Premium"
3228
  msgstr ""
3229
 
3253
 
3254
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3255
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3256
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3257
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
3258
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
3259
  #: templates/admin/table-settings/table_settings_block.inc.php:84
3260
  msgid "NEW!"
3261
  msgstr ""
3279
  msgstr ""
3280
 
3281
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3282
+ msgid "Row grouping"
3283
+ msgstr ""
3284
+
3285
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3286
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3287
  #: templates/admin/table-settings/table_settings_block.inc.php:504
3288
  #: templates/admin/table-settings/table_settings_block.inc.php:512
3290
  msgid "Pagination"
3291
  msgstr ""
3292
 
3293
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3294
  msgid ""
3295
  "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3296
  "PDF, and Copy and Print options)</span>"
3297
  msgstr ""
3298
 
3299
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3300
  msgid "Column Customization"
3301
  msgstr ""
3302
 
3303
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
3304
  msgid "Global Table Customization"
3305
  msgstr ""
3306
 
3307
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3308
+ msgid "WP Bakery, Elementor and Gutenberg support"
3309
+ msgstr ""
3310
+
3311
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:252
3312
  msgid "Creating Google charts"
3313
  msgstr ""
3314
 
3315
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:264
3316
  msgid "Customize charts"
3317
  msgstr ""
3318
 
3319
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
3320
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:562
3321
  msgid "Limited"
3322
  msgstr ""
3323
 
3324
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:270
3325
  msgid "Some options are not available."
3326
  msgstr ""
3327
 
3328
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
3329
+ msgid "Creating tables where users can see and edit only their own data"
 
 
 
 
 
 
 
 
3330
  msgstr ""
3331
 
3332
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:558
3333
  msgid "Support"
3334
  msgstr ""
3335
 
3336
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:564
3337
  msgid "Response time is slow and can be up to 5 business days."
3338
  msgstr ""
3339
 
3340
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:575
3341
  msgid ""
3342
  "* Please note that wpDataTables add-ons are not included in premium version "
3343
  "of plugin."
languages/nl_NL/wpdatatables-nl_NL.mo CHANGED
Binary file
languages/nl_NL/wpdatatables-nl_NL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
- "POT-Creation-Date: 2021-02-26 13:11+0100\n"
5
- "PO-Revision-Date: 2021-02-26 13:11+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: en\n"
@@ -148,11 +148,8 @@ msgstr ""
148
  msgid "Welcome page"
149
  msgstr ""
150
 
151
- #: controllers/wdt_admin.php:116
152
- msgid "Get Premium"
153
- msgstr ""
154
-
155
- #: controllers/wdt_admin.php:117
156
  msgid "Go Premium"
157
  msgstr ""
158
 
@@ -179,81 +176,94 @@ msgstr "wpDataTable met geleverde ID niet gevonden!"
179
  msgid "Provided column is not Integer or Float column type"
180
  msgstr ""
181
 
182
- #: controllers/wdt_functions.php:830
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  #, fuzzy
184
  msgid "Choose a table"
185
  msgstr "Kies rollen"
186
 
187
- #: controllers/wdt_functions.php:862
188
  msgid "Interactive Responsive Table"
189
  msgstr ""
190
 
191
- #: controllers/wdt_functions.php:863 controllers/wdt_functions.php:924
192
  msgid "Content"
193
  msgstr ""
194
 
195
- #: controllers/wdt_functions.php:869
196
  #, fuzzy
197
  msgid "wpDataTable"
198
  msgstr "wpDataTable aanpassen"
199
 
200
- #: controllers/wdt_functions.php:873
201
  msgid "Choose the wpDataTable from a dropdown"
202
  msgstr ""
203
 
204
- #: controllers/wdt_functions.php:878
205
  #, fuzzy
206
  msgid "Table view"
207
  msgstr "Tabel titel"
208
 
209
- #: controllers/wdt_functions.php:882
210
  #, fuzzy
211
  msgid "Regular wpDataTable"
212
  msgstr "Gebruik in wpDataTable"
213
 
214
- #: controllers/wdt_functions.php:884
215
  #, fuzzy
216
  msgid "Excel-like table"
217
  msgstr "Excel bestand"
218
 
219
- #: controllers/wdt_functions.php:890
220
  msgid "Variable placeholder #1"
221
  msgstr ""
222
 
223
- #: controllers/wdt_functions.php:893 controllers/wdt_functions.php:901
224
- #: controllers/wdt_functions.php:909
225
  msgid "Variables"
226
  msgstr ""
227
 
228
- #: controllers/wdt_functions.php:894
229
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
230
  msgstr ""
231
 
232
- #: controllers/wdt_functions.php:898
233
  msgid "Variable placeholder #2"
234
  msgstr ""
235
 
236
- #: controllers/wdt_functions.php:902
237
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
238
  msgstr ""
239
 
240
- #: controllers/wdt_functions.php:906
241
  msgid "Variable placeholder #3"
242
  msgstr ""
243
 
244
- #: controllers/wdt_functions.php:910
245
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
246
  msgstr ""
247
 
248
- #: controllers/wdt_functions.php:923
249
  msgid "Google or Highcharts chart based on a wpDataTable"
250
  msgstr ""
251
 
252
- #: controllers/wdt_functions.php:930
253
  msgid "wpDataChart"
254
  msgstr ""
255
 
256
- #: controllers/wdt_functions.php:934
257
  msgid "Choose one of wpDataCharts from the list"
258
  msgstr ""
259
 
@@ -292,7 +302,7 @@ msgstr ""
292
  msgid "Shortcode"
293
  msgstr ""
294
 
295
- #: source/class.wdtbrowsechartstable.php:141
296
  #: source/class.wdtbrowsetable.php:168
297
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
298
  #: templates/admin/dashboard/dashboard.inc.php:153
@@ -301,109 +311,109 @@ msgstr ""
301
  msgid "Click to copy shortcode"
302
  msgstr "Klik om te openen"
303
 
304
- #: source/class.wdtbrowsechartstable.php:150
305
  #: source/class.wdtbrowsetable.php:179
306
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
307
  #: templates/admin/browse/table/duplicate_modal.inc.php:64
308
  msgid "Duplicate"
309
  msgstr "Dubbel"
310
 
311
- #: source/class.wdtbrowsechartstable.php:156
312
  #: source/class.wdtbrowsetable.php:185
313
  #: templates/admin/dashboard/dashboard.inc.php:261
314
  msgid "Configure"
315
  msgstr ""
316
 
317
- #: source/class.wdtbrowsechartstable.php:162
318
  #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
319
  #: templates/admin/browse/bulk_actions.inc.php:14
320
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
321
  msgid "Delete"
322
  msgstr "Verwijderen"
323
 
324
- #: source/class.wdtbrowsechartstable.php:217
325
- #: source/class.wdtbrowsechartstable.php:226
326
  #, fuzzy
327
  msgid "Column Chart"
328
  msgstr "Kolomgrafiek"
329
 
330
- #: source/class.wdtbrowsechartstable.php:220
331
- #: source/class.wdtbrowsechartstable.php:244
332
  #, fuzzy
333
  msgid "Line Chart"
334
  msgstr "Lijngrafiek"
335
 
336
- #: source/class.wdtbrowsechartstable.php:223
337
- #: source/class.wdtbrowsechartstable.php:247
338
  #, fuzzy
339
  msgid "Pie Chart"
340
  msgstr "Taartdiagram"
341
 
342
- #: source/class.wdtbrowsechartstable.php:229
343
  #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
344
  #: templates/chart_wizard.inc.php:91
345
  msgid "Histogram"
346
  msgstr ""
347
 
348
- #: source/class.wdtbrowsechartstable.php:232
349
  #, fuzzy
350
  msgid "Bar Chart"
351
  msgstr "Staafgrafiek"
352
 
353
- #: source/class.wdtbrowsechartstable.php:235
354
  #, fuzzy
355
  msgid "Stacked Bar Chart"
356
  msgstr "Staafgrafiek"
357
 
358
- #: source/class.wdtbrowsechartstable.php:238
359
  #, fuzzy
360
  msgid "Area Chart"
361
  msgstr "Omgevingsgrafiek"
362
 
363
- #: source/class.wdtbrowsechartstable.php:241
364
  #, fuzzy
365
  msgid "Stepped Area Chart"
366
  msgstr "Omgevingsgrafiek"
367
 
368
- #: source/class.wdtbrowsechartstable.php:250
369
  msgid "Bubble Chart"
370
  msgstr ""
371
 
372
- #: source/class.wdtbrowsechartstable.php:253
373
  #, fuzzy
374
  msgid "Donut Chart"
375
  msgstr "Geen grafiek"
376
 
377
- #: source/class.wdtbrowsechartstable.php:256
378
  #, fuzzy
379
  msgid "Gauge Chart"
380
  msgstr "Staafgrafiek"
381
 
382
- #: source/class.wdtbrowsechartstable.php:259
383
  #, fuzzy
384
  msgid "Scatter Chart"
385
  msgstr "Staafgrafiek"
386
 
387
- #: source/class.wdtbrowsechartstable.php:262
388
  msgid "Candlestick Chart"
389
  msgstr ""
390
 
391
- #: source/class.wdtbrowsechartstable.php:265
392
  msgid "Waterfall Chart"
393
  msgstr ""
394
 
395
- #: source/class.wdtbrowsechartstable.php:278
396
  msgid "Google"
397
  msgstr ""
398
 
399
- #: source/class.wdtbrowsechartstable.php:345
400
  #: source/class.wdtbrowsetable.php:298
401
  #: templates/admin/chart_wizard/steps/step3.inc.php:11
402
  #: templates/admin/chart_wizard/steps/step3.inc.php:32
403
  msgid "Select All"
404
  msgstr ""
405
 
406
- #: source/class.wdtbrowsechartstable.php:398
407
  #, fuzzy
408
  msgid "No wpDataCharts in the system yet."
409
  msgstr "Nog geen wpDataTables in het systeem"
@@ -1333,11 +1343,11 @@ msgid ""
1333
  "page. <br><br>You may now finish this tutorial. "
1334
  msgstr ""
1335
 
1336
- #: source/class.wpdatachart.php:703
1337
  msgid "Only one column can be of type String"
1338
  msgstr ""
1339
 
1340
- #: source/class.wpdatachart.php:706
1341
  msgid "You are mixing data types (several date axes and several number)"
1342
  msgstr ""
1343
 
@@ -1398,7 +1408,7 @@ msgstr ""
1398
  msgid "if you have some questions or problems with the plugin."
1399
  msgstr "als je vragen of problemen hebt met deze plugin."
1400
 
1401
- #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:499
1402
  msgid "wpDataTables Addons"
1403
  msgstr ""
1404
 
@@ -1412,12 +1422,12 @@ msgid ""
1412
  msgstr ""
1413
 
1414
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1415
- #: templates/admin/dashboard/dashboard.inc.php:570
1416
  msgid "Report Builder"
1417
  msgstr ""
1418
 
1419
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1420
- #: templates/admin/dashboard/dashboard.inc.php:574
1421
  msgid ""
1422
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1423
  "XLSX documents filled in with actual data from your database."
@@ -1443,7 +1453,7 @@ msgid "NEW"
1443
  msgstr ""
1444
 
1445
  #: templates/admin/addons/addons.inc.php:40
1446
- #: templates/admin/dashboard/dashboard.inc.php:517
1447
  msgid "Master Detail Tables for wpDataTables"
1448
  msgstr ""
1449
 
@@ -1464,7 +1474,7 @@ msgid "Learn more"
1464
  msgstr ""
1465
 
1466
  #: templates/admin/addons/addons.inc.php:67
1467
- #: templates/admin/dashboard/dashboard.inc.php:544
1468
  msgid "Powerful Filters for wpDataTables"
1469
  msgstr ""
1470
 
@@ -1476,24 +1486,24 @@ msgid ""
1476
  msgstr ""
1477
 
1478
  #: templates/admin/addons/addons.inc.php:120
1479
- #: templates/admin/dashboard/dashboard.inc.php:597
1480
  msgid "Formidable Forms integration for wpDataTables"
1481
  msgstr ""
1482
 
1483
  #: templates/admin/addons/addons.inc.php:123
1484
- #: templates/admin/dashboard/dashboard.inc.php:601
1485
  msgid ""
1486
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1487
  "create wpDataTables from Formidable Forms entries data."
1488
  msgstr ""
1489
 
1490
  #: templates/admin/addons/addons.inc.php:143
1491
- #: templates/admin/dashboard/dashboard.inc.php:623
1492
  msgid "Gravity Forms integration for wpDataTables"
1493
  msgstr ""
1494
 
1495
  #: templates/admin/addons/addons.inc.php:146
1496
- #: templates/admin/dashboard/dashboard.inc.php:627
1497
  msgid ""
1498
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1499
  "wpDataTables from Gravity Forms entries data."
@@ -1519,6 +1529,10 @@ msgstr "Dubbel"
1519
  msgid "New chart title"
1520
  msgstr "Grafiek titel"
1521
 
 
 
 
 
1522
  #: templates/admin/browse/table/browse.inc.php:25
1523
  msgid "Browse Tables"
1524
  msgstr ""
@@ -1992,7 +2006,7 @@ msgid "Axes"
1992
  msgstr ""
1993
 
1994
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1995
- #: templates/admin/chart_wizard/steps/step4.inc.php:532
1996
  msgid "Tooltip"
1997
  msgstr ""
1998
 
@@ -2026,7 +2040,7 @@ msgid "Curve type"
2026
  msgstr "Kolom type"
2027
 
2028
  #: templates/admin/chart_wizard/steps/step4.inc.php:49
2029
- #: templates/admin/chart_wizard/steps/step4.inc.php:336
2030
  #, fuzzy
2031
  msgid "Controls the curve of the lines"
2032
  msgstr "Kies een skin voor de plugin"
@@ -2172,159 +2186,168 @@ msgstr ""
2172
  msgid "The default font face for all text in the chart."
2173
  msgstr ""
2174
 
2175
- #: templates/admin/chart_wizard/steps/step4.inc.php:334
 
 
 
 
 
 
 
 
 
2176
  msgid "Grid"
2177
  msgstr ""
2178
 
2179
- #: templates/admin/chart_wizard/steps/step4.inc.php:340
2180
  msgid "Do you want to show grid on the chart"
2181
  msgstr ""
2182
 
2183
- #: templates/admin/chart_wizard/steps/step4.inc.php:345
2184
  msgid "Horizontal axis label"
2185
  msgstr ""
2186
 
2187
- #: templates/admin/chart_wizard/steps/step4.inc.php:347
2188
  msgid "Name of the horizontal axis."
2189
  msgstr ""
2190
 
2191
- #: templates/admin/chart_wizard/steps/step4.inc.php:362
2192
  msgid "Horizontal crosshair"
2193
  msgstr ""
2194
 
2195
- #: templates/admin/chart_wizard/steps/step4.inc.php:364
2196
  msgid ""
2197
  "Configure a horizontal crosshair that follows either the mouse pointer or "
2198
  "the hovered point lines"
2199
  msgstr ""
2200
 
2201
- #: templates/admin/chart_wizard/steps/step4.inc.php:368
2202
  msgid "Show x-Axis crosshair"
2203
  msgstr ""
2204
 
2205
- #: templates/admin/chart_wizard/steps/step4.inc.php:373
2206
  msgid "Horizontal axis direction"
2207
  msgstr ""
2208
 
2209
- #: templates/admin/chart_wizard/steps/step4.inc.php:375
2210
  msgid ""
2211
  "The direction in which the values along the horizontal axis grow. Specify -1 "
2212
  "to reverse the order of the values"
2213
  msgstr ""
2214
 
2215
- #: templates/admin/chart_wizard/steps/step4.inc.php:391
2216
  msgid "Vertical axis label"
2217
  msgstr ""
2218
 
2219
- #: templates/admin/chart_wizard/steps/step4.inc.php:393
2220
  msgid "Name of the vertical axis."
2221
  msgstr ""
2222
 
2223
- #: templates/admin/chart_wizard/steps/step4.inc.php:408
2224
  msgid "Vertical crosshair"
2225
  msgstr ""
2226
 
2227
- #: templates/admin/chart_wizard/steps/step4.inc.php:410
2228
  msgid ""
2229
  "Configure a vertical crosshair that follows either the mouse pointer or the "
2230
  "hovered point lines"
2231
  msgstr ""
2232
 
2233
- #: templates/admin/chart_wizard/steps/step4.inc.php:414
2234
  msgid "Show y-Axis crosshair"
2235
  msgstr ""
2236
 
2237
- #: templates/admin/chart_wizard/steps/step4.inc.php:419
2238
  msgid "Vertical axis direction"
2239
  msgstr ""
2240
 
2241
- #: templates/admin/chart_wizard/steps/step4.inc.php:421
2242
  msgid ""
2243
  "The direction in which the values along the vertical axis grow. Specify -1 "
2244
  "to reverse the order of the values"
2245
  msgstr ""
2246
 
2247
- #: templates/admin/chart_wizard/steps/step4.inc.php:438
2248
  msgid "Vertical axis min value"
2249
  msgstr ""
2250
 
2251
- #: templates/admin/chart_wizard/steps/step4.inc.php:440
2252
  msgid "The minimum value of the axis."
2253
  msgstr ""
2254
 
2255
- #: templates/admin/chart_wizard/steps/step4.inc.php:464
2256
  msgid "Vertical axis max value"
2257
  msgstr ""
2258
 
2259
- #: templates/admin/chart_wizard/steps/step4.inc.php:466
2260
  msgid "The maximum value of the axis."
2261
  msgstr ""
2262
 
2263
- #: templates/admin/chart_wizard/steps/step4.inc.php:489
2264
  msgid "Invert"
2265
  msgstr ""
2266
 
2267
- #: templates/admin/chart_wizard/steps/step4.inc.php:491
2268
  msgid ""
2269
  "Whether to invert the axes so that the x axis is vertical and y axis is "
2270
  "horizontal"
2271
  msgstr ""
2272
 
2273
- #: templates/admin/chart_wizard/steps/step4.inc.php:495
2274
  #, fuzzy
2275
  msgid "Invert chart axes"
2276
  msgstr "Render grafieken/diagrammen"
2277
 
2278
- #: templates/admin/chart_wizard/steps/step4.inc.php:505
2279
  msgid "Chart title"
2280
  msgstr "Grafiek titel"
2281
 
2282
- #: templates/admin/chart_wizard/steps/step4.inc.php:507
2283
  msgid "Do you want to show the chart title on the page"
2284
  msgstr ""
2285
 
2286
- #: templates/admin/chart_wizard/steps/step4.inc.php:511
2287
  #, fuzzy
2288
  msgid "Show title"
2289
  msgstr "Nieuwe titel"
2290
 
2291
- #: templates/admin/chart_wizard/steps/step4.inc.php:516
2292
  msgid "Title floating"
2293
  msgstr ""
2294
 
2295
- #: templates/admin/chart_wizard/steps/step4.inc.php:518
2296
  msgid ""
2297
  "When the title is floating, the plot area will not move to make space for it"
2298
  msgstr ""
2299
 
2300
- #: templates/admin/chart_wizard/steps/step4.inc.php:522
2301
  #, fuzzy
2302
  msgid "Enable floating"
2303
  msgstr "Sorteren inschakelen"
2304
 
2305
- #: templates/admin/chart_wizard/steps/step4.inc.php:534
2306
  msgid "Enable or disable the tooltip"
2307
  msgstr ""
2308
 
2309
- #: templates/admin/chart_wizard/steps/step4.inc.php:538
2310
  msgid "Show tooltip"
2311
  msgstr ""
2312
 
2313
- #: templates/admin/chart_wizard/steps/step4.inc.php:549
2314
  #, fuzzy
2315
  msgid "Position"
2316
  msgstr "Kolom positie"
2317
 
2318
- #: templates/admin/chart_wizard/steps/step4.inc.php:551
2319
  msgid "Position of the legend"
2320
  msgstr ""
2321
 
2322
- #: templates/admin/chart_wizard/steps/step4.inc.php:569
2323
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2324
  msgid "Vertical align"
2325
  msgstr ""
2326
 
2327
- #: templates/admin/chart_wizard/steps/step4.inc.php:571
2328
  msgid "The vertical alignment of the legend box"
2329
  msgstr ""
2330
 
@@ -2766,178 +2789,210 @@ msgid "A minor update with a couple of improvements and bug fixes:"
2766
  msgstr ""
2767
 
2768
  #: templates/admin/dashboard/dashboard.inc.php:345
2769
- msgid ""
2770
- "<strong>Improvement:</strong> Added auto-save functionality after insert "
2771
- "media in Simple tables."
2772
  msgstr ""
2773
 
2774
  #: templates/admin/dashboard/dashboard.inc.php:346
2775
  msgid ""
2776
- "<strong>Improvement:</strong> Added translate functions on some strings."
 
2777
  msgstr ""
2778
 
2779
  #: templates/admin/dashboard/dashboard.inc.php:347
2780
  msgid ""
2781
- "<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin "
2782
- "area and filters for elementor widgets."
2783
  msgstr ""
2784
 
2785
  #: templates/admin/dashboard/dashboard.inc.php:348
2786
- msgid ""
2787
- "<strong>BugFix:</strong> Fixed issue with font in material skin and "
2788
- "background in graphite skin."
2789
  msgstr ""
2790
 
2791
  #: templates/admin/dashboard/dashboard.inc.php:349
2792
  msgid ""
2793
- "<strong>BugFix:</strong> Fixed issue with class name in Global font color "
2794
- "settings."
2795
  msgstr ""
2796
 
2797
  #: templates/admin/dashboard/dashboard.inc.php:350
2798
- msgid "Compatibility with WordPress 5.6.2 approved."
 
 
2799
  msgstr ""
2800
 
2801
  #: templates/admin/dashboard/dashboard.inc.php:351
 
 
 
 
 
 
 
 
 
 
2802
  msgid "Other small bug fixes and stability improvements."
2803
  msgstr ""
2804
 
2805
- #: templates/admin/dashboard/dashboard.inc.php:363
2806
  msgid "Go Premium!"
2807
  msgstr ""
2808
 
2809
- #: templates/admin/dashboard/dashboard.inc.php:369
2810
  msgid "View Comparison"
2811
  msgstr ""
2812
 
2813
- #: templates/admin/dashboard/dashboard.inc.php:377
2814
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2815
  msgid ""
2816
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2817
  "of the powerful features."
2818
  msgstr ""
2819
 
2820
- #: templates/admin/dashboard/dashboard.inc.php:381
2821
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
2822
  msgid "Create a table manually"
2823
  msgstr ""
2824
 
2825
- #: templates/admin/dashboard/dashboard.inc.php:384
2826
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
2827
  msgid "Creating tables from Google Spreadsheet"
2828
  msgstr ""
2829
 
2830
- #: templates/admin/dashboard/dashboard.inc.php:387
2831
- msgid ""
2832
- "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2833
- "tables via Google Sheet API"
2834
  msgstr ""
2835
 
2836
- #: templates/admin/dashboard/dashboard.inc.php:390
2837
- msgid ""
2838
- "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2839
- "tables from Private Google Spreadsheet"
2840
  msgstr ""
2841
 
2842
- #: templates/admin/dashboard/dashboard.inc.php:393
2843
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:318
2844
  msgid "Creating MySQL-based tables from database"
2845
  msgstr ""
2846
 
2847
- #: templates/admin/dashboard/dashboard.inc.php:396
2848
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
2849
  msgid "Creating MySQL-based tables from Wordpress post types"
2850
  msgstr ""
2851
 
2852
- #: templates/admin/dashboard/dashboard.inc.php:399
2853
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
 
 
 
 
 
 
 
 
 
2854
  #: templates/edit_table.inc.php:329
2855
  msgid "Advanced filtering"
2856
  msgstr ""
2857
 
2858
- #: templates/admin/dashboard/dashboard.inc.php:402
2859
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
 
 
 
 
 
 
 
 
 
 
2860
  #: templates/admin/table-settings/table_settings_block.inc.php:153
2861
  #: templates/edit_table.inc.php:282
2862
  msgid "Server-side processing"
2863
  msgstr "Server-side verwerking"
2864
 
2865
- #: templates/admin/dashboard/dashboard.inc.php:405
2866
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2867
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2868
  msgstr ""
2869
 
2870
- #: templates/admin/dashboard/dashboard.inc.php:408
2871
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2872
  msgid "Front-end table editing"
2873
  msgstr ""
2874
 
2875
- #: templates/admin/dashboard/dashboard.inc.php:411
2876
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2877
  msgid "Excel-like editing"
2878
  msgstr ""
2879
 
2880
- #: templates/admin/dashboard/dashboard.inc.php:414
2881
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2882
  msgid "Creating charts with Highcharts"
2883
  msgstr ""
2884
 
2885
- #: templates/admin/dashboard/dashboard.inc.php:417
2886
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2887
  msgid "Creating charts with Chart.js"
2888
  msgstr ""
2889
 
2890
- #: templates/admin/dashboard/dashboard.inc.php:420
2891
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
 
 
 
 
 
 
 
 
 
 
2892
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2893
  #: templates/edit_table.inc.php:301
2894
  msgid "Responsive"
2895
  msgstr ""
2896
 
2897
- #: templates/admin/dashboard/dashboard.inc.php:423
2898
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2899
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2900
  #: templates/edit_table.inc.php:750
2901
  #, fuzzy
2902
  msgid "Conditional formatting"
2903
  msgstr "Extra instellingen"
2904
 
2905
- #: templates/admin/dashboard/dashboard.inc.php:426
2906
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2907
  msgid "Calculating Tools"
2908
  msgstr ""
2909
 
2910
- #: templates/admin/dashboard/dashboard.inc.php:429
2911
  msgid "Formula columns"
2912
  msgstr ""
2913
 
2914
- #: templates/admin/dashboard/dashboard.inc.php:432
2915
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2916
  #: templates/admin/table-settings/table_settings_block.inc.php:80
2917
  msgid "Placeholders"
2918
  msgstr ""
2919
 
2920
- #: templates/admin/dashboard/dashboard.inc.php:435
2921
  msgid "Premium support"
2922
  msgstr ""
2923
 
2924
- #: templates/admin/dashboard/dashboard.inc.php:439
2925
  msgid "Get Premium Today"
2926
  msgstr ""
2927
 
2928
- #: templates/admin/dashboard/dashboard.inc.php:446
2929
  msgid "News Blog"
2930
  msgstr ""
2931
 
2932
- #: templates/admin/dashboard/dashboard.inc.php:451
2933
  msgid "Checkout useful articles from wpdatatables.com"
2934
  msgstr ""
2935
 
2936
- #: templates/admin/dashboard/dashboard.inc.php:474
2937
- msgid "Please install and enable PHP extensions xml and dom on your server."
2938
- msgstr ""
2939
-
2940
- #: templates/admin/dashboard/dashboard.inc.php:482
2941
  msgid ""
2942
  "Never miss notifications about new cool features, promotions,\n"
2943
  " giveaways or freebies – subscribe to our "
@@ -2945,48 +3000,48 @@ msgid ""
2945
  " about 1 message per month and never spam!"
2946
  msgstr ""
2947
 
2948
- #: templates/admin/dashboard/dashboard.inc.php:500
2949
  msgid "Premium "
2950
  msgstr ""
2951
 
2952
- #: templates/admin/dashboard/dashboard.inc.php:503
2953
  msgid ""
2954
  "While wpDataTables itself provides quite a large amount of features and "
2955
  "unlimited customisation, flexibility, you can achieve even more with our "
2956
  "premium addons.(requires wpDataTables Premium version)"
2957
  msgstr ""
2958
 
2959
- #: templates/admin/dashboard/dashboard.inc.php:521
2960
  msgid ""
2961
  "A wpDataTables addon which allows showing additional details for a specific "
2962
  "row in a popup or a separate page or post."
2963
  msgstr ""
2964
 
2965
- #: templates/admin/dashboard/dashboard.inc.php:527
2966
- #: templates/admin/dashboard/dashboard.inc.php:554
2967
- #: templates/admin/dashboard/dashboard.inc.php:580
2968
- #: templates/admin/dashboard/dashboard.inc.php:607
2969
- #: templates/admin/dashboard/dashboard.inc.php:633
2970
- #: templates/admin/dashboard/dashboard.inc.php:666
2971
  msgid "Learn More"
2972
  msgstr ""
2973
 
2974
- #: templates/admin/dashboard/dashboard.inc.php:548
2975
  msgid ""
2976
  "An add-on for wpDataTables that provides powerful filtering features: "
2977
  "cascade filtering, applying filters on button click, hide table before "
2978
  "filtering."
2979
  msgstr ""
2980
 
2981
- #: templates/admin/dashboard/dashboard.inc.php:644
2982
  msgid "Need free booking plugin?"
2983
  msgstr ""
2984
 
2985
- #: templates/admin/dashboard/dashboard.inc.php:653
2986
  msgid "Appointments and Events WordPress Booking Plugin"
2987
  msgstr ""
2988
 
2989
- #: templates/admin/dashboard/dashboard.inc.php:656
2990
  msgid ""
2991
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2992
  "set up a fully-featured automated booking system on your WordPress website "
@@ -2997,26 +3052,26 @@ msgid ""
2997
  "each month."
2998
  msgstr ""
2999
 
3000
- #: templates/admin/dashboard/dashboard.inc.php:659
3001
  msgid "Rating: 4.3 - ‎97 reviews"
3002
  msgstr ""
3003
 
3004
- #: templates/admin/dashboard/dashboard.inc.php:662
3005
  msgid "Free Download"
3006
  msgstr ""
3007
 
3008
- #: templates/admin/dashboard/dashboard.inc.php:677
3009
  #: templates/admin/getting-started/getting_started.inc.php:184
3010
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:505
3011
  #: templates/admin/support/support.inc.php:78
3012
  #: templates/admin/system-info/system_info.inc.php:509
3013
  #: templates/admin/welcome_page/welcome_page.inc.php:358
3014
  msgid "Made by"
3015
  msgstr ""
3016
 
3017
- #: templates/admin/dashboard/dashboard.inc.php:685
3018
  #: templates/admin/getting-started/getting_started.inc.php:192
3019
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:513
3020
  #: templates/admin/support/support.inc.php:45
3021
  #: templates/admin/support/support.inc.php:86
3022
  #: templates/admin/system-info/system_info.inc.php:517
@@ -3026,9 +3081,9 @@ msgstr ""
3026
  msgid "Documentation"
3027
  msgstr "wpDataTables documentatie"
3028
 
3029
- #: templates/admin/dashboard/dashboard.inc.php:689
3030
  #: templates/admin/getting-started/getting_started.inc.php:196
3031
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:517
3032
  #: templates/admin/support/support.inc.php:24
3033
  #: templates/admin/support/support.inc.php:90
3034
  #: templates/admin/system-info/system_info.inc.php:521
@@ -3154,7 +3209,7 @@ msgid "Lite vs Premium comparison"
3154
  msgstr ""
3155
 
3156
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3157
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:497
3158
  msgid "Go Premium Now"
3159
  msgstr ""
3160
 
@@ -3167,7 +3222,7 @@ msgid "Lite"
3167
  msgstr ""
3168
 
3169
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3170
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3171
  msgid "Premium"
3172
  msgstr ""
3173
 
@@ -3197,9 +3252,9 @@ msgstr ""
3197
 
3198
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3199
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3200
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:256
3201
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
3202
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:306
3203
  #: templates/admin/table-settings/table_settings_block.inc.php:84
3204
  msgid "NEW!"
3205
  msgstr ""
@@ -3223,6 +3278,10 @@ msgid "Sorting"
3223
  msgstr ""
3224
 
3225
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
 
 
 
 
3226
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3227
  #: templates/admin/table-settings/table_settings_block.inc.php:504
3228
  #: templates/admin/table-settings/table_settings_block.inc.php:512
@@ -3230,58 +3289,54 @@ msgstr ""
3230
  msgid "Pagination"
3231
  msgstr ""
3232
 
3233
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3234
  msgid ""
3235
  "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3236
  "PDF, and Copy and Print options)</span>"
3237
  msgstr ""
3238
 
3239
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3240
  msgid "Column Customization"
3241
  msgstr ""
3242
 
3243
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3244
  msgid "Global Table Customization"
3245
  msgstr ""
3246
 
3247
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
 
 
 
 
3248
  msgid "Creating Google charts"
3249
  msgstr ""
3250
 
3251
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3252
  msgid "Customize charts"
3253
  msgstr ""
3254
 
3255
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3256
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3257
  msgid "Limited"
3258
  msgstr ""
3259
 
3260
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:246
3261
  msgid "Some options are not available."
3262
  msgstr ""
3263
 
3264
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
3265
- msgid "Table Customization"
3266
- msgstr ""
3267
-
3268
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
3269
- msgid "Creating tables via Google Sheet API"
3270
- msgstr ""
3271
-
3272
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
3273
- msgid "Creating tables from Private Google Spreadsheet"
3274
  msgstr ""
3275
 
3276
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3277
  msgid "Support"
3278
  msgstr ""
3279
 
3280
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:480
3281
  msgid "Response time is slow and can be up to 5 business days."
3282
  msgstr ""
3283
 
3284
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:491
3285
  msgid ""
3286
  "* Please note that wpDataTables add-ons are not included in premium version "
3287
  "of plugin."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
+ "POT-Creation-Date: 2021-03-19 13:03+0100\n"
5
+ "PO-Revision-Date: 2021-03-19 13:03+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: en\n"
148
  msgid "Welcome page"
149
  msgstr ""
150
 
151
+ #: controllers/wdt_admin.php:116 controllers/wdt_admin.php:117
152
+ #: controllers/wdt_functions.php:826
 
 
 
153
  msgid "Go Premium"
154
  msgstr ""
155
 
176
  msgid "Provided column is not Integer or Float column type"
177
  msgstr ""
178
 
179
+ #: controllers/wdt_functions.php:821
180
+ msgid "Go to Settings"
181
+ msgstr ""
182
+
183
+ #: controllers/wdt_functions.php:850
184
+ #, php-format
185
+ msgid "By %s"
186
+ msgstr ""
187
+
188
+ #: controllers/wdt_functions.php:854
189
+ msgid "Docs"
190
+ msgstr ""
191
+
192
+ #: controllers/wdt_functions.php:882
193
  #, fuzzy
194
  msgid "Choose a table"
195
  msgstr "Kies rollen"
196
 
197
+ #: controllers/wdt_functions.php:914
198
  msgid "Interactive Responsive Table"
199
  msgstr ""
200
 
201
+ #: controllers/wdt_functions.php:915 controllers/wdt_functions.php:976
202
  msgid "Content"
203
  msgstr ""
204
 
205
+ #: controllers/wdt_functions.php:921
206
  #, fuzzy
207
  msgid "wpDataTable"
208
  msgstr "wpDataTable aanpassen"
209
 
210
+ #: controllers/wdt_functions.php:925
211
  msgid "Choose the wpDataTable from a dropdown"
212
  msgstr ""
213
 
214
+ #: controllers/wdt_functions.php:930
215
  #, fuzzy
216
  msgid "Table view"
217
  msgstr "Tabel titel"
218
 
219
+ #: controllers/wdt_functions.php:934
220
  #, fuzzy
221
  msgid "Regular wpDataTable"
222
  msgstr "Gebruik in wpDataTable"
223
 
224
+ #: controllers/wdt_functions.php:936
225
  #, fuzzy
226
  msgid "Excel-like table"
227
  msgstr "Excel bestand"
228
 
229
+ #: controllers/wdt_functions.php:942
230
  msgid "Variable placeholder #1"
231
  msgstr ""
232
 
233
+ #: controllers/wdt_functions.php:945 controllers/wdt_functions.php:953
234
+ #: controllers/wdt_functions.php:961
235
  msgid "Variables"
236
  msgstr ""
237
 
238
+ #: controllers/wdt_functions.php:946
239
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
240
  msgstr ""
241
 
242
+ #: controllers/wdt_functions.php:950
243
  msgid "Variable placeholder #2"
244
  msgstr ""
245
 
246
+ #: controllers/wdt_functions.php:954
247
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
248
  msgstr ""
249
 
250
+ #: controllers/wdt_functions.php:958
251
  msgid "Variable placeholder #3"
252
  msgstr ""
253
 
254
+ #: controllers/wdt_functions.php:962
255
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
256
  msgstr ""
257
 
258
+ #: controllers/wdt_functions.php:975
259
  msgid "Google or Highcharts chart based on a wpDataTable"
260
  msgstr ""
261
 
262
+ #: controllers/wdt_functions.php:982
263
  msgid "wpDataChart"
264
  msgstr ""
265
 
266
+ #: controllers/wdt_functions.php:986
267
  msgid "Choose one of wpDataCharts from the list"
268
  msgstr ""
269
 
302
  msgid "Shortcode"
303
  msgstr ""
304
 
305
+ #: source/class.wdtbrowsechartstable.php:153
306
  #: source/class.wdtbrowsetable.php:168
307
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
308
  #: templates/admin/dashboard/dashboard.inc.php:153
311
  msgid "Click to copy shortcode"
312
  msgstr "Klik om te openen"
313
 
314
+ #: source/class.wdtbrowsechartstable.php:162
315
  #: source/class.wdtbrowsetable.php:179
316
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
317
  #: templates/admin/browse/table/duplicate_modal.inc.php:64
318
  msgid "Duplicate"
319
  msgstr "Dubbel"
320
 
321
+ #: source/class.wdtbrowsechartstable.php:168
322
  #: source/class.wdtbrowsetable.php:185
323
  #: templates/admin/dashboard/dashboard.inc.php:261
324
  msgid "Configure"
325
  msgstr ""
326
 
327
+ #: source/class.wdtbrowsechartstable.php:174
328
  #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
329
  #: templates/admin/browse/bulk_actions.inc.php:14
330
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
331
  msgid "Delete"
332
  msgstr "Verwijderen"
333
 
334
+ #: source/class.wdtbrowsechartstable.php:229
335
+ #: source/class.wdtbrowsechartstable.php:238
336
  #, fuzzy
337
  msgid "Column Chart"
338
  msgstr "Kolomgrafiek"
339
 
340
+ #: source/class.wdtbrowsechartstable.php:232
341
+ #: source/class.wdtbrowsechartstable.php:256
342
  #, fuzzy
343
  msgid "Line Chart"
344
  msgstr "Lijngrafiek"
345
 
346
+ #: source/class.wdtbrowsechartstable.php:235
347
+ #: source/class.wdtbrowsechartstable.php:259
348
  #, fuzzy
349
  msgid "Pie Chart"
350
  msgstr "Taartdiagram"
351
 
352
+ #: source/class.wdtbrowsechartstable.php:241
353
  #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
354
  #: templates/chart_wizard.inc.php:91
355
  msgid "Histogram"
356
  msgstr ""
357
 
358
+ #: source/class.wdtbrowsechartstable.php:244
359
  #, fuzzy
360
  msgid "Bar Chart"
361
  msgstr "Staafgrafiek"
362
 
363
+ #: source/class.wdtbrowsechartstable.php:247
364
  #, fuzzy
365
  msgid "Stacked Bar Chart"
366
  msgstr "Staafgrafiek"
367
 
368
+ #: source/class.wdtbrowsechartstable.php:250
369
  #, fuzzy
370
  msgid "Area Chart"
371
  msgstr "Omgevingsgrafiek"
372
 
373
+ #: source/class.wdtbrowsechartstable.php:253
374
  #, fuzzy
375
  msgid "Stepped Area Chart"
376
  msgstr "Omgevingsgrafiek"
377
 
378
+ #: source/class.wdtbrowsechartstable.php:262
379
  msgid "Bubble Chart"
380
  msgstr ""
381
 
382
+ #: source/class.wdtbrowsechartstable.php:265
383
  #, fuzzy
384
  msgid "Donut Chart"
385
  msgstr "Geen grafiek"
386
 
387
+ #: source/class.wdtbrowsechartstable.php:268
388
  #, fuzzy
389
  msgid "Gauge Chart"
390
  msgstr "Staafgrafiek"
391
 
392
+ #: source/class.wdtbrowsechartstable.php:271
393
  #, fuzzy
394
  msgid "Scatter Chart"
395
  msgstr "Staafgrafiek"
396
 
397
+ #: source/class.wdtbrowsechartstable.php:274
398
  msgid "Candlestick Chart"
399
  msgstr ""
400
 
401
+ #: source/class.wdtbrowsechartstable.php:277
402
  msgid "Waterfall Chart"
403
  msgstr ""
404
 
405
+ #: source/class.wdtbrowsechartstable.php:290
406
  msgid "Google"
407
  msgstr ""
408
 
409
+ #: source/class.wdtbrowsechartstable.php:357
410
  #: source/class.wdtbrowsetable.php:298
411
  #: templates/admin/chart_wizard/steps/step3.inc.php:11
412
  #: templates/admin/chart_wizard/steps/step3.inc.php:32
413
  msgid "Select All"
414
  msgstr ""
415
 
416
+ #: source/class.wdtbrowsechartstable.php:410
417
  #, fuzzy
418
  msgid "No wpDataCharts in the system yet."
419
  msgstr "Nog geen wpDataTables in het systeem"
1343
  "page. <br><br>You may now finish this tutorial. "
1344
  msgstr ""
1345
 
1346
+ #: source/class.wpdatachart.php:718
1347
  msgid "Only one column can be of type String"
1348
  msgstr ""
1349
 
1350
+ #: source/class.wpdatachart.php:721
1351
  msgid "You are mixing data types (several date axes and several number)"
1352
  msgstr ""
1353
 
1408
  msgid "if you have some questions or problems with the plugin."
1409
  msgstr "als je vragen of problemen hebt met deze plugin."
1410
 
1411
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:521
1412
  msgid "wpDataTables Addons"
1413
  msgstr ""
1414
 
1422
  msgstr ""
1423
 
1424
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1425
+ #: templates/admin/dashboard/dashboard.inc.php:592
1426
  msgid "Report Builder"
1427
  msgstr ""
1428
 
1429
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1430
+ #: templates/admin/dashboard/dashboard.inc.php:596
1431
  msgid ""
1432
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1433
  "XLSX documents filled in with actual data from your database."
1453
  msgstr ""
1454
 
1455
  #: templates/admin/addons/addons.inc.php:40
1456
+ #: templates/admin/dashboard/dashboard.inc.php:539
1457
  msgid "Master Detail Tables for wpDataTables"
1458
  msgstr ""
1459
 
1474
  msgstr ""
1475
 
1476
  #: templates/admin/addons/addons.inc.php:67
1477
+ #: templates/admin/dashboard/dashboard.inc.php:566
1478
  msgid "Powerful Filters for wpDataTables"
1479
  msgstr ""
1480
 
1486
  msgstr ""
1487
 
1488
  #: templates/admin/addons/addons.inc.php:120
1489
+ #: templates/admin/dashboard/dashboard.inc.php:619
1490
  msgid "Formidable Forms integration for wpDataTables"
1491
  msgstr ""
1492
 
1493
  #: templates/admin/addons/addons.inc.php:123
1494
+ #: templates/admin/dashboard/dashboard.inc.php:623
1495
  msgid ""
1496
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1497
  "create wpDataTables from Formidable Forms entries data."
1498
  msgstr ""
1499
 
1500
  #: templates/admin/addons/addons.inc.php:143
1501
+ #: templates/admin/dashboard/dashboard.inc.php:645
1502
  msgid "Gravity Forms integration for wpDataTables"
1503
  msgstr ""
1504
 
1505
  #: templates/admin/addons/addons.inc.php:146
1506
+ #: templates/admin/dashboard/dashboard.inc.php:649
1507
  msgid ""
1508
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1509
  "wpDataTables from Gravity Forms entries data."
1529
  msgid "New chart title"
1530
  msgstr "Grafiek titel"
1531
 
1532
+ #: templates/admin/browse/search_box.inc.php:7
1533
+ msgid "Search for items..."
1534
+ msgstr ""
1535
+
1536
  #: templates/admin/browse/table/browse.inc.php:25
1537
  msgid "Browse Tables"
1538
  msgstr ""
2006
  msgstr ""
2007
 
2008
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
2009
+ #: templates/admin/chart_wizard/steps/step4.inc.php:543
2010
  msgid "Tooltip"
2011
  msgstr ""
2012
 
2040
  msgstr "Kolom type"
2041
 
2042
  #: templates/admin/chart_wizard/steps/step4.inc.php:49
2043
+ #: templates/admin/chart_wizard/steps/step4.inc.php:347
2044
  #, fuzzy
2045
  msgid "Controls the curve of the lines"
2046
  msgstr "Kies een skin voor de plugin"
2186
  msgid "The default font face for all text in the chart."
2187
  msgstr ""
2188
 
2189
+ #: templates/admin/chart_wizard/steps/step4.inc.php:330
2190
+ #: templates/admin/chart_wizard/steps/step4.inc.php:336
2191
+ msgid "3D"
2192
+ msgstr ""
2193
+
2194
+ #: templates/admin/chart_wizard/steps/step4.inc.php:332
2195
+ msgid "Check for 3D pie chart"
2196
+ msgstr ""
2197
+
2198
+ #: templates/admin/chart_wizard/steps/step4.inc.php:345
2199
  msgid "Grid"
2200
  msgstr ""
2201
 
2202
+ #: templates/admin/chart_wizard/steps/step4.inc.php:351
2203
  msgid "Do you want to show grid on the chart"
2204
  msgstr ""
2205
 
2206
+ #: templates/admin/chart_wizard/steps/step4.inc.php:356
2207
  msgid "Horizontal axis label"
2208
  msgstr ""
2209
 
2210
+ #: templates/admin/chart_wizard/steps/step4.inc.php:358
2211
  msgid "Name of the horizontal axis."
2212
  msgstr ""
2213
 
2214
+ #: templates/admin/chart_wizard/steps/step4.inc.php:373
2215
  msgid "Horizontal crosshair"
2216
  msgstr ""
2217
 
2218
+ #: templates/admin/chart_wizard/steps/step4.inc.php:375
2219
  msgid ""
2220
  "Configure a horizontal crosshair that follows either the mouse pointer or "
2221
  "the hovered point lines"
2222
  msgstr ""
2223
 
2224
+ #: templates/admin/chart_wizard/steps/step4.inc.php:379
2225
  msgid "Show x-Axis crosshair"
2226
  msgstr ""
2227
 
2228
+ #: templates/admin/chart_wizard/steps/step4.inc.php:384
2229
  msgid "Horizontal axis direction"
2230
  msgstr ""
2231
 
2232
+ #: templates/admin/chart_wizard/steps/step4.inc.php:386
2233
  msgid ""
2234
  "The direction in which the values along the horizontal axis grow. Specify -1 "
2235
  "to reverse the order of the values"
2236
  msgstr ""
2237
 
2238
+ #: templates/admin/chart_wizard/steps/step4.inc.php:402
2239
  msgid "Vertical axis label"
2240
  msgstr ""
2241
 
2242
+ #: templates/admin/chart_wizard/steps/step4.inc.php:404
2243
  msgid "Name of the vertical axis."
2244
  msgstr ""
2245
 
2246
+ #: templates/admin/chart_wizard/steps/step4.inc.php:419
2247
  msgid "Vertical crosshair"
2248
  msgstr ""
2249
 
2250
+ #: templates/admin/chart_wizard/steps/step4.inc.php:421
2251
  msgid ""
2252
  "Configure a vertical crosshair that follows either the mouse pointer or the "
2253
  "hovered point lines"
2254
  msgstr ""
2255
 
2256
+ #: templates/admin/chart_wizard/steps/step4.inc.php:425
2257
  msgid "Show y-Axis crosshair"
2258
  msgstr ""
2259
 
2260
+ #: templates/admin/chart_wizard/steps/step4.inc.php:430
2261
  msgid "Vertical axis direction"
2262
  msgstr ""
2263
 
2264
+ #: templates/admin/chart_wizard/steps/step4.inc.php:432
2265
  msgid ""
2266
  "The direction in which the values along the vertical axis grow. Specify -1 "
2267
  "to reverse the order of the values"
2268
  msgstr ""
2269
 
2270
+ #: templates/admin/chart_wizard/steps/step4.inc.php:449
2271
  msgid "Vertical axis min value"
2272
  msgstr ""
2273
 
2274
+ #: templates/admin/chart_wizard/steps/step4.inc.php:451
2275
  msgid "The minimum value of the axis."
2276
  msgstr ""
2277
 
2278
+ #: templates/admin/chart_wizard/steps/step4.inc.php:475
2279
  msgid "Vertical axis max value"
2280
  msgstr ""
2281
 
2282
+ #: templates/admin/chart_wizard/steps/step4.inc.php:477
2283
  msgid "The maximum value of the axis."
2284
  msgstr ""
2285
 
2286
+ #: templates/admin/chart_wizard/steps/step4.inc.php:500
2287
  msgid "Invert"
2288
  msgstr ""
2289
 
2290
+ #: templates/admin/chart_wizard/steps/step4.inc.php:502
2291
  msgid ""
2292
  "Whether to invert the axes so that the x axis is vertical and y axis is "
2293
  "horizontal"
2294
  msgstr ""
2295
 
2296
+ #: templates/admin/chart_wizard/steps/step4.inc.php:506
2297
  #, fuzzy
2298
  msgid "Invert chart axes"
2299
  msgstr "Render grafieken/diagrammen"
2300
 
2301
+ #: templates/admin/chart_wizard/steps/step4.inc.php:516
2302
  msgid "Chart title"
2303
  msgstr "Grafiek titel"
2304
 
2305
+ #: templates/admin/chart_wizard/steps/step4.inc.php:518
2306
  msgid "Do you want to show the chart title on the page"
2307
  msgstr ""
2308
 
2309
+ #: templates/admin/chart_wizard/steps/step4.inc.php:522
2310
  #, fuzzy
2311
  msgid "Show title"
2312
  msgstr "Nieuwe titel"
2313
 
2314
+ #: templates/admin/chart_wizard/steps/step4.inc.php:527
2315
  msgid "Title floating"
2316
  msgstr ""
2317
 
2318
+ #: templates/admin/chart_wizard/steps/step4.inc.php:529
2319
  msgid ""
2320
  "When the title is floating, the plot area will not move to make space for it"
2321
  msgstr ""
2322
 
2323
+ #: templates/admin/chart_wizard/steps/step4.inc.php:533
2324
  #, fuzzy
2325
  msgid "Enable floating"
2326
  msgstr "Sorteren inschakelen"
2327
 
2328
+ #: templates/admin/chart_wizard/steps/step4.inc.php:545
2329
  msgid "Enable or disable the tooltip"
2330
  msgstr ""
2331
 
2332
+ #: templates/admin/chart_wizard/steps/step4.inc.php:549
2333
  msgid "Show tooltip"
2334
  msgstr ""
2335
 
2336
+ #: templates/admin/chart_wizard/steps/step4.inc.php:560
2337
  #, fuzzy
2338
  msgid "Position"
2339
  msgstr "Kolom positie"
2340
 
2341
+ #: templates/admin/chart_wizard/steps/step4.inc.php:562
2342
  msgid "Position of the legend"
2343
  msgstr ""
2344
 
2345
+ #: templates/admin/chart_wizard/steps/step4.inc.php:580
2346
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2347
  msgid "Vertical align"
2348
  msgstr ""
2349
 
2350
+ #: templates/admin/chart_wizard/steps/step4.inc.php:582
2351
  msgid "The vertical alignment of the legend box"
2352
  msgstr ""
2353
 
2789
  msgstr ""
2790
 
2791
  #: templates/admin/dashboard/dashboard.inc.php:345
2792
+ msgid "<strong>Feature:</strong> Add new option for creating 3D pie chart."
 
 
2793
  msgstr ""
2794
 
2795
  #: templates/admin/dashboard/dashboard.inc.php:346
2796
  msgid ""
2797
+ "<strong>Feature:</strong> Search for tables and charts using ID on browse "
2798
+ "pages."
2799
  msgstr ""
2800
 
2801
  #: templates/admin/dashboard/dashboard.inc.php:347
2802
  msgid ""
2803
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2804
+ "media in Simple tables."
2805
  msgstr ""
2806
 
2807
  #: templates/admin/dashboard/dashboard.inc.php:348
2808
+ msgid "<strong>Improvement:</strong> Added German translation"
 
 
2809
  msgstr ""
2810
 
2811
  #: templates/admin/dashboard/dashboard.inc.php:349
2812
  msgid ""
2813
+ "<strong>Bugfix:</strong> Fixed issue with Fatal errors if allow_url_fopen is "
2814
+ "turned off on server."
2815
  msgstr ""
2816
 
2817
  #: templates/admin/dashboard/dashboard.inc.php:350
2818
+ msgid ""
2819
+ "<strong>BugFix:</strong> Fixed issue with loading simple table preview after "
2820
+ "clicking on back button in browser from some pages."
2821
  msgstr ""
2822
 
2823
  #: templates/admin/dashboard/dashboard.inc.php:351
2824
+ msgid ""
2825
+ "<strong>BugFix:</strong> Fixed issue with inserting “px” in column width "
2826
+ "option."
2827
+ msgstr ""
2828
+
2829
+ #: templates/admin/dashboard/dashboard.inc.php:352
2830
+ msgid "Compatibility with WordPress 5.7 approved."
2831
+ msgstr ""
2832
+
2833
+ #: templates/admin/dashboard/dashboard.inc.php:353
2834
  msgid "Other small bug fixes and stability improvements."
2835
  msgstr ""
2836
 
2837
+ #: templates/admin/dashboard/dashboard.inc.php:365
2838
  msgid "Go Premium!"
2839
  msgstr ""
2840
 
2841
+ #: templates/admin/dashboard/dashboard.inc.php:371
2842
  msgid "View Comparison"
2843
  msgstr ""
2844
 
2845
+ #: templates/admin/dashboard/dashboard.inc.php:379
2846
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2847
  msgid ""
2848
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2849
  "of the powerful features."
2850
  msgstr ""
2851
 
2852
+ #: templates/admin/dashboard/dashboard.inc.php:383
2853
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
2854
  msgid "Create a table manually"
2855
  msgstr ""
2856
 
2857
+ #: templates/admin/dashboard/dashboard.inc.php:386
2858
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:304
2859
  msgid "Creating tables from Google Spreadsheet"
2860
  msgstr ""
2861
 
2862
+ #: templates/admin/dashboard/dashboard.inc.php:389
2863
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:316
2864
+ msgid "Creating tables via Google Sheet API"
 
2865
  msgstr ""
2866
 
2867
+ #: templates/admin/dashboard/dashboard.inc.php:392
2868
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2869
+ msgid "Creating tables from Private Google Spreadsheet"
 
2870
  msgstr ""
2871
 
2872
+ #: templates/admin/dashboard/dashboard.inc.php:395
2873
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2874
  msgid "Creating MySQL-based tables from database"
2875
  msgstr ""
2876
 
2877
+ #: templates/admin/dashboard/dashboard.inc.php:398
2878
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2879
  msgid "Creating MySQL-based tables from Wordpress post types"
2880
  msgstr ""
2881
 
2882
+ #: templates/admin/dashboard/dashboard.inc.php:401
2883
+ msgid "Creating tables where users can see and edit own data"
2884
+ msgstr ""
2885
+
2886
+ #: templates/admin/dashboard/dashboard.inc.php:404
2887
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2888
+ msgid "Creating table relations (Foreign key)"
2889
+ msgstr ""
2890
+
2891
+ #: templates/admin/dashboard/dashboard.inc.php:407
2892
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2893
  #: templates/edit_table.inc.php:329
2894
  msgid "Advanced filtering"
2895
  msgstr ""
2896
 
2897
+ #: templates/admin/dashboard/dashboard.inc.php:410
2898
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2899
+ msgid "Pre-filtering tables through URL"
2900
+ msgstr ""
2901
+
2902
+ #: templates/admin/dashboard/dashboard.inc.php:413
2903
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
2904
+ msgid "Table Customization"
2905
+ msgstr ""
2906
+
2907
+ #: templates/admin/dashboard/dashboard.inc.php:416
2908
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2909
  #: templates/admin/table-settings/table_settings_block.inc.php:153
2910
  #: templates/edit_table.inc.php:282
2911
  msgid "Server-side processing"
2912
  msgstr "Server-side verwerking"
2913
 
2914
+ #: templates/admin/dashboard/dashboard.inc.php:419
2915
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2916
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2917
  msgstr ""
2918
 
2919
+ #: templates/admin/dashboard/dashboard.inc.php:422
2920
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2921
  msgid "Front-end table editing"
2922
  msgstr ""
2923
 
2924
+ #: templates/admin/dashboard/dashboard.inc.php:425
2925
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2926
  msgid "Excel-like editing"
2927
  msgstr ""
2928
 
2929
+ #: templates/admin/dashboard/dashboard.inc.php:428
2930
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2931
  msgid "Creating charts with Highcharts"
2932
  msgstr ""
2933
 
2934
+ #: templates/admin/dashboard/dashboard.inc.php:431
2935
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
2936
  msgid "Creating charts with Chart.js"
2937
  msgstr ""
2938
 
2939
+ #: templates/admin/dashboard/dashboard.inc.php:434
2940
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:486
2941
+ msgid "Follow table filtering in charts"
2942
+ msgstr ""
2943
+
2944
+ #: templates/admin/dashboard/dashboard.inc.php:437
2945
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:498
2946
+ msgid "Grouping data in Charts"
2947
+ msgstr ""
2948
+
2949
+ #: templates/admin/dashboard/dashboard.inc.php:440
2950
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:510
2951
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2952
  #: templates/edit_table.inc.php:301
2953
  msgid "Responsive"
2954
  msgstr ""
2955
 
2956
+ #: templates/admin/dashboard/dashboard.inc.php:443
2957
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:522
2958
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2959
  #: templates/edit_table.inc.php:750
2960
  #, fuzzy
2961
  msgid "Conditional formatting"
2962
  msgstr "Extra instellingen"
2963
 
2964
+ #: templates/admin/dashboard/dashboard.inc.php:446
2965
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:534
2966
  msgid "Calculating Tools"
2967
  msgstr ""
2968
 
2969
+ #: templates/admin/dashboard/dashboard.inc.php:449
2970
  msgid "Formula columns"
2971
  msgstr ""
2972
 
2973
+ #: templates/admin/dashboard/dashboard.inc.php:452
2974
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:546
2975
  #: templates/admin/table-settings/table_settings_block.inc.php:80
2976
  msgid "Placeholders"
2977
  msgstr ""
2978
 
2979
+ #: templates/admin/dashboard/dashboard.inc.php:455
2980
  msgid "Premium support"
2981
  msgstr ""
2982
 
2983
+ #: templates/admin/dashboard/dashboard.inc.php:459
2984
  msgid "Get Premium Today"
2985
  msgstr ""
2986
 
2987
+ #: templates/admin/dashboard/dashboard.inc.php:466
2988
  msgid "News Blog"
2989
  msgstr ""
2990
 
2991
+ #: templates/admin/dashboard/dashboard.inc.php:471
2992
  msgid "Checkout useful articles from wpdatatables.com"
2993
  msgstr ""
2994
 
2995
+ #: templates/admin/dashboard/dashboard.inc.php:504
 
 
 
 
2996
  msgid ""
2997
  "Never miss notifications about new cool features, promotions,\n"
2998
  " giveaways or freebies – subscribe to our "
3000
  " about 1 message per month and never spam!"
3001
  msgstr ""
3002
 
3003
+ #: templates/admin/dashboard/dashboard.inc.php:522
3004
  msgid "Premium "
3005
  msgstr ""
3006
 
3007
+ #: templates/admin/dashboard/dashboard.inc.php:525
3008
  msgid ""
3009
  "While wpDataTables itself provides quite a large amount of features and "
3010
  "unlimited customisation, flexibility, you can achieve even more with our "
3011
  "premium addons.(requires wpDataTables Premium version)"
3012
  msgstr ""
3013
 
3014
+ #: templates/admin/dashboard/dashboard.inc.php:543
3015
  msgid ""
3016
  "A wpDataTables addon which allows showing additional details for a specific "
3017
  "row in a popup or a separate page or post."
3018
  msgstr ""
3019
 
3020
+ #: templates/admin/dashboard/dashboard.inc.php:549
3021
+ #: templates/admin/dashboard/dashboard.inc.php:576
3022
+ #: templates/admin/dashboard/dashboard.inc.php:602
3023
+ #: templates/admin/dashboard/dashboard.inc.php:629
3024
+ #: templates/admin/dashboard/dashboard.inc.php:655
3025
+ #: templates/admin/dashboard/dashboard.inc.php:688
3026
  msgid "Learn More"
3027
  msgstr ""
3028
 
3029
+ #: templates/admin/dashboard/dashboard.inc.php:570
3030
  msgid ""
3031
  "An add-on for wpDataTables that provides powerful filtering features: "
3032
  "cascade filtering, applying filters on button click, hide table before "
3033
  "filtering."
3034
  msgstr ""
3035
 
3036
+ #: templates/admin/dashboard/dashboard.inc.php:666
3037
  msgid "Need free booking plugin?"
3038
  msgstr ""
3039
 
3040
+ #: templates/admin/dashboard/dashboard.inc.php:675
3041
  msgid "Appointments and Events WordPress Booking Plugin"
3042
  msgstr ""
3043
 
3044
+ #: templates/admin/dashboard/dashboard.inc.php:678
3045
  msgid ""
3046
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
3047
  "set up a fully-featured automated booking system on your WordPress website "
3052
  "each month."
3053
  msgstr ""
3054
 
3055
+ #: templates/admin/dashboard/dashboard.inc.php:681
3056
  msgid "Rating: 4.3 - ‎97 reviews"
3057
  msgstr ""
3058
 
3059
+ #: templates/admin/dashboard/dashboard.inc.php:684
3060
  msgid "Free Download"
3061
  msgstr ""
3062
 
3063
+ #: templates/admin/dashboard/dashboard.inc.php:699
3064
  #: templates/admin/getting-started/getting_started.inc.php:184
3065
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:589
3066
  #: templates/admin/support/support.inc.php:78
3067
  #: templates/admin/system-info/system_info.inc.php:509
3068
  #: templates/admin/welcome_page/welcome_page.inc.php:358
3069
  msgid "Made by"
3070
  msgstr ""
3071
 
3072
+ #: templates/admin/dashboard/dashboard.inc.php:707
3073
  #: templates/admin/getting-started/getting_started.inc.php:192
3074
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:597
3075
  #: templates/admin/support/support.inc.php:45
3076
  #: templates/admin/support/support.inc.php:86
3077
  #: templates/admin/system-info/system_info.inc.php:517
3081
  msgid "Documentation"
3082
  msgstr "wpDataTables documentatie"
3083
 
3084
+ #: templates/admin/dashboard/dashboard.inc.php:711
3085
  #: templates/admin/getting-started/getting_started.inc.php:196
3086
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:601
3087
  #: templates/admin/support/support.inc.php:24
3088
  #: templates/admin/support/support.inc.php:90
3089
  #: templates/admin/system-info/system_info.inc.php:521
3209
  msgstr ""
3210
 
3211
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3212
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:581
3213
  msgid "Go Premium Now"
3214
  msgstr ""
3215
 
3222
  msgstr ""
3223
 
3224
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3225
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:568
3226
  msgid "Premium"
3227
  msgstr ""
3228
 
3252
 
3253
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3254
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3255
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3256
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
3257
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
3258
  #: templates/admin/table-settings/table_settings_block.inc.php:84
3259
  msgid "NEW!"
3260
  msgstr ""
3278
  msgstr ""
3279
 
3280
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3281
+ msgid "Row grouping"
3282
+ msgstr ""
3283
+
3284
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3285
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3286
  #: templates/admin/table-settings/table_settings_block.inc.php:504
3287
  #: templates/admin/table-settings/table_settings_block.inc.php:512
3289
  msgid "Pagination"
3290
  msgstr ""
3291
 
3292
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3293
  msgid ""
3294
  "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3295
  "PDF, and Copy and Print options)</span>"
3296
  msgstr ""
3297
 
3298
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3299
  msgid "Column Customization"
3300
  msgstr ""
3301
 
3302
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
3303
  msgid "Global Table Customization"
3304
  msgstr ""
3305
 
3306
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3307
+ msgid "WP Bakery, Elementor and Gutenberg support"
3308
+ msgstr ""
3309
+
3310
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:252
3311
  msgid "Creating Google charts"
3312
  msgstr ""
3313
 
3314
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:264
3315
  msgid "Customize charts"
3316
  msgstr ""
3317
 
3318
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
3319
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:562
3320
  msgid "Limited"
3321
  msgstr ""
3322
 
3323
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:270
3324
  msgid "Some options are not available."
3325
  msgstr ""
3326
 
3327
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
3328
+ msgid "Creating tables where users can see and edit only their own data"
 
 
 
 
 
 
 
 
3329
  msgstr ""
3330
 
3331
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:558
3332
  msgid "Support"
3333
  msgstr ""
3334
 
3335
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:564
3336
  msgid "Response time is slow and can be up to 5 business days."
3337
  msgstr ""
3338
 
3339
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:575
3340
  msgid ""
3341
  "* Please note that wpDataTables add-ons are not included in premium version "
3342
  "of plugin."
languages/pl_PL/wpdatatables-pl_PL.mo CHANGED
Binary file
languages/pl_PL/wpdatatables-pl_PL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
- "POT-Creation-Date: 2021-02-26 13:10+0100\n"
5
- "PO-Revision-Date: 2021-02-26 13:10+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: pl\n"
@@ -90,11 +90,8 @@ msgstr "Dodatki"
90
  msgid "Welcome page"
91
  msgstr ""
92
 
93
- #: controllers/wdt_admin.php:116
94
- msgid "Get Premium"
95
- msgstr ""
96
-
97
- #: controllers/wdt_admin.php:117
98
  msgid "Go Premium"
99
  msgstr ""
100
 
@@ -120,79 +117,92 @@ msgstr "wpDataTable z podanego identyfikatora nie znaleziono!"
120
  msgid "Provided column is not Integer or Float column type"
121
  msgstr "Podana kolumna nie jest Integer lub float Typ kolumny"
122
 
123
- #: controllers/wdt_functions.php:830
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  msgid "Choose a table"
125
  msgstr "Wybierz tabelę"
126
 
127
- #: controllers/wdt_functions.php:862
128
  msgid "Interactive Responsive Table"
129
  msgstr "Interaktywny responsywny stół"
130
 
131
- #: controllers/wdt_functions.php:863 controllers/wdt_functions.php:924
132
  msgid "Content"
133
  msgstr "Zawartość"
134
 
135
- #: controllers/wdt_functions.php:869
136
  msgid "wpDataTable"
137
  msgstr "wpDataTable"
138
 
139
- #: controllers/wdt_functions.php:873
140
  msgid "Choose the wpDataTable from a dropdown"
141
  msgstr "Wybierz wpDataTable z listy rozwijanej"
142
 
143
- #: controllers/wdt_functions.php:878
144
  msgid "Table view"
145
  msgstr "Widok tabeli"
146
 
147
- #: controllers/wdt_functions.php:882
148
  msgid "Regular wpDataTable"
149
  msgstr "Regularne wpDataTable"
150
 
151
- #: controllers/wdt_functions.php:884
152
  msgid "Excel-like table"
153
  msgstr "Tabela podobnych do Excela"
154
 
155
- #: controllers/wdt_functions.php:890
156
  msgid "Variable placeholder #1"
157
  msgstr "Zmienna #1 zastępcza"
158
 
159
- #: controllers/wdt_functions.php:893 controllers/wdt_functions.php:901
160
- #: controllers/wdt_functions.php:909
161
  msgid "Variables"
162
  msgstr "Zmienne"
163
 
164
- #: controllers/wdt_functions.php:894
165
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
166
  msgstr ""
167
  "Jeśli użyto symbolu zastępczego VAR1 można przypisać do niej wartość tutaj"
168
 
169
- #: controllers/wdt_functions.php:898
170
  msgid "Variable placeholder #2"
171
  msgstr "Zmienna #2 zastępcza"
172
 
173
- #: controllers/wdt_functions.php:902
174
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
175
  msgstr ""
176
  "Jeśli użyto symbolu zastępczego VAR2 można przypisać do niej wartość tutaj"
177
 
178
- #: controllers/wdt_functions.php:906
179
  msgid "Variable placeholder #3"
180
  msgstr "Zmienna #3 zastępcza"
181
 
182
- #: controllers/wdt_functions.php:910
183
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
184
  msgstr ""
185
  "Jeśli użyto symbolu zastępczego VAR3 można przypisać do niej wartość tutaj"
186
 
187
- #: controllers/wdt_functions.php:923
188
  msgid "Google or Highcharts chart based on a wpDataTable"
189
  msgstr "Google lub Highcharts wykres oparty na wpDataTable"
190
 
191
- #: controllers/wdt_functions.php:930
192
  msgid "wpDataChart"
193
  msgstr "Właściwość wpDataChart"
194
 
195
- #: controllers/wdt_functions.php:934
196
  msgid "Choose one of wpDataCharts from the list"
197
  msgstr "Wybierz jedną z wpDataCharts z listy"
198
 
@@ -235,7 +245,7 @@ msgstr ""
235
  msgid "Shortcode"
236
  msgstr ""
237
 
238
- #: source/class.wdtbrowsechartstable.php:141
239
  #: source/class.wdtbrowsetable.php:168
240
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
241
  #: templates/admin/dashboard/dashboard.inc.php:153
@@ -243,99 +253,99 @@ msgstr ""
243
  msgid "Click to copy shortcode"
244
  msgstr "Kliknij, aby skopiować shortcode"
245
 
246
- #: source/class.wdtbrowsechartstable.php:150
247
  #: source/class.wdtbrowsetable.php:179
248
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
249
  #: templates/admin/browse/table/duplicate_modal.inc.php:64
250
  msgid "Duplicate"
251
  msgstr "Duplikuj"
252
 
253
- #: source/class.wdtbrowsechartstable.php:156
254
  #: source/class.wdtbrowsetable.php:185
255
  #: templates/admin/dashboard/dashboard.inc.php:261
256
  msgid "Configure"
257
  msgstr "Konfiguracja"
258
 
259
- #: source/class.wdtbrowsechartstable.php:162
260
  #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
261
  #: templates/admin/browse/bulk_actions.inc.php:14
262
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
263
  msgid "Delete"
264
  msgstr "Usuń"
265
 
266
- #: source/class.wdtbrowsechartstable.php:217
267
- #: source/class.wdtbrowsechartstable.php:226
268
  msgid "Column Chart"
269
  msgstr "Wykres kolumnowy"
270
 
271
- #: source/class.wdtbrowsechartstable.php:220
272
- #: source/class.wdtbrowsechartstable.php:244
273
  msgid "Line Chart"
274
  msgstr "Wykres liniowy"
275
 
276
- #: source/class.wdtbrowsechartstable.php:223
277
- #: source/class.wdtbrowsechartstable.php:247
278
  msgid "Pie Chart"
279
  msgstr "Wykres kołowy"
280
 
281
- #: source/class.wdtbrowsechartstable.php:229
282
  #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
283
  #: templates/chart_wizard.inc.php:91
284
  msgid "Histogram"
285
  msgstr "Histogram"
286
 
287
- #: source/class.wdtbrowsechartstable.php:232
288
  msgid "Bar Chart"
289
  msgstr "Wykres słupkowy"
290
 
291
- #: source/class.wdtbrowsechartstable.php:235
292
  msgid "Stacked Bar Chart"
293
  msgstr "Skumulowany wykres słupkowy"
294
 
295
- #: source/class.wdtbrowsechartstable.php:238
296
  msgid "Area Chart"
297
  msgstr "Wykres warstwowy"
298
 
299
- #: source/class.wdtbrowsechartstable.php:241
300
  msgid "Stepped Area Chart"
301
  msgstr "Wykres warstwowy stopniowany"
302
 
303
- #: source/class.wdtbrowsechartstable.php:250
304
  msgid "Bubble Chart"
305
  msgstr "KChart"
306
 
307
- #: source/class.wdtbrowsechartstable.php:253
308
  msgid "Donut Chart"
309
  msgstr "Wykres Donut"
310
 
311
- #: source/class.wdtbrowsechartstable.php:256
312
  msgid "Gauge Chart"
313
  msgstr "Wykres zegarowy"
314
 
315
- #: source/class.wdtbrowsechartstable.php:259
316
  msgid "Scatter Chart"
317
  msgstr "Wybierz typ wykresu"
318
 
319
- #: source/class.wdtbrowsechartstable.php:262
320
  msgid "Candlestick Chart"
321
  msgstr "Wykres świecowy"
322
 
323
- #: source/class.wdtbrowsechartstable.php:265
324
  msgid "Waterfall Chart"
325
  msgstr "Wykres wodospadu"
326
 
327
- #: source/class.wdtbrowsechartstable.php:278
328
  msgid "Google"
329
  msgstr "Google"
330
 
331
- #: source/class.wdtbrowsechartstable.php:345
332
  #: source/class.wdtbrowsetable.php:298
333
  #: templates/admin/chart_wizard/steps/step3.inc.php:11
334
  #: templates/admin/chart_wizard/steps/step3.inc.php:32
335
  msgid "Select All"
336
  msgstr "Zaznacz wszystko"
337
 
338
- #: source/class.wdtbrowsechartstable.php:398
339
  msgid "No wpDataCharts in the system yet."
340
  msgstr "Nie wpDataCharts w systemie jeszcze."
341
 
@@ -1252,11 +1262,11 @@ msgid ""
1252
  "page. <br><br>You may now finish this tutorial. "
1253
  msgstr ""
1254
 
1255
- #: source/class.wpdatachart.php:703
1256
  msgid "Only one column can be of type String"
1257
  msgstr "Tylko jedna kolumna może być typu String"
1258
 
1259
- #: source/class.wpdatachart.php:706
1260
  msgid "You are mixing data types (several date axes and several number)"
1261
  msgstr "Mieszasz typy danych (kilka osi daty i kilka liczb)"
1262
 
@@ -1318,7 +1328,7 @@ msgstr ""
1318
  msgid "if you have some questions or problems with the plugin."
1319
  msgstr ""
1320
 
1321
- #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:499
1322
  msgid "wpDataTables Addons"
1323
  msgstr ""
1324
 
@@ -1337,12 +1347,12 @@ msgstr ""
1337
  "przez twórców wpDataTables i 3rd party deweloperów, więc stay tuned."
1338
 
1339
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1340
- #: templates/admin/dashboard/dashboard.inc.php:570
1341
  msgid "Report Builder"
1342
  msgstr ""
1343
 
1344
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1345
- #: templates/admin/dashboard/dashboard.inc.php:574
1346
  msgid ""
1347
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1348
  "XLSX documents filled in with actual data from your database."
@@ -1370,7 +1380,7 @@ msgid "NEW"
1370
  msgstr ""
1371
 
1372
  #: templates/admin/addons/addons.inc.php:40
1373
- #: templates/admin/dashboard/dashboard.inc.php:517
1374
  msgid "Master Detail Tables for wpDataTables"
1375
  msgstr ""
1376
 
@@ -1391,7 +1401,7 @@ msgid "Learn more"
1391
  msgstr ""
1392
 
1393
  #: templates/admin/addons/addons.inc.php:67
1394
- #: templates/admin/dashboard/dashboard.inc.php:544
1395
  msgid "Powerful Filters for wpDataTables"
1396
  msgstr "Potężne filtry dla wpDataTables"
1397
 
@@ -1406,12 +1416,12 @@ msgstr ""
1406
  "tylko filtr bez tabeli, zanim użytkownik definiuje wartości wyszukiwania."
1407
 
1408
  #: templates/admin/addons/addons.inc.php:120
1409
- #: templates/admin/dashboard/dashboard.inc.php:597
1410
  msgid "Formidable Forms integration for wpDataTables"
1411
  msgstr "Integracja formularzy Formidable dla wpDataTables"
1412
 
1413
  #: templates/admin/addons/addons.inc.php:123
1414
- #: templates/admin/dashboard/dashboard.inc.php:601
1415
  msgid ""
1416
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1417
  "create wpDataTables from Formidable Forms entries data."
@@ -1420,12 +1430,12 @@ msgstr ""
1420
  "na tworzenie wpDataTables z Formidable danych wpisów formularzy."
1421
 
1422
  #: templates/admin/addons/addons.inc.php:143
1423
- #: templates/admin/dashboard/dashboard.inc.php:623
1424
  msgid "Gravity Forms integration for wpDataTables"
1425
  msgstr "Integracja form grawitacyjnych dla wpDataTables"
1426
 
1427
  #: templates/admin/addons/addons.inc.php:146
1428
- #: templates/admin/dashboard/dashboard.inc.php:627
1429
  msgid ""
1430
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1431
  "wpDataTables from Gravity Forms entries data."
@@ -1450,6 +1460,10 @@ msgstr "Zduplikowany wykres"
1450
  msgid "New chart title"
1451
  msgstr "Nowy tytuł wykresu"
1452
 
 
 
 
 
1453
  #: templates/admin/browse/table/browse.inc.php:25
1454
  msgid "Browse Tables"
1455
  msgstr ""
@@ -1908,7 +1922,7 @@ msgid "Axes"
1908
  msgstr "Osie"
1909
 
1910
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1911
- #: templates/admin/chart_wizard/steps/step4.inc.php:532
1912
  msgid "Tooltip"
1913
  msgstr "Podpowiedź"
1914
 
@@ -1940,7 +1954,7 @@ msgid "Curve type"
1940
  msgstr "Typ krzywej"
1941
 
1942
  #: templates/admin/chart_wizard/steps/step4.inc.php:49
1943
- #: templates/admin/chart_wizard/steps/step4.inc.php:336
1944
  msgid "Controls the curve of the lines"
1945
  msgstr "Steruje krzywą linii"
1946
 
@@ -2077,27 +2091,36 @@ msgstr "Nazwa czcionki"
2077
  msgid "The default font face for all text in the chart."
2078
  msgstr "Domyślna ściana czcionki dla całego tekstu na wykresie."
2079
 
2080
- #: templates/admin/chart_wizard/steps/step4.inc.php:334
 
 
 
 
 
 
 
 
 
2081
  msgid "Grid"
2082
  msgstr "Siatka"
2083
 
2084
- #: templates/admin/chart_wizard/steps/step4.inc.php:340
2085
  msgid "Do you want to show grid on the chart"
2086
  msgstr "Czy chcesz pokazać siatkę na wykresie"
2087
 
2088
- #: templates/admin/chart_wizard/steps/step4.inc.php:345
2089
  msgid "Horizontal axis label"
2090
  msgstr "Etykieta osi poziomej"
2091
 
2092
- #: templates/admin/chart_wizard/steps/step4.inc.php:347
2093
  msgid "Name of the horizontal axis."
2094
  msgstr "Nazwa osi poziomej."
2095
 
2096
- #: templates/admin/chart_wizard/steps/step4.inc.php:362
2097
  msgid "Horizontal crosshair"
2098
  msgstr "Celownik poziomy"
2099
 
2100
- #: templates/admin/chart_wizard/steps/step4.inc.php:364
2101
  msgid ""
2102
  "Configure a horizontal crosshair that follows either the mouse pointer or "
2103
  "the hovered point lines"
@@ -2105,15 +2128,15 @@ msgstr ""
2105
  "Skonfiguruj celownik poziomy, który podąża za wskaźnikiem myszy lub liniami "
2106
  "najechanych punktów"
2107
 
2108
- #: templates/admin/chart_wizard/steps/step4.inc.php:368
2109
  msgid "Show x-Axis crosshair"
2110
  msgstr "Pokaż celownik osi x"
2111
 
2112
- #: templates/admin/chart_wizard/steps/step4.inc.php:373
2113
  msgid "Horizontal axis direction"
2114
  msgstr "Kierunek osi poziomej"
2115
 
2116
- #: templates/admin/chart_wizard/steps/step4.inc.php:375
2117
  msgid ""
2118
  "The direction in which the values along the horizontal axis grow. Specify -1 "
2119
  "to reverse the order of the values"
@@ -2121,19 +2144,19 @@ msgstr ""
2121
  "Kierunek, w którym rosną wartości wzdłuż osi poziomej. Określ-1, aby "
2122
  "odwrócić kolejność wartości"
2123
 
2124
- #: templates/admin/chart_wizard/steps/step4.inc.php:391
2125
  msgid "Vertical axis label"
2126
  msgstr "Etykieta osi pionowej"
2127
 
2128
- #: templates/admin/chart_wizard/steps/step4.inc.php:393
2129
  msgid "Name of the vertical axis."
2130
  msgstr "Nazwa osi pionowej."
2131
 
2132
- #: templates/admin/chart_wizard/steps/step4.inc.php:408
2133
  msgid "Vertical crosshair"
2134
  msgstr "Celownik pionowy"
2135
 
2136
- #: templates/admin/chart_wizard/steps/step4.inc.php:410
2137
  msgid ""
2138
  "Configure a vertical crosshair that follows either the mouse pointer or the "
2139
  "hovered point lines"
@@ -2141,15 +2164,15 @@ msgstr ""
2141
  "Skonfiguruj pionowy celownik, który podąża za wskaźnikiem myszy lub liniami "
2142
  "najechanych punktów"
2143
 
2144
- #: templates/admin/chart_wizard/steps/step4.inc.php:414
2145
  msgid "Show y-Axis crosshair"
2146
  msgstr "Pokaż celownik osi y"
2147
 
2148
- #: templates/admin/chart_wizard/steps/step4.inc.php:419
2149
  msgid "Vertical axis direction"
2150
  msgstr "Kierunek osi pionowej"
2151
 
2152
- #: templates/admin/chart_wizard/steps/step4.inc.php:421
2153
  msgid ""
2154
  "The direction in which the values along the vertical axis grow. Specify -1 "
2155
  "to reverse the order of the values"
@@ -2157,85 +2180,85 @@ msgstr ""
2157
  "Kierunek, w którym rosną wartości wzdłuż osi pionowej. Określ-1, aby "
2158
  "odwrócić kolejność wartości"
2159
 
2160
- #: templates/admin/chart_wizard/steps/step4.inc.php:438
2161
  msgid "Vertical axis min value"
2162
  msgstr "Wartość min osi pionowej"
2163
 
2164
- #: templates/admin/chart_wizard/steps/step4.inc.php:440
2165
  msgid "The minimum value of the axis."
2166
  msgstr "Minimalna wartość osi."
2167
 
2168
- #: templates/admin/chart_wizard/steps/step4.inc.php:464
2169
  msgid "Vertical axis max value"
2170
  msgstr "Maksymalna wartość osi pionowej"
2171
 
2172
- #: templates/admin/chart_wizard/steps/step4.inc.php:466
2173
  msgid "The maximum value of the axis."
2174
  msgstr "Maksymalna wartość osi."
2175
 
2176
- #: templates/admin/chart_wizard/steps/step4.inc.php:489
2177
  msgid "Invert"
2178
  msgstr "Odwróć"
2179
 
2180
- #: templates/admin/chart_wizard/steps/step4.inc.php:491
2181
  msgid ""
2182
  "Whether to invert the axes so that the x axis is vertical and y axis is "
2183
  "horizontal"
2184
  msgstr "Czy odwrócić osie tak, aby oś x była pionowa, a oś y była pozioma"
2185
 
2186
- #: templates/admin/chart_wizard/steps/step4.inc.php:495
2187
  msgid "Invert chart axes"
2188
  msgstr "Odwróć osie wykresu"
2189
 
2190
- #: templates/admin/chart_wizard/steps/step4.inc.php:505
2191
  msgid "Chart title"
2192
  msgstr "Tytuł wykresu"
2193
 
2194
- #: templates/admin/chart_wizard/steps/step4.inc.php:507
2195
  msgid "Do you want to show the chart title on the page"
2196
  msgstr "Czy chcesz wyświetlić tytuł wykresu na stronie"
2197
 
2198
- #: templates/admin/chart_wizard/steps/step4.inc.php:511
2199
  msgid "Show title"
2200
  msgstr "Pokaż tytuł"
2201
 
2202
- #: templates/admin/chart_wizard/steps/step4.inc.php:516
2203
  msgid "Title floating"
2204
  msgstr "Tytuł pływający"
2205
 
2206
- #: templates/admin/chart_wizard/steps/step4.inc.php:518
2207
  msgid ""
2208
  "When the title is floating, the plot area will not move to make space for it"
2209
  msgstr ""
2210
  "Gdy tytuł jest ruchomy, obszar kreślenia nie zostanie przesuniety, aby "
2211
  "zrobić miejsce dla niego"
2212
 
2213
- #: templates/admin/chart_wizard/steps/step4.inc.php:522
2214
  msgid "Enable floating"
2215
  msgstr "Włącz pływające"
2216
 
2217
- #: templates/admin/chart_wizard/steps/step4.inc.php:534
2218
  msgid "Enable or disable the tooltip"
2219
  msgstr "Włączanie lub wyłączanie podpowiedzi"
2220
 
2221
- #: templates/admin/chart_wizard/steps/step4.inc.php:538
2222
  msgid "Show tooltip"
2223
  msgstr "Etykietka"
2224
 
2225
- #: templates/admin/chart_wizard/steps/step4.inc.php:549
2226
  msgid "Position"
2227
  msgstr "Pozycja"
2228
 
2229
- #: templates/admin/chart_wizard/steps/step4.inc.php:551
2230
  msgid "Position of the legend"
2231
  msgstr "Pozycja legendy"
2232
 
2233
- #: templates/admin/chart_wizard/steps/step4.inc.php:569
2234
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2235
  msgid "Vertical align"
2236
  msgstr "Wyrównaj w pionie"
2237
 
2238
- #: templates/admin/chart_wizard/steps/step4.inc.php:571
2239
  msgid "The vertical alignment of the legend box"
2240
  msgstr "Wyrównanie pionowe pola legendy"
2241
 
@@ -2676,177 +2699,209 @@ msgid "A minor update with a couple of improvements and bug fixes:"
2676
  msgstr ""
2677
 
2678
  #: templates/admin/dashboard/dashboard.inc.php:345
2679
- msgid ""
2680
- "<strong>Improvement:</strong> Added auto-save functionality after insert "
2681
- "media in Simple tables."
2682
  msgstr ""
2683
 
2684
  #: templates/admin/dashboard/dashboard.inc.php:346
2685
  msgid ""
2686
- "<strong>Improvement:</strong> Added translate functions on some strings."
 
2687
  msgstr ""
2688
 
2689
  #: templates/admin/dashboard/dashboard.inc.php:347
2690
  msgid ""
2691
- "<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin "
2692
- "area and filters for elementor widgets."
2693
  msgstr ""
2694
 
2695
  #: templates/admin/dashboard/dashboard.inc.php:348
2696
- msgid ""
2697
- "<strong>BugFix:</strong> Fixed issue with font in material skin and "
2698
- "background in graphite skin."
2699
  msgstr ""
2700
 
2701
  #: templates/admin/dashboard/dashboard.inc.php:349
2702
  msgid ""
2703
- "<strong>BugFix:</strong> Fixed issue with class name in Global font color "
2704
- "settings."
2705
  msgstr ""
2706
 
2707
  #: templates/admin/dashboard/dashboard.inc.php:350
2708
- msgid "Compatibility with WordPress 5.6.2 approved."
 
 
2709
  msgstr ""
2710
 
2711
  #: templates/admin/dashboard/dashboard.inc.php:351
 
 
 
 
 
 
 
 
 
 
2712
  msgid "Other small bug fixes and stability improvements."
2713
  msgstr ""
2714
 
2715
- #: templates/admin/dashboard/dashboard.inc.php:363
2716
  msgid "Go Premium!"
2717
  msgstr ""
2718
 
2719
- #: templates/admin/dashboard/dashboard.inc.php:369
2720
  msgid "View Comparison"
2721
  msgstr ""
2722
 
2723
- #: templates/admin/dashboard/dashboard.inc.php:377
2724
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2725
  msgid ""
2726
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2727
  "of the powerful features."
2728
  msgstr ""
2729
 
2730
- #: templates/admin/dashboard/dashboard.inc.php:381
2731
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
2732
  msgid "Create a table manually"
2733
  msgstr "Ręczne tworzenie tabeli"
2734
 
2735
- #: templates/admin/dashboard/dashboard.inc.php:384
2736
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
2737
  msgid "Creating tables from Google Spreadsheet"
2738
  msgstr ""
2739
 
2740
- #: templates/admin/dashboard/dashboard.inc.php:387
2741
- msgid ""
2742
- "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2743
- "tables via Google Sheet API"
2744
  msgstr ""
2745
 
2746
- #: templates/admin/dashboard/dashboard.inc.php:390
2747
- msgid ""
2748
- "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2749
- "tables from Private Google Spreadsheet"
2750
  msgstr ""
2751
 
2752
- #: templates/admin/dashboard/dashboard.inc.php:393
2753
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:318
2754
  msgid "Creating MySQL-based tables from database"
2755
  msgstr ""
2756
 
2757
- #: templates/admin/dashboard/dashboard.inc.php:396
2758
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
2759
  msgid "Creating MySQL-based tables from Wordpress post types"
2760
  msgstr ""
2761
 
2762
- #: templates/admin/dashboard/dashboard.inc.php:399
2763
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
 
 
 
 
 
 
 
 
 
2764
  #: templates/edit_table.inc.php:329
2765
  msgid "Advanced filtering"
2766
  msgstr ""
2767
 
2768
- #: templates/admin/dashboard/dashboard.inc.php:402
2769
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
 
 
 
 
 
 
 
 
 
 
2770
  #: templates/admin/table-settings/table_settings_block.inc.php:153
2771
  #: templates/edit_table.inc.php:282
2772
  msgid "Server-side processing"
2773
  msgstr "Przetwarzanie po stronie serwera"
2774
 
2775
- #: templates/admin/dashboard/dashboard.inc.php:405
2776
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2777
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2778
  msgstr ""
2779
 
2780
- #: templates/admin/dashboard/dashboard.inc.php:408
2781
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2782
  msgid "Front-end table editing"
2783
  msgstr ""
2784
 
2785
- #: templates/admin/dashboard/dashboard.inc.php:411
2786
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2787
  msgid "Excel-like editing"
2788
  msgstr ""
2789
 
2790
- #: templates/admin/dashboard/dashboard.inc.php:414
2791
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2792
  msgid "Creating charts with Highcharts"
2793
  msgstr ""
2794
 
2795
- #: templates/admin/dashboard/dashboard.inc.php:417
2796
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2797
  msgid "Creating charts with Chart.js"
2798
  msgstr ""
2799
 
2800
- #: templates/admin/dashboard/dashboard.inc.php:420
2801
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
 
 
 
 
 
 
 
 
 
 
2802
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2803
  #: templates/edit_table.inc.php:301
2804
  msgid "Responsive"
2805
  msgstr ""
2806
 
2807
- #: templates/admin/dashboard/dashboard.inc.php:423
2808
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2809
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2810
  #: templates/edit_table.inc.php:750
2811
  msgid "Conditional formatting"
2812
  msgstr "Formatowanie warunkowe"
2813
 
2814
- #: templates/admin/dashboard/dashboard.inc.php:426
2815
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2816
  msgid "Calculating Tools"
2817
  msgstr ""
2818
 
2819
- #: templates/admin/dashboard/dashboard.inc.php:429
2820
  msgid "Formula columns"
2821
  msgstr ""
2822
 
2823
- #: templates/admin/dashboard/dashboard.inc.php:432
2824
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2825
  #: templates/admin/table-settings/table_settings_block.inc.php:80
2826
  msgid "Placeholders"
2827
  msgstr "Placeholdery"
2828
 
2829
- #: templates/admin/dashboard/dashboard.inc.php:435
2830
  msgid "Premium support"
2831
  msgstr ""
2832
 
2833
- #: templates/admin/dashboard/dashboard.inc.php:439
2834
  msgid "Get Premium Today"
2835
  msgstr ""
2836
 
2837
- #: templates/admin/dashboard/dashboard.inc.php:446
2838
  msgid "News Blog"
2839
  msgstr ""
2840
 
2841
- #: templates/admin/dashboard/dashboard.inc.php:451
2842
  msgid "Checkout useful articles from wpdatatables.com"
2843
  msgstr ""
2844
 
2845
- #: templates/admin/dashboard/dashboard.inc.php:474
2846
- msgid "Please install and enable PHP extensions xml and dom on your server."
2847
- msgstr ""
2848
-
2849
- #: templates/admin/dashboard/dashboard.inc.php:482
2850
  msgid ""
2851
  "Never miss notifications about new cool features, promotions,\n"
2852
  " giveaways or freebies – subscribe to our "
@@ -2854,48 +2909,48 @@ msgid ""
2854
  " about 1 message per month and never spam!"
2855
  msgstr ""
2856
 
2857
- #: templates/admin/dashboard/dashboard.inc.php:500
2858
  msgid "Premium "
2859
  msgstr ""
2860
 
2861
- #: templates/admin/dashboard/dashboard.inc.php:503
2862
  msgid ""
2863
  "While wpDataTables itself provides quite a large amount of features and "
2864
  "unlimited customisation, flexibility, you can achieve even more with our "
2865
  "premium addons.(requires wpDataTables Premium version)"
2866
  msgstr ""
2867
 
2868
- #: templates/admin/dashboard/dashboard.inc.php:521
2869
  msgid ""
2870
  "A wpDataTables addon which allows showing additional details for a specific "
2871
  "row in a popup or a separate page or post."
2872
  msgstr ""
2873
 
2874
- #: templates/admin/dashboard/dashboard.inc.php:527
2875
- #: templates/admin/dashboard/dashboard.inc.php:554
2876
- #: templates/admin/dashboard/dashboard.inc.php:580
2877
- #: templates/admin/dashboard/dashboard.inc.php:607
2878
- #: templates/admin/dashboard/dashboard.inc.php:633
2879
- #: templates/admin/dashboard/dashboard.inc.php:666
2880
  msgid "Learn More"
2881
  msgstr ""
2882
 
2883
- #: templates/admin/dashboard/dashboard.inc.php:548
2884
  msgid ""
2885
  "An add-on for wpDataTables that provides powerful filtering features: "
2886
  "cascade filtering, applying filters on button click, hide table before "
2887
  "filtering."
2888
  msgstr ""
2889
 
2890
- #: templates/admin/dashboard/dashboard.inc.php:644
2891
  msgid "Need free booking plugin?"
2892
  msgstr ""
2893
 
2894
- #: templates/admin/dashboard/dashboard.inc.php:653
2895
  msgid "Appointments and Events WordPress Booking Plugin"
2896
  msgstr ""
2897
 
2898
- #: templates/admin/dashboard/dashboard.inc.php:656
2899
  msgid ""
2900
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2901
  "set up a fully-featured automated booking system on your WordPress website "
@@ -2906,26 +2961,26 @@ msgid ""
2906
  "each month."
2907
  msgstr ""
2908
 
2909
- #: templates/admin/dashboard/dashboard.inc.php:659
2910
  msgid "Rating: 4.3 - ‎97 reviews"
2911
  msgstr ""
2912
 
2913
- #: templates/admin/dashboard/dashboard.inc.php:662
2914
  msgid "Free Download"
2915
  msgstr ""
2916
 
2917
- #: templates/admin/dashboard/dashboard.inc.php:677
2918
  #: templates/admin/getting-started/getting_started.inc.php:184
2919
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:505
2920
  #: templates/admin/support/support.inc.php:78
2921
  #: templates/admin/system-info/system_info.inc.php:509
2922
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2923
  msgid "Made by"
2924
  msgstr ""
2925
 
2926
- #: templates/admin/dashboard/dashboard.inc.php:685
2927
  #: templates/admin/getting-started/getting_started.inc.php:192
2928
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:513
2929
  #: templates/admin/support/support.inc.php:45
2930
  #: templates/admin/support/support.inc.php:86
2931
  #: templates/admin/system-info/system_info.inc.php:517
@@ -2934,9 +2989,9 @@ msgstr ""
2934
  msgid "Documentation"
2935
  msgstr "Dokumentacja"
2936
 
2937
- #: templates/admin/dashboard/dashboard.inc.php:689
2938
  #: templates/admin/getting-started/getting_started.inc.php:196
2939
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:517
2940
  #: templates/admin/support/support.inc.php:24
2941
  #: templates/admin/support/support.inc.php:90
2942
  #: templates/admin/system-info/system_info.inc.php:521
@@ -3062,7 +3117,7 @@ msgid "Lite vs Premium comparison"
3062
  msgstr ""
3063
 
3064
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3065
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:497
3066
  msgid "Go Premium Now"
3067
  msgstr ""
3068
 
@@ -3075,7 +3130,7 @@ msgid "Lite"
3075
  msgstr ""
3076
 
3077
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3078
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3079
  msgid "Premium"
3080
  msgstr ""
3081
 
@@ -3105,9 +3160,9 @@ msgstr ""
3105
 
3106
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3107
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3108
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:256
3109
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
3110
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:306
3111
  #: templates/admin/table-settings/table_settings_block.inc.php:84
3112
  msgid "NEW!"
3113
  msgstr ""
@@ -3131,6 +3186,10 @@ msgid "Sorting"
3131
  msgstr "Sortowanie"
3132
 
3133
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
 
 
 
 
3134
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3135
  #: templates/admin/table-settings/table_settings_block.inc.php:504
3136
  #: templates/admin/table-settings/table_settings_block.inc.php:512
@@ -3138,58 +3197,54 @@ msgstr "Sortowanie"
3138
  msgid "Pagination"
3139
  msgstr ""
3140
 
3141
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3142
  msgid ""
3143
  "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3144
  "PDF, and Copy and Print options)</span>"
3145
  msgstr ""
3146
 
3147
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3148
  msgid "Column Customization"
3149
  msgstr ""
3150
 
3151
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3152
  msgid "Global Table Customization"
3153
  msgstr ""
3154
 
3155
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
 
 
 
 
3156
  msgid "Creating Google charts"
3157
  msgstr ""
3158
 
3159
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3160
  msgid "Customize charts"
3161
  msgstr ""
3162
 
3163
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3164
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3165
  msgid "Limited"
3166
  msgstr ""
3167
 
3168
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:246
3169
  msgid "Some options are not available."
3170
  msgstr ""
3171
 
3172
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
3173
- msgid "Table Customization"
3174
- msgstr ""
3175
-
3176
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
3177
- msgid "Creating tables via Google Sheet API"
3178
- msgstr ""
3179
-
3180
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
3181
- msgid "Creating tables from Private Google Spreadsheet"
3182
  msgstr ""
3183
 
3184
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3185
  msgid "Support"
3186
  msgstr ""
3187
 
3188
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:480
3189
  msgid "Response time is slow and can be up to 5 business days."
3190
  msgstr ""
3191
 
3192
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:491
3193
  msgid ""
3194
  "* Please note that wpDataTables add-ons are not included in premium version "
3195
  "of plugin."
@@ -7613,12 +7668,6 @@ msgstr ""
7613
  #~ msgid "The default font color for all text in the chart."
7614
  #~ msgstr "Domyślny kolor czcionki dla całego tekstu na wykresie."
7615
 
7616
- #~ msgid "3D"
7617
- #~ msgstr "3D"
7618
-
7619
- #~ msgid "Check for 3D pie chart"
7620
- #~ msgstr "Sprawdź wykres kołowy 3D"
7621
-
7622
  #~ msgid "Grid line style"
7623
  #~ msgstr "Styl linii siatki"
7624
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
+ "POT-Creation-Date: 2021-03-19 13:04+0100\n"
5
+ "PO-Revision-Date: 2021-03-19 13:04+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: pl\n"
90
  msgid "Welcome page"
91
  msgstr ""
92
 
93
+ #: controllers/wdt_admin.php:116 controllers/wdt_admin.php:117
94
+ #: controllers/wdt_functions.php:826
 
 
 
95
  msgid "Go Premium"
96
  msgstr ""
97
 
117
  msgid "Provided column is not Integer or Float column type"
118
  msgstr "Podana kolumna nie jest Integer lub float Typ kolumny"
119
 
120
+ #: controllers/wdt_functions.php:821
121
+ msgid "Go to Settings"
122
+ msgstr ""
123
+
124
+ #: controllers/wdt_functions.php:850
125
+ #, php-format
126
+ msgid "By %s"
127
+ msgstr ""
128
+
129
+ #: controllers/wdt_functions.php:854
130
+ msgid "Docs"
131
+ msgstr ""
132
+
133
+ #: controllers/wdt_functions.php:882
134
  msgid "Choose a table"
135
  msgstr "Wybierz tabelę"
136
 
137
+ #: controllers/wdt_functions.php:914
138
  msgid "Interactive Responsive Table"
139
  msgstr "Interaktywny responsywny stół"
140
 
141
+ #: controllers/wdt_functions.php:915 controllers/wdt_functions.php:976
142
  msgid "Content"
143
  msgstr "Zawartość"
144
 
145
+ #: controllers/wdt_functions.php:921
146
  msgid "wpDataTable"
147
  msgstr "wpDataTable"
148
 
149
+ #: controllers/wdt_functions.php:925
150
  msgid "Choose the wpDataTable from a dropdown"
151
  msgstr "Wybierz wpDataTable z listy rozwijanej"
152
 
153
+ #: controllers/wdt_functions.php:930
154
  msgid "Table view"
155
  msgstr "Widok tabeli"
156
 
157
+ #: controllers/wdt_functions.php:934
158
  msgid "Regular wpDataTable"
159
  msgstr "Regularne wpDataTable"
160
 
161
+ #: controllers/wdt_functions.php:936
162
  msgid "Excel-like table"
163
  msgstr "Tabela podobnych do Excela"
164
 
165
+ #: controllers/wdt_functions.php:942
166
  msgid "Variable placeholder #1"
167
  msgstr "Zmienna #1 zastępcza"
168
 
169
+ #: controllers/wdt_functions.php:945 controllers/wdt_functions.php:953
170
+ #: controllers/wdt_functions.php:961
171
  msgid "Variables"
172
  msgstr "Zmienne"
173
 
174
+ #: controllers/wdt_functions.php:946
175
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
176
  msgstr ""
177
  "Jeśli użyto symbolu zastępczego VAR1 można przypisać do niej wartość tutaj"
178
 
179
+ #: controllers/wdt_functions.php:950
180
  msgid "Variable placeholder #2"
181
  msgstr "Zmienna #2 zastępcza"
182
 
183
+ #: controllers/wdt_functions.php:954
184
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
185
  msgstr ""
186
  "Jeśli użyto symbolu zastępczego VAR2 można przypisać do niej wartość tutaj"
187
 
188
+ #: controllers/wdt_functions.php:958
189
  msgid "Variable placeholder #3"
190
  msgstr "Zmienna #3 zastępcza"
191
 
192
+ #: controllers/wdt_functions.php:962
193
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
194
  msgstr ""
195
  "Jeśli użyto symbolu zastępczego VAR3 można przypisać do niej wartość tutaj"
196
 
197
+ #: controllers/wdt_functions.php:975
198
  msgid "Google or Highcharts chart based on a wpDataTable"
199
  msgstr "Google lub Highcharts wykres oparty na wpDataTable"
200
 
201
+ #: controllers/wdt_functions.php:982
202
  msgid "wpDataChart"
203
  msgstr "Właściwość wpDataChart"
204
 
205
+ #: controllers/wdt_functions.php:986
206
  msgid "Choose one of wpDataCharts from the list"
207
  msgstr "Wybierz jedną z wpDataCharts z listy"
208
 
245
  msgid "Shortcode"
246
  msgstr ""
247
 
248
+ #: source/class.wdtbrowsechartstable.php:153
249
  #: source/class.wdtbrowsetable.php:168
250
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
251
  #: templates/admin/dashboard/dashboard.inc.php:153
253
  msgid "Click to copy shortcode"
254
  msgstr "Kliknij, aby skopiować shortcode"
255
 
256
+ #: source/class.wdtbrowsechartstable.php:162
257
  #: source/class.wdtbrowsetable.php:179
258
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
259
  #: templates/admin/browse/table/duplicate_modal.inc.php:64
260
  msgid "Duplicate"
261
  msgstr "Duplikuj"
262
 
263
+ #: source/class.wdtbrowsechartstable.php:168
264
  #: source/class.wdtbrowsetable.php:185
265
  #: templates/admin/dashboard/dashboard.inc.php:261
266
  msgid "Configure"
267
  msgstr "Konfiguracja"
268
 
269
+ #: source/class.wdtbrowsechartstable.php:174
270
  #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
271
  #: templates/admin/browse/bulk_actions.inc.php:14
272
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
273
  msgid "Delete"
274
  msgstr "Usuń"
275
 
276
+ #: source/class.wdtbrowsechartstable.php:229
277
+ #: source/class.wdtbrowsechartstable.php:238
278
  msgid "Column Chart"
279
  msgstr "Wykres kolumnowy"
280
 
281
+ #: source/class.wdtbrowsechartstable.php:232
282
+ #: source/class.wdtbrowsechartstable.php:256
283
  msgid "Line Chart"
284
  msgstr "Wykres liniowy"
285
 
286
+ #: source/class.wdtbrowsechartstable.php:235
287
+ #: source/class.wdtbrowsechartstable.php:259
288
  msgid "Pie Chart"
289
  msgstr "Wykres kołowy"
290
 
291
+ #: source/class.wdtbrowsechartstable.php:241
292
  #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
293
  #: templates/chart_wizard.inc.php:91
294
  msgid "Histogram"
295
  msgstr "Histogram"
296
 
297
+ #: source/class.wdtbrowsechartstable.php:244
298
  msgid "Bar Chart"
299
  msgstr "Wykres słupkowy"
300
 
301
+ #: source/class.wdtbrowsechartstable.php:247
302
  msgid "Stacked Bar Chart"
303
  msgstr "Skumulowany wykres słupkowy"
304
 
305
+ #: source/class.wdtbrowsechartstable.php:250
306
  msgid "Area Chart"
307
  msgstr "Wykres warstwowy"
308
 
309
+ #: source/class.wdtbrowsechartstable.php:253
310
  msgid "Stepped Area Chart"
311
  msgstr "Wykres warstwowy stopniowany"
312
 
313
+ #: source/class.wdtbrowsechartstable.php:262
314
  msgid "Bubble Chart"
315
  msgstr "KChart"
316
 
317
+ #: source/class.wdtbrowsechartstable.php:265
318
  msgid "Donut Chart"
319
  msgstr "Wykres Donut"
320
 
321
+ #: source/class.wdtbrowsechartstable.php:268
322
  msgid "Gauge Chart"
323
  msgstr "Wykres zegarowy"
324
 
325
+ #: source/class.wdtbrowsechartstable.php:271
326
  msgid "Scatter Chart"
327
  msgstr "Wybierz typ wykresu"
328
 
329
+ #: source/class.wdtbrowsechartstable.php:274
330
  msgid "Candlestick Chart"
331
  msgstr "Wykres świecowy"
332
 
333
+ #: source/class.wdtbrowsechartstable.php:277
334
  msgid "Waterfall Chart"
335
  msgstr "Wykres wodospadu"
336
 
337
+ #: source/class.wdtbrowsechartstable.php:290
338
  msgid "Google"
339
  msgstr "Google"
340
 
341
+ #: source/class.wdtbrowsechartstable.php:357
342
  #: source/class.wdtbrowsetable.php:298
343
  #: templates/admin/chart_wizard/steps/step3.inc.php:11
344
  #: templates/admin/chart_wizard/steps/step3.inc.php:32
345
  msgid "Select All"
346
  msgstr "Zaznacz wszystko"
347
 
348
+ #: source/class.wdtbrowsechartstable.php:410
349
  msgid "No wpDataCharts in the system yet."
350
  msgstr "Nie wpDataCharts w systemie jeszcze."
351
 
1262
  "page. <br><br>You may now finish this tutorial. "
1263
  msgstr ""
1264
 
1265
+ #: source/class.wpdatachart.php:718
1266
  msgid "Only one column can be of type String"
1267
  msgstr "Tylko jedna kolumna może być typu String"
1268
 
1269
+ #: source/class.wpdatachart.php:721
1270
  msgid "You are mixing data types (several date axes and several number)"
1271
  msgstr "Mieszasz typy danych (kilka osi daty i kilka liczb)"
1272
 
1328
  msgid "if you have some questions or problems with the plugin."
1329
  msgstr ""
1330
 
1331
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:521
1332
  msgid "wpDataTables Addons"
1333
  msgstr ""
1334
 
1347
  "przez twórców wpDataTables i 3rd party deweloperów, więc stay tuned."
1348
 
1349
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1350
+ #: templates/admin/dashboard/dashboard.inc.php:592
1351
  msgid "Report Builder"
1352
  msgstr ""
1353
 
1354
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1355
+ #: templates/admin/dashboard/dashboard.inc.php:596
1356
  msgid ""
1357
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1358
  "XLSX documents filled in with actual data from your database."
1380
  msgstr ""
1381
 
1382
  #: templates/admin/addons/addons.inc.php:40
1383
+ #: templates/admin/dashboard/dashboard.inc.php:539
1384
  msgid "Master Detail Tables for wpDataTables"
1385
  msgstr ""
1386
 
1401
  msgstr ""
1402
 
1403
  #: templates/admin/addons/addons.inc.php:67
1404
+ #: templates/admin/dashboard/dashboard.inc.php:566
1405
  msgid "Powerful Filters for wpDataTables"
1406
  msgstr "Potężne filtry dla wpDataTables"
1407
 
1416
  "tylko filtr bez tabeli, zanim użytkownik definiuje wartości wyszukiwania."
1417
 
1418
  #: templates/admin/addons/addons.inc.php:120
1419
+ #: templates/admin/dashboard/dashboard.inc.php:619
1420
  msgid "Formidable Forms integration for wpDataTables"
1421
  msgstr "Integracja formularzy Formidable dla wpDataTables"
1422
 
1423
  #: templates/admin/addons/addons.inc.php:123
1424
+ #: templates/admin/dashboard/dashboard.inc.php:623
1425
  msgid ""
1426
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1427
  "create wpDataTables from Formidable Forms entries data."
1430
  "na tworzenie wpDataTables z Formidable danych wpisów formularzy."
1431
 
1432
  #: templates/admin/addons/addons.inc.php:143
1433
+ #: templates/admin/dashboard/dashboard.inc.php:645
1434
  msgid "Gravity Forms integration for wpDataTables"
1435
  msgstr "Integracja form grawitacyjnych dla wpDataTables"
1436
 
1437
  #: templates/admin/addons/addons.inc.php:146
1438
+ #: templates/admin/dashboard/dashboard.inc.php:649
1439
  msgid ""
1440
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1441
  "wpDataTables from Gravity Forms entries data."
1460
  msgid "New chart title"
1461
  msgstr "Nowy tytuł wykresu"
1462
 
1463
+ #: templates/admin/browse/search_box.inc.php:7
1464
+ msgid "Search for items..."
1465
+ msgstr ""
1466
+
1467
  #: templates/admin/browse/table/browse.inc.php:25
1468
  msgid "Browse Tables"
1469
  msgstr ""
1922
  msgstr "Osie"
1923
 
1924
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1925
+ #: templates/admin/chart_wizard/steps/step4.inc.php:543
1926
  msgid "Tooltip"
1927
  msgstr "Podpowiedź"
1928
 
1954
  msgstr "Typ krzywej"
1955
 
1956
  #: templates/admin/chart_wizard/steps/step4.inc.php:49
1957
+ #: templates/admin/chart_wizard/steps/step4.inc.php:347
1958
  msgid "Controls the curve of the lines"
1959
  msgstr "Steruje krzywą linii"
1960
 
2091
  msgid "The default font face for all text in the chart."
2092
  msgstr "Domyślna ściana czcionki dla całego tekstu na wykresie."
2093
 
2094
+ #: templates/admin/chart_wizard/steps/step4.inc.php:330
2095
+ #: templates/admin/chart_wizard/steps/step4.inc.php:336
2096
+ msgid "3D"
2097
+ msgstr "3D"
2098
+
2099
+ #: templates/admin/chart_wizard/steps/step4.inc.php:332
2100
+ msgid "Check for 3D pie chart"
2101
+ msgstr "Sprawdź wykres kołowy 3D"
2102
+
2103
+ #: templates/admin/chart_wizard/steps/step4.inc.php:345
2104
  msgid "Grid"
2105
  msgstr "Siatka"
2106
 
2107
+ #: templates/admin/chart_wizard/steps/step4.inc.php:351
2108
  msgid "Do you want to show grid on the chart"
2109
  msgstr "Czy chcesz pokazać siatkę na wykresie"
2110
 
2111
+ #: templates/admin/chart_wizard/steps/step4.inc.php:356
2112
  msgid "Horizontal axis label"
2113
  msgstr "Etykieta osi poziomej"
2114
 
2115
+ #: templates/admin/chart_wizard/steps/step4.inc.php:358
2116
  msgid "Name of the horizontal axis."
2117
  msgstr "Nazwa osi poziomej."
2118
 
2119
+ #: templates/admin/chart_wizard/steps/step4.inc.php:373
2120
  msgid "Horizontal crosshair"
2121
  msgstr "Celownik poziomy"
2122
 
2123
+ #: templates/admin/chart_wizard/steps/step4.inc.php:375
2124
  msgid ""
2125
  "Configure a horizontal crosshair that follows either the mouse pointer or "
2126
  "the hovered point lines"
2128
  "Skonfiguruj celownik poziomy, który podąża za wskaźnikiem myszy lub liniami "
2129
  "najechanych punktów"
2130
 
2131
+ #: templates/admin/chart_wizard/steps/step4.inc.php:379
2132
  msgid "Show x-Axis crosshair"
2133
  msgstr "Pokaż celownik osi x"
2134
 
2135
+ #: templates/admin/chart_wizard/steps/step4.inc.php:384
2136
  msgid "Horizontal axis direction"
2137
  msgstr "Kierunek osi poziomej"
2138
 
2139
+ #: templates/admin/chart_wizard/steps/step4.inc.php:386
2140
  msgid ""
2141
  "The direction in which the values along the horizontal axis grow. Specify -1 "
2142
  "to reverse the order of the values"
2144
  "Kierunek, w którym rosną wartości wzdłuż osi poziomej. Określ-1, aby "
2145
  "odwrócić kolejność wartości"
2146
 
2147
+ #: templates/admin/chart_wizard/steps/step4.inc.php:402
2148
  msgid "Vertical axis label"
2149
  msgstr "Etykieta osi pionowej"
2150
 
2151
+ #: templates/admin/chart_wizard/steps/step4.inc.php:404
2152
  msgid "Name of the vertical axis."
2153
  msgstr "Nazwa osi pionowej."
2154
 
2155
+ #: templates/admin/chart_wizard/steps/step4.inc.php:419
2156
  msgid "Vertical crosshair"
2157
  msgstr "Celownik pionowy"
2158
 
2159
+ #: templates/admin/chart_wizard/steps/step4.inc.php:421
2160
  msgid ""
2161
  "Configure a vertical crosshair that follows either the mouse pointer or the "
2162
  "hovered point lines"
2164
  "Skonfiguruj pionowy celownik, który podąża za wskaźnikiem myszy lub liniami "
2165
  "najechanych punktów"
2166
 
2167
+ #: templates/admin/chart_wizard/steps/step4.inc.php:425
2168
  msgid "Show y-Axis crosshair"
2169
  msgstr "Pokaż celownik osi y"
2170
 
2171
+ #: templates/admin/chart_wizard/steps/step4.inc.php:430
2172
  msgid "Vertical axis direction"
2173
  msgstr "Kierunek osi pionowej"
2174
 
2175
+ #: templates/admin/chart_wizard/steps/step4.inc.php:432
2176
  msgid ""
2177
  "The direction in which the values along the vertical axis grow. Specify -1 "
2178
  "to reverse the order of the values"
2180
  "Kierunek, w którym rosną wartości wzdłuż osi pionowej. Określ-1, aby "
2181
  "odwrócić kolejność wartości"
2182
 
2183
+ #: templates/admin/chart_wizard/steps/step4.inc.php:449
2184
  msgid "Vertical axis min value"
2185
  msgstr "Wartość min osi pionowej"
2186
 
2187
+ #: templates/admin/chart_wizard/steps/step4.inc.php:451
2188
  msgid "The minimum value of the axis."
2189
  msgstr "Minimalna wartość osi."
2190
 
2191
+ #: templates/admin/chart_wizard/steps/step4.inc.php:475
2192
  msgid "Vertical axis max value"
2193
  msgstr "Maksymalna wartość osi pionowej"
2194
 
2195
+ #: templates/admin/chart_wizard/steps/step4.inc.php:477
2196
  msgid "The maximum value of the axis."
2197
  msgstr "Maksymalna wartość osi."
2198
 
2199
+ #: templates/admin/chart_wizard/steps/step4.inc.php:500
2200
  msgid "Invert"
2201
  msgstr "Odwróć"
2202
 
2203
+ #: templates/admin/chart_wizard/steps/step4.inc.php:502
2204
  msgid ""
2205
  "Whether to invert the axes so that the x axis is vertical and y axis is "
2206
  "horizontal"
2207
  msgstr "Czy odwrócić osie tak, aby oś x była pionowa, a oś y była pozioma"
2208
 
2209
+ #: templates/admin/chart_wizard/steps/step4.inc.php:506
2210
  msgid "Invert chart axes"
2211
  msgstr "Odwróć osie wykresu"
2212
 
2213
+ #: templates/admin/chart_wizard/steps/step4.inc.php:516
2214
  msgid "Chart title"
2215
  msgstr "Tytuł wykresu"
2216
 
2217
+ #: templates/admin/chart_wizard/steps/step4.inc.php:518
2218
  msgid "Do you want to show the chart title on the page"
2219
  msgstr "Czy chcesz wyświetlić tytuł wykresu na stronie"
2220
 
2221
+ #: templates/admin/chart_wizard/steps/step4.inc.php:522
2222
  msgid "Show title"
2223
  msgstr "Pokaż tytuł"
2224
 
2225
+ #: templates/admin/chart_wizard/steps/step4.inc.php:527
2226
  msgid "Title floating"
2227
  msgstr "Tytuł pływający"
2228
 
2229
+ #: templates/admin/chart_wizard/steps/step4.inc.php:529
2230
  msgid ""
2231
  "When the title is floating, the plot area will not move to make space for it"
2232
  msgstr ""
2233
  "Gdy tytuł jest ruchomy, obszar kreślenia nie zostanie przesuniety, aby "
2234
  "zrobić miejsce dla niego"
2235
 
2236
+ #: templates/admin/chart_wizard/steps/step4.inc.php:533
2237
  msgid "Enable floating"
2238
  msgstr "Włącz pływające"
2239
 
2240
+ #: templates/admin/chart_wizard/steps/step4.inc.php:545
2241
  msgid "Enable or disable the tooltip"
2242
  msgstr "Włączanie lub wyłączanie podpowiedzi"
2243
 
2244
+ #: templates/admin/chart_wizard/steps/step4.inc.php:549
2245
  msgid "Show tooltip"
2246
  msgstr "Etykietka"
2247
 
2248
+ #: templates/admin/chart_wizard/steps/step4.inc.php:560
2249
  msgid "Position"
2250
  msgstr "Pozycja"
2251
 
2252
+ #: templates/admin/chart_wizard/steps/step4.inc.php:562
2253
  msgid "Position of the legend"
2254
  msgstr "Pozycja legendy"
2255
 
2256
+ #: templates/admin/chart_wizard/steps/step4.inc.php:580
2257
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2258
  msgid "Vertical align"
2259
  msgstr "Wyrównaj w pionie"
2260
 
2261
+ #: templates/admin/chart_wizard/steps/step4.inc.php:582
2262
  msgid "The vertical alignment of the legend box"
2263
  msgstr "Wyrównanie pionowe pola legendy"
2264
 
2699
  msgstr ""
2700
 
2701
  #: templates/admin/dashboard/dashboard.inc.php:345
2702
+ msgid "<strong>Feature:</strong> Add new option for creating 3D pie chart."
 
 
2703
  msgstr ""
2704
 
2705
  #: templates/admin/dashboard/dashboard.inc.php:346
2706
  msgid ""
2707
+ "<strong>Feature:</strong> Search for tables and charts using ID on browse "
2708
+ "pages."
2709
  msgstr ""
2710
 
2711
  #: templates/admin/dashboard/dashboard.inc.php:347
2712
  msgid ""
2713
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2714
+ "media in Simple tables."
2715
  msgstr ""
2716
 
2717
  #: templates/admin/dashboard/dashboard.inc.php:348
2718
+ msgid "<strong>Improvement:</strong> Added German translation"
 
 
2719
  msgstr ""
2720
 
2721
  #: templates/admin/dashboard/dashboard.inc.php:349
2722
  msgid ""
2723
+ "<strong>Bugfix:</strong> Fixed issue with Fatal errors if allow_url_fopen is "
2724
+ "turned off on server."
2725
  msgstr ""
2726
 
2727
  #: templates/admin/dashboard/dashboard.inc.php:350
2728
+ msgid ""
2729
+ "<strong>BugFix:</strong> Fixed issue with loading simple table preview after "
2730
+ "clicking on back button in browser from some pages."
2731
  msgstr ""
2732
 
2733
  #: templates/admin/dashboard/dashboard.inc.php:351
2734
+ msgid ""
2735
+ "<strong>BugFix:</strong> Fixed issue with inserting “px” in column width "
2736
+ "option."
2737
+ msgstr ""
2738
+
2739
+ #: templates/admin/dashboard/dashboard.inc.php:352
2740
+ msgid "Compatibility with WordPress 5.7 approved."
2741
+ msgstr ""
2742
+
2743
+ #: templates/admin/dashboard/dashboard.inc.php:353
2744
  msgid "Other small bug fixes and stability improvements."
2745
  msgstr ""
2746
 
2747
+ #: templates/admin/dashboard/dashboard.inc.php:365
2748
  msgid "Go Premium!"
2749
  msgstr ""
2750
 
2751
+ #: templates/admin/dashboard/dashboard.inc.php:371
2752
  msgid "View Comparison"
2753
  msgstr ""
2754
 
2755
+ #: templates/admin/dashboard/dashboard.inc.php:379
2756
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2757
  msgid ""
2758
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2759
  "of the powerful features."
2760
  msgstr ""
2761
 
2762
+ #: templates/admin/dashboard/dashboard.inc.php:383
2763
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
2764
  msgid "Create a table manually"
2765
  msgstr "Ręczne tworzenie tabeli"
2766
 
2767
+ #: templates/admin/dashboard/dashboard.inc.php:386
2768
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:304
2769
  msgid "Creating tables from Google Spreadsheet"
2770
  msgstr ""
2771
 
2772
+ #: templates/admin/dashboard/dashboard.inc.php:389
2773
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:316
2774
+ msgid "Creating tables via Google Sheet API"
 
2775
  msgstr ""
2776
 
2777
+ #: templates/admin/dashboard/dashboard.inc.php:392
2778
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2779
+ msgid "Creating tables from Private Google Spreadsheet"
 
2780
  msgstr ""
2781
 
2782
+ #: templates/admin/dashboard/dashboard.inc.php:395
2783
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2784
  msgid "Creating MySQL-based tables from database"
2785
  msgstr ""
2786
 
2787
+ #: templates/admin/dashboard/dashboard.inc.php:398
2788
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2789
  msgid "Creating MySQL-based tables from Wordpress post types"
2790
  msgstr ""
2791
 
2792
+ #: templates/admin/dashboard/dashboard.inc.php:401
2793
+ msgid "Creating tables where users can see and edit own data"
2794
+ msgstr ""
2795
+
2796
+ #: templates/admin/dashboard/dashboard.inc.php:404
2797
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2798
+ msgid "Creating table relations (Foreign key)"
2799
+ msgstr ""
2800
+
2801
+ #: templates/admin/dashboard/dashboard.inc.php:407
2802
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2803
  #: templates/edit_table.inc.php:329
2804
  msgid "Advanced filtering"
2805
  msgstr ""
2806
 
2807
+ #: templates/admin/dashboard/dashboard.inc.php:410
2808
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2809
+ msgid "Pre-filtering tables through URL"
2810
+ msgstr ""
2811
+
2812
+ #: templates/admin/dashboard/dashboard.inc.php:413
2813
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
2814
+ msgid "Table Customization"
2815
+ msgstr ""
2816
+
2817
+ #: templates/admin/dashboard/dashboard.inc.php:416
2818
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2819
  #: templates/admin/table-settings/table_settings_block.inc.php:153
2820
  #: templates/edit_table.inc.php:282
2821
  msgid "Server-side processing"
2822
  msgstr "Przetwarzanie po stronie serwera"
2823
 
2824
+ #: templates/admin/dashboard/dashboard.inc.php:419
2825
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2826
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2827
  msgstr ""
2828
 
2829
+ #: templates/admin/dashboard/dashboard.inc.php:422
2830
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2831
  msgid "Front-end table editing"
2832
  msgstr ""
2833
 
2834
+ #: templates/admin/dashboard/dashboard.inc.php:425
2835
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2836
  msgid "Excel-like editing"
2837
  msgstr ""
2838
 
2839
+ #: templates/admin/dashboard/dashboard.inc.php:428
2840
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2841
  msgid "Creating charts with Highcharts"
2842
  msgstr ""
2843
 
2844
+ #: templates/admin/dashboard/dashboard.inc.php:431
2845
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
2846
  msgid "Creating charts with Chart.js"
2847
  msgstr ""
2848
 
2849
+ #: templates/admin/dashboard/dashboard.inc.php:434
2850
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:486
2851
+ msgid "Follow table filtering in charts"
2852
+ msgstr ""
2853
+
2854
+ #: templates/admin/dashboard/dashboard.inc.php:437
2855
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:498
2856
+ msgid "Grouping data in Charts"
2857
+ msgstr ""
2858
+
2859
+ #: templates/admin/dashboard/dashboard.inc.php:440
2860
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:510
2861
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2862
  #: templates/edit_table.inc.php:301
2863
  msgid "Responsive"
2864
  msgstr ""
2865
 
2866
+ #: templates/admin/dashboard/dashboard.inc.php:443
2867
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:522
2868
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2869
  #: templates/edit_table.inc.php:750
2870
  msgid "Conditional formatting"
2871
  msgstr "Formatowanie warunkowe"
2872
 
2873
+ #: templates/admin/dashboard/dashboard.inc.php:446
2874
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:534
2875
  msgid "Calculating Tools"
2876
  msgstr ""
2877
 
2878
+ #: templates/admin/dashboard/dashboard.inc.php:449
2879
  msgid "Formula columns"
2880
  msgstr ""
2881
 
2882
+ #: templates/admin/dashboard/dashboard.inc.php:452
2883
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:546
2884
  #: templates/admin/table-settings/table_settings_block.inc.php:80
2885
  msgid "Placeholders"
2886
  msgstr "Placeholdery"
2887
 
2888
+ #: templates/admin/dashboard/dashboard.inc.php:455
2889
  msgid "Premium support"
2890
  msgstr ""
2891
 
2892
+ #: templates/admin/dashboard/dashboard.inc.php:459
2893
  msgid "Get Premium Today"
2894
  msgstr ""
2895
 
2896
+ #: templates/admin/dashboard/dashboard.inc.php:466
2897
  msgid "News Blog"
2898
  msgstr ""
2899
 
2900
+ #: templates/admin/dashboard/dashboard.inc.php:471
2901
  msgid "Checkout useful articles from wpdatatables.com"
2902
  msgstr ""
2903
 
2904
+ #: templates/admin/dashboard/dashboard.inc.php:504
 
 
 
 
2905
  msgid ""
2906
  "Never miss notifications about new cool features, promotions,\n"
2907
  " giveaways or freebies – subscribe to our "
2909
  " about 1 message per month and never spam!"
2910
  msgstr ""
2911
 
2912
+ #: templates/admin/dashboard/dashboard.inc.php:522
2913
  msgid "Premium "
2914
  msgstr ""
2915
 
2916
+ #: templates/admin/dashboard/dashboard.inc.php:525
2917
  msgid ""
2918
  "While wpDataTables itself provides quite a large amount of features and "
2919
  "unlimited customisation, flexibility, you can achieve even more with our "
2920
  "premium addons.(requires wpDataTables Premium version)"
2921
  msgstr ""
2922
 
2923
+ #: templates/admin/dashboard/dashboard.inc.php:543
2924
  msgid ""
2925
  "A wpDataTables addon which allows showing additional details for a specific "
2926
  "row in a popup or a separate page or post."
2927
  msgstr ""
2928
 
2929
+ #: templates/admin/dashboard/dashboard.inc.php:549
2930
+ #: templates/admin/dashboard/dashboard.inc.php:576
2931
+ #: templates/admin/dashboard/dashboard.inc.php:602
2932
+ #: templates/admin/dashboard/dashboard.inc.php:629
2933
+ #: templates/admin/dashboard/dashboard.inc.php:655
2934
+ #: templates/admin/dashboard/dashboard.inc.php:688
2935
  msgid "Learn More"
2936
  msgstr ""
2937
 
2938
+ #: templates/admin/dashboard/dashboard.inc.php:570
2939
  msgid ""
2940
  "An add-on for wpDataTables that provides powerful filtering features: "
2941
  "cascade filtering, applying filters on button click, hide table before "
2942
  "filtering."
2943
  msgstr ""
2944
 
2945
+ #: templates/admin/dashboard/dashboard.inc.php:666
2946
  msgid "Need free booking plugin?"
2947
  msgstr ""
2948
 
2949
+ #: templates/admin/dashboard/dashboard.inc.php:675
2950
  msgid "Appointments and Events WordPress Booking Plugin"
2951
  msgstr ""
2952
 
2953
+ #: templates/admin/dashboard/dashboard.inc.php:678
2954
  msgid ""
2955
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2956
  "set up a fully-featured automated booking system on your WordPress website "
2961
  "each month."
2962
  msgstr ""
2963
 
2964
+ #: templates/admin/dashboard/dashboard.inc.php:681
2965
  msgid "Rating: 4.3 - ‎97 reviews"
2966
  msgstr ""
2967
 
2968
+ #: templates/admin/dashboard/dashboard.inc.php:684
2969
  msgid "Free Download"
2970
  msgstr ""
2971
 
2972
+ #: templates/admin/dashboard/dashboard.inc.php:699
2973
  #: templates/admin/getting-started/getting_started.inc.php:184
2974
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:589
2975
  #: templates/admin/support/support.inc.php:78
2976
  #: templates/admin/system-info/system_info.inc.php:509
2977
  #: templates/admin/welcome_page/welcome_page.inc.php:358
2978
  msgid "Made by"
2979
  msgstr ""
2980
 
2981
+ #: templates/admin/dashboard/dashboard.inc.php:707
2982
  #: templates/admin/getting-started/getting_started.inc.php:192
2983
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:597
2984
  #: templates/admin/support/support.inc.php:45
2985
  #: templates/admin/support/support.inc.php:86
2986
  #: templates/admin/system-info/system_info.inc.php:517
2989
  msgid "Documentation"
2990
  msgstr "Dokumentacja"
2991
 
2992
+ #: templates/admin/dashboard/dashboard.inc.php:711
2993
  #: templates/admin/getting-started/getting_started.inc.php:196
2994
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:601
2995
  #: templates/admin/support/support.inc.php:24
2996
  #: templates/admin/support/support.inc.php:90
2997
  #: templates/admin/system-info/system_info.inc.php:521
3117
  msgstr ""
3118
 
3119
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3120
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:581
3121
  msgid "Go Premium Now"
3122
  msgstr ""
3123
 
3130
  msgstr ""
3131
 
3132
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3133
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:568
3134
  msgid "Premium"
3135
  msgstr ""
3136
 
3160
 
3161
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3162
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3163
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3164
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
3165
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
3166
  #: templates/admin/table-settings/table_settings_block.inc.php:84
3167
  msgid "NEW!"
3168
  msgstr ""
3186
  msgstr "Sortowanie"
3187
 
3188
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3189
+ msgid "Row grouping"
3190
+ msgstr ""
3191
+
3192
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3193
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3194
  #: templates/admin/table-settings/table_settings_block.inc.php:504
3195
  #: templates/admin/table-settings/table_settings_block.inc.php:512
3197
  msgid "Pagination"
3198
  msgstr ""
3199
 
3200
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3201
  msgid ""
3202
  "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3203
  "PDF, and Copy and Print options)</span>"
3204
  msgstr ""
3205
 
3206
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3207
  msgid "Column Customization"
3208
  msgstr ""
3209
 
3210
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
3211
  msgid "Global Table Customization"
3212
  msgstr ""
3213
 
3214
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3215
+ msgid "WP Bakery, Elementor and Gutenberg support"
3216
+ msgstr ""
3217
+
3218
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:252
3219
  msgid "Creating Google charts"
3220
  msgstr ""
3221
 
3222
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:264
3223
  msgid "Customize charts"
3224
  msgstr ""
3225
 
3226
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
3227
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:562
3228
  msgid "Limited"
3229
  msgstr ""
3230
 
3231
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:270
3232
  msgid "Some options are not available."
3233
  msgstr ""
3234
 
3235
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
3236
+ msgid "Creating tables where users can see and edit only their own data"
 
 
 
 
 
 
 
 
3237
  msgstr ""
3238
 
3239
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:558
3240
  msgid "Support"
3241
  msgstr ""
3242
 
3243
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:564
3244
  msgid "Response time is slow and can be up to 5 business days."
3245
  msgstr ""
3246
 
3247
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:575
3248
  msgid ""
3249
  "* Please note that wpDataTables add-ons are not included in premium version "
3250
  "of plugin."
7668
  #~ msgid "The default font color for all text in the chart."
7669
  #~ msgstr "Domyślny kolor czcionki dla całego tekstu na wykresie."
7670
 
 
 
 
 
 
 
7671
  #~ msgid "Grid line style"
7672
  #~ msgstr "Styl linii siatki"
7673
 
languages/ru_RU/wpdatatables-ru_RU.mo CHANGED
Binary file
languages/ru_RU/wpdatatables-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-02-26 13:11+0100\n"
6
- "PO-Revision-Date: 2021-02-26 13:11+0100\n"
7
  "Last-Translator: narozhfy <narozhnyy.alexandr@yandex.ru>\n"
8
  "Language-Team: Русский\n"
9
  "Language: ru_RU\n"
@@ -151,11 +151,8 @@ msgstr "Дополнения"
151
  msgid "Welcome page"
152
  msgstr ""
153
 
154
- #: controllers/wdt_admin.php:116
155
- msgid "Get Premium"
156
- msgstr ""
157
-
158
- #: controllers/wdt_admin.php:117
159
  msgid "Go Premium"
160
  msgstr ""
161
 
@@ -183,76 +180,89 @@ msgid "Provided column is not Integer or Float column type"
183
  msgstr ""
184
  "Предоставленный столбец не является типом столбца типа Integer или Float"
185
 
186
- #: controllers/wdt_functions.php:830
 
 
 
 
 
 
 
 
 
 
 
 
 
187
  msgid "Choose a table"
188
  msgstr "Выберите таблицу"
189
 
190
- #: controllers/wdt_functions.php:862
191
  msgid "Interactive Responsive Table"
192
  msgstr ""
193
 
194
- #: controllers/wdt_functions.php:863 controllers/wdt_functions.php:924
195
  msgid "Content"
196
  msgstr ""
197
 
198
- #: controllers/wdt_functions.php:869
199
  msgid "wpDataTable"
200
  msgstr "wpDataTable таблица"
201
 
202
- #: controllers/wdt_functions.php:873
203
  msgid "Choose the wpDataTable from a dropdown"
204
  msgstr "Выберите таблицу wpDataTable из выпадающего списка"
205
 
206
- #: controllers/wdt_functions.php:878
207
  msgid "Table view"
208
  msgstr "Отображение таблицы"
209
 
210
- #: controllers/wdt_functions.php:882
211
  msgid "Regular wpDataTable"
212
  msgstr "Стандартная wpDataTable таблица"
213
 
214
- #: controllers/wdt_functions.php:884
215
  msgid "Excel-like table"
216
  msgstr "Таблица типа Excel"
217
 
218
- #: controllers/wdt_functions.php:890
219
  msgid "Variable placeholder #1"
220
  msgstr "Переменная №1"
221
 
222
- #: controllers/wdt_functions.php:893 controllers/wdt_functions.php:901
223
- #: controllers/wdt_functions.php:909
224
  msgid "Variables"
225
  msgstr "Переменные"
226
 
227
- #: controllers/wdt_functions.php:894
228
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
229
  msgstr "Если вы использовали переменную VAR1, вы можете здесь задать значение"
230
 
231
- #: controllers/wdt_functions.php:898
232
  msgid "Variable placeholder #2"
233
  msgstr "Переменная №2"
234
 
235
- #: controllers/wdt_functions.php:902
236
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
237
  msgstr "Если вы использовали переменную VAR2, вы можете здесь задать значение"
238
 
239
- #: controllers/wdt_functions.php:906
240
  msgid "Variable placeholder #3"
241
  msgstr "Переменная №3"
242
 
243
- #: controllers/wdt_functions.php:910
244
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
245
  msgstr "Если вы использовали переменную VAR3, вы можете здесь задать значение"
246
 
247
- #: controllers/wdt_functions.php:923
248
  msgid "Google or Highcharts chart based on a wpDataTable"
249
  msgstr ""
250
 
251
- #: controllers/wdt_functions.php:930
252
  msgid "wpDataChart"
253
  msgstr "Диаграмма wpDataChart"
254
 
255
- #: controllers/wdt_functions.php:934
256
  msgid "Choose one of wpDataCharts from the list"
257
  msgstr "Выберите одну из диаграмм wpDataCharts из списка"
258
 
@@ -295,7 +305,7 @@ msgstr ""
295
  msgid "Shortcode"
296
  msgstr ""
297
 
298
- #: source/class.wdtbrowsechartstable.php:141
299
  #: source/class.wdtbrowsetable.php:168
300
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
301
  #: templates/admin/dashboard/dashboard.inc.php:153
@@ -303,103 +313,103 @@ msgstr ""
303
  msgid "Click to copy shortcode"
304
  msgstr "Нажмите, чтобы скопировать шорткод"
305
 
306
- #: source/class.wdtbrowsechartstable.php:150
307
  #: source/class.wdtbrowsetable.php:179
308
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
309
  #: templates/admin/browse/table/duplicate_modal.inc.php:64
310
  msgid "Duplicate"
311
  msgstr "Клонировать"
312
 
313
- #: source/class.wdtbrowsechartstable.php:156
314
  #: source/class.wdtbrowsetable.php:185
315
  #: templates/admin/dashboard/dashboard.inc.php:261
316
  msgid "Configure"
317
  msgstr "Настроить"
318
 
319
- #: source/class.wdtbrowsechartstable.php:162
320
  #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
321
  #: templates/admin/browse/bulk_actions.inc.php:14
322
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
323
  msgid "Delete"
324
  msgstr "Удалить"
325
 
326
- #: source/class.wdtbrowsechartstable.php:217
327
- #: source/class.wdtbrowsechartstable.php:226
328
  msgid "Column Chart"
329
  msgstr "Колоночная диаграмма"
330
 
331
- #: source/class.wdtbrowsechartstable.php:220
332
- #: source/class.wdtbrowsechartstable.php:244
333
  msgid "Line Chart"
334
  msgstr "Линейная диаграмма"
335
 
336
- #: source/class.wdtbrowsechartstable.php:223
337
- #: source/class.wdtbrowsechartstable.php:247
338
  #, fuzzy
339
  msgid "Pie Chart"
340
  msgstr "Круговая диаграмма"
341
 
342
- #: source/class.wdtbrowsechartstable.php:229
343
  #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
344
  #: templates/chart_wizard.inc.php:91
345
  msgid "Histogram"
346
  msgstr "Гистограмма"
347
 
348
- #: source/class.wdtbrowsechartstable.php:232
349
  msgid "Bar Chart"
350
  msgstr "Линеечная диаграмма"
351
 
352
- #: source/class.wdtbrowsechartstable.php:235
353
  #, fuzzy
354
  msgid "Stacked Bar Chart"
355
  msgstr "Линеечная диаграмма с накоплением"
356
 
357
- #: source/class.wdtbrowsechartstable.php:238
358
  msgid "Area Chart"
359
  msgstr "Диаграмма с областями"
360
 
361
- #: source/class.wdtbrowsechartstable.php:241
362
  #, fuzzy
363
  msgid "Stepped Area Chart"
364
  msgstr "Диаграмма с областями и накоплением"
365
 
366
- #: source/class.wdtbrowsechartstable.php:250
367
  msgid "Bubble Chart"
368
  msgstr "Пузырьковая диаграмма"
369
 
370
- #: source/class.wdtbrowsechartstable.php:253
371
  msgid "Donut Chart"
372
  msgstr "Кольцевая диаграмма"
373
 
374
- #: source/class.wdtbrowsechartstable.php:256
375
  msgid "Gauge Chart"
376
  msgstr "Калибровочная диаграмма"
377
 
378
- #: source/class.wdtbrowsechartstable.php:259
379
  #, fuzzy
380
  msgid "Scatter Chart"
381
  msgstr "Точечная диаграмма"
382
 
383
- #: source/class.wdtbrowsechartstable.php:262
384
  msgid "Candlestick Chart"
385
  msgstr "Диаграмма в виде свечек"
386
 
387
- #: source/class.wdtbrowsechartstable.php:265
388
  msgid "Waterfall Chart"
389
  msgstr "Диаграмма - водопад"
390
 
391
- #: source/class.wdtbrowsechartstable.php:278
392
  msgid "Google"
393
  msgstr "Гугл"
394
 
395
- #: source/class.wdtbrowsechartstable.php:345
396
  #: source/class.wdtbrowsetable.php:298
397
  #: templates/admin/chart_wizard/steps/step3.inc.php:11
398
  #: templates/admin/chart_wizard/steps/step3.inc.php:32
399
  msgid "Select All"
400
  msgstr "Выбрать все"
401
 
402
- #: source/class.wdtbrowsechartstable.php:398
403
  msgid "No wpDataCharts in the system yet."
404
  msgstr "Диаграмм пока не создано"
405
 
@@ -1318,11 +1328,11 @@ msgid ""
1318
  "page. <br><br>You may now finish this tutorial. "
1319
  msgstr ""
1320
 
1321
- #: source/class.wpdatachart.php:703
1322
  msgid "Only one column can be of type String"
1323
  msgstr "Только один столбец может иметь тип String"
1324
 
1325
- #: source/class.wpdatachart.php:706
1326
  msgid "You are mixing data types (several date axes and several number)"
1327
  msgstr "Вы смешиваете типы данных (несколько осей даты и несколько чисел)"
1328
 
@@ -1384,7 +1394,7 @@ msgstr ""
1384
  msgid "if you have some questions or problems with the plugin."
1385
  msgstr ""
1386
 
1387
- #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:499
1388
  msgid "wpDataTables Addons"
1389
  msgstr ""
1390
 
@@ -1403,12 +1413,12 @@ msgstr ""
1403
  "разработчиками, так что не забывайте периодически проверять эту страницу!"
1404
 
1405
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1406
- #: templates/admin/dashboard/dashboard.inc.php:570
1407
  msgid "Report Builder"
1408
  msgstr "Report Builder"
1409
 
1410
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1411
- #: templates/admin/dashboard/dashboard.inc.php:574
1412
  msgid ""
1413
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1414
  "XLSX documents filled in with actual data from your database."
@@ -1436,7 +1446,7 @@ msgid "NEW"
1436
  msgstr ""
1437
 
1438
  #: templates/admin/addons/addons.inc.php:40
1439
- #: templates/admin/dashboard/dashboard.inc.php:517
1440
  msgid "Master Detail Tables for wpDataTables"
1441
  msgstr "Основные таблицы сведений для wpDataTables"
1442
 
@@ -1462,7 +1472,7 @@ msgid "Learn more"
1462
  msgstr ""
1463
 
1464
  #: templates/admin/addons/addons.inc.php:67
1465
- #: templates/admin/dashboard/dashboard.inc.php:544
1466
  msgid "Powerful Filters for wpDataTables"
1467
  msgstr "Мощные фильтры для wpDataTables"
1468
 
@@ -1478,12 +1488,12 @@ msgstr ""
1478
  "поиска."
1479
 
1480
  #: templates/admin/addons/addons.inc.php:120
1481
- #: templates/admin/dashboard/dashboard.inc.php:597
1482
  msgid "Formidable Forms integration for wpDataTables"
1483
  msgstr "Интеграция Formidable Forms с wpDataTables"
1484
 
1485
  #: templates/admin/addons/addons.inc.php:123
1486
- #: templates/admin/dashboard/dashboard.inc.php:601
1487
  msgid ""
1488
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1489
  "create wpDataTables from Formidable Forms entries data."
@@ -1493,12 +1503,12 @@ msgstr ""
1493
  "Forms."
1494
 
1495
  #: templates/admin/addons/addons.inc.php:143
1496
- #: templates/admin/dashboard/dashboard.inc.php:623
1497
  msgid "Gravity Forms integration for wpDataTables"
1498
  msgstr "Интеграция Gravity Forms for wpDataTables"
1499
 
1500
  #: templates/admin/addons/addons.inc.php:146
1501
- #: templates/admin/dashboard/dashboard.inc.php:627
1502
  msgid ""
1503
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1504
  "wpDataTables from Gravity Forms entries data."
@@ -1523,6 +1533,10 @@ msgstr "Клонировать диаграмму"
1523
  msgid "New chart title"
1524
  msgstr "Новый заголовок диаграммы"
1525
 
 
 
 
 
1526
  #: templates/admin/browse/table/browse.inc.php:25
1527
  msgid "Browse Tables"
1528
  msgstr ""
@@ -1987,7 +2001,7 @@ msgid "Axes"
1987
  msgstr " Оси"
1988
 
1989
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1990
- #: templates/admin/chart_wizard/steps/step4.inc.php:532
1991
  msgid "Tooltip"
1992
  msgstr "Подсказка"
1993
 
@@ -2019,7 +2033,7 @@ msgid "Curve type"
2019
  msgstr "Тип кривой"
2020
 
2021
  #: templates/admin/chart_wizard/steps/step4.inc.php:49
2022
- #: templates/admin/chart_wizard/steps/step4.inc.php:336
2023
  msgid "Controls the curve of the lines"
2024
  msgstr "Контролирует тип кривой в отрисованных линиях"
2025
 
@@ -2164,27 +2178,36 @@ msgstr "Имя шрифта"
2164
  msgid "The default font face for all text in the chart."
2165
  msgstr "Название шрифта для использования в ярлыках в диаграмме"
2166
 
2167
- #: templates/admin/chart_wizard/steps/step4.inc.php:334
 
 
 
 
 
 
 
 
 
2168
  msgid "Grid"
2169
  msgstr "Сетка"
2170
 
2171
- #: templates/admin/chart_wizard/steps/step4.inc.php:340
2172
  msgid "Do you want to show grid on the chart"
2173
  msgstr "Отображать ли сетку на диаграмме"
2174
 
2175
- #: templates/admin/chart_wizard/steps/step4.inc.php:345
2176
  msgid "Horizontal axis label"
2177
  msgstr "Ярлык горизонтальной оси"
2178
 
2179
- #: templates/admin/chart_wizard/steps/step4.inc.php:347
2180
  msgid "Name of the horizontal axis."
2181
  msgstr "Имя горизонтальной оси"
2182
 
2183
- #: templates/admin/chart_wizard/steps/step4.inc.php:362
2184
  msgid "Horizontal crosshair"
2185
  msgstr "Крестик горизонтальной оси"
2186
 
2187
- #: templates/admin/chart_wizard/steps/step4.inc.php:364
2188
  msgid ""
2189
  "Configure a horizontal crosshair that follows either the mouse pointer or "
2190
  "the hovered point lines"
@@ -2192,15 +2215,15 @@ msgstr ""
2192
  "Настройте крестик (прицел) горизонтальной оси, который будет следовать за "
2193
  "курсором, или за выделенными секторами диаграммы"
2194
 
2195
- #: templates/admin/chart_wizard/steps/step4.inc.php:368
2196
  msgid "Show x-Axis crosshair"
2197
  msgstr "Отображать крестик для оси X"
2198
 
2199
- #: templates/admin/chart_wizard/steps/step4.inc.php:373
2200
  msgid "Horizontal axis direction"
2201
  msgstr "Направление горизонтальной оси"
2202
 
2203
- #: templates/admin/chart_wizard/steps/step4.inc.php:375
2204
  msgid ""
2205
  "The direction in which the values along the horizontal axis grow. Specify -1 "
2206
  "to reverse the order of the values"
@@ -2208,19 +2231,19 @@ msgstr ""
2208
  "Направление возрастания значений по горизонтальной оси. -1 инвертирует "
2209
  "направление"
2210
 
2211
- #: templates/admin/chart_wizard/steps/step4.inc.php:391
2212
  msgid "Vertical axis label"
2213
  msgstr "Ярлык вертикальной оси"
2214
 
2215
- #: templates/admin/chart_wizard/steps/step4.inc.php:393
2216
  msgid "Name of the vertical axis."
2217
  msgstr "Имя вертикальной оси"
2218
 
2219
- #: templates/admin/chart_wizard/steps/step4.inc.php:408
2220
  msgid "Vertical crosshair"
2221
  msgstr "Крестик вертикальной оси"
2222
 
2223
- #: templates/admin/chart_wizard/steps/step4.inc.php:410
2224
  msgid ""
2225
  "Configure a vertical crosshair that follows either the mouse pointer or the "
2226
  "hovered point lines"
@@ -2228,15 +2251,15 @@ msgstr ""
2228
  "Настройте крестик (прицел) вертикальной оси, который будет следовать за "
2229
  "курсором, или за выделенными секторами диаграммы"
2230
 
2231
- #: templates/admin/chart_wizard/steps/step4.inc.php:414
2232
  msgid "Show y-Axis crosshair"
2233
  msgstr "Отображать крестик для оси Y"
2234
 
2235
- #: templates/admin/chart_wizard/steps/step4.inc.php:419
2236
  msgid "Vertical axis direction"
2237
  msgstr "Направление вертикальной оси"
2238
 
2239
- #: templates/admin/chart_wizard/steps/step4.inc.php:421
2240
  msgid ""
2241
  "The direction in which the values along the vertical axis grow. Specify -1 "
2242
  "to reverse the order of the values"
@@ -2244,54 +2267,54 @@ msgstr ""
2244
  "Направление, в котором данные вертикальной оси будут возрастать. -1 "
2245
  "инвертирует направление"
2246
 
2247
- #: templates/admin/chart_wizard/steps/step4.inc.php:438
2248
  msgid "Vertical axis min value"
2249
  msgstr "Минимальное значение вертикальной оси"
2250
 
2251
- #: templates/admin/chart_wizard/steps/step4.inc.php:440
2252
  msgid "The minimum value of the axis."
2253
  msgstr "Минимальное значение оси"
2254
 
2255
- #: templates/admin/chart_wizard/steps/step4.inc.php:464
2256
  msgid "Vertical axis max value"
2257
  msgstr "Максимальное значение вертикальной оси"
2258
 
2259
- #: templates/admin/chart_wizard/steps/step4.inc.php:466
2260
  msgid "The maximum value of the axis."
2261
  msgstr "Максимальное значение оси"
2262
 
2263
- #: templates/admin/chart_wizard/steps/step4.inc.php:489
2264
  msgid "Invert"
2265
  msgstr "Инвертировать"
2266
 
2267
- #: templates/admin/chart_wizard/steps/step4.inc.php:491
2268
  msgid ""
2269
  "Whether to invert the axes so that the x axis is vertical and y axis is "
2270
  "horizontal"
2271
  msgstr ""
2272
  "Транспонировать оси, т.е. поменять вертикальные и горизонтальные оси местами"
2273
 
2274
- #: templates/admin/chart_wizard/steps/step4.inc.php:495
2275
  msgid "Invert chart axes"
2276
  msgstr "Транспонировать оси"
2277
 
2278
- #: templates/admin/chart_wizard/steps/step4.inc.php:505
2279
  msgid "Chart title"
2280
  msgstr "Название диаграммы"
2281
 
2282
- #: templates/admin/chart_wizard/steps/step4.inc.php:507
2283
  msgid "Do you want to show the chart title on the page"
2284
  msgstr "Отображать ли название диаграммы на странице"
2285
 
2286
- #: templates/admin/chart_wizard/steps/step4.inc.php:511
2287
  msgid "Show title"
2288
  msgstr "Отображать заголовок"
2289
 
2290
- #: templates/admin/chart_wizard/steps/step4.inc.php:516
2291
  msgid "Title floating"
2292
  msgstr "“Плавающее” название"
2293
 
2294
- #: templates/admin/chart_wizard/steps/step4.inc.php:518
2295
  msgid ""
2296
  "When the title is floating, the plot area will not move to make space for it"
2297
  msgstr ""
@@ -2299,32 +2322,32 @@ msgstr ""
2299
  "для отображения названия, название будет отрисовываться во внутренней "
2300
  "области диаграммы"
2301
 
2302
- #: templates/admin/chart_wizard/steps/step4.inc.php:522
2303
  msgid "Enable floating"
2304
  msgstr "Включить плавающее название"
2305
 
2306
- #: templates/admin/chart_wizard/steps/step4.inc.php:534
2307
  msgid "Enable or disable the tooltip"
2308
  msgstr "Включить или выключить всплывающую подсказку"
2309
 
2310
- #: templates/admin/chart_wizard/steps/step4.inc.php:538
2311
  msgid "Show tooltip"
2312
  msgstr "Отображать подсказку"
2313
 
2314
- #: templates/admin/chart_wizard/steps/step4.inc.php:549
2315
  msgid "Position"
2316
  msgstr "Позиция"
2317
 
2318
- #: templates/admin/chart_wizard/steps/step4.inc.php:551
2319
  msgid "Position of the legend"
2320
  msgstr "Позиционирование легенды"
2321
 
2322
- #: templates/admin/chart_wizard/steps/step4.inc.php:569
2323
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2324
  msgid "Vertical align"
2325
  msgstr "Вертикальное выравнивание"
2326
 
2327
- #: templates/admin/chart_wizard/steps/step4.inc.php:571
2328
  msgid "The vertical alignment of the legend box"
2329
  msgstr "Вертикальное выравнивание блока легенды"
2330
 
@@ -2764,177 +2787,209 @@ msgid "A minor update with a couple of improvements and bug fixes:"
2764
  msgstr ""
2765
 
2766
  #: templates/admin/dashboard/dashboard.inc.php:345
2767
- msgid ""
2768
- "<strong>Improvement:</strong> Added auto-save functionality after insert "
2769
- "media in Simple tables."
2770
  msgstr ""
2771
 
2772
  #: templates/admin/dashboard/dashboard.inc.php:346
2773
  msgid ""
2774
- "<strong>Improvement:</strong> Added translate functions on some strings."
 
2775
  msgstr ""
2776
 
2777
  #: templates/admin/dashboard/dashboard.inc.php:347
2778
  msgid ""
2779
- "<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin "
2780
- "area and filters for elementor widgets."
2781
  msgstr ""
2782
 
2783
  #: templates/admin/dashboard/dashboard.inc.php:348
2784
- msgid ""
2785
- "<strong>BugFix:</strong> Fixed issue with font in material skin and "
2786
- "background in graphite skin."
2787
  msgstr ""
2788
 
2789
  #: templates/admin/dashboard/dashboard.inc.php:349
2790
  msgid ""
2791
- "<strong>BugFix:</strong> Fixed issue with class name in Global font color "
2792
- "settings."
2793
  msgstr ""
2794
 
2795
  #: templates/admin/dashboard/dashboard.inc.php:350
2796
- msgid "Compatibility with WordPress 5.6.2 approved."
 
 
2797
  msgstr ""
2798
 
2799
  #: templates/admin/dashboard/dashboard.inc.php:351
 
 
 
 
 
 
 
 
 
 
2800
  msgid "Other small bug fixes and stability improvements."
2801
  msgstr ""
2802
 
2803
- #: templates/admin/dashboard/dashboard.inc.php:363
2804
  msgid "Go Premium!"
2805
  msgstr ""
2806
 
2807
- #: templates/admin/dashboard/dashboard.inc.php:369
2808
  msgid "View Comparison"
2809
  msgstr ""
2810
 
2811
- #: templates/admin/dashboard/dashboard.inc.php:377
2812
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2813
  msgid ""
2814
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2815
  "of the powerful features."
2816
  msgstr ""
2817
 
2818
- #: templates/admin/dashboard/dashboard.inc.php:381
2819
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
2820
  msgid "Create a table manually"
2821
  msgstr "Создать таблицу wpDataTable в ручном режиме"
2822
 
2823
- #: templates/admin/dashboard/dashboard.inc.php:384
2824
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
2825
  msgid "Creating tables from Google Spreadsheet"
2826
  msgstr ""
2827
 
2828
- #: templates/admin/dashboard/dashboard.inc.php:387
2829
- msgid ""
2830
- "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2831
- "tables via Google Sheet API"
2832
  msgstr ""
2833
 
2834
- #: templates/admin/dashboard/dashboard.inc.php:390
2835
- msgid ""
2836
- "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2837
- "tables from Private Google Spreadsheet"
2838
  msgstr ""
2839
 
2840
- #: templates/admin/dashboard/dashboard.inc.php:393
2841
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:318
2842
  msgid "Creating MySQL-based tables from database"
2843
  msgstr ""
2844
 
2845
- #: templates/admin/dashboard/dashboard.inc.php:396
2846
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
2847
  msgid "Creating MySQL-based tables from Wordpress post types"
2848
  msgstr ""
2849
 
2850
- #: templates/admin/dashboard/dashboard.inc.php:399
2851
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
 
 
 
 
 
 
 
 
 
2852
  #: templates/edit_table.inc.php:329
2853
  msgid "Advanced filtering"
2854
  msgstr ""
2855
 
2856
- #: templates/admin/dashboard/dashboard.inc.php:402
2857
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
 
 
 
 
 
 
 
 
 
 
2858
  #: templates/admin/table-settings/table_settings_block.inc.php:153
2859
  #: templates/edit_table.inc.php:282
2860
  msgid "Server-side processing"
2861
  msgstr "Обработка данных на стороне сервера"
2862
 
2863
- #: templates/admin/dashboard/dashboard.inc.php:405
2864
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2865
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2866
  msgstr ""
2867
 
2868
- #: templates/admin/dashboard/dashboard.inc.php:408
2869
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2870
  msgid "Front-end table editing"
2871
  msgstr ""
2872
 
2873
- #: templates/admin/dashboard/dashboard.inc.php:411
2874
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2875
  msgid "Excel-like editing"
2876
  msgstr ""
2877
 
2878
- #: templates/admin/dashboard/dashboard.inc.php:414
2879
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2880
  msgid "Creating charts with Highcharts"
2881
  msgstr ""
2882
 
2883
- #: templates/admin/dashboard/dashboard.inc.php:417
2884
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2885
  msgid "Creating charts with Chart.js"
2886
  msgstr ""
2887
 
2888
- #: templates/admin/dashboard/dashboard.inc.php:420
2889
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
 
 
 
 
 
 
 
 
 
 
2890
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2891
  #: templates/edit_table.inc.php:301
2892
  msgid "Responsive"
2893
  msgstr ""
2894
 
2895
- #: templates/admin/dashboard/dashboard.inc.php:423
2896
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2897
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2898
  #: templates/edit_table.inc.php:750
2899
  msgid "Conditional formatting"
2900
  msgstr "Условное форматирование"
2901
 
2902
- #: templates/admin/dashboard/dashboard.inc.php:426
2903
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2904
  msgid "Calculating Tools"
2905
  msgstr ""
2906
 
2907
- #: templates/admin/dashboard/dashboard.inc.php:429
2908
  msgid "Formula columns"
2909
  msgstr ""
2910
 
2911
- #: templates/admin/dashboard/dashboard.inc.php:432
2912
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2913
  #: templates/admin/table-settings/table_settings_block.inc.php:80
2914
  msgid "Placeholders"
2915
  msgstr "Переменная"
2916
 
2917
- #: templates/admin/dashboard/dashboard.inc.php:435
2918
  msgid "Premium support"
2919
  msgstr ""
2920
 
2921
- #: templates/admin/dashboard/dashboard.inc.php:439
2922
  msgid "Get Premium Today"
2923
  msgstr ""
2924
 
2925
- #: templates/admin/dashboard/dashboard.inc.php:446
2926
  msgid "News Blog"
2927
  msgstr ""
2928
 
2929
- #: templates/admin/dashboard/dashboard.inc.php:451
2930
  msgid "Checkout useful articles from wpdatatables.com"
2931
  msgstr ""
2932
 
2933
- #: templates/admin/dashboard/dashboard.inc.php:474
2934
- msgid "Please install and enable PHP extensions xml and dom on your server."
2935
- msgstr ""
2936
-
2937
- #: templates/admin/dashboard/dashboard.inc.php:482
2938
  msgid ""
2939
  "Never miss notifications about new cool features, promotions,\n"
2940
  " giveaways or freebies – subscribe to our "
@@ -2942,48 +2997,48 @@ msgid ""
2942
  " about 1 message per month and never spam!"
2943
  msgstr ""
2944
 
2945
- #: templates/admin/dashboard/dashboard.inc.php:500
2946
  msgid "Premium "
2947
  msgstr ""
2948
 
2949
- #: templates/admin/dashboard/dashboard.inc.php:503
2950
  msgid ""
2951
  "While wpDataTables itself provides quite a large amount of features and "
2952
  "unlimited customisation, flexibility, you can achieve even more with our "
2953
  "premium addons.(requires wpDataTables Premium version)"
2954
  msgstr ""
2955
 
2956
- #: templates/admin/dashboard/dashboard.inc.php:521
2957
  msgid ""
2958
  "A wpDataTables addon which allows showing additional details for a specific "
2959
  "row in a popup or a separate page or post."
2960
  msgstr ""
2961
 
2962
- #: templates/admin/dashboard/dashboard.inc.php:527
2963
- #: templates/admin/dashboard/dashboard.inc.php:554
2964
- #: templates/admin/dashboard/dashboard.inc.php:580
2965
- #: templates/admin/dashboard/dashboard.inc.php:607
2966
- #: templates/admin/dashboard/dashboard.inc.php:633
2967
- #: templates/admin/dashboard/dashboard.inc.php:666
2968
  msgid "Learn More"
2969
  msgstr ""
2970
 
2971
- #: templates/admin/dashboard/dashboard.inc.php:548
2972
  msgid ""
2973
  "An add-on for wpDataTables that provides powerful filtering features: "
2974
  "cascade filtering, applying filters on button click, hide table before "
2975
  "filtering."
2976
  msgstr ""
2977
 
2978
- #: templates/admin/dashboard/dashboard.inc.php:644
2979
  msgid "Need free booking plugin?"
2980
  msgstr ""
2981
 
2982
- #: templates/admin/dashboard/dashboard.inc.php:653
2983
  msgid "Appointments and Events WordPress Booking Plugin"
2984
  msgstr ""
2985
 
2986
- #: templates/admin/dashboard/dashboard.inc.php:656
2987
  msgid ""
2988
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2989
  "set up a fully-featured automated booking system on your WordPress website "
@@ -2994,26 +3049,26 @@ msgid ""
2994
  "each month."
2995
  msgstr ""
2996
 
2997
- #: templates/admin/dashboard/dashboard.inc.php:659
2998
  msgid "Rating: 4.3 - ‎97 reviews"
2999
  msgstr ""
3000
 
3001
- #: templates/admin/dashboard/dashboard.inc.php:662
3002
  msgid "Free Download"
3003
  msgstr ""
3004
 
3005
- #: templates/admin/dashboard/dashboard.inc.php:677
3006
  #: templates/admin/getting-started/getting_started.inc.php:184
3007
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:505
3008
  #: templates/admin/support/support.inc.php:78
3009
  #: templates/admin/system-info/system_info.inc.php:509
3010
  #: templates/admin/welcome_page/welcome_page.inc.php:358
3011
  msgid "Made by"
3012
  msgstr ""
3013
 
3014
- #: templates/admin/dashboard/dashboard.inc.php:685
3015
  #: templates/admin/getting-started/getting_started.inc.php:192
3016
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:513
3017
  #: templates/admin/support/support.inc.php:45
3018
  #: templates/admin/support/support.inc.php:86
3019
  #: templates/admin/system-info/system_info.inc.php:517
@@ -3022,9 +3077,9 @@ msgstr ""
3022
  msgid "Documentation"
3023
  msgstr "Документация по wpDataTables"
3024
 
3025
- #: templates/admin/dashboard/dashboard.inc.php:689
3026
  #: templates/admin/getting-started/getting_started.inc.php:196
3027
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:517
3028
  #: templates/admin/support/support.inc.php:24
3029
  #: templates/admin/support/support.inc.php:90
3030
  #: templates/admin/system-info/system_info.inc.php:521
@@ -3150,7 +3205,7 @@ msgid "Lite vs Premium comparison"
3150
  msgstr ""
3151
 
3152
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3153
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:497
3154
  msgid "Go Premium Now"
3155
  msgstr ""
3156
 
@@ -3163,7 +3218,7 @@ msgid "Lite"
3163
  msgstr ""
3164
 
3165
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3166
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3167
  msgid "Premium"
3168
  msgstr ""
3169
 
@@ -3193,9 +3248,9 @@ msgstr ""
3193
 
3194
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3195
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3196
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:256
3197
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
3198
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:306
3199
  #: templates/admin/table-settings/table_settings_block.inc.php:84
3200
  msgid "NEW!"
3201
  msgstr ""
@@ -3219,6 +3274,10 @@ msgid "Sorting"
3219
  msgstr "Сортировка"
3220
 
3221
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
 
 
 
 
3222
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3223
  #: templates/admin/table-settings/table_settings_block.inc.php:504
3224
  #: templates/admin/table-settings/table_settings_block.inc.php:512
@@ -3226,58 +3285,54 @@ msgstr "Сортировка"
3226
  msgid "Pagination"
3227
  msgstr ""
3228
 
3229
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3230
  msgid ""
3231
  "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3232
  "PDF, and Copy and Print options)</span>"
3233
  msgstr ""
3234
 
3235
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3236
  msgid "Column Customization"
3237
  msgstr ""
3238
 
3239
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3240
  msgid "Global Table Customization"
3241
  msgstr ""
3242
 
3243
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
 
 
 
 
3244
  msgid "Creating Google charts"
3245
  msgstr ""
3246
 
3247
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3248
  msgid "Customize charts"
3249
  msgstr ""
3250
 
3251
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3252
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3253
  msgid "Limited"
3254
  msgstr ""
3255
 
3256
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:246
3257
  msgid "Some options are not available."
3258
  msgstr ""
3259
 
3260
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
3261
- msgid "Table Customization"
3262
- msgstr ""
3263
-
3264
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
3265
- msgid "Creating tables via Google Sheet API"
3266
- msgstr ""
3267
-
3268
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
3269
- msgid "Creating tables from Private Google Spreadsheet"
3270
  msgstr ""
3271
 
3272
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3273
  msgid "Support"
3274
  msgstr ""
3275
 
3276
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:480
3277
  msgid "Response time is slow and can be up to 5 business days."
3278
  msgstr ""
3279
 
3280
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:491
3281
  msgid ""
3282
  "* Please note that wpDataTables add-ons are not included in premium version "
3283
  "of plugin."
@@ -7746,12 +7801,6 @@ msgstr ""
7746
  #~ msgid "The default font color for all text in the chart."
7747
  #~ msgstr "Название шрифта для использования в ярлыках в диаграмме"
7748
 
7749
- #~ msgid "3D"
7750
- #~ msgstr "3D"
7751
-
7752
- #~ msgid "Check for 3D pie chart"
7753
- #~ msgstr "Включите для трехмерной круговой диаграммы"
7754
-
7755
  #~ msgid "Grid line style"
7756
  #~ msgstr "Стиль линий сетки"
7757
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-03-19 13:03+0100\n"
6
+ "PO-Revision-Date: 2021-03-19 13:03+0100\n"
7
  "Last-Translator: narozhfy <narozhnyy.alexandr@yandex.ru>\n"
8
  "Language-Team: Русский\n"
9
  "Language: ru_RU\n"
151
  msgid "Welcome page"
152
  msgstr ""
153
 
154
+ #: controllers/wdt_admin.php:116 controllers/wdt_admin.php:117
155
+ #: controllers/wdt_functions.php:826
 
 
 
156
  msgid "Go Premium"
157
  msgstr ""
158
 
180
  msgstr ""
181
  "Предоставленный столбец не является типом столбца типа Integer или Float"
182
 
183
+ #: controllers/wdt_functions.php:821
184
+ msgid "Go to Settings"
185
+ msgstr ""
186
+
187
+ #: controllers/wdt_functions.php:850
188
+ #, php-format
189
+ msgid "By %s"
190
+ msgstr ""
191
+
192
+ #: controllers/wdt_functions.php:854
193
+ msgid "Docs"
194
+ msgstr ""
195
+
196
+ #: controllers/wdt_functions.php:882
197
  msgid "Choose a table"
198
  msgstr "Выберите таблицу"
199
 
200
+ #: controllers/wdt_functions.php:914
201
  msgid "Interactive Responsive Table"
202
  msgstr ""
203
 
204
+ #: controllers/wdt_functions.php:915 controllers/wdt_functions.php:976
205
  msgid "Content"
206
  msgstr ""
207
 
208
+ #: controllers/wdt_functions.php:921
209
  msgid "wpDataTable"
210
  msgstr "wpDataTable таблица"
211
 
212
+ #: controllers/wdt_functions.php:925
213
  msgid "Choose the wpDataTable from a dropdown"
214
  msgstr "Выберите таблицу wpDataTable из выпадающего списка"
215
 
216
+ #: controllers/wdt_functions.php:930
217
  msgid "Table view"
218
  msgstr "Отображение таблицы"
219
 
220
+ #: controllers/wdt_functions.php:934
221
  msgid "Regular wpDataTable"
222
  msgstr "Стандартная wpDataTable таблица"
223
 
224
+ #: controllers/wdt_functions.php:936
225
  msgid "Excel-like table"
226
  msgstr "Таблица типа Excel"
227
 
228
+ #: controllers/wdt_functions.php:942
229
  msgid "Variable placeholder #1"
230
  msgstr "Переменная №1"
231
 
232
+ #: controllers/wdt_functions.php:945 controllers/wdt_functions.php:953
233
+ #: controllers/wdt_functions.php:961
234
  msgid "Variables"
235
  msgstr "Переменные"
236
 
237
+ #: controllers/wdt_functions.php:946
238
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
239
  msgstr "Если вы использовали переменную VAR1, вы можете здесь задать значение"
240
 
241
+ #: controllers/wdt_functions.php:950
242
  msgid "Variable placeholder #2"
243
  msgstr "Переменная №2"
244
 
245
+ #: controllers/wdt_functions.php:954
246
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
247
  msgstr "Если вы использовали переменную VAR2, вы можете здесь задать значение"
248
 
249
+ #: controllers/wdt_functions.php:958
250
  msgid "Variable placeholder #3"
251
  msgstr "Переменная №3"
252
 
253
+ #: controllers/wdt_functions.php:962
254
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
255
  msgstr "Если вы использовали переменную VAR3, вы можете здесь задать значение"
256
 
257
+ #: controllers/wdt_functions.php:975
258
  msgid "Google or Highcharts chart based on a wpDataTable"
259
  msgstr ""
260
 
261
+ #: controllers/wdt_functions.php:982
262
  msgid "wpDataChart"
263
  msgstr "Диаграмма wpDataChart"
264
 
265
+ #: controllers/wdt_functions.php:986
266
  msgid "Choose one of wpDataCharts from the list"
267
  msgstr "Выберите одну из диаграмм wpDataCharts из списка"
268
 
305
  msgid "Shortcode"
306
  msgstr ""
307
 
308
+ #: source/class.wdtbrowsechartstable.php:153
309
  #: source/class.wdtbrowsetable.php:168
310
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
311
  #: templates/admin/dashboard/dashboard.inc.php:153
313
  msgid "Click to copy shortcode"
314
  msgstr "Нажмите, чтобы скопировать шорткод"
315
 
316
+ #: source/class.wdtbrowsechartstable.php:162
317
  #: source/class.wdtbrowsetable.php:179
318
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
319
  #: templates/admin/browse/table/duplicate_modal.inc.php:64
320
  msgid "Duplicate"
321
  msgstr "Клонировать"
322
 
323
+ #: source/class.wdtbrowsechartstable.php:168
324
  #: source/class.wdtbrowsetable.php:185
325
  #: templates/admin/dashboard/dashboard.inc.php:261
326
  msgid "Configure"
327
  msgstr "Настроить"
328
 
329
+ #: source/class.wdtbrowsechartstable.php:174
330
  #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
331
  #: templates/admin/browse/bulk_actions.inc.php:14
332
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
333
  msgid "Delete"
334
  msgstr "Удалить"
335
 
336
+ #: source/class.wdtbrowsechartstable.php:229
337
+ #: source/class.wdtbrowsechartstable.php:238
338
  msgid "Column Chart"
339
  msgstr "Колоночная диаграмма"
340
 
341
+ #: source/class.wdtbrowsechartstable.php:232
342
+ #: source/class.wdtbrowsechartstable.php:256
343
  msgid "Line Chart"
344
  msgstr "Линейная диаграмма"
345
 
346
+ #: source/class.wdtbrowsechartstable.php:235
347
+ #: source/class.wdtbrowsechartstable.php:259
348
  #, fuzzy
349
  msgid "Pie Chart"
350
  msgstr "Круговая диаграмма"
351
 
352
+ #: source/class.wdtbrowsechartstable.php:241
353
  #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
354
  #: templates/chart_wizard.inc.php:91
355
  msgid "Histogram"
356
  msgstr "Гистограмма"
357
 
358
+ #: source/class.wdtbrowsechartstable.php:244
359
  msgid "Bar Chart"
360
  msgstr "Линеечная диаграмма"
361
 
362
+ #: source/class.wdtbrowsechartstable.php:247
363
  #, fuzzy
364
  msgid "Stacked Bar Chart"
365
  msgstr "Линеечная диаграмма с накоплением"
366
 
367
+ #: source/class.wdtbrowsechartstable.php:250
368
  msgid "Area Chart"
369
  msgstr "Диаграмма с областями"
370
 
371
+ #: source/class.wdtbrowsechartstable.php:253
372
  #, fuzzy
373
  msgid "Stepped Area Chart"
374
  msgstr "Диаграмма с областями и накоплением"
375
 
376
+ #: source/class.wdtbrowsechartstable.php:262
377
  msgid "Bubble Chart"
378
  msgstr "Пузырьковая диаграмма"
379
 
380
+ #: source/class.wdtbrowsechartstable.php:265
381
  msgid "Donut Chart"
382
  msgstr "Кольцевая диаграмма"
383
 
384
+ #: source/class.wdtbrowsechartstable.php:268
385
  msgid "Gauge Chart"
386
  msgstr "Калибровочная диаграмма"
387
 
388
+ #: source/class.wdtbrowsechartstable.php:271
389
  #, fuzzy
390
  msgid "Scatter Chart"
391
  msgstr "Точечная диаграмма"
392
 
393
+ #: source/class.wdtbrowsechartstable.php:274
394
  msgid "Candlestick Chart"
395
  msgstr "Диаграмма в виде свечек"
396
 
397
+ #: source/class.wdtbrowsechartstable.php:277
398
  msgid "Waterfall Chart"
399
  msgstr "Диаграмма - водопад"
400
 
401
+ #: source/class.wdtbrowsechartstable.php:290
402
  msgid "Google"
403
  msgstr "Гугл"
404
 
405
+ #: source/class.wdtbrowsechartstable.php:357
406
  #: source/class.wdtbrowsetable.php:298
407
  #: templates/admin/chart_wizard/steps/step3.inc.php:11
408
  #: templates/admin/chart_wizard/steps/step3.inc.php:32
409
  msgid "Select All"
410
  msgstr "Выбрать все"
411
 
412
+ #: source/class.wdtbrowsechartstable.php:410
413
  msgid "No wpDataCharts in the system yet."
414
  msgstr "Диаграмм пока не создано"
415
 
1328
  "page. <br><br>You may now finish this tutorial. "
1329
  msgstr ""
1330
 
1331
+ #: source/class.wpdatachart.php:718
1332
  msgid "Only one column can be of type String"
1333
  msgstr "Только один столбец может иметь тип String"
1334
 
1335
+ #: source/class.wpdatachart.php:721
1336
  msgid "You are mixing data types (several date axes and several number)"
1337
  msgstr "Вы смешиваете типы данных (несколько осей даты и несколько чисел)"
1338
 
1394
  msgid "if you have some questions or problems with the plugin."
1395
  msgstr ""
1396
 
1397
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:521
1398
  msgid "wpDataTables Addons"
1399
  msgstr ""
1400
 
1413
  "разработчиками, так что не забывайте периодически проверять эту страницу!"
1414
 
1415
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1416
+ #: templates/admin/dashboard/dashboard.inc.php:592
1417
  msgid "Report Builder"
1418
  msgstr "Report Builder"
1419
 
1420
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1421
+ #: templates/admin/dashboard/dashboard.inc.php:596
1422
  msgid ""
1423
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1424
  "XLSX documents filled in with actual data from your database."
1446
  msgstr ""
1447
 
1448
  #: templates/admin/addons/addons.inc.php:40
1449
+ #: templates/admin/dashboard/dashboard.inc.php:539
1450
  msgid "Master Detail Tables for wpDataTables"
1451
  msgstr "Основные таблицы сведений для wpDataTables"
1452
 
1472
  msgstr ""
1473
 
1474
  #: templates/admin/addons/addons.inc.php:67
1475
+ #: templates/admin/dashboard/dashboard.inc.php:566
1476
  msgid "Powerful Filters for wpDataTables"
1477
  msgstr "Мощные фильтры для wpDataTables"
1478
 
1488
  "поиска."
1489
 
1490
  #: templates/admin/addons/addons.inc.php:120
1491
+ #: templates/admin/dashboard/dashboard.inc.php:619
1492
  msgid "Formidable Forms integration for wpDataTables"
1493
  msgstr "Интеграция Formidable Forms с wpDataTables"
1494
 
1495
  #: templates/admin/addons/addons.inc.php:123
1496
+ #: templates/admin/dashboard/dashboard.inc.php:623
1497
  msgid ""
1498
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1499
  "create wpDataTables from Formidable Forms entries data."
1503
  "Forms."
1504
 
1505
  #: templates/admin/addons/addons.inc.php:143
1506
+ #: templates/admin/dashboard/dashboard.inc.php:645
1507
  msgid "Gravity Forms integration for wpDataTables"
1508
  msgstr "Интеграция Gravity Forms for wpDataTables"
1509
 
1510
  #: templates/admin/addons/addons.inc.php:146
1511
+ #: templates/admin/dashboard/dashboard.inc.php:649
1512
  msgid ""
1513
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1514
  "wpDataTables from Gravity Forms entries data."
1533
  msgid "New chart title"
1534
  msgstr "Новый заголовок диаграммы"
1535
 
1536
+ #: templates/admin/browse/search_box.inc.php:7
1537
+ msgid "Search for items..."
1538
+ msgstr ""
1539
+
1540
  #: templates/admin/browse/table/browse.inc.php:25
1541
  msgid "Browse Tables"
1542
  msgstr ""
2001
  msgstr " Оси"
2002
 
2003
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
2004
+ #: templates/admin/chart_wizard/steps/step4.inc.php:543
2005
  msgid "Tooltip"
2006
  msgstr "Подсказка"
2007
 
2033
  msgstr "Тип кривой"
2034
 
2035
  #: templates/admin/chart_wizard/steps/step4.inc.php:49
2036
+ #: templates/admin/chart_wizard/steps/step4.inc.php:347
2037
  msgid "Controls the curve of the lines"
2038
  msgstr "Контролирует тип кривой в отрисованных линиях"
2039
 
2178
  msgid "The default font face for all text in the chart."
2179
  msgstr "Название шрифта для использования в ярлыках в диаграмме"
2180
 
2181
+ #: templates/admin/chart_wizard/steps/step4.inc.php:330
2182
+ #: templates/admin/chart_wizard/steps/step4.inc.php:336
2183
+ msgid "3D"
2184
+ msgstr "3D"
2185
+
2186
+ #: templates/admin/chart_wizard/steps/step4.inc.php:332
2187
+ msgid "Check for 3D pie chart"
2188
+ msgstr "Включите для трехмерной круговой диаграммы"
2189
+
2190
+ #: templates/admin/chart_wizard/steps/step4.inc.php:345
2191
  msgid "Grid"
2192
  msgstr "Сетка"
2193
 
2194
+ #: templates/admin/chart_wizard/steps/step4.inc.php:351
2195
  msgid "Do you want to show grid on the chart"
2196
  msgstr "Отображать ли сетку на диаграмме"
2197
 
2198
+ #: templates/admin/chart_wizard/steps/step4.inc.php:356
2199
  msgid "Horizontal axis label"
2200
  msgstr "Ярлык горизонтальной оси"
2201
 
2202
+ #: templates/admin/chart_wizard/steps/step4.inc.php:358
2203
  msgid "Name of the horizontal axis."
2204
  msgstr "Имя горизонтальной оси"
2205
 
2206
+ #: templates/admin/chart_wizard/steps/step4.inc.php:373
2207
  msgid "Horizontal crosshair"
2208
  msgstr "Крестик горизонтальной оси"
2209
 
2210
+ #: templates/admin/chart_wizard/steps/step4.inc.php:375
2211
  msgid ""
2212
  "Configure a horizontal crosshair that follows either the mouse pointer or "
2213
  "the hovered point lines"
2215
  "Настройте крестик (прицел) горизонтальной оси, который будет следовать за "
2216
  "курсором, или за выделенными секторами диаграммы"
2217
 
2218
+ #: templates/admin/chart_wizard/steps/step4.inc.php:379
2219
  msgid "Show x-Axis crosshair"
2220
  msgstr "Отображать крестик для оси X"
2221
 
2222
+ #: templates/admin/chart_wizard/steps/step4.inc.php:384
2223
  msgid "Horizontal axis direction"
2224
  msgstr "Направление горизонтальной оси"
2225
 
2226
+ #: templates/admin/chart_wizard/steps/step4.inc.php:386
2227
  msgid ""
2228
  "The direction in which the values along the horizontal axis grow. Specify -1 "
2229
  "to reverse the order of the values"
2231
  "Направление возрастания значений по горизонтальной оси. -1 инвертирует "
2232
  "направление"
2233
 
2234
+ #: templates/admin/chart_wizard/steps/step4.inc.php:402
2235
  msgid "Vertical axis label"
2236
  msgstr "Ярлык вертикальной оси"
2237
 
2238
+ #: templates/admin/chart_wizard/steps/step4.inc.php:404
2239
  msgid "Name of the vertical axis."
2240
  msgstr "Имя вертикальной оси"
2241
 
2242
+ #: templates/admin/chart_wizard/steps/step4.inc.php:419
2243
  msgid "Vertical crosshair"
2244
  msgstr "Крестик вертикальной оси"
2245
 
2246
+ #: templates/admin/chart_wizard/steps/step4.inc.php:421
2247
  msgid ""
2248
  "Configure a vertical crosshair that follows either the mouse pointer or the "
2249
  "hovered point lines"
2251
  "Настройте крестик (прицел) вертикальной оси, который будет следовать за "
2252
  "курсором, или за выделенными секторами диаграммы"
2253
 
2254
+ #: templates/admin/chart_wizard/steps/step4.inc.php:425
2255
  msgid "Show y-Axis crosshair"
2256
  msgstr "Отображать крестик для оси Y"
2257
 
2258
+ #: templates/admin/chart_wizard/steps/step4.inc.php:430
2259
  msgid "Vertical axis direction"
2260
  msgstr "Направление вертикальной оси"
2261
 
2262
+ #: templates/admin/chart_wizard/steps/step4.inc.php:432
2263
  msgid ""
2264
  "The direction in which the values along the vertical axis grow. Specify -1 "
2265
  "to reverse the order of the values"
2267
  "Направление, в котором данные вертикальной оси будут возрастать. -1 "
2268
  "инвертирует направление"
2269
 
2270
+ #: templates/admin/chart_wizard/steps/step4.inc.php:449
2271
  msgid "Vertical axis min value"
2272
  msgstr "Минимальное значение вертикальной оси"
2273
 
2274
+ #: templates/admin/chart_wizard/steps/step4.inc.php:451
2275
  msgid "The minimum value of the axis."
2276
  msgstr "Минимальное значение оси"
2277
 
2278
+ #: templates/admin/chart_wizard/steps/step4.inc.php:475
2279
  msgid "Vertical axis max value"
2280
  msgstr "Максимальное значение вертикальной оси"
2281
 
2282
+ #: templates/admin/chart_wizard/steps/step4.inc.php:477
2283
  msgid "The maximum value of the axis."
2284
  msgstr "Максимальное значение оси"
2285
 
2286
+ #: templates/admin/chart_wizard/steps/step4.inc.php:500
2287
  msgid "Invert"
2288
  msgstr "Инвертировать"
2289
 
2290
+ #: templates/admin/chart_wizard/steps/step4.inc.php:502
2291
  msgid ""
2292
  "Whether to invert the axes so that the x axis is vertical and y axis is "
2293
  "horizontal"
2294
  msgstr ""
2295
  "Транспонировать оси, т.е. поменять вертикальные и горизонтальные оси местами"
2296
 
2297
+ #: templates/admin/chart_wizard/steps/step4.inc.php:506
2298
  msgid "Invert chart axes"
2299
  msgstr "Транспонировать оси"
2300
 
2301
+ #: templates/admin/chart_wizard/steps/step4.inc.php:516
2302
  msgid "Chart title"
2303
  msgstr "Название диаграммы"
2304
 
2305
+ #: templates/admin/chart_wizard/steps/step4.inc.php:518
2306
  msgid "Do you want to show the chart title on the page"
2307
  msgstr "Отображать ли название диаграммы на странице"
2308
 
2309
+ #: templates/admin/chart_wizard/steps/step4.inc.php:522
2310
  msgid "Show title"
2311
  msgstr "Отображать заголовок"
2312
 
2313
+ #: templates/admin/chart_wizard/steps/step4.inc.php:527
2314
  msgid "Title floating"
2315
  msgstr "“Плавающее” название"
2316
 
2317
+ #: templates/admin/chart_wizard/steps/step4.inc.php:529
2318
  msgid ""
2319
  "When the title is floating, the plot area will not move to make space for it"
2320
  msgstr ""
2322
  "для отображения названия, название будет отрисовываться во внутренней "
2323
  "области диаграммы"
2324
 
2325
+ #: templates/admin/chart_wizard/steps/step4.inc.php:533
2326
  msgid "Enable floating"
2327
  msgstr "Включить плавающее название"
2328
 
2329
+ #: templates/admin/chart_wizard/steps/step4.inc.php:545
2330
  msgid "Enable or disable the tooltip"
2331
  msgstr "Включить или выключить всплывающую подсказку"
2332
 
2333
+ #: templates/admin/chart_wizard/steps/step4.inc.php:549
2334
  msgid "Show tooltip"
2335
  msgstr "Отображать подсказку"
2336
 
2337
+ #: templates/admin/chart_wizard/steps/step4.inc.php:560
2338
  msgid "Position"
2339
  msgstr "Позиция"
2340
 
2341
+ #: templates/admin/chart_wizard/steps/step4.inc.php:562
2342
  msgid "Position of the legend"
2343
  msgstr "Позиционирование легенды"
2344
 
2345
+ #: templates/admin/chart_wizard/steps/step4.inc.php:580
2346
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2347
  msgid "Vertical align"
2348
  msgstr "Вертикальное выравнивание"
2349
 
2350
+ #: templates/admin/chart_wizard/steps/step4.inc.php:582
2351
  msgid "The vertical alignment of the legend box"
2352
  msgstr "Вертикальное выравнивание блока легенды"
2353
 
2787
  msgstr ""
2788
 
2789
  #: templates/admin/dashboard/dashboard.inc.php:345
2790
+ msgid "<strong>Feature:</strong> Add new option for creating 3D pie chart."
 
 
2791
  msgstr ""
2792
 
2793
  #: templates/admin/dashboard/dashboard.inc.php:346
2794
  msgid ""
2795
+ "<strong>Feature:</strong> Search for tables and charts using ID on browse "
2796
+ "pages."
2797
  msgstr ""
2798
 
2799
  #: templates/admin/dashboard/dashboard.inc.php:347
2800
  msgid ""
2801
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2802
+ "media in Simple tables."
2803
  msgstr ""
2804
 
2805
  #: templates/admin/dashboard/dashboard.inc.php:348
2806
+ msgid "<strong>Improvement:</strong> Added German translation"
 
 
2807
  msgstr ""
2808
 
2809
  #: templates/admin/dashboard/dashboard.inc.php:349
2810
  msgid ""
2811
+ "<strong>Bugfix:</strong> Fixed issue with Fatal errors if allow_url_fopen is "
2812
+ "turned off on server."
2813
  msgstr ""
2814
 
2815
  #: templates/admin/dashboard/dashboard.inc.php:350
2816
+ msgid ""
2817
+ "<strong>BugFix:</strong> Fixed issue with loading simple table preview after "
2818
+ "clicking on back button in browser from some pages."
2819
  msgstr ""
2820
 
2821
  #: templates/admin/dashboard/dashboard.inc.php:351
2822
+ msgid ""
2823
+ "<strong>BugFix:</strong> Fixed issue with inserting “px” in column width "
2824
+ "option."
2825
+ msgstr ""
2826
+
2827
+ #: templates/admin/dashboard/dashboard.inc.php:352
2828
+ msgid "Compatibility with WordPress 5.7 approved."
2829
+ msgstr ""
2830
+
2831
+ #: templates/admin/dashboard/dashboard.inc.php:353
2832
  msgid "Other small bug fixes and stability improvements."
2833
  msgstr ""
2834
 
2835
+ #: templates/admin/dashboard/dashboard.inc.php:365
2836
  msgid "Go Premium!"
2837
  msgstr ""
2838
 
2839
+ #: templates/admin/dashboard/dashboard.inc.php:371
2840
  msgid "View Comparison"
2841
  msgstr ""
2842
 
2843
+ #: templates/admin/dashboard/dashboard.inc.php:379
2844
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2845
  msgid ""
2846
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2847
  "of the powerful features."
2848
  msgstr ""
2849
 
2850
+ #: templates/admin/dashboard/dashboard.inc.php:383
2851
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
2852
  msgid "Create a table manually"
2853
  msgstr "Создать таблицу wpDataTable в ручном режиме"
2854
 
2855
+ #: templates/admin/dashboard/dashboard.inc.php:386
2856
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:304
2857
  msgid "Creating tables from Google Spreadsheet"
2858
  msgstr ""
2859
 
2860
+ #: templates/admin/dashboard/dashboard.inc.php:389
2861
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:316
2862
+ msgid "Creating tables via Google Sheet API"
 
2863
  msgstr ""
2864
 
2865
+ #: templates/admin/dashboard/dashboard.inc.php:392
2866
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2867
+ msgid "Creating tables from Private Google Spreadsheet"
 
2868
  msgstr ""
2869
 
2870
+ #: templates/admin/dashboard/dashboard.inc.php:395
2871
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2872
  msgid "Creating MySQL-based tables from database"
2873
  msgstr ""
2874
 
2875
+ #: templates/admin/dashboard/dashboard.inc.php:398
2876
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2877
  msgid "Creating MySQL-based tables from Wordpress post types"
2878
  msgstr ""
2879
 
2880
+ #: templates/admin/dashboard/dashboard.inc.php:401
2881
+ msgid "Creating tables where users can see and edit own data"
2882
+ msgstr ""
2883
+
2884
+ #: templates/admin/dashboard/dashboard.inc.php:404
2885
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2886
+ msgid "Creating table relations (Foreign key)"
2887
+ msgstr ""
2888
+
2889
+ #: templates/admin/dashboard/dashboard.inc.php:407
2890
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2891
  #: templates/edit_table.inc.php:329
2892
  msgid "Advanced filtering"
2893
  msgstr ""
2894
 
2895
+ #: templates/admin/dashboard/dashboard.inc.php:410
2896
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2897
+ msgid "Pre-filtering tables through URL"
2898
+ msgstr ""
2899
+
2900
+ #: templates/admin/dashboard/dashboard.inc.php:413
2901
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
2902
+ msgid "Table Customization"
2903
+ msgstr ""
2904
+
2905
+ #: templates/admin/dashboard/dashboard.inc.php:416
2906
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2907
  #: templates/admin/table-settings/table_settings_block.inc.php:153
2908
  #: templates/edit_table.inc.php:282
2909
  msgid "Server-side processing"
2910
  msgstr "Обработка данных на стороне сервера"
2911
 
2912
+ #: templates/admin/dashboard/dashboard.inc.php:419
2913
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2914
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2915
  msgstr ""
2916
 
2917
+ #: templates/admin/dashboard/dashboard.inc.php:422
2918
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2919
  msgid "Front-end table editing"
2920
  msgstr ""
2921
 
2922
+ #: templates/admin/dashboard/dashboard.inc.php:425
2923
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2924
  msgid "Excel-like editing"
2925
  msgstr ""
2926
 
2927
+ #: templates/admin/dashboard/dashboard.inc.php:428
2928
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2929
  msgid "Creating charts with Highcharts"
2930
  msgstr ""
2931
 
2932
+ #: templates/admin/dashboard/dashboard.inc.php:431
2933
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
2934
  msgid "Creating charts with Chart.js"
2935
  msgstr ""
2936
 
2937
+ #: templates/admin/dashboard/dashboard.inc.php:434
2938
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:486
2939
+ msgid "Follow table filtering in charts"
2940
+ msgstr ""
2941
+
2942
+ #: templates/admin/dashboard/dashboard.inc.php:437
2943
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:498
2944
+ msgid "Grouping data in Charts"
2945
+ msgstr ""
2946
+
2947
+ #: templates/admin/dashboard/dashboard.inc.php:440
2948
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:510
2949
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2950
  #: templates/edit_table.inc.php:301
2951
  msgid "Responsive"
2952
  msgstr ""
2953
 
2954
+ #: templates/admin/dashboard/dashboard.inc.php:443
2955
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:522
2956
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2957
  #: templates/edit_table.inc.php:750
2958
  msgid "Conditional formatting"
2959
  msgstr "Условное форматирование"
2960
 
2961
+ #: templates/admin/dashboard/dashboard.inc.php:446
2962
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:534
2963
  msgid "Calculating Tools"
2964
  msgstr ""
2965
 
2966
+ #: templates/admin/dashboard/dashboard.inc.php:449
2967
  msgid "Formula columns"
2968
  msgstr ""
2969
 
2970
+ #: templates/admin/dashboard/dashboard.inc.php:452
2971
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:546
2972
  #: templates/admin/table-settings/table_settings_block.inc.php:80
2973
  msgid "Placeholders"
2974
  msgstr "Переменная"
2975
 
2976
+ #: templates/admin/dashboard/dashboard.inc.php:455
2977
  msgid "Premium support"
2978
  msgstr ""
2979
 
2980
+ #: templates/admin/dashboard/dashboard.inc.php:459
2981
  msgid "Get Premium Today"
2982
  msgstr ""
2983
 
2984
+ #: templates/admin/dashboard/dashboard.inc.php:466
2985
  msgid "News Blog"
2986
  msgstr ""
2987
 
2988
+ #: templates/admin/dashboard/dashboard.inc.php:471
2989
  msgid "Checkout useful articles from wpdatatables.com"
2990
  msgstr ""
2991
 
2992
+ #: templates/admin/dashboard/dashboard.inc.php:504
 
 
 
 
2993
  msgid ""
2994
  "Never miss notifications about new cool features, promotions,\n"
2995
  " giveaways or freebies – subscribe to our "
2997
  " about 1 message per month and never spam!"
2998
  msgstr ""
2999
 
3000
+ #: templates/admin/dashboard/dashboard.inc.php:522
3001
  msgid "Premium "
3002
  msgstr ""
3003
 
3004
+ #: templates/admin/dashboard/dashboard.inc.php:525
3005
  msgid ""
3006
  "While wpDataTables itself provides quite a large amount of features and "
3007
  "unlimited customisation, flexibility, you can achieve even more with our "
3008
  "premium addons.(requires wpDataTables Premium version)"
3009
  msgstr ""
3010
 
3011
+ #: templates/admin/dashboard/dashboard.inc.php:543
3012
  msgid ""
3013
  "A wpDataTables addon which allows showing additional details for a specific "
3014
  "row in a popup or a separate page or post."
3015
  msgstr ""
3016
 
3017
+ #: templates/admin/dashboard/dashboard.inc.php:549
3018
+ #: templates/admin/dashboard/dashboard.inc.php:576
3019
+ #: templates/admin/dashboard/dashboard.inc.php:602
3020
+ #: templates/admin/dashboard/dashboard.inc.php:629
3021
+ #: templates/admin/dashboard/dashboard.inc.php:655
3022
+ #: templates/admin/dashboard/dashboard.inc.php:688
3023
  msgid "Learn More"
3024
  msgstr ""
3025
 
3026
+ #: templates/admin/dashboard/dashboard.inc.php:570
3027
  msgid ""
3028
  "An add-on for wpDataTables that provides powerful filtering features: "
3029
  "cascade filtering, applying filters on button click, hide table before "
3030
  "filtering."
3031
  msgstr ""
3032
 
3033
+ #: templates/admin/dashboard/dashboard.inc.php:666
3034
  msgid "Need free booking plugin?"
3035
  msgstr ""
3036
 
3037
+ #: templates/admin/dashboard/dashboard.inc.php:675
3038
  msgid "Appointments and Events WordPress Booking Plugin"
3039
  msgstr ""
3040
 
3041
+ #: templates/admin/dashboard/dashboard.inc.php:678
3042
  msgid ""
3043
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
3044
  "set up a fully-featured automated booking system on your WordPress website "
3049
  "each month."
3050
  msgstr ""
3051
 
3052
+ #: templates/admin/dashboard/dashboard.inc.php:681
3053
  msgid "Rating: 4.3 - ‎97 reviews"
3054
  msgstr ""
3055
 
3056
+ #: templates/admin/dashboard/dashboard.inc.php:684
3057
  msgid "Free Download"
3058
  msgstr ""
3059
 
3060
+ #: templates/admin/dashboard/dashboard.inc.php:699
3061
  #: templates/admin/getting-started/getting_started.inc.php:184
3062
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:589
3063
  #: templates/admin/support/support.inc.php:78
3064
  #: templates/admin/system-info/system_info.inc.php:509
3065
  #: templates/admin/welcome_page/welcome_page.inc.php:358
3066
  msgid "Made by"
3067
  msgstr ""
3068
 
3069
+ #: templates/admin/dashboard/dashboard.inc.php:707
3070
  #: templates/admin/getting-started/getting_started.inc.php:192
3071
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:597
3072
  #: templates/admin/support/support.inc.php:45
3073
  #: templates/admin/support/support.inc.php:86
3074
  #: templates/admin/system-info/system_info.inc.php:517
3077
  msgid "Documentation"
3078
  msgstr "Документация по wpDataTables"
3079
 
3080
+ #: templates/admin/dashboard/dashboard.inc.php:711
3081
  #: templates/admin/getting-started/getting_started.inc.php:196
3082
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:601
3083
  #: templates/admin/support/support.inc.php:24
3084
  #: templates/admin/support/support.inc.php:90
3085
  #: templates/admin/system-info/system_info.inc.php:521
3205
  msgstr ""
3206
 
3207
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3208
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:581
3209
  msgid "Go Premium Now"
3210
  msgstr ""
3211
 
3218
  msgstr ""
3219
 
3220
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3221
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:568
3222
  msgid "Premium"
3223
  msgstr ""
3224
 
3248
 
3249
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3250
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3251
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3252
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
3253
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
3254
  #: templates/admin/table-settings/table_settings_block.inc.php:84
3255
  msgid "NEW!"
3256
  msgstr ""
3274
  msgstr "Сортировка"
3275
 
3276
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3277
+ msgid "Row grouping"
3278
+ msgstr ""
3279
+
3280
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3281
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3282
  #: templates/admin/table-settings/table_settings_block.inc.php:504
3283
  #: templates/admin/table-settings/table_settings_block.inc.php:512
3285
  msgid "Pagination"
3286
  msgstr ""
3287
 
3288
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3289
  msgid ""
3290
  "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3291
  "PDF, and Copy and Print options)</span>"
3292
  msgstr ""
3293
 
3294
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3295
  msgid "Column Customization"
3296
  msgstr ""
3297
 
3298
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
3299
  msgid "Global Table Customization"
3300
  msgstr ""
3301
 
3302
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3303
+ msgid "WP Bakery, Elementor and Gutenberg support"
3304
+ msgstr ""
3305
+
3306
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:252
3307
  msgid "Creating Google charts"
3308
  msgstr ""
3309
 
3310
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:264
3311
  msgid "Customize charts"
3312
  msgstr ""
3313
 
3314
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
3315
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:562
3316
  msgid "Limited"
3317
  msgstr ""
3318
 
3319
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:270
3320
  msgid "Some options are not available."
3321
  msgstr ""
3322
 
3323
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
3324
+ msgid "Creating tables where users can see and edit only their own data"
 
 
 
 
 
 
 
 
3325
  msgstr ""
3326
 
3327
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:558
3328
  msgid "Support"
3329
  msgstr ""
3330
 
3331
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:564
3332
  msgid "Response time is slow and can be up to 5 business days."
3333
  msgstr ""
3334
 
3335
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:575
3336
  msgid ""
3337
  "* Please note that wpDataTables add-ons are not included in premium version "
3338
  "of plugin."
7801
  #~ msgid "The default font color for all text in the chart."
7802
  #~ msgstr "Название шрифта для использования в ярлыках в диаграмме"
7803
 
 
 
 
 
 
 
7804
  #~ msgid "Grid line style"
7805
  #~ msgstr "Стиль линий сетки"
7806
 
languages/sl_SI/wpdatatables-sl_SI.mo CHANGED
Binary file
languages/sl_SI/wpdatatables-sl_SI.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
- "POT-Creation-Date: 2021-02-26 13:11+0100\n"
5
- "PO-Revision-Date: 2021-02-26 13:11+0100\n"
6
  "Last-Translator: Bostjan Laba <bostjan@neolink.si>\n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: sl_SI\n"
@@ -102,11 +102,8 @@ msgstr "Dodatki"
102
  msgid "Welcome page"
103
  msgstr "Naslovna stran"
104
 
105
- #: controllers/wdt_admin.php:116
106
- msgid "Get Premium"
107
- msgstr ""
108
-
109
- #: controllers/wdt_admin.php:117
110
  msgid "Go Premium"
111
  msgstr ""
112
 
@@ -132,76 +129,89 @@ msgstr "wpDataTable z navedenim ID-jem ni mogoče najti!"
132
  msgid "Provided column is not Integer or Float column type"
133
  msgstr "Vneseni stolpec ni tipa Integer ali Float"
134
 
135
- #: controllers/wdt_functions.php:830
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  msgid "Choose a table"
137
  msgstr "Izberite tabelo"
138
 
139
- #: controllers/wdt_functions.php:862
140
  msgid "Interactive Responsive Table"
141
  msgstr "Interaktivna odzivna tabela"
142
 
143
- #: controllers/wdt_functions.php:863 controllers/wdt_functions.php:924
144
  msgid "Content"
145
  msgstr "Vsebina"
146
 
147
- #: controllers/wdt_functions.php:869
148
  msgid "wpDataTable"
149
  msgstr "wpDataTable"
150
 
151
- #: controllers/wdt_functions.php:873
152
  msgid "Choose the wpDataTable from a dropdown"
153
  msgstr "V spustnem meniju izberite wpDataTable"
154
 
155
- #: controllers/wdt_functions.php:878
156
  msgid "Table view"
157
  msgstr "Pogled tabele"
158
 
159
- #: controllers/wdt_functions.php:882
160
  msgid "Regular wpDataTable"
161
  msgstr "Redni wpDataTable"
162
 
163
- #: controllers/wdt_functions.php:884
164
  msgid "Excel-like table"
165
  msgstr "Excelu podobna miza"
166
 
167
- #: controllers/wdt_functions.php:890
168
  msgid "Variable placeholder #1"
169
  msgstr "Spremenljivo rezervirano mesto №1"
170
 
171
- #: controllers/wdt_functions.php:893 controllers/wdt_functions.php:901
172
- #: controllers/wdt_functions.php:909
173
  msgid "Variables"
174
  msgstr "Spremenljivke"
175
 
176
- #: controllers/wdt_functions.php:894
177
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
178
  msgstr "Če ste uporabili držalo mesta VAR1, mu lahko tukaj dodelite vrednost"
179
 
180
- #: controllers/wdt_functions.php:898
181
  msgid "Variable placeholder #2"
182
  msgstr "Spremenljivo rezervirano mesto №2"
183
 
184
- #: controllers/wdt_functions.php:902
185
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
186
  msgstr "Če ste uporabili držalo mesta VAR2, mu lahko tukaj dodelite vrednost"
187
 
188
- #: controllers/wdt_functions.php:906
189
  msgid "Variable placeholder #3"
190
  msgstr "Spremenljivo rezervirano mesto # 3"
191
 
192
- #: controllers/wdt_functions.php:910
193
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
194
  msgstr "Če ste uporabili držalo mesta VAR3, mu lahko tukaj dodelite vrednost"
195
 
196
- #: controllers/wdt_functions.php:923
197
  msgid "Google or Highcharts chart based on a wpDataTable"
198
  msgstr "Google ali Highcharts grafikon temelji na wpDataTable"
199
 
200
- #: controllers/wdt_functions.php:930
201
  msgid "wpDataChart"
202
  msgstr "wpDataChart"
203
 
204
- #: controllers/wdt_functions.php:934
205
  msgid "Choose one of wpDataCharts from the list"
206
  msgstr "Izberite enega od wpDataCharts s seznama"
207
 
@@ -244,7 +254,7 @@ msgstr ""
244
  msgid "Shortcode"
245
  msgstr ""
246
 
247
- #: source/class.wdtbrowsechartstable.php:141
248
  #: source/class.wdtbrowsetable.php:168
249
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
250
  #: templates/admin/dashboard/dashboard.inc.php:153
@@ -252,99 +262,99 @@ msgstr ""
252
  msgid "Click to copy shortcode"
253
  msgstr "Kliknite, če želite kopirati kratko kodo"
254
 
255
- #: source/class.wdtbrowsechartstable.php:150
256
  #: source/class.wdtbrowsetable.php:179
257
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
258
  #: templates/admin/browse/table/duplicate_modal.inc.php:64
259
  msgid "Duplicate"
260
  msgstr "Podvoji"
261
 
262
- #: source/class.wdtbrowsechartstable.php:156
263
  #: source/class.wdtbrowsetable.php:185
264
  #: templates/admin/dashboard/dashboard.inc.php:261
265
  msgid "Configure"
266
  msgstr "Nastavi"
267
 
268
- #: source/class.wdtbrowsechartstable.php:162
269
  #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
270
  #: templates/admin/browse/bulk_actions.inc.php:14
271
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
272
  msgid "Delete"
273
  msgstr "Izbriši"
274
 
275
- #: source/class.wdtbrowsechartstable.php:217
276
- #: source/class.wdtbrowsechartstable.php:226
277
  msgid "Column Chart"
278
  msgstr "Stolpna lestvica"
279
 
280
- #: source/class.wdtbrowsechartstable.php:220
281
- #: source/class.wdtbrowsechartstable.php:244
282
  msgid "Line Chart"
283
  msgstr "Vrstni grafikon"
284
 
285
- #: source/class.wdtbrowsechartstable.php:223
286
- #: source/class.wdtbrowsechartstable.php:247
287
  msgid "Pie Chart"
288
  msgstr "Tortni diagram"
289
 
290
- #: source/class.wdtbrowsechartstable.php:229
291
  #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
292
  #: templates/chart_wizard.inc.php:91
293
  msgid "Histogram"
294
  msgstr "Histogram"
295
 
296
- #: source/class.wdtbrowsechartstable.php:232
297
  msgid "Bar Chart"
298
  msgstr "Stolpični diagram"
299
 
300
- #: source/class.wdtbrowsechartstable.php:235
301
  msgid "Stacked Bar Chart"
302
  msgstr "Zloženi črtni grafikon"
303
 
304
- #: source/class.wdtbrowsechartstable.php:238
305
  msgid "Area Chart"
306
  msgstr "Območni grafikon"
307
 
308
- #: source/class.wdtbrowsechartstable.php:241
309
  msgid "Stepped Area Chart"
310
  msgstr "Shema območja korakov"
311
 
312
- #: source/class.wdtbrowsechartstable.php:250
313
  msgid "Bubble Chart"
314
  msgstr "Bubble Chart"
315
 
316
- #: source/class.wdtbrowsechartstable.php:253
317
  msgid "Donut Chart"
318
  msgstr "Krofna karta"
319
 
320
- #: source/class.wdtbrowsechartstable.php:256
321
  msgid "Gauge Chart"
322
  msgstr "Gauge Chart"
323
 
324
- #: source/class.wdtbrowsechartstable.php:259
325
  msgid "Scatter Chart"
326
  msgstr "Scatter Chart"
327
 
328
- #: source/class.wdtbrowsechartstable.php:262
329
  msgid "Candlestick Chart"
330
  msgstr "Lestvica s svečami"
331
 
332
- #: source/class.wdtbrowsechartstable.php:265
333
  msgid "Waterfall Chart"
334
  msgstr "Shema slapov"
335
 
336
- #: source/class.wdtbrowsechartstable.php:278
337
  msgid "Google"
338
  msgstr "Google"
339
 
340
- #: source/class.wdtbrowsechartstable.php:345
341
  #: source/class.wdtbrowsetable.php:298
342
  #: templates/admin/chart_wizard/steps/step3.inc.php:11
343
  #: templates/admin/chart_wizard/steps/step3.inc.php:32
344
  msgid "Select All"
345
  msgstr "Izberi vse"
346
 
347
- #: source/class.wdtbrowsechartstable.php:398
348
  msgid "No wpDataCharts in the system yet."
349
  msgstr "V sistemu še ni wpDataCharts."
350
 
@@ -1311,11 +1321,11 @@ msgstr ""
1311
  "Zdaj lahko kopirate kratko kodo tega grafikona in jo prilepite v katero koli "
1312
  "objavo ali stran WP. <br><br> Zdaj lahko končate to vadnico."
1313
 
1314
- #: source/class.wpdatachart.php:703
1315
  msgid "Only one column can be of type String"
1316
  msgstr "Samo en stolpec je lahko vrste String"
1317
 
1318
- #: source/class.wpdatachart.php:706
1319
  msgid "You are mixing data types (several date axes and several number)"
1320
  msgstr "Mešate podatkovne vrste (več datumskih osi in več številk)"
1321
 
@@ -1377,7 +1387,7 @@ msgstr ""
1377
  msgid "if you have some questions or problems with the plugin."
1378
  msgstr ""
1379
 
1380
- #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:499
1381
  msgid "wpDataTables Addons"
1382
  msgstr "wpDataTables Addons"
1383
 
@@ -1396,12 +1406,12 @@ msgstr ""
1396
  "wpDataTables in razvijalcev tretjih oseb, zato bodite pozorni."
1397
 
1398
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1399
- #: templates/admin/dashboard/dashboard.inc.php:570
1400
  msgid "Report Builder"
1401
  msgstr "Graditelj poročil"
1402
 
1403
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1404
- #: templates/admin/dashboard/dashboard.inc.php:574
1405
  msgid ""
1406
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1407
  "XLSX documents filled in with actual data from your database."
@@ -1429,7 +1439,7 @@ msgid "NEW"
1429
  msgstr "NOVO"
1430
 
1431
  #: templates/admin/addons/addons.inc.php:40
1432
- #: templates/admin/dashboard/dashboard.inc.php:517
1433
  msgid "Master Detail Tables for wpDataTables"
1434
  msgstr "Glavne podrobne tabele za wpDataTables"
1435
 
@@ -1454,7 +1464,7 @@ msgid "Learn more"
1454
  msgstr "Preberi več"
1455
 
1456
  #: templates/admin/addons/addons.inc.php:67
1457
- #: templates/admin/dashboard/dashboard.inc.php:544
1458
  msgid "Powerful Filters for wpDataTables"
1459
  msgstr "Zmogljivi filtri za wpDataTables"
1460
 
@@ -1469,12 +1479,12 @@ msgstr ""
1469
  "tabele, preden uporabnik določi iskalne vrednosti."
1470
 
1471
  #: templates/admin/addons/addons.inc.php:120
1472
- #: templates/admin/dashboard/dashboard.inc.php:597
1473
  msgid "Formidable Forms integration for wpDataTables"
1474
  msgstr "Zapletena oblika integracije za wpDataTables"
1475
 
1476
  #: templates/admin/addons/addons.inc.php:123
1477
- #: templates/admin/dashboard/dashboard.inc.php:601
1478
  msgid ""
1479
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1480
  "create wpDataTables from Formidable Forms entries data."
@@ -1483,12 +1493,12 @@ msgstr ""
1483
  "ustvarjanje wpDataTables iz podatkov vnosov v Formidable Forms."
1484
 
1485
  #: templates/admin/addons/addons.inc.php:143
1486
- #: templates/admin/dashboard/dashboard.inc.php:623
1487
  msgid "Gravity Forms integration for wpDataTables"
1488
  msgstr "Gravity Forms integracija za wpDataTables"
1489
 
1490
  #: templates/admin/addons/addons.inc.php:146
1491
- #: templates/admin/dashboard/dashboard.inc.php:627
1492
  msgid ""
1493
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1494
  "wpDataTables from Gravity Forms entries data."
@@ -1513,6 +1523,10 @@ msgstr "Podvojena tabela"
1513
  msgid "New chart title"
1514
  msgstr "Nov naslov grafikona"
1515
 
 
 
 
 
1516
  #: templates/admin/browse/table/browse.inc.php:25
1517
  msgid "Browse Tables"
1518
  msgstr "Prebrskaj tabele"
@@ -1969,7 +1983,7 @@ msgid "Axes"
1969
  msgstr "Osi"
1970
 
1971
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1972
- #: templates/admin/chart_wizard/steps/step4.inc.php:532
1973
  msgid "Tooltip"
1974
  msgstr "Namig"
1975
 
@@ -2000,7 +2014,7 @@ msgid "Curve type"
2000
  msgstr "Vrsta krivulje"
2001
 
2002
  #: templates/admin/chart_wizard/steps/step4.inc.php:49
2003
- #: templates/admin/chart_wizard/steps/step4.inc.php:336
2004
  msgid "Controls the curve of the lines"
2005
  msgstr "Nadzira krivuljo črt"
2006
 
@@ -2136,27 +2150,36 @@ msgstr "Ime pisave"
2136
  msgid "The default font face for all text in the chart."
2137
  msgstr "Privzeta pisava za celotno besedilo v grafikonu."
2138
 
2139
- #: templates/admin/chart_wizard/steps/step4.inc.php:334
 
 
 
 
 
 
 
 
 
2140
  msgid "Grid"
2141
  msgstr "Mreža"
2142
 
2143
- #: templates/admin/chart_wizard/steps/step4.inc.php:340
2144
  msgid "Do you want to show grid on the chart"
2145
  msgstr "Ali želite na grafikonu prikazati mrežo"
2146
 
2147
- #: templates/admin/chart_wizard/steps/step4.inc.php:345
2148
  msgid "Horizontal axis label"
2149
  msgstr "Oznaka vodoravne osi"
2150
 
2151
- #: templates/admin/chart_wizard/steps/step4.inc.php:347
2152
  msgid "Name of the horizontal axis."
2153
  msgstr "Ime vodoravne osi."
2154
 
2155
- #: templates/admin/chart_wizard/steps/step4.inc.php:362
2156
  msgid "Horizontal crosshair"
2157
  msgstr "Vodoravni križni trak"
2158
 
2159
- #: templates/admin/chart_wizard/steps/step4.inc.php:364
2160
  msgid ""
2161
  "Configure a horizontal crosshair that follows either the mouse pointer or "
2162
  "the hovered point lines"
@@ -2164,15 +2187,15 @@ msgstr ""
2164
  "Konfigurirajte vodoravno križnico, ki sledi bodisi kazalcu miške bodisi "
2165
  "ležečim črtam"
2166
 
2167
- #: templates/admin/chart_wizard/steps/step4.inc.php:368
2168
  msgid "Show x-Axis crosshair"
2169
  msgstr "Pokaži križno osi x-Axis"
2170
 
2171
- #: templates/admin/chart_wizard/steps/step4.inc.php:373
2172
  msgid "Horizontal axis direction"
2173
  msgstr "Vodoravna smer osi"
2174
 
2175
- #: templates/admin/chart_wizard/steps/step4.inc.php:375
2176
  msgid ""
2177
  "The direction in which the values along the horizontal axis grow. Specify -1 "
2178
  "to reverse the order of the values"
@@ -2180,19 +2203,19 @@ msgstr ""
2180
  "Smer, v kateri rastejo vrednosti vzdolž vodoravne osi. Določite -1, če "
2181
  "želite spremeniti vrstni red vrednosti"
2182
 
2183
- #: templates/admin/chart_wizard/steps/step4.inc.php:391
2184
  msgid "Vertical axis label"
2185
  msgstr "Nalepka z navpično osjo"
2186
 
2187
- #: templates/admin/chart_wizard/steps/step4.inc.php:393
2188
  msgid "Name of the vertical axis."
2189
  msgstr "Ime navpične osi."
2190
 
2191
- #: templates/admin/chart_wizard/steps/step4.inc.php:408
2192
  msgid "Vertical crosshair"
2193
  msgstr "Navpična prečka"
2194
 
2195
- #: templates/admin/chart_wizard/steps/step4.inc.php:410
2196
  msgid ""
2197
  "Configure a vertical crosshair that follows either the mouse pointer or the "
2198
  "hovered point lines"
@@ -2200,15 +2223,15 @@ msgstr ""
2200
  "Konfigurirajte navpično križanje, ki sledi bodisi kazalec miške bodisi črte "
2201
  "ležečih točk"
2202
 
2203
- #: templates/admin/chart_wizard/steps/step4.inc.php:414
2204
  msgid "Show y-Axis crosshair"
2205
  msgstr "Pokažite križnico y-Axis"
2206
 
2207
- #: templates/admin/chart_wizard/steps/step4.inc.php:419
2208
  msgid "Vertical axis direction"
2209
  msgstr "Navpična smer osi"
2210
 
2211
- #: templates/admin/chart_wizard/steps/step4.inc.php:421
2212
  msgid ""
2213
  "The direction in which the values along the vertical axis grow. Specify -1 "
2214
  "to reverse the order of the values"
@@ -2216,84 +2239,84 @@ msgstr ""
2216
  "Smer, v kateri rastejo vrednosti vzdolž navpične osi. Določite -1, če želite "
2217
  "spremeniti vrstni red vrednosti"
2218
 
2219
- #: templates/admin/chart_wizard/steps/step4.inc.php:438
2220
  msgid "Vertical axis min value"
2221
  msgstr "Minimalna vrednost navpične osi"
2222
 
2223
- #: templates/admin/chart_wizard/steps/step4.inc.php:440
2224
  msgid "The minimum value of the axis."
2225
  msgstr "Najmanjša vrednost osi."
2226
 
2227
- #: templates/admin/chart_wizard/steps/step4.inc.php:464
2228
  msgid "Vertical axis max value"
2229
  msgstr "Najvišja vrednost navpične osi"
2230
 
2231
- #: templates/admin/chart_wizard/steps/step4.inc.php:466
2232
  msgid "The maximum value of the axis."
2233
  msgstr "Najvišja vrednost osi."
2234
 
2235
- #: templates/admin/chart_wizard/steps/step4.inc.php:489
2236
  msgid "Invert"
2237
  msgstr "Invert"
2238
 
2239
- #: templates/admin/chart_wizard/steps/step4.inc.php:491
2240
  msgid ""
2241
  "Whether to invert the axes so that the x axis is vertical and y axis is "
2242
  "horizontal"
2243
  msgstr "Ali obrnite osi tako, da je os x navpična in y os vodoravna"
2244
 
2245
- #: templates/admin/chart_wizard/steps/step4.inc.php:495
2246
  msgid "Invert chart axes"
2247
  msgstr "Obrnjene osi grafikona"
2248
 
2249
- #: templates/admin/chart_wizard/steps/step4.inc.php:505
2250
  msgid "Chart title"
2251
  msgstr "Naslov grafikona"
2252
 
2253
- #: templates/admin/chart_wizard/steps/step4.inc.php:507
2254
  msgid "Do you want to show the chart title on the page"
2255
  msgstr "Ali želite na strani prikazati naslov grafikona"
2256
 
2257
- #: templates/admin/chart_wizard/steps/step4.inc.php:511
2258
  msgid "Show title"
2259
  msgstr "Pokaži naslov "
2260
 
2261
- #: templates/admin/chart_wizard/steps/step4.inc.php:516
2262
  msgid "Title floating"
2263
  msgstr "Naslov plavajoči"
2264
 
2265
- #: templates/admin/chart_wizard/steps/step4.inc.php:518
2266
  msgid ""
2267
  "When the title is floating, the plot area will not move to make space for it"
2268
  msgstr ""
2269
  "Ko naslov plava, se območje ploskve ne premakne, da bi bilo prostora za to"
2270
 
2271
- #: templates/admin/chart_wizard/steps/step4.inc.php:522
2272
  msgid "Enable floating"
2273
  msgstr "Omogoči plavajoče"
2274
 
2275
- #: templates/admin/chart_wizard/steps/step4.inc.php:534
2276
  msgid "Enable or disable the tooltip"
2277
  msgstr "Omogoči ali onemogoči namig"
2278
 
2279
- #: templates/admin/chart_wizard/steps/step4.inc.php:538
2280
  msgid "Show tooltip"
2281
  msgstr "Pokaži namig"
2282
 
2283
- #: templates/admin/chart_wizard/steps/step4.inc.php:549
2284
  msgid "Position"
2285
  msgstr "Pozicija"
2286
 
2287
- #: templates/admin/chart_wizard/steps/step4.inc.php:551
2288
  msgid "Position of the legend"
2289
  msgstr "Položaj legende"
2290
 
2291
- #: templates/admin/chart_wizard/steps/step4.inc.php:569
2292
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2293
  msgid "Vertical align"
2294
  msgstr "Vertical align"
2295
 
2296
- #: templates/admin/chart_wizard/steps/step4.inc.php:571
2297
  msgid "The vertical alignment of the legend box"
2298
  msgstr "Navpična poravnava polja legende"
2299
 
@@ -2745,177 +2768,209 @@ msgid "A minor update with a couple of improvements and bug fixes:"
2745
  msgstr ""
2746
 
2747
  #: templates/admin/dashboard/dashboard.inc.php:345
2748
- msgid ""
2749
- "<strong>Improvement:</strong> Added auto-save functionality after insert "
2750
- "media in Simple tables."
2751
  msgstr ""
2752
 
2753
  #: templates/admin/dashboard/dashboard.inc.php:346
2754
  msgid ""
2755
- "<strong>Improvement:</strong> Added translate functions on some strings."
 
2756
  msgstr ""
2757
 
2758
  #: templates/admin/dashboard/dashboard.inc.php:347
2759
  msgid ""
2760
- "<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin "
2761
- "area and filters for elementor widgets."
2762
  msgstr ""
2763
 
2764
  #: templates/admin/dashboard/dashboard.inc.php:348
2765
- msgid ""
2766
- "<strong>BugFix:</strong> Fixed issue with font in material skin and "
2767
- "background in graphite skin."
2768
  msgstr ""
2769
 
2770
  #: templates/admin/dashboard/dashboard.inc.php:349
2771
  msgid ""
2772
- "<strong>BugFix:</strong> Fixed issue with class name in Global font color "
2773
- "settings."
2774
  msgstr ""
2775
 
2776
  #: templates/admin/dashboard/dashboard.inc.php:350
2777
- msgid "Compatibility with WordPress 5.6.2 approved."
 
 
2778
  msgstr ""
2779
 
2780
  #: templates/admin/dashboard/dashboard.inc.php:351
 
 
 
 
 
 
 
 
 
 
2781
  msgid "Other small bug fixes and stability improvements."
2782
  msgstr ""
2783
 
2784
- #: templates/admin/dashboard/dashboard.inc.php:363
2785
  msgid "Go Premium!"
2786
  msgstr ""
2787
 
2788
- #: templates/admin/dashboard/dashboard.inc.php:369
2789
  msgid "View Comparison"
2790
  msgstr ""
2791
 
2792
- #: templates/admin/dashboard/dashboard.inc.php:377
2793
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2794
  msgid ""
2795
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2796
  "of the powerful features."
2797
  msgstr ""
2798
 
2799
- #: templates/admin/dashboard/dashboard.inc.php:381
2800
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
2801
  msgid "Create a table manually"
2802
  msgstr "Ročno ustvarite tabelo"
2803
 
2804
- #: templates/admin/dashboard/dashboard.inc.php:384
2805
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
2806
  msgid "Creating tables from Google Spreadsheet"
2807
  msgstr "Ustvarjanje tabel iz Google Spreadsheet-a"
2808
 
2809
- #: templates/admin/dashboard/dashboard.inc.php:387
2810
- msgid ""
2811
- "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2812
- "tables via Google Sheet API"
2813
  msgstr ""
2814
 
2815
- #: templates/admin/dashboard/dashboard.inc.php:390
2816
- msgid ""
2817
- "<span style=\"color: #ef8137;font-weight: bold;\">NEW!</span> Creating "
2818
- "tables from Private Google Spreadsheet"
2819
  msgstr ""
2820
 
2821
- #: templates/admin/dashboard/dashboard.inc.php:393
2822
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:318
2823
  msgid "Creating MySQL-based tables from database"
2824
  msgstr "Ustvarjanje tabel, ki temeljijo na MySQL, iz baze podatkov"
2825
 
2826
- #: templates/admin/dashboard/dashboard.inc.php:396
2827
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
2828
  msgid "Creating MySQL-based tables from Wordpress post types"
2829
  msgstr "Ustvarjanje tabel, ki temeljijo na MySQL, iz vrst objav Wordpress"
2830
 
2831
- #: templates/admin/dashboard/dashboard.inc.php:399
2832
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
 
 
 
 
 
 
 
 
 
2833
  #: templates/edit_table.inc.php:329
2834
  msgid "Advanced filtering"
2835
  msgstr "Napredno filtriranje"
2836
 
2837
- #: templates/admin/dashboard/dashboard.inc.php:402
2838
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
 
 
 
 
 
 
 
 
 
 
2839
  #: templates/admin/table-settings/table_settings_block.inc.php:153
2840
  #: templates/edit_table.inc.php:282
2841
  msgid "Server-side processing"
2842
  msgstr "Obdelava na strani strežnika"
2843
 
2844
- #: templates/admin/dashboard/dashboard.inc.php:405
2845
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2846
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2847
  msgstr ""
2848
 
2849
- #: templates/admin/dashboard/dashboard.inc.php:408
2850
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2851
  msgid "Front-end table editing"
2852
  msgstr "Urejanje mize v sprednjem delu"
2853
 
2854
- #: templates/admin/dashboard/dashboard.inc.php:411
2855
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2856
  msgid "Excel-like editing"
2857
  msgstr "Urejanje v Excelu"
2858
 
2859
- #: templates/admin/dashboard/dashboard.inc.php:414
2860
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2861
  msgid "Creating charts with Highcharts"
2862
  msgstr "Ustvarjanje grafikonov z Highchartsi"
2863
 
2864
- #: templates/admin/dashboard/dashboard.inc.php:417
2865
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2866
  msgid "Creating charts with Chart.js"
2867
  msgstr "Ustvarjanje grafikonov s Chart.js"
2868
 
2869
- #: templates/admin/dashboard/dashboard.inc.php:420
2870
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
 
 
 
 
 
 
 
 
 
 
2871
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2872
  #: templates/edit_table.inc.php:301
2873
  msgid "Responsive"
2874
  msgstr "Odziven"
2875
 
2876
- #: templates/admin/dashboard/dashboard.inc.php:423
2877
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2878
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2879
  #: templates/edit_table.inc.php:750
2880
  msgid "Conditional formatting"
2881
  msgstr "Pogojno oblikovanje"
2882
 
2883
- #: templates/admin/dashboard/dashboard.inc.php:426
2884
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2885
  msgid "Calculating Tools"
2886
  msgstr "Orodja za izračun"
2887
 
2888
- #: templates/admin/dashboard/dashboard.inc.php:429
2889
  msgid "Formula columns"
2890
  msgstr ""
2891
 
2892
- #: templates/admin/dashboard/dashboard.inc.php:432
2893
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2894
  #: templates/admin/table-settings/table_settings_block.inc.php:80
2895
  msgid "Placeholders"
2896
  msgstr "Imetniki mest"
2897
 
2898
- #: templates/admin/dashboard/dashboard.inc.php:435
2899
  msgid "Premium support"
2900
  msgstr ""
2901
 
2902
- #: templates/admin/dashboard/dashboard.inc.php:439
2903
  msgid "Get Premium Today"
2904
  msgstr ""
2905
 
2906
- #: templates/admin/dashboard/dashboard.inc.php:446
2907
  msgid "News Blog"
2908
  msgstr "Blog novic"
2909
 
2910
- #: templates/admin/dashboard/dashboard.inc.php:451
2911
  msgid "Checkout useful articles from wpdatatables.com"
2912
  msgstr "Oglejte si uporabne članke s spletnega mesta wpdatatables.com"
2913
 
2914
- #: templates/admin/dashboard/dashboard.inc.php:474
2915
- msgid "Please install and enable PHP extensions xml and dom on your server."
2916
- msgstr ""
2917
-
2918
- #: templates/admin/dashboard/dashboard.inc.php:482
2919
  msgid ""
2920
  "Never miss notifications about new cool features, promotions,\n"
2921
  " giveaways or freebies – subscribe to our "
@@ -2928,18 +2983,18 @@ msgstr ""
2928
  " približno 1 sporočilo na mesec in nikoli "
2929
  "neželeno!"
2930
 
2931
- #: templates/admin/dashboard/dashboard.inc.php:500
2932
  msgid "Premium "
2933
  msgstr ""
2934
 
2935
- #: templates/admin/dashboard/dashboard.inc.php:503
2936
  msgid ""
2937
  "While wpDataTables itself provides quite a large amount of features and "
2938
  "unlimited customisation, flexibility, you can achieve even more with our "
2939
  "premium addons.(requires wpDataTables Premium version)"
2940
  msgstr ""
2941
 
2942
- #: templates/admin/dashboard/dashboard.inc.php:521
2943
  msgid ""
2944
  "A wpDataTables addon which allows showing additional details for a specific "
2945
  "row in a popup or a separate page or post."
@@ -2947,16 +3002,16 @@ msgstr ""
2947
  "Dodatek wpDataTables, ki omogoča prikazovanje dodatnih podrobnosti za "
2948
  "določeno vrstico v pojavnem oknu ali na ločeni strani ali objavi."
2949
 
2950
- #: templates/admin/dashboard/dashboard.inc.php:527
2951
- #: templates/admin/dashboard/dashboard.inc.php:554
2952
- #: templates/admin/dashboard/dashboard.inc.php:580
2953
- #: templates/admin/dashboard/dashboard.inc.php:607
2954
- #: templates/admin/dashboard/dashboard.inc.php:633
2955
- #: templates/admin/dashboard/dashboard.inc.php:666
2956
  msgid "Learn More"
2957
  msgstr "Preberi več"
2958
 
2959
- #: templates/admin/dashboard/dashboard.inc.php:548
2960
  msgid ""
2961
  "An add-on for wpDataTables that provides powerful filtering features: "
2962
  "cascade filtering, applying filters on button click, hide table before "
@@ -2966,15 +3021,15 @@ msgstr ""
2966
  "filtriranje, nanašanje filtrov na klik gumba, skrivanje tabele pred "
2967
  "filtriranjem."
2968
 
2969
- #: templates/admin/dashboard/dashboard.inc.php:644
2970
  msgid "Need free booking plugin?"
2971
  msgstr ""
2972
 
2973
- #: templates/admin/dashboard/dashboard.inc.php:653
2974
  msgid "Appointments and Events WordPress Booking Plugin"
2975
  msgstr "Sestanki in dogodki WordPress Vtičnik za rezervacijo"
2976
 
2977
- #: templates/admin/dashboard/dashboard.inc.php:656
2978
  msgid ""
2979
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
2980
  "set up a fully-featured automated booking system on your WordPress website "
@@ -2985,26 +3040,26 @@ msgid ""
2985
  "each month."
2986
  msgstr ""
2987
 
2988
- #: templates/admin/dashboard/dashboard.inc.php:659
2989
  msgid "Rating: 4.3 - ‎97 reviews"
2990
  msgstr ""
2991
 
2992
- #: templates/admin/dashboard/dashboard.inc.php:662
2993
  msgid "Free Download"
2994
  msgstr ""
2995
 
2996
- #: templates/admin/dashboard/dashboard.inc.php:677
2997
  #: templates/admin/getting-started/getting_started.inc.php:184
2998
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:505
2999
  #: templates/admin/support/support.inc.php:78
3000
  #: templates/admin/system-info/system_info.inc.php:509
3001
  #: templates/admin/welcome_page/welcome_page.inc.php:358
3002
  msgid "Made by"
3003
  msgstr "Narejeno v"
3004
 
3005
- #: templates/admin/dashboard/dashboard.inc.php:685
3006
  #: templates/admin/getting-started/getting_started.inc.php:192
3007
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:513
3008
  #: templates/admin/support/support.inc.php:45
3009
  #: templates/admin/support/support.inc.php:86
3010
  #: templates/admin/system-info/system_info.inc.php:517
@@ -3013,9 +3068,9 @@ msgstr "Narejeno v"
3013
  msgid "Documentation"
3014
  msgstr "Dokumentacija"
3015
 
3016
- #: templates/admin/dashboard/dashboard.inc.php:689
3017
  #: templates/admin/getting-started/getting_started.inc.php:196
3018
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:517
3019
  #: templates/admin/support/support.inc.php:24
3020
  #: templates/admin/support/support.inc.php:90
3021
  #: templates/admin/system-info/system_info.inc.php:521
@@ -3150,7 +3205,7 @@ msgid "Lite vs Premium comparison"
3150
  msgstr "Primerjava Lite proti Premium"
3151
 
3152
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3153
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:497
3154
  msgid "Go Premium Now"
3155
  msgstr ""
3156
 
@@ -3163,7 +3218,7 @@ msgid "Lite"
3163
  msgstr "Lite"
3164
 
3165
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3166
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:484
3167
  msgid "Premium"
3168
  msgstr "Premium"
3169
 
@@ -3193,9 +3248,9 @@ msgstr ""
3193
 
3194
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3195
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3196
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:256
3197
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:293
3198
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:306
3199
  #: templates/admin/table-settings/table_settings_block.inc.php:84
3200
  msgid "NEW!"
3201
  msgstr ""
@@ -3221,6 +3276,10 @@ msgid "Sorting"
3221
  msgstr "Razvrščanje"
3222
 
3223
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
 
 
 
 
3224
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3225
  #: templates/admin/table-settings/table_settings_block.inc.php:504
3226
  #: templates/admin/table-settings/table_settings_block.inc.php:512
@@ -3228,58 +3287,54 @@ msgstr "Razvrščanje"
3228
  msgid "Pagination"
3229
  msgstr "Paginiranje (zaznamovanje strani)"
3230
 
3231
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3232
  msgid ""
3233
  "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3234
  "PDF, and Copy and Print options)</span>"
3235
  msgstr ""
3236
 
3237
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3238
  msgid "Column Customization"
3239
  msgstr "Prilagajanje stolpcev"
3240
 
3241
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3242
  msgid "Global Table Customization"
3243
  msgstr "Prilagoditev globalne tabele"
3244
 
3245
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
 
 
 
 
3246
  msgid "Creating Google charts"
3247
  msgstr "Ustvarjanje Google lestvic"
3248
 
3249
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3250
  msgid "Customize charts"
3251
  msgstr ""
3252
 
3253
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:244
3254
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:478
3255
  msgid "Limited"
3256
  msgstr "Omejeno"
3257
 
3258
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:246
3259
  msgid "Some options are not available."
3260
  msgstr ""
3261
 
3262
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:255
3263
- msgid "Table Customization"
3264
- msgstr ""
3265
-
3266
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
3267
- msgid "Creating tables via Google Sheet API"
3268
- msgstr ""
3269
-
3270
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:305
3271
- msgid "Creating tables from Private Google Spreadsheet"
3272
  msgstr ""
3273
 
3274
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
3275
  msgid "Support"
3276
  msgstr "Podpora"
3277
 
3278
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:480
3279
  msgid "Response time is slow and can be up to 5 business days."
3280
  msgstr ""
3281
 
3282
- #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:491
3283
  msgid ""
3284
  "* Please note that wpDataTables add-ons are not included in premium version "
3285
  "of plugin."
@@ -8123,12 +8178,6 @@ msgstr ""
8123
  #~ msgid "The default font color for all text in the chart."
8124
  #~ msgstr "Privzeta barva pisave za vse besedilo v grafikonu."
8125
 
8126
- #~ msgid "3D"
8127
- #~ msgstr "3D"
8128
-
8129
- #~ msgid "Check for 3D pie chart"
8130
- #~ msgstr "Preverite, ali ima 3D tortni grafikon"
8131
-
8132
  #~ msgid "Grid line style"
8133
  #~ msgstr "Splet linije"
8134
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpdatatables\n"
4
+ "POT-Creation-Date: 2021-03-19 13:04+0100\n"
5
+ "PO-Revision-Date: 2021-03-19 13:04+0100\n"
6
  "Last-Translator: Bostjan Laba <bostjan@neolink.si>\n"
7
  "Language-Team: wpdatatables <cjbug@yandex.ru>\n"
8
  "Language: sl_SI\n"
102
  msgid "Welcome page"
103
  msgstr "Naslovna stran"
104
 
105
+ #: controllers/wdt_admin.php:116 controllers/wdt_admin.php:117
106
+ #: controllers/wdt_functions.php:826
 
 
 
107
  msgid "Go Premium"
108
  msgstr ""
109
 
129
  msgid "Provided column is not Integer or Float column type"
130
  msgstr "Vneseni stolpec ni tipa Integer ali Float"
131
 
132
+ #: controllers/wdt_functions.php:821
133
+ msgid "Go to Settings"
134
+ msgstr ""
135
+
136
+ #: controllers/wdt_functions.php:850
137
+ #, php-format
138
+ msgid "By %s"
139
+ msgstr ""
140
+
141
+ #: controllers/wdt_functions.php:854
142
+ msgid "Docs"
143
+ msgstr ""
144
+
145
+ #: controllers/wdt_functions.php:882
146
  msgid "Choose a table"
147
  msgstr "Izberite tabelo"
148
 
149
+ #: controllers/wdt_functions.php:914
150
  msgid "Interactive Responsive Table"
151
  msgstr "Interaktivna odzivna tabela"
152
 
153
+ #: controllers/wdt_functions.php:915 controllers/wdt_functions.php:976
154
  msgid "Content"
155
  msgstr "Vsebina"
156
 
157
+ #: controllers/wdt_functions.php:921
158
  msgid "wpDataTable"
159
  msgstr "wpDataTable"
160
 
161
+ #: controllers/wdt_functions.php:925
162
  msgid "Choose the wpDataTable from a dropdown"
163
  msgstr "V spustnem meniju izberite wpDataTable"
164
 
165
+ #: controllers/wdt_functions.php:930
166
  msgid "Table view"
167
  msgstr "Pogled tabele"
168
 
169
+ #: controllers/wdt_functions.php:934
170
  msgid "Regular wpDataTable"
171
  msgstr "Redni wpDataTable"
172
 
173
+ #: controllers/wdt_functions.php:936
174
  msgid "Excel-like table"
175
  msgstr "Excelu podobna miza"
176
 
177
+ #: controllers/wdt_functions.php:942
178
  msgid "Variable placeholder #1"
179
  msgstr "Spremenljivo rezervirano mesto №1"
180
 
181
+ #: controllers/wdt_functions.php:945 controllers/wdt_functions.php:953
182
+ #: controllers/wdt_functions.php:961
183
  msgid "Variables"
184
  msgstr "Spremenljivke"
185
 
186
+ #: controllers/wdt_functions.php:946
187
  msgid "If you used the VAR1 placeholder you can assign a value to it here"
188
  msgstr "Če ste uporabili držalo mesta VAR1, mu lahko tukaj dodelite vrednost"
189
 
190
+ #: controllers/wdt_functions.php:950
191
  msgid "Variable placeholder #2"
192
  msgstr "Spremenljivo rezervirano mesto №2"
193
 
194
+ #: controllers/wdt_functions.php:954
195
  msgid "If you used the VAR2 placeholder you can assign a value to it here"
196
  msgstr "Če ste uporabili držalo mesta VAR2, mu lahko tukaj dodelite vrednost"
197
 
198
+ #: controllers/wdt_functions.php:958
199
  msgid "Variable placeholder #3"
200
  msgstr "Spremenljivo rezervirano mesto # 3"
201
 
202
+ #: controllers/wdt_functions.php:962
203
  msgid "If you used the VAR3 placeholder you can assign a value to it here"
204
  msgstr "Če ste uporabili držalo mesta VAR3, mu lahko tukaj dodelite vrednost"
205
 
206
+ #: controllers/wdt_functions.php:975
207
  msgid "Google or Highcharts chart based on a wpDataTable"
208
  msgstr "Google ali Highcharts grafikon temelji na wpDataTable"
209
 
210
+ #: controllers/wdt_functions.php:982
211
  msgid "wpDataChart"
212
  msgstr "wpDataChart"
213
 
214
+ #: controllers/wdt_functions.php:986
215
  msgid "Choose one of wpDataCharts from the list"
216
  msgstr "Izberite enega od wpDataCharts s seznama"
217
 
254
  msgid "Shortcode"
255
  msgstr ""
256
 
257
+ #: source/class.wdtbrowsechartstable.php:153
258
  #: source/class.wdtbrowsetable.php:168
259
  #: templates/admin/chart_wizard/steps/step5.inc.php:12
260
  #: templates/admin/dashboard/dashboard.inc.php:153
262
  msgid "Click to copy shortcode"
263
  msgstr "Kliknite, če želite kopirati kratko kodo"
264
 
265
+ #: source/class.wdtbrowsechartstable.php:162
266
  #: source/class.wdtbrowsetable.php:179
267
  #: templates/admin/browse/chart/duplicate_chart_modal.inc.php:47
268
  #: templates/admin/browse/table/duplicate_modal.inc.php:64
269
  msgid "Duplicate"
270
  msgstr "Podvoji"
271
 
272
+ #: source/class.wdtbrowsechartstable.php:168
273
  #: source/class.wdtbrowsetable.php:185
274
  #: templates/admin/dashboard/dashboard.inc.php:261
275
  msgid "Configure"
276
  msgstr "Nastavi"
277
 
278
+ #: source/class.wdtbrowsechartstable.php:174
279
  #: source/class.wdtbrowsetable.php:192 source/class.wdttools.php:222
280
  #: templates/admin/browse/bulk_actions.inc.php:14
281
  #: templates/common/delete_modal.inc.php:42 templates/edit_table.inc.php:15
282
  msgid "Delete"
283
  msgstr "Izbriši"
284
 
285
+ #: source/class.wdtbrowsechartstable.php:229
286
+ #: source/class.wdtbrowsechartstable.php:238
287
  msgid "Column Chart"
288
  msgstr "Stolpna lestvica"
289
 
290
+ #: source/class.wdtbrowsechartstable.php:232
291
+ #: source/class.wdtbrowsechartstable.php:256
292
  msgid "Line Chart"
293
  msgstr "Vrstni grafikon"
294
 
295
+ #: source/class.wdtbrowsechartstable.php:235
296
+ #: source/class.wdtbrowsechartstable.php:259
297
  msgid "Pie Chart"
298
  msgstr "Tortni diagram"
299
 
300
+ #: source/class.wdtbrowsechartstable.php:241
301
  #: templates/admin/chart_wizard/steps/charts_pick/google_charts.inc.php:73
302
  #: templates/chart_wizard.inc.php:91
303
  msgid "Histogram"
304
  msgstr "Histogram"
305
 
306
+ #: source/class.wdtbrowsechartstable.php:244
307
  msgid "Bar Chart"
308
  msgstr "Stolpični diagram"
309
 
310
+ #: source/class.wdtbrowsechartstable.php:247
311
  msgid "Stacked Bar Chart"
312
  msgstr "Zloženi črtni grafikon"
313
 
314
+ #: source/class.wdtbrowsechartstable.php:250
315
  msgid "Area Chart"
316
  msgstr "Območni grafikon"
317
 
318
+ #: source/class.wdtbrowsechartstable.php:253
319
  msgid "Stepped Area Chart"
320
  msgstr "Shema območja korakov"
321
 
322
+ #: source/class.wdtbrowsechartstable.php:262
323
  msgid "Bubble Chart"
324
  msgstr "Bubble Chart"
325
 
326
+ #: source/class.wdtbrowsechartstable.php:265
327
  msgid "Donut Chart"
328
  msgstr "Krofna karta"
329
 
330
+ #: source/class.wdtbrowsechartstable.php:268
331
  msgid "Gauge Chart"
332
  msgstr "Gauge Chart"
333
 
334
+ #: source/class.wdtbrowsechartstable.php:271
335
  msgid "Scatter Chart"
336
  msgstr "Scatter Chart"
337
 
338
+ #: source/class.wdtbrowsechartstable.php:274
339
  msgid "Candlestick Chart"
340
  msgstr "Lestvica s svečami"
341
 
342
+ #: source/class.wdtbrowsechartstable.php:277
343
  msgid "Waterfall Chart"
344
  msgstr "Shema slapov"
345
 
346
+ #: source/class.wdtbrowsechartstable.php:290
347
  msgid "Google"
348
  msgstr "Google"
349
 
350
+ #: source/class.wdtbrowsechartstable.php:357
351
  #: source/class.wdtbrowsetable.php:298
352
  #: templates/admin/chart_wizard/steps/step3.inc.php:11
353
  #: templates/admin/chart_wizard/steps/step3.inc.php:32
354
  msgid "Select All"
355
  msgstr "Izberi vse"
356
 
357
+ #: source/class.wdtbrowsechartstable.php:410
358
  msgid "No wpDataCharts in the system yet."
359
  msgstr "V sistemu še ni wpDataCharts."
360
 
1321
  "Zdaj lahko kopirate kratko kodo tega grafikona in jo prilepite v katero koli "
1322
  "objavo ali stran WP. <br><br> Zdaj lahko končate to vadnico."
1323
 
1324
+ #: source/class.wpdatachart.php:718
1325
  msgid "Only one column can be of type String"
1326
  msgstr "Samo en stolpec je lahko vrste String"
1327
 
1328
+ #: source/class.wpdatachart.php:721
1329
  msgid "You are mixing data types (several date axes and several number)"
1330
  msgstr "Mešate podatkovne vrste (več datumskih osi in več številk)"
1331
 
1387
  msgid "if you have some questions or problems with the plugin."
1388
  msgstr ""
1389
 
1390
+ #: templates/addons.inc.php:10 templates/admin/dashboard/dashboard.inc.php:521
1391
  msgid "wpDataTables Addons"
1392
  msgstr "wpDataTables Addons"
1393
 
1406
  "wpDataTables in razvijalcev tretjih oseb, zato bodite pozorni."
1407
 
1408
  #: templates/addons.inc.php:19 templates/admin/addons/addons.inc.php:90
1409
+ #: templates/admin/dashboard/dashboard.inc.php:592
1410
  msgid "Report Builder"
1411
  msgstr "Graditelj poročil"
1412
 
1413
  #: templates/addons.inc.php:23 templates/admin/addons/addons.inc.php:93
1414
+ #: templates/admin/dashboard/dashboard.inc.php:596
1415
  msgid ""
1416
  "A unique tool that allows you to generate almost any Word DOCX and Excel "
1417
  "XLSX documents filled in with actual data from your database."
1439
  msgstr "NOVO"
1440
 
1441
  #: templates/admin/addons/addons.inc.php:40
1442
+ #: templates/admin/dashboard/dashboard.inc.php:539
1443
  msgid "Master Detail Tables for wpDataTables"
1444
  msgstr "Glavne podrobne tabele za wpDataTables"
1445
 
1464
  msgstr "Preberi več"
1465
 
1466
  #: templates/admin/addons/addons.inc.php:67
1467
+ #: templates/admin/dashboard/dashboard.inc.php:566
1468
  msgid "Powerful Filters for wpDataTables"
1469
  msgstr "Zmogljivi filtri za wpDataTables"
1470
 
1479
  "tabele, preden uporabnik določi iskalne vrednosti."
1480
 
1481
  #: templates/admin/addons/addons.inc.php:120
1482
+ #: templates/admin/dashboard/dashboard.inc.php:619
1483
  msgid "Formidable Forms integration for wpDataTables"
1484
  msgstr "Zapletena oblika integracije za wpDataTables"
1485
 
1486
  #: templates/admin/addons/addons.inc.php:123
1487
+ #: templates/admin/dashboard/dashboard.inc.php:623
1488
  msgid ""
1489
  "Tool that adds \"Formidable Form\" as a new table type and allows you to "
1490
  "create wpDataTables from Formidable Forms entries data."
1493
  "ustvarjanje wpDataTables iz podatkov vnosov v Formidable Forms."
1494
 
1495
  #: templates/admin/addons/addons.inc.php:143
1496
+ #: templates/admin/dashboard/dashboard.inc.php:645
1497
  msgid "Gravity Forms integration for wpDataTables"
1498
  msgstr "Gravity Forms integracija za wpDataTables"
1499
 
1500
  #: templates/admin/addons/addons.inc.php:146
1501
+ #: templates/admin/dashboard/dashboard.inc.php:649
1502
  msgid ""
1503
  "Tool that adds \"Gravity Form\" as a new table type and allows you to create "
1504
  "wpDataTables from Gravity Forms entries data."
1523
  msgid "New chart title"
1524
  msgstr "Nov naslov grafikona"
1525
 
1526
+ #: templates/admin/browse/search_box.inc.php:7
1527
+ msgid "Search for items..."
1528
+ msgstr ""
1529
+
1530
  #: templates/admin/browse/table/browse.inc.php:25
1531
  msgid "Browse Tables"
1532
  msgstr "Prebrskaj tabele"
1983
  msgstr "Osi"
1984
 
1985
  #: templates/admin/chart_wizard/steps/step4.inc.php:19
1986
+ #: templates/admin/chart_wizard/steps/step4.inc.php:543
1987
  msgid "Tooltip"
1988
  msgstr "Namig"
1989
 
2014
  msgstr "Vrsta krivulje"
2015
 
2016
  #: templates/admin/chart_wizard/steps/step4.inc.php:49
2017
+ #: templates/admin/chart_wizard/steps/step4.inc.php:347
2018
  msgid "Controls the curve of the lines"
2019
  msgstr "Nadzira krivuljo črt"
2020
 
2150
  msgid "The default font face for all text in the chart."
2151
  msgstr "Privzeta pisava za celotno besedilo v grafikonu."
2152
 
2153
+ #: templates/admin/chart_wizard/steps/step4.inc.php:330
2154
+ #: templates/admin/chart_wizard/steps/step4.inc.php:336
2155
+ msgid "3D"
2156
+ msgstr "3D"
2157
+
2158
+ #: templates/admin/chart_wizard/steps/step4.inc.php:332
2159
+ msgid "Check for 3D pie chart"
2160
+ msgstr "Preverite, ali ima 3D tortni grafikon"
2161
+
2162
+ #: templates/admin/chart_wizard/steps/step4.inc.php:345
2163
  msgid "Grid"
2164
  msgstr "Mreža"
2165
 
2166
+ #: templates/admin/chart_wizard/steps/step4.inc.php:351
2167
  msgid "Do you want to show grid on the chart"
2168
  msgstr "Ali želite na grafikonu prikazati mrežo"
2169
 
2170
+ #: templates/admin/chart_wizard/steps/step4.inc.php:356
2171
  msgid "Horizontal axis label"
2172
  msgstr "Oznaka vodoravne osi"
2173
 
2174
+ #: templates/admin/chart_wizard/steps/step4.inc.php:358
2175
  msgid "Name of the horizontal axis."
2176
  msgstr "Ime vodoravne osi."
2177
 
2178
+ #: templates/admin/chart_wizard/steps/step4.inc.php:373
2179
  msgid "Horizontal crosshair"
2180
  msgstr "Vodoravni križni trak"
2181
 
2182
+ #: templates/admin/chart_wizard/steps/step4.inc.php:375
2183
  msgid ""
2184
  "Configure a horizontal crosshair that follows either the mouse pointer or "
2185
  "the hovered point lines"
2187
  "Konfigurirajte vodoravno križnico, ki sledi bodisi kazalcu miške bodisi "
2188
  "ležečim črtam"
2189
 
2190
+ #: templates/admin/chart_wizard/steps/step4.inc.php:379
2191
  msgid "Show x-Axis crosshair"
2192
  msgstr "Pokaži križno osi x-Axis"
2193
 
2194
+ #: templates/admin/chart_wizard/steps/step4.inc.php:384
2195
  msgid "Horizontal axis direction"
2196
  msgstr "Vodoravna smer osi"
2197
 
2198
+ #: templates/admin/chart_wizard/steps/step4.inc.php:386
2199
  msgid ""
2200
  "The direction in which the values along the horizontal axis grow. Specify -1 "
2201
  "to reverse the order of the values"
2203
  "Smer, v kateri rastejo vrednosti vzdolž vodoravne osi. Določite -1, če "
2204
  "želite spremeniti vrstni red vrednosti"
2205
 
2206
+ #: templates/admin/chart_wizard/steps/step4.inc.php:402
2207
  msgid "Vertical axis label"
2208
  msgstr "Nalepka z navpično osjo"
2209
 
2210
+ #: templates/admin/chart_wizard/steps/step4.inc.php:404
2211
  msgid "Name of the vertical axis."
2212
  msgstr "Ime navpične osi."
2213
 
2214
+ #: templates/admin/chart_wizard/steps/step4.inc.php:419
2215
  msgid "Vertical crosshair"
2216
  msgstr "Navpična prečka"
2217
 
2218
+ #: templates/admin/chart_wizard/steps/step4.inc.php:421
2219
  msgid ""
2220
  "Configure a vertical crosshair that follows either the mouse pointer or the "
2221
  "hovered point lines"
2223
  "Konfigurirajte navpično križanje, ki sledi bodisi kazalec miške bodisi črte "
2224
  "ležečih točk"
2225
 
2226
+ #: templates/admin/chart_wizard/steps/step4.inc.php:425
2227
  msgid "Show y-Axis crosshair"
2228
  msgstr "Pokažite križnico y-Axis"
2229
 
2230
+ #: templates/admin/chart_wizard/steps/step4.inc.php:430
2231
  msgid "Vertical axis direction"
2232
  msgstr "Navpična smer osi"
2233
 
2234
+ #: templates/admin/chart_wizard/steps/step4.inc.php:432
2235
  msgid ""
2236
  "The direction in which the values along the vertical axis grow. Specify -1 "
2237
  "to reverse the order of the values"
2239
  "Smer, v kateri rastejo vrednosti vzdolž navpične osi. Določite -1, če želite "
2240
  "spremeniti vrstni red vrednosti"
2241
 
2242
+ #: templates/admin/chart_wizard/steps/step4.inc.php:449
2243
  msgid "Vertical axis min value"
2244
  msgstr "Minimalna vrednost navpične osi"
2245
 
2246
+ #: templates/admin/chart_wizard/steps/step4.inc.php:451
2247
  msgid "The minimum value of the axis."
2248
  msgstr "Najmanjša vrednost osi."
2249
 
2250
+ #: templates/admin/chart_wizard/steps/step4.inc.php:475
2251
  msgid "Vertical axis max value"
2252
  msgstr "Najvišja vrednost navpične osi"
2253
 
2254
+ #: templates/admin/chart_wizard/steps/step4.inc.php:477
2255
  msgid "The maximum value of the axis."
2256
  msgstr "Najvišja vrednost osi."
2257
 
2258
+ #: templates/admin/chart_wizard/steps/step4.inc.php:500
2259
  msgid "Invert"
2260
  msgstr "Invert"
2261
 
2262
+ #: templates/admin/chart_wizard/steps/step4.inc.php:502
2263
  msgid ""
2264
  "Whether to invert the axes so that the x axis is vertical and y axis is "
2265
  "horizontal"
2266
  msgstr "Ali obrnite osi tako, da je os x navpična in y os vodoravna"
2267
 
2268
+ #: templates/admin/chart_wizard/steps/step4.inc.php:506
2269
  msgid "Invert chart axes"
2270
  msgstr "Obrnjene osi grafikona"
2271
 
2272
+ #: templates/admin/chart_wizard/steps/step4.inc.php:516
2273
  msgid "Chart title"
2274
  msgstr "Naslov grafikona"
2275
 
2276
+ #: templates/admin/chart_wizard/steps/step4.inc.php:518
2277
  msgid "Do you want to show the chart title on the page"
2278
  msgstr "Ali želite na strani prikazati naslov grafikona"
2279
 
2280
+ #: templates/admin/chart_wizard/steps/step4.inc.php:522
2281
  msgid "Show title"
2282
  msgstr "Pokaži naslov "
2283
 
2284
+ #: templates/admin/chart_wizard/steps/step4.inc.php:527
2285
  msgid "Title floating"
2286
  msgstr "Naslov plavajoči"
2287
 
2288
+ #: templates/admin/chart_wizard/steps/step4.inc.php:529
2289
  msgid ""
2290
  "When the title is floating, the plot area will not move to make space for it"
2291
  msgstr ""
2292
  "Ko naslov plava, se območje ploskve ne premakne, da bi bilo prostora za to"
2293
 
2294
+ #: templates/admin/chart_wizard/steps/step4.inc.php:533
2295
  msgid "Enable floating"
2296
  msgstr "Omogoči plavajoče"
2297
 
2298
+ #: templates/admin/chart_wizard/steps/step4.inc.php:545
2299
  msgid "Enable or disable the tooltip"
2300
  msgstr "Omogoči ali onemogoči namig"
2301
 
2302
+ #: templates/admin/chart_wizard/steps/step4.inc.php:549
2303
  msgid "Show tooltip"
2304
  msgstr "Pokaži namig"
2305
 
2306
+ #: templates/admin/chart_wizard/steps/step4.inc.php:560
2307
  msgid "Position"
2308
  msgstr "Pozicija"
2309
 
2310
+ #: templates/admin/chart_wizard/steps/step4.inc.php:562
2311
  msgid "Position of the legend"
2312
  msgstr "Položaj legende"
2313
 
2314
+ #: templates/admin/chart_wizard/steps/step4.inc.php:580
2315
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:219
2316
  msgid "Vertical align"
2317
  msgstr "Vertical align"
2318
 
2319
+ #: templates/admin/chart_wizard/steps/step4.inc.php:582
2320
  msgid "The vertical alignment of the legend box"
2321
  msgstr "Navpična poravnava polja legende"
2322
 
2768
  msgstr ""
2769
 
2770
  #: templates/admin/dashboard/dashboard.inc.php:345
2771
+ msgid "<strong>Feature:</strong> Add new option for creating 3D pie chart."
 
 
2772
  msgstr ""
2773
 
2774
  #: templates/admin/dashboard/dashboard.inc.php:346
2775
  msgid ""
2776
+ "<strong>Feature:</strong> Search for tables and charts using ID on browse "
2777
+ "pages."
2778
  msgstr ""
2779
 
2780
  #: templates/admin/dashboard/dashboard.inc.php:347
2781
  msgid ""
2782
+ "<strong>Improvement:</strong> Added auto-save functionality after insert "
2783
+ "media in Simple tables."
2784
  msgstr ""
2785
 
2786
  #: templates/admin/dashboard/dashboard.inc.php:348
2787
+ msgid "<strong>Improvement:</strong> Added German translation"
 
 
2788
  msgstr ""
2789
 
2790
  #: templates/admin/dashboard/dashboard.inc.php:349
2791
  msgid ""
2792
+ "<strong>Bugfix:</strong> Fixed issue with Fatal errors if allow_url_fopen is "
2793
+ "turned off on server."
2794
  msgstr ""
2795
 
2796
  #: templates/admin/dashboard/dashboard.inc.php:350
2797
+ msgid ""
2798
+ "<strong>BugFix:</strong> Fixed issue with loading simple table preview after "
2799
+ "clicking on back button in browser from some pages."
2800
  msgstr ""
2801
 
2802
  #: templates/admin/dashboard/dashboard.inc.php:351
2803
+ msgid ""
2804
+ "<strong>BugFix:</strong> Fixed issue with inserting “px” in column width "
2805
+ "option."
2806
+ msgstr ""
2807
+
2808
+ #: templates/admin/dashboard/dashboard.inc.php:352
2809
+ msgid "Compatibility with WordPress 5.7 approved."
2810
+ msgstr ""
2811
+
2812
+ #: templates/admin/dashboard/dashboard.inc.php:353
2813
  msgid "Other small bug fixes and stability improvements."
2814
  msgstr ""
2815
 
2816
+ #: templates/admin/dashboard/dashboard.inc.php:365
2817
  msgid "Go Premium!"
2818
  msgstr ""
2819
 
2820
+ #: templates/admin/dashboard/dashboard.inc.php:371
2821
  msgid "View Comparison"
2822
  msgstr ""
2823
 
2824
+ #: templates/admin/dashboard/dashboard.inc.php:379
2825
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:48
2826
  msgid ""
2827
  "Get the most out of wpDataTables by upgrading to Premium and unlocking all "
2828
  "of the powerful features."
2829
  msgstr ""
2830
 
2831
+ #: templates/admin/dashboard/dashboard.inc.php:383
2832
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:292
2833
  msgid "Create a table manually"
2834
  msgstr "Ročno ustvarite tabelo"
2835
 
2836
+ #: templates/admin/dashboard/dashboard.inc.php:386
2837
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:304
2838
  msgid "Creating tables from Google Spreadsheet"
2839
  msgstr "Ustvarjanje tabel iz Google Spreadsheet-a"
2840
 
2841
+ #: templates/admin/dashboard/dashboard.inc.php:389
2842
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:316
2843
+ msgid "Creating tables via Google Sheet API"
 
2844
  msgstr ""
2845
 
2846
+ #: templates/admin/dashboard/dashboard.inc.php:392
2847
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:329
2848
+ msgid "Creating tables from Private Google Spreadsheet"
 
2849
  msgstr ""
2850
 
2851
+ #: templates/admin/dashboard/dashboard.inc.php:395
2852
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:342
2853
  msgid "Creating MySQL-based tables from database"
2854
  msgstr "Ustvarjanje tabel, ki temeljijo na MySQL, iz baze podatkov"
2855
 
2856
+ #: templates/admin/dashboard/dashboard.inc.php:398
2857
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:354
2858
  msgid "Creating MySQL-based tables from Wordpress post types"
2859
  msgstr "Ustvarjanje tabel, ki temeljijo na MySQL, iz vrst objav Wordpress"
2860
 
2861
+ #: templates/admin/dashboard/dashboard.inc.php:401
2862
+ msgid "Creating tables where users can see and edit own data"
2863
+ msgstr ""
2864
+
2865
+ #: templates/admin/dashboard/dashboard.inc.php:404
2866
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:378
2867
+ msgid "Creating table relations (Foreign key)"
2868
+ msgstr ""
2869
+
2870
+ #: templates/admin/dashboard/dashboard.inc.php:407
2871
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:414
2872
  #: templates/edit_table.inc.php:329
2873
  msgid "Advanced filtering"
2874
  msgstr "Napredno filtriranje"
2875
 
2876
+ #: templates/admin/dashboard/dashboard.inc.php:410
2877
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:426
2878
+ msgid "Pre-filtering tables through URL"
2879
+ msgstr ""
2880
+
2881
+ #: templates/admin/dashboard/dashboard.inc.php:413
2882
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:279
2883
+ msgid "Table Customization"
2884
+ msgstr ""
2885
+
2886
+ #: templates/admin/dashboard/dashboard.inc.php:416
2887
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:390
2888
  #: templates/admin/table-settings/table_settings_block.inc.php:153
2889
  #: templates/edit_table.inc.php:282
2890
  msgid "Server-side processing"
2891
  msgstr "Obdelava na strani strežnika"
2892
 
2893
+ #: templates/admin/dashboard/dashboard.inc.php:419
2894
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:402
2895
  msgid "Multiple databases support (MySQL,MS SQL and PostgreSQL)"
2896
  msgstr ""
2897
 
2898
+ #: templates/admin/dashboard/dashboard.inc.php:422
2899
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:438
2900
  msgid "Front-end table editing"
2901
  msgstr "Urejanje mize v sprednjem delu"
2902
 
2903
+ #: templates/admin/dashboard/dashboard.inc.php:425
2904
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:450
2905
  msgid "Excel-like editing"
2906
  msgstr "Urejanje v Excelu"
2907
 
2908
+ #: templates/admin/dashboard/dashboard.inc.php:428
2909
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:462
2910
  msgid "Creating charts with Highcharts"
2911
  msgstr "Ustvarjanje grafikonov z Highchartsi"
2912
 
2913
+ #: templates/admin/dashboard/dashboard.inc.php:431
2914
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:474
2915
  msgid "Creating charts with Chart.js"
2916
  msgstr "Ustvarjanje grafikonov s Chart.js"
2917
 
2918
+ #: templates/admin/dashboard/dashboard.inc.php:434
2919
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:486
2920
+ msgid "Follow table filtering in charts"
2921
+ msgstr ""
2922
+
2923
+ #: templates/admin/dashboard/dashboard.inc.php:437
2924
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:498
2925
+ msgid "Grouping data in Charts"
2926
+ msgstr ""
2927
+
2928
+ #: templates/admin/dashboard/dashboard.inc.php:440
2929
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:510
2930
  #: templates/admin/table-settings/simple_table_settings_block.inc.php:68
2931
  #: templates/edit_table.inc.php:301
2932
  msgid "Responsive"
2933
  msgstr "Odziven"
2934
 
2935
+ #: templates/admin/dashboard/dashboard.inc.php:443
2936
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:522
2937
  #: templates/admin/table-settings/column_settings_panel.inc.php:60
2938
  #: templates/edit_table.inc.php:750
2939
  msgid "Conditional formatting"
2940
  msgstr "Pogojno oblikovanje"
2941
 
2942
+ #: templates/admin/dashboard/dashboard.inc.php:446
2943
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:534
2944
  msgid "Calculating Tools"
2945
  msgstr "Orodja za izračun"
2946
 
2947
+ #: templates/admin/dashboard/dashboard.inc.php:449
2948
  msgid "Formula columns"
2949
  msgstr ""
2950
 
2951
+ #: templates/admin/dashboard/dashboard.inc.php:452
2952
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:546
2953
  #: templates/admin/table-settings/table_settings_block.inc.php:80
2954
  msgid "Placeholders"
2955
  msgstr "Imetniki mest"
2956
 
2957
+ #: templates/admin/dashboard/dashboard.inc.php:455
2958
  msgid "Premium support"
2959
  msgstr ""
2960
 
2961
+ #: templates/admin/dashboard/dashboard.inc.php:459
2962
  msgid "Get Premium Today"
2963
  msgstr ""
2964
 
2965
+ #: templates/admin/dashboard/dashboard.inc.php:466
2966
  msgid "News Blog"
2967
  msgstr "Blog novic"
2968
 
2969
+ #: templates/admin/dashboard/dashboard.inc.php:471
2970
  msgid "Checkout useful articles from wpdatatables.com"
2971
  msgstr "Oglejte si uporabne članke s spletnega mesta wpdatatables.com"
2972
 
2973
+ #: templates/admin/dashboard/dashboard.inc.php:504
 
 
 
 
2974
  msgid ""
2975
  "Never miss notifications about new cool features, promotions,\n"
2976
  " giveaways or freebies – subscribe to our "
2983
  " približno 1 sporočilo na mesec in nikoli "
2984
  "neželeno!"
2985
 
2986
+ #: templates/admin/dashboard/dashboard.inc.php:522
2987
  msgid "Premium "
2988
  msgstr ""
2989
 
2990
+ #: templates/admin/dashboard/dashboard.inc.php:525
2991
  msgid ""
2992
  "While wpDataTables itself provides quite a large amount of features and "
2993
  "unlimited customisation, flexibility, you can achieve even more with our "
2994
  "premium addons.(requires wpDataTables Premium version)"
2995
  msgstr ""
2996
 
2997
+ #: templates/admin/dashboard/dashboard.inc.php:543
2998
  msgid ""
2999
  "A wpDataTables addon which allows showing additional details for a specific "
3000
  "row in a popup or a separate page or post."
3002
  "Dodatek wpDataTables, ki omogoča prikazovanje dodatnih podrobnosti za "
3003
  "določeno vrstico v pojavnem oknu ali na ločeni strani ali objavi."
3004
 
3005
+ #: templates/admin/dashboard/dashboard.inc.php:549
3006
+ #: templates/admin/dashboard/dashboard.inc.php:576
3007
+ #: templates/admin/dashboard/dashboard.inc.php:602
3008
+ #: templates/admin/dashboard/dashboard.inc.php:629
3009
+ #: templates/admin/dashboard/dashboard.inc.php:655
3010
+ #: templates/admin/dashboard/dashboard.inc.php:688
3011
  msgid "Learn More"
3012
  msgstr "Preberi več"
3013
 
3014
+ #: templates/admin/dashboard/dashboard.inc.php:570
3015
  msgid ""
3016
  "An add-on for wpDataTables that provides powerful filtering features: "
3017
  "cascade filtering, applying filters on button click, hide table before "
3021
  "filtriranje, nanašanje filtrov na klik gumba, skrivanje tabele pred "
3022
  "filtriranjem."
3023
 
3024
+ #: templates/admin/dashboard/dashboard.inc.php:666
3025
  msgid "Need free booking plugin?"
3026
  msgstr ""
3027
 
3028
+ #: templates/admin/dashboard/dashboard.inc.php:675
3029
  msgid "Appointments and Events WordPress Booking Plugin"
3030
  msgstr "Sestanki in dogodki WordPress Vtičnik za rezervacijo"
3031
 
3032
+ #: templates/admin/dashboard/dashboard.inc.php:678
3033
  msgid ""
3034
  "Amelia Lite is a free appointment booking WordPress plugin that allows to "
3035
  "set up a fully-featured automated booking system on your WordPress website "
3040
  "each month."
3041
  msgstr ""
3042
 
3043
+ #: templates/admin/dashboard/dashboard.inc.php:681
3044
  msgid "Rating: 4.3 - ‎97 reviews"
3045
  msgstr ""
3046
 
3047
+ #: templates/admin/dashboard/dashboard.inc.php:684
3048
  msgid "Free Download"
3049
  msgstr ""
3050
 
3051
+ #: templates/admin/dashboard/dashboard.inc.php:699
3052
  #: templates/admin/getting-started/getting_started.inc.php:184
3053
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:589
3054
  #: templates/admin/support/support.inc.php:78
3055
  #: templates/admin/system-info/system_info.inc.php:509
3056
  #: templates/admin/welcome_page/welcome_page.inc.php:358
3057
  msgid "Made by"
3058
  msgstr "Narejeno v"
3059
 
3060
+ #: templates/admin/dashboard/dashboard.inc.php:707
3061
  #: templates/admin/getting-started/getting_started.inc.php:192
3062
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:597
3063
  #: templates/admin/support/support.inc.php:45
3064
  #: templates/admin/support/support.inc.php:86
3065
  #: templates/admin/system-info/system_info.inc.php:517
3068
  msgid "Documentation"
3069
  msgstr "Dokumentacija"
3070
 
3071
+ #: templates/admin/dashboard/dashboard.inc.php:711
3072
  #: templates/admin/getting-started/getting_started.inc.php:196
3073
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:601
3074
  #: templates/admin/support/support.inc.php:24
3075
  #: templates/admin/support/support.inc.php:90
3076
  #: templates/admin/system-info/system_info.inc.php:521
3205
  msgstr "Primerjava Lite proti Premium"
3206
 
3207
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:52
3208
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:581
3209
  msgid "Go Premium Now"
3210
  msgstr ""
3211
 
3218
  msgstr "Lite"
3219
 
3220
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:64
3221
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:568
3222
  msgid "Premium"
3223
  msgstr "Premium"
3224
 
3248
 
3249
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:131
3250
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:144
3251
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:280
3252
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:317
3253
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:330
3254
  #: templates/admin/table-settings/table_settings_block.inc.php:84
3255
  msgid "NEW!"
3256
  msgstr ""
3276
  msgstr "Razvrščanje"
3277
 
3278
  #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:180
3279
+ msgid "Row grouping"
3280
+ msgstr ""
3281
+
3282
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:192
3283
  #: templates/admin/settings/tabs/color_and_font_settings.php:653
3284
  #: templates/admin/table-settings/table_settings_block.inc.php:504
3285
  #: templates/admin/table-settings/table_settings_block.inc.php:512
3287
  msgid "Pagination"
3288
  msgstr "Paginiranje (zaznamovanje strani)"
3289
 
3290
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:204
3291
  msgid ""
3292
  "Export table data <span style=\"font-size: 8px;\">(Export to Excel, CSV, "
3293
  "PDF, and Copy and Print options)</span>"
3294
  msgstr ""
3295
 
3296
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:216
3297
  msgid "Column Customization"
3298
  msgstr "Prilagajanje stolpcev"
3299
 
3300
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:228
3301
  msgid "Global Table Customization"
3302
  msgstr "Prilagoditev globalne tabele"
3303
 
3304
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:240
3305
+ msgid "WP Bakery, Elementor and Gutenberg support"
3306
+ msgstr ""
3307
+
3308
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:252
3309
  msgid "Creating Google charts"
3310
  msgstr "Ustvarjanje Google lestvic"
3311
 
3312
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:264
3313
  msgid "Customize charts"
3314
  msgstr ""
3315
 
3316
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:268
3317
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:562
3318
  msgid "Limited"
3319
  msgstr "Omejeno"
3320
 
3321
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:270
3322
  msgid "Some options are not available."
3323
  msgstr ""
3324
 
3325
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:366
3326
+ msgid "Creating tables where users can see and edit only their own data"
 
 
 
 
 
 
 
 
3327
  msgstr ""
3328
 
3329
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:558
3330
  msgid "Support"
3331
  msgstr "Podpora"
3332
 
3333
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:564
3334
  msgid "Response time is slow and can be up to 5 business days."
3335
  msgstr ""
3336
 
3337
+ #: templates/admin/lite-vs-premium/lite_vs_premium.inc.php:575
3338
  msgid ""
3339
  "* Please note that wpDataTables add-ons are not included in premium version "
3340
  "of plugin."
8178
  #~ msgid "The default font color for all text in the chart."
8179
  #~ msgstr "Privzeta barva pisave za vse besedilo v grafikonu."
8180
 
 
 
 
 
 
 
8181
  #~ msgid "Grid line style"
8182
  #~ msgstr "Splet linije"
8183
 
readme.txt CHANGED
@@ -4,9 +4,9 @@ Author URI: https://tms-outsource.com
4
  Plugin URI: https://wpdatatables.com/
5
  Tags: table, table builder, data tables, tables, charts, simple table, tables from csv, tables from excel, datatables, responsive tables, charting, pie charts, mysql tables, table plugin, wp table, WordPress table Plugin, Google Charts, Excel, JSON, XML, PHP array, line chart, donut, bar chart, histogram, area chart, bubble chart, gauge chart, scatter chart, candlestick, waterfall
6
  Requires at least: 4.0
7
- Tested up to: 5.6.2
8
  Requires PHP: 5.6
9
- Stable tag: 2.1.9
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -205,6 +205,17 @@ This can be changed from the “Number format” drop-down menu in the wpDataTab
205
 
206
  == Changelog ==
207
 
 
 
 
 
 
 
 
 
 
 
 
208
  = 2.1.9 =
209
  * Improvement: Added auto-save functionality after insert media in Simple tables
210
  * Improvement: Added translate functions on some strings
4
  Plugin URI: https://wpdatatables.com/
5
  Tags: table, table builder, data tables, tables, charts, simple table, tables from csv, tables from excel, datatables, responsive tables, charting, pie charts, mysql tables, table plugin, wp table, WordPress table Plugin, Google Charts, Excel, JSON, XML, PHP array, line chart, donut, bar chart, histogram, area chart, bubble chart, gauge chart, scatter chart, candlestick, waterfall
6
  Requires at least: 4.0
7
+ Tested up to: 5.7
8
  Requires PHP: 5.6
9
+ Stable tag: 2.1.10
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
205
 
206
  == Changelog ==
207
 
208
+ = 2.1.10 =
209
+ * Feature: Add new option for creating 3D pie chart
210
+ * Feature: Search for tables and charts using ID on browse pages
211
+ * Added translate functions on several strings.
212
+ * Added German translation
213
+ * Bugfix: Fixed issue with Fatal errors if allow_url_fopen is turned off on server.
214
+ * Bugfix: Fixed issue with loading simple table preview after clicking on back button in browser from some pages.
215
+ * Bugfix: Fixed issue with inserting “px” in column width option.
216
+ * Compatibility with WordPress 5.7 approved.
217
+ * Other small bug fixes and stability improvements.
218
+
219
  = 2.1.9 =
220
  * Improvement: Added auto-save functionality after insert media in Simple tables
221
  * Improvement: Added translate functions on some strings
source/class.wdtbrowsechartstable.php CHANGED
@@ -69,6 +69,14 @@ class WDTBrowseChartsTable extends WP_List_Table
69
 
70
  $query = "SELECT COUNT(*) FROM {$wpdb->prefix}wpdatacharts";
71
 
 
 
 
 
 
 
 
 
72
  $count = $wpdb->get_var($query);
73
 
74
  return $count;
@@ -89,7 +97,11 @@ class WDTBrowseChartsTable extends WP_List_Table
89
  FROM {$wpdb->prefix}wpdatacharts ";
90
 
91
  if (isset($_REQUEST['s'])) {
92
- $query .= " WHERE title LIKE '%" . sanitize_text_field($_POST['s']) . "%' ";
 
 
 
 
93
  }
94
 
95
  if (isset($_REQUEST['orderby'])) {
69
 
70
  $query = "SELECT COUNT(*) FROM {$wpdb->prefix}wpdatacharts";
71
 
72
+ if (isset($_REQUEST['s'])) {
73
+ if (is_numeric($_REQUEST['s'])){
74
+ $query .= " WHERE id LIKE '" . sanitize_text_field($_POST['s']) . "'";
75
+ }else{
76
+ $query .= " WHERE title LIKE '%" . sanitize_text_field($_POST['s']) . "%'";
77
+ }
78
+ }
79
+
80
  $count = $wpdb->get_var($query);
81
 
82
  return $count;
97
  FROM {$wpdb->prefix}wpdatacharts ";
98
 
99
  if (isset($_REQUEST['s'])) {
100
+ if (is_numeric($_REQUEST['s'])){
101
+ $query .= " WHERE id LIKE '" . sanitize_text_field($_POST['s']) . "'";
102
+ }else{
103
+ $query .= " WHERE title LIKE '%" . sanitize_text_field($_POST['s']) . "%'";
104
+ }
105
  }
106
 
107
  if (isset($_REQUEST['orderby'])) {
source/class.wpdatachart.php CHANGED
@@ -26,6 +26,7 @@ class WPDataChart
26
  private $_plot_background_color = 'undefined';
27
  private $_plot_border_width = 0;
28
  private $_plot_border_color = '#C0C0C0';
 
29
  // Series
30
  private $_series = array();
31
  // Axes
@@ -206,6 +207,19 @@ class WPDataChart
206
  return $this->_plot_border_color;
207
  }
208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
209
 
210
 
211
 
@@ -509,6 +523,7 @@ class WPDataChart
509
  $chartObj->setPlotBackgroundColor(WDTTools::defineDefaultValue($constructedChartData, 'plot_background_color', '#FFFFFF'));
510
  $chartObj->setPlotBorderWidth(WDTTools::defineDefaultValue($constructedChartData, 'plot_border_width', 0));
511
  $chartObj->setPlotBorderColor(WDTTools::defineDefaultValue($constructedChartData, 'plot_border_color', '#C0C0C0'));
 
512
 
513
  // Series
514
  if (!empty($constructedChartData['series_data'])) {
@@ -720,7 +735,9 @@ class WPDataChart
720
  $this->_render_data['options']['chartArea']['backgroundColor']['fill'] = $this->getPlotBackgroundColor();
721
  $this->_render_data['options']['chartArea']['backgroundColor']['strokeWidth'] = $this->getPlotBorderWidth();
722
  $this->_render_data['options']['chartArea']['backgroundColor']['stroke'] = $this->getPlotBorderColor();
723
-
 
 
724
  // Title
725
  if ($this->isTitleFloating()) {
726
  $this->_render_data['options']['titlePosition'] = 'in';
26
  private $_plot_background_color = 'undefined';
27
  private $_plot_border_width = 0;
28
  private $_plot_border_color = '#C0C0C0';
29
+ private $_three_d = false;
30
  // Series
31
  private $_series = array();
32
  // Axes
207
  return $this->_plot_border_color;
208
  }
209
 
210
+ /**
211
+ * @param boolean $three_d
212
+ */
213
+ public function setThreeD($three_d) {
214
+ $this->_three_d = (bool)$three_d;
215
+ }
216
+
217
+ /**
218
+ * @return boolean
219
+ */
220
+ public function isThreeD() {
221
+ return $this->_three_d;
222
+ }
223
 
224
 
225
 
523
  $chartObj->setPlotBackgroundColor(WDTTools::defineDefaultValue($constructedChartData, 'plot_background_color', '#FFFFFF'));
524
  $chartObj->setPlotBorderWidth(WDTTools::defineDefaultValue($constructedChartData, 'plot_border_width', 0));
525
  $chartObj->setPlotBorderColor(WDTTools::defineDefaultValue($constructedChartData, 'plot_border_color', '#C0C0C0'));
526
+ $chartObj->setThreeD(WDTTools::defineDefaultValue($constructedChartData, 'three_d', false));
527
 
528
  // Series
529
  if (!empty($constructedChartData['series_data'])) {
735
  $this->_render_data['options']['chartArea']['backgroundColor']['fill'] = $this->getPlotBackgroundColor();
736
  $this->_render_data['options']['chartArea']['backgroundColor']['strokeWidth'] = $this->getPlotBorderWidth();
737
  $this->_render_data['options']['chartArea']['backgroundColor']['stroke'] = $this->getPlotBorderColor();
738
+ if ($this->_type == 'google_pie_chart') {
739
+ $this->_render_data['options']['is3D'] = $this->isThreeD();
740
+ }
741
  // Title
742
  if ($this->isTitleFloating()) {
743
  $this->_render_data['options']['titlePosition'] = 'in';
templates/admin/browse/search_box.inc.php CHANGED
@@ -4,7 +4,7 @@
4
  <div class="fg-line">
5
  <i class="wpdt-icon-search"></i>
6
  <label class="screen-reader-text" for="<?php echo esc_attr($input_id); ?>"><?php echo $text; ?>:</label>
7
- <input type="search" placeholder="Search for items..." id="<?php echo esc_attr($input_id); ?>" name="s"
8
  value="<?php _admin_search_query(); ?>"/>
9
  </div>
10
  <button id="search-submit" class="wpdt-control-buttons" style="display: none">
4
  <div class="fg-line">
5
  <i class="wpdt-icon-search"></i>
6
  <label class="screen-reader-text" for="<?php echo esc_attr($input_id); ?>"><?php echo $text; ?>:</label>
7
+ <input type="search" placeholder="<?php _e('Search for items...', 'wpdatatables');?>" id="<?php echo esc_attr($input_id); ?>" name="s"
8
  value="<?php _admin_search_query(); ?>"/>
9
  </div>
10
  <button id="search-submit" class="wpdt-control-buttons" style="display: none">
templates/admin/chart_wizard/steps/step1.inc.php CHANGED
@@ -35,7 +35,7 @@
35
  <?php _e('Chart render engine', 'wpdatatables'); ?>
36
 
37
  <i class="wpdt-icon-info-circle-thin" data-toggle="tooltip" data-placement="right"
38
- title="<?php _e('Please choose the render engine.', 'wpdatatables'); ?> <?php _e('Please note that HighCharts license is NOT included with wpDataTables and you must purchase the license separately on', 'wpdatatables'); ?> http://highcharts.com"></i>
39
  </h4>
40
  <div class="form-group">
41
  <div class="fg-line">
35
  <?php _e('Chart render engine', 'wpdatatables'); ?>
36
 
37
  <i class="wpdt-icon-info-circle-thin" data-toggle="tooltip" data-placement="right"
38
+ title="<?php _e('Please choose the render engine.', 'wpdatatables'); ?>"></i>
39
  </h4>
40
  <div class="form-group">
41
  <div class="fg-line">
templates/admin/chart_wizard/steps/step4.inc.php CHANGED
@@ -325,6 +325,17 @@
325
  </div>
326
  </div>
327
  </div>
 
 
 
 
 
 
 
 
 
 
 
328
  </div>
329
  <div id="chart-container-tabs-3"
330
  class="col-sm-9 col-md-9 col-lg-8 chart-container chart-options-container tab-pane">
325
  </div>
326
  </div>
327
  </div>
328
+ <div class="google" id="three-d-row">
329
+ <h4 class="c-title-color m-b-2">
330
+ <?php _e('3D', 'wpdatatables'); ?>
331
+ <i class=" wpdt-icon-info-circle-thin" data-toggle="tooltip" data-placement="right"
332
+ title="<?php _e('Check for 3D pie chart', 'wpdatatables'); ?>"></i>
333
+ </h4>
334
+ <div class="toggle-switch p-b-16" data-ts-color="blue">
335
+ <input id="three-d" type="checkbox">
336
+ <label for="three-d"><?php _e('3D', 'wpdatatables'); ?></label>
337
+ </div>
338
+ </div>
339
  </div>
340
  <div id="chart-container-tabs-3"
341
  class="col-sm-9 col-md-9 col-lg-8 chart-container chart-options-container tab-pane">
templates/admin/dashboard/dashboard.inc.php CHANGED
@@ -337,17 +337,19 @@ $tableChartsCount = WDTTools::getTablesCount('chart');
337
  </span>
338
  </p>
339
  <p class="wpdt-text wpdt-font m-b-18">
340
- <?php _e('A minor update with a couple of improvements and bug fixes:', 'wpdatatables'); ?>
341
  </p>
342
  <div class="alert alert-info m-b-0" role="alert">
343
  <i class="wpdt-icon-info-circle-full"></i>
344
  <ul>
 
 
345
  <li> <?php _e('<strong>Improvement:</strong> Added auto-save functionality after insert media in Simple tables.', 'wpdatatables'); ?></li>
346
- <li> <?php _e('<strong>Improvement:</strong> Added translate functions on some strings.', 'wpdatatables'); ?></li>
347
- <li> <?php _e('<strong>Improvement:</strong> Added new hooks for enqueuing scripts in admin area and filters for elementor widgets.', 'wpdatatables'); ?></li>
348
- <li> <?php _e('<strong>BugFix:</strong> Fixed issue with font in material skin and background in graphite skin.', 'wpdatatables'); ?></li>
349
- <li> <?php _e('<strong>BugFix:</strong> Fixed issue with class name in Global font color settings.', 'wpdatatables'); ?></li>
350
- <li> <?php _e('Compatibility with WordPress 5.6.2 approved.', 'wpdatatables'); ?></li>
351
  <li> <?php _e('Other small bug fixes and stability improvements.', 'wpdatatables'); ?></li>
352
  </ul>
353
  </div>
@@ -384,10 +386,10 @@ $tableChartsCount = WDTTools::getTablesCount('chart');
384
  <i class="wpdt-icon-check m-r-8"></i><?php _e('Creating tables from Google Spreadsheet', 'wpdatatables'); ?>
385
  </p>
386
  <p class="wpdt-font">
387
- <i class="wpdt-icon-check m-r-8"></i><?php _e('<span style="color: #ef8137;font-weight: bold;">NEW!</span> Creating tables via Google Sheet API', 'wpdatatables'); ?>
388
  </p>
389
  <p class="wpdt-font">
390
- <i class="wpdt-icon-check m-r-8"></i><?php _e('<span style="color: #ef8137;font-weight: bold;">NEW!</span> Creating tables from Private Google Spreadsheet', 'wpdatatables'); ?>
391
  </p>
392
  <p class="wpdt-font">
393
  <i class="wpdt-icon-check m-r-8"></i><?php _e('Creating MySQL-based tables from database', 'wpdatatables'); ?>
@@ -395,9 +397,21 @@ $tableChartsCount = WDTTools::getTablesCount('chart');
395
  <p class="wpdt-font">
396
  <i class="wpdt-icon-check m-r-8"></i><?php _e('Creating MySQL-based tables from Wordpress post types', 'wpdatatables'); ?>
397
  </p>
 
 
 
 
 
 
398
  <p class="wpdt-font">
399
  <i class="wpdt-icon-check m-r-8"></i><?php _e('Advanced filtering', 'wpdatatables'); ?>
400
  </p>
 
 
 
 
 
 
401
  <p class="wpdt-font">
402
  <i class="wpdt-icon-check m-r-8"></i><?php _e('Server-side processing', 'wpdatatables'); ?>
403
  </p>
@@ -416,6 +430,12 @@ $tableChartsCount = WDTTools::getTablesCount('chart');
416
  <p class="wpdt-font">
417
  <i class="wpdt-icon-check m-r-8"></i><?php _e('Creating charts with Chart.js', 'wpdatatables'); ?>
418
  </p>
 
 
 
 
 
 
419
  <p class="wpdt-font">
420
  <i class="wpdt-icon-check m-r-8"></i><?php _e('Responsive', 'wpdatatables'); ?>
421
  </p>
@@ -453,7 +473,7 @@ $tableChartsCount = WDTTools::getTablesCount('chart');
453
  <ul>
454
 
455
  <?php
456
- if (extension_loaded('xml') && extension_loaded('dom')) {
457
  $rss = new DOMDocument();
458
  $rss->load('https://wpdatatables.com/feed/');
459
  $feed = array();
@@ -470,10 +490,12 @@ $tableChartsCount = WDTTools::getTablesCount('chart');
470
  $link = $feed[$x]['link'];
471
  echo ' <li> <a href="' . $link . '" title="' . $title . '" class="card-link" target="_blank">' . $title . '<i class="wpdt-icon-external-link-square-alt"></i></a></li>';
472
  }
473
- } else {
474
- _e('Please install and enable PHP extensions xml and dom on your server.', 'wpdatatables');
475
- }
476
- ?>
 
 
477
  </ul>
478
  <div class="clear"></div>
479
  <div class="wdt-subscribe">
337
  </span>
338
  </p>
339
  <p class="wpdt-text wpdt-font m-b-18">
340
+ <?php _e('A minor update with a couple of features and improvements and few bug fixes:', 'wpdatatables'); ?>
341
  </p>
342
  <div class="alert alert-info m-b-0" role="alert">
343
  <i class="wpdt-icon-info-circle-full"></i>
344
  <ul>
345
+ <li> <?php _e('<strong>Feature:</strong> Add new option for creating 3D pie chart.', 'wpdatatables'); ?></li>
346
+ <li> <?php _e('<strong>Feature:</strong> Search for tables and charts using ID on browse pages.', 'wpdatatables'); ?></li>
347
  <li> <?php _e('<strong>Improvement:</strong> Added auto-save functionality after insert media in Simple tables.', 'wpdatatables'); ?></li>
348
+ <li> <?php _e('<strong>Improvement:</strong> Added German translation', 'wpdatatables'); ?></li>
349
+ <li> <?php _e('<strong>Bugfix:</strong> Fixed issue with Fatal errors if allow_url_fopen is turned off on server.', 'wpdatatables'); ?></li>
350
+ <li> <?php _e('<strong>BugFix:</strong> Fixed issue with loading simple table preview after clicking on back button in browser from some pages.', 'wpdatatables'); ?></li>
351
+ <li> <?php _e('<strong>BugFix:</strong> Fixed issue with inserting “px” in column width option.', 'wpdatatables'); ?></li>
352
+ <li> <?php _e('Compatibility with WordPress 5.7 approved.', 'wpdatatables'); ?></li>
353
  <li> <?php _e('Other small bug fixes and stability improvements.', 'wpdatatables'); ?></li>
354
  </ul>
355
  </div>
386
  <i class="wpdt-icon-check m-r-8"></i><?php _e('Creating tables from Google Spreadsheet', 'wpdatatables'); ?>
387
  </p>
388
  <p class="wpdt-font">
389
+ <i class="wpdt-icon-check m-r-8"></i><span style="color: #ef8137;font-weight: bold;">NEW! </span><?php _e('Creating tables via Google Sheet API', 'wpdatatables'); ?>
390
  </p>
391
  <p class="wpdt-font">
392
+ <i class="wpdt-icon-check m-r-8"></i><span style="color: #ef8137;font-weight: bold;">NEW! </span><?php _e('Creating tables from Private Google Spreadsheet', 'wpdatatables'); ?>
393
  </p>
394
  <p class="wpdt-font">
395
  <i class="wpdt-icon-check m-r-8"></i><?php _e('Creating MySQL-based tables from database', 'wpdatatables'); ?>
397
  <p class="wpdt-font">
398
  <i class="wpdt-icon-check m-r-8"></i><?php _e('Creating MySQL-based tables from Wordpress post types', 'wpdatatables'); ?>
399
  </p>
400
+ <p class="wpdt-font">
401
+ <i class="wpdt-icon-check m-r-8"></i><?php _e('Creating tables where users can see and edit own data', 'wpdatatables'); ?>
402
+ </p>
403
+ <p class="wpdt-font">
404
+ <i class="wpdt-icon-check m-r-8"></i><?php _e('Creating table relations (Foreign key)', 'wpdatatables'); ?>
405
+ </p>
406
  <p class="wpdt-font">
407
  <i class="wpdt-icon-check m-r-8"></i><?php _e('Advanced filtering', 'wpdatatables'); ?>
408
  </p>
409
+ <p class="wpdt-font">
410
+ <i class="wpdt-icon-check m-r-8"></i><?php _e('Pre-filtering tables through URL', 'wpdatatables'); ?>
411
+ </p>
412
+ <p class="wpdt-font">
413
+ <i class="wpdt-icon-check m-r-8"></i><span style="color: #ef8137;font-weight: bold;">NEW! </span><?php _e('Table Customization', 'wpdatatables'); ?>
414
+ </p>
415
  <p class="wpdt-font">
416
  <i class="wpdt-icon-check m-r-8"></i><?php _e('Server-side processing', 'wpdatatables'); ?>
417
  </p>
430
  <p class="wpdt-font">
431
  <i class="wpdt-icon-check m-r-8"></i><?php _e('Creating charts with Chart.js', 'wpdatatables'); ?>
432
  </p>
433
+ <p class="wpdt-font">
434
+ <i class="wpdt-icon-check m-r-8"></i><?php _e('Follow table filtering in charts', 'wpdatatables'); ?>
435
+ </p>
436
+ <p class="wpdt-font">
437
+ <i class="wpdt-icon-check m-r-8"></i><?php _e('Grouping data in Charts', 'wpdatatables'); ?>
438
+ </p>
439
  <p class="wpdt-font">
440
  <i class="wpdt-icon-check m-r-8"></i><?php _e('Responsive', 'wpdatatables'); ?>
441
  </p>
473
  <ul>
474
 
475
  <?php
476
+ if (extension_loaded('xml') && extension_loaded('dom') && ini_get('allow_url_fopen')) {
477
  $rss = new DOMDocument();
478
  $rss->load('https://wpdatatables.com/feed/');
479
  $feed = array();
490
  $link = $feed[$x]['link'];
491
  echo ' <li> <a href="' . $link . '" title="' . $title . '" class="card-link" target="_blank">' . $title . '<i class="wpdt-icon-external-link-square-alt"></i></a></li>';
492
  }
493
+ } else { ?>
494
+ <li> <a href="https://wpdatatables.com/how-to-create-the-premier-league-table/" title="How to create the Premier League table for your site" class="card-link" target="_blank">How to create the Premier League table for your site<i class="wpdt-icon-external-link-square-alt"></i></a></li>
495
+ <li> <a href="https://wpdatatables.com/charts-vs-tables/" title="Charts Vs Tables or When to Use One Over the Other" class="card-link" target="_blank">Charts Vs Tables or When to Use One Over the Other<i class="wpdt-icon-external-link-square-alt"></i></a></li>
496
+ <li> <a href="https://wpdatatables.com/scan-wordpress-database-for-malware/" title="How to Scan The WordPress Database For Malware" class="card-link" target="_blank">How to Scan The WordPress Database For Malware<i class="wpdt-icon-external-link-square-alt"></i></a></li>
497
+ <li> <a href="https://wpdatatables.com/wordpress-database-cleanup/" title="How to Do a WordPress Database Cleanup" class="card-link" target="_blank">How to Do a WordPress Database Cleanup<i class="wpdt-icon-external-link-square-alt"></i></a></li>
498
+ <?php } ?>
499
  </ul>
500
  <div class="clear"></div>
501
  <div class="wdt-subscribe">
templates/admin/lite-vs-premium/lite_vs_premium.inc.php CHANGED
@@ -176,6 +176,18 @@
176
  <hr>
177
  </td>
178
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
179
  <tr>
180
  <td data-title="Features"><?php _e('Pagination', 'wpdatatables'); ?>
181
  <hr>
@@ -224,6 +236,18 @@
224
  <hr>
225
  </td>
226
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
227
  <tr>
228
  <td data-title="Features"><?php _e('Creating Google charts', 'wpdatatables'); ?>
229
  <hr>
@@ -338,6 +362,30 @@
338
  <hr>
339
  </td>
340
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
341
  <tr>
342
  <td data-title="Features"><?php _e('Server-side processing', 'wpdatatables'); ?>
343
  <hr>
@@ -374,6 +422,18 @@
374
  <hr>
375
  </td>
376
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
377
  <tr>
378
  <td data-title="Features"><?php _e('Front-end table editing', 'wpdatatables'); ?>
379
  <hr>
@@ -422,6 +482,30 @@
422
  <hr>
423
  </td>
424
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
425
  <tr>
426
  <td data-title="Features"><?php _e('Responsive', 'wpdatatables'); ?>
427
  <hr>
176
  <hr>
177
  </td>
178
  </tr>
179
+ <tr>
180
+ <td data-title="Features"><?php _e('Row grouping', 'wpdatatables'); ?>
181
+ <hr>
182
+ </td>
183
+ <td data-title="Lite" class="text-center bg-grey"><i class="wpdt-icon-check-full"></i>
184
+ <hr>
185
+ </td>
186
+ <td data-title="Premium" class="text-center bg-blue"><i
187
+ class="wpdt-icon-check-full"></i>
188
+ <hr>
189
+ </td>
190
+ </tr>
191
  <tr>
192
  <td data-title="Features"><?php _e('Pagination', 'wpdatatables'); ?>
193
  <hr>
236
  <hr>
237
  </td>
238
  </tr>
239
+ <tr>
240
+ <td data-title="Features"><?php _e('WP Bakery, Elementor and Gutenberg support', 'wpdatatables'); ?>
241
+ <hr>
242
+ </td>
243
+ <td data-title="Lite" class="text-center bg-grey"><i class="wpdt-icon-check-full"></i>
244
+ <hr>
245
+ </td>
246
+ <td data-title="Premium" class="text-center bg-blue"><i
247
+ class="wpdt-icon-check-full"></i>
248
+ <hr>
249
+ </td>
250
+ </tr>
251
  <tr>
252
  <td data-title="Features"><?php _e('Creating Google charts', 'wpdatatables'); ?>
253
  <hr>
362
  <hr>
363
  </td>
364
  </tr>
365
+ <tr>
366
+ <td data-title="Features"><?php _e('Creating tables where users can see and edit only their own data', 'wpdatatables'); ?>
367
+ <hr>
368
+ </td>
369
+ <td data-title="Lite" class="text-center bg-grey"><i class="wpdt-icon-minus"></i>
370
+ <hr>
371
+ </td>
372
+ <td data-title="Premium" class="text-center bg-blue"><i
373
+ class="wpdt-icon-check-full"></i>
374
+ <hr>
375
+ </td>
376
+ </tr>
377
+ <tr>
378
+ <td data-title="Features"><?php _e('Creating table relations (Foreign key)', 'wpdatatables'); ?>
379
+ <hr>
380
+ </td>
381
+ <td data-title="Lite" class="text-center bg-grey"><i class="wpdt-icon-minus"></i>
382
+ <hr>
383
+ </td>
384
+ <td data-title="Premium" class="text-center bg-blue"><i
385
+ class="wpdt-icon-check-full"></i>
386
+ <hr>
387
+ </td>
388
+ </tr>
389
  <tr>
390
  <td data-title="Features"><?php _e('Server-side processing', 'wpdatatables'); ?>
391
  <hr>
422
  <hr>
423
  </td>
424
  </tr>
425
+ <tr>
426
+ <td data-title="Features"><?php _e('Pre-filtering tables through URL', 'wpdatatables'); ?>
427
+ <hr>
428
+ </td>
429
+ <td data-title="Lite" class="text-center bg-grey"><i class="wpdt-icon-minus"></i>
430
+ <hr>
431
+ </td>
432
+ <td data-title="Premium" class="text-center bg-blue"><i
433
+ class="wpdt-icon-check-full"></i>
434
+ <hr>
435
+ </td>
436
+ </tr>
437
  <tr>
438
  <td data-title="Features"><?php _e('Front-end table editing', 'wpdatatables'); ?>
439
  <hr>
482
  <hr>
483
  </td>
484
  </tr>
485
+ <tr>
486
+ <td data-title="Features"><?php _e('Follow table filtering in charts', 'wpdatatables'); ?>
487
+ <hr>
488
+ </td>
489
+ <td data-title="Lite" class="text-center bg-grey"><i class="wpdt-icon-minus"></i>
490
+ <hr>
491
+ </td>
492
+ <td data-title="Premium" class="text-center bg-blue"><i
493
+ class="wpdt-icon-check-full"></i>
494
+ <hr>
495
+ </td>
496
+ </tr>
497
+ <tr>
498
+ <td data-title="Features"><?php _e('Grouping data in Charts', 'wpdatatables'); ?>
499
+ <hr>
500
+ </td>
501
+ <td data-title="Lite" class="text-center bg-grey"><i class="wpdt-icon-minus"></i>
502
+ <hr>
503
+ </td>
504
+ <td data-title="Premium" class="text-center bg-blue"><i
505
+ class="wpdt-icon-check-full"></i>
506
+ <hr>
507
+ </td>
508
+ </tr>
509
  <tr>
510
  <td data-title="Features"><?php _e('Responsive', 'wpdatatables'); ?>
511
  <hr>
templates/admin/table-settings/table_settings_block.inc.php CHANGED
@@ -79,7 +79,7 @@
79
  <a href="#placeholders-settings" aria-controls="placeholders-settings" role="tab">
80
  <?php _e('Placeholders', 'wpdatatables'); ?></a>
81
  </li>
82
- <li class="customize-table-settings-tab ">
83
  <a href="#customize-table-settings" aria-controls="customize-table-settings" role="tab">
84
  <strong style="color: #ef8137"><?php _e('NEW!', 'wpdatatables'); ?></strong> <?php _e(' Customize', 'wpdatatables'); ?>
85
  </a>
79
  <a href="#placeholders-settings" aria-controls="placeholders-settings" role="tab">
80
  <?php _e('Placeholders', 'wpdatatables'); ?></a>
81
  </li>
82
+ <li class="customize-table-settings-tab hidden">
83
  <a href="#customize-table-settings" aria-controls="customize-table-settings" role="tab">
84
  <strong style="color: #ef8137"><?php _e('NEW!', 'wpdatatables'); ?></strong> <?php _e(' Customize', 'wpdatatables'); ?>
85
  </a>
templates/chart_wizard.inc.php CHANGED
@@ -73,7 +73,7 @@
73
  <tr>
74
  <td>
75
  <label for="table_name"><span><strong><?php _e('Chart render engine','wpdatatables');?></strong></span></label><br/>
76
- <span class="description"><small><?php _e('Please choose the render engine.','wpdatatables');?> <strong><?php _e('Please note that HighCharts license is NOT included with wpDataTables and you must purchase the license separately on','wpdatatables');?> <a http://highcharts.com/>http://highcharts.com</a></strong></small></span>
77
  </td>
78
  <td>
79
  <select id="chart_render_engine">
73
  <tr>
74
  <td>
75
  <label for="table_name"><span><strong><?php _e('Chart render engine','wpdatatables');?></strong></span></label><br/>
76
+ <span class="description"><small><?php _e('Please choose the render engine.','wpdatatables');?> </small></span>
77
  </td>
78
  <td>
79
  <select id="chart_render_engine">
wpdatatables.php CHANGED
@@ -5,7 +5,7 @@
5
  Plugin Name: wpDataTables - Tables & Table Charts
6
  Plugin URI: https://wpdatatables.com
7
  Description: Create responsive, sortable tables & charts from Excel, CSV or PHP. Add tables & charts to any post in minutes with DataTables.
8
- Version: 2.1.9
9
  Author: TMS-Plugins
10
  Author URI: https://tms-outsource.com
11
  Text Domain: wpdatatables
5
  Plugin Name: wpDataTables - Tables & Table Charts
6
  Plugin URI: https://wpdatatables.com
7
  Description: Create responsive, sortable tables & charts from Excel, CSV or PHP. Add tables & charts to any post in minutes with DataTables.
8
+ Version: 2.1.10
9
  Author: TMS-Plugins
10
  Author URI: https://tms-outsource.com
11
  Text Domain: wpdatatables