diff --git a/BooleanColumn.php b/BooleanColumn.php index aaf359dd..1db69ba0 100755 --- a/BooleanColumn.php +++ b/BooleanColumn.php @@ -13,9 +13,21 @@ use Closure; /** - * A BooleanColumn to convert true/false values as user friendly indicators with an automated drop down filter for the + * A BooleanColumn will convert true/false values as user friendly indicators with an automated drop down filter for the * [[GridView]] widget. * + * To add a BooleanColumn to the gridview, add it to the [[GridView::columns|columns]] configuration as follows: + * + * ```php + * 'columns' => [ + * // ... + * [ + * 'class' => BooleanColumn::className(), + * // you may configure additional properties here + * ], + * ] + * ``` + * * @author Kartik Visweswaran * @since 1.0 */ diff --git a/CHANGE.md b/CHANGE.md index d76f9535..06e6db2e 100755 --- a/CHANGE.md +++ b/CHANGE.md @@ -3,7 +3,7 @@ Change Log: `yii2-grid` ## Version 3.1.3 -**Date:** 06-Sep-2016 +**Date:** 22-Oct-2016 1. (enh #554): Add ability to configure delete confirmation message within `ActionColumn::deleteOptions`. 2. (bug #556): Correct expandRow behavior when using with `detailUrl` pjax form. @@ -13,6 +13,13 @@ Change Log: `yii2-grid` 6. (enh #564): Enhance page summary to render within table body and add new property`GridView::pageSummaryContainer`. 7. Enhance PHP Documentation for all classes and methods in the extension. 8. (enh #565): Better exported content parsing for header, footer, and page summary. +9. (enh #578): Update Italian Translations. +10. (enh #542, #579): Allow `thousandSep` config for grid group summary. +11. (enh #580): Update Dutch Translations. +12. (enh #581): Update Chinese Translations. +13. (enh #583): Add Gujarati and Hindi Translations. +14. (enh #584): Update Vietnamese Translations. +15. Update message config to include all default standard translation files. ## Version 3.1.2 diff --git a/CheckboxColumn.php b/CheckboxColumn.php index dc9ae913..4d361fe0 100755 --- a/CheckboxColumn.php +++ b/CheckboxColumn.php @@ -18,6 +18,18 @@ * The CheckboxColumn displays a column of checkboxes in a grid view and extends the [[YiiCheckboxColumn]] with * various enhancements. * + * To add a CheckboxColumn to the gridview, add it to the [[GridView::columns|columns]] configuration as follows: + * + * ```php + * 'columns' => [ + * // ... + * [ + * 'class' => CheckboxColumn::className(), + * // you may configure additional properties here + * ], + * ] + * ``` + * * @author Kartik Visweswaran * @since 1.0 */ diff --git a/ColumnTrait.php b/ColumnTrait.php index 918ba4b3..bae06e95 100755 --- a/ColumnTrait.php +++ b/ColumnTrait.php @@ -9,7 +9,7 @@ namespace kartik\grid; -use \Closure; +use Closure; use yii\base\Model; use yii\helpers\ArrayHelper; use yii\helpers\Html; @@ -140,11 +140,14 @@ protected function getPageSummaryCellContent() */ protected function calculateSummary() { + $data = $this->_rows; + $type = $this->pageSummaryFunc; + if ($type instanceof Closure) { + return call_user_func($type, $data); + } if (empty($this->_rows)) { return ''; } - $data = $this->_rows; - $type = $this->pageSummaryFunc; switch ($type) { case null: return array_sum($data); diff --git a/EditableColumn.php b/EditableColumn.php index 4f7d9e56..458d81f6 100755 --- a/EditableColumn.php +++ b/EditableColumn.php @@ -19,7 +19,19 @@ use kartik\base\Config; /** - * The EditableColumn converts the data to editable using the Editable widget [[\kartik\editable\Editable]] + * The EditableColumn converts the data to editable using the Editable widget [[\kartik\editable\Editable]]. + * + * To add an EditableColumn to the gridview, add it to the [[GridView::columns|columns]] configuration as follows: + * + * ```php + * 'columns' => [ + * // ... + * [ + * 'class' => EditableColumn::className(), + * // you may configure additional properties here + * ], + * ] + * ``` * * @author Kartik Visweswaran * @since 1.0 diff --git a/ExpandRowColumn.php b/ExpandRowColumn.php index 1778ffa8..71c9d0cc 100755 --- a/ExpandRowColumn.php +++ b/ExpandRowColumn.php @@ -21,6 +21,18 @@ /** * An ExpandRowColumn can be used to expand a row and add content in a new row below it either directly or via ajax. * + * To add an ExpandRowColumn to the gridview, add it to the [[GridView::columns|columns]] configuration as follows: + * + * ```php + * 'columns' => [ + * // ... + * [ + * 'class' => ExpandRowColumn::className(), + * // you may configure additional properties here + * ], + * ] + * ``` + * * @author Kartik Visweswaran * @since 1.0 */ diff --git a/FormulaColumn.php b/FormulaColumn.php index 8983f448..ff79a080 100755 --- a/FormulaColumn.php +++ b/FormulaColumn.php @@ -15,6 +15,18 @@ * A FormulaColumn to calculate values based on other column indexes for the Grid widget [[\kartik\grid\GridView]]. * This extends and builds upon the [[DataColumn]] in the [[GridView]] widget. * + * To add a FormulaColumn to the gridview, add it to the [[GridView::columns|columns]] configuration as follows: + * + * ```php + * 'columns' => [ + * // ... + * [ + * 'class' => FormulaColumn::className(), + * // you may configure additional properties here + * ], + * ] + * ``` + * * @author Kartik Visweswaran * @since 1.0 */ diff --git a/GridView.php b/GridView.php index e0be7d69..3a3626dd 100755 --- a/GridView.php +++ b/GridView.php @@ -38,7 +38,7 @@ * * A basic usage of the widget looks like the following: * - * ```php + * ~~~ * $dataProvider, * 'columns' => [ @@ -48,7 +48,7 @@ * // ... * ] * ]) ?> - * ``` + * ~~~ * * @see http://demos.krajee.com/grid * @author Kartik Visweswaran @@ -1044,18 +1044,17 @@ public function renderExport() $iconPrefix = $this->export['fontAwesome'] ? 'fa fa-' : 'glyphicon glyphicon-'; $title = ($icon == '') ? $title : " {$title}"; $action = $this->_module->downloadAction; - if (!is_array($action)) { - $action = [$action]; - } $encoding = ArrayHelper::getValue($this->export, 'encoding', 'utf-8'); $bom = ArrayHelper::getValue($this->export, 'bom', true); $target = ArrayHelper::getValue($this->export, 'target', self::TARGET_POPUP); $form = Html::beginForm( - $action, 'post', [ - 'class' => 'kv-export-form', - 'style' => 'display:none', - 'target' => ($target == self::TARGET_POPUP) ? 'kvDownloadDialog' : $target, - ] + is_array($action) ? $action : [$action], + 'post', + [ + 'class' => 'kv-export-form', + 'style' => 'display:none', + 'target' => ($target == self::TARGET_POPUP) ? 'kvDownloadDialog' : $target, + ] ) . "\n" . Html::hiddenInput('export_filetype') . "\n" . Html::hiddenInput('export_filename') . "\n" . diff --git a/RadioColumn.php b/RadioColumn.php index ac42f179..8a690f04 100755 --- a/RadioColumn.php +++ b/RadioColumn.php @@ -22,6 +22,18 @@ * RadioColumn displays a column of radio inputs in a grid view. It is different than the CheckboxColumn in the sense * that it allows only a single row to be selected at a time. * + * To add a RadioColumn to the gridview, add it to the [[GridView::columns|columns]] configuration as follows: + * + * ```php + * 'columns' => [ + * // ... + * [ + * 'class' => RadioColumn::className(), + * // you may configure additional properties here + * ], + * ] + * ``` + * * @author Kartik Visweswaran * @since 1.0 */ diff --git a/SerialColumn.php b/SerialColumn.php index 5c59c786..7b36c19a 100755 --- a/SerialColumn.php +++ b/SerialColumn.php @@ -18,6 +18,18 @@ * A SerialColumn displays a column of row numbers (1-based) and extends the [[YiiSerialColumn]] with various * enhancements. * + * To add a SerialColumn to the gridview, add it to the [[GridView::columns|columns]] configuration as follows: + * + * ```php + * 'columns' => [ + * // ... + * [ + * 'class' => SerialColumn::className(), + * // you may configure additional properties here + * ], + * ] + * ``` + * * @author Kartik Visweswaran * @since 1.0 */ diff --git a/assets/js/kv-grid-group.js b/assets/js/kv-grid-group.js index 5e6ca1f1..366d51e3 100755 --- a/assets/js/kv-grid-group.js +++ b/assets/js/kv-grid-group.js @@ -16,7 +16,7 @@ var kvGridGroup; "use strict"; kvGridGroup = function (gridId) { var $grid, data, groups, $groupRows, i, n, colCount, $pageSum, $firstRow, $lastRow, isEmpty, initPageSummary, - formatNumber, applyFormat, getParentGroup, getLastGroupRow, getSummarySource, getSummaryContent, addRowSpan, + formatNumber, getParentGroup, getLastGroupRow, getColValue, getSummarySource, getSummaryContent, addRowSpan, adjustLastRow, createSummary; $grid = $('#' + gridId); data = {}; @@ -56,26 +56,6 @@ var kvGridGroup; num = num.toFixed(isNaN(dec) || dec < 0 ? 0 : dec); return (c ? num.replace('.', c) : num).replace(new RegExp(re, 'g'), '$&' + (s || ',')); }; - applyFormat = function (source, config, $tr, $td, i) { - var decimals, decPoint, thousandSep, data, func; - /** @namespace config.thousandSep */ - /** @namespace config.decPoint */ - /** @namespace config.func */ - if (config.format === 'number') { - decimals = config.decimals || 0; - decPoint = config.decPoint || '.'; - thousandSep = config.thousandSep || ','; - return formatNumber(source, decimals, decPoint, thousandSep); - } - if (config.format === 'callback') { - func = window[config.func]; - if (typeof func === 'function') { - data = getSummarySource($tr, $td, i); - return func(source, data); - } - } - return source; - }; getParentGroup = function ($cell) { var $tr, $td, id = $cell.attr('data-sub-group-of'), i, tag; if (isEmpty(id)) { @@ -107,7 +87,24 @@ var kvGridGroup; } return $endRow.length ? $endRow : $lastRow; }; - getSummarySource = function ($tr, $td, i) { + getColValue = function($col, decPoint, thousandSep) { + var flag, out; + if (!$col || !$col.length) { + return 0; + } + if ($col.is('[data-raw-value]')) { + out = $col.attr('data-raw-value'); + } else { + out = $col.text(); + if (decPoint && decPoint !== '.') { + out = out.replace(decPoint, '.'); + } + flag = new RegExp('[\\s' + thousandSep + ']', 'g'); + out = out.replace(flag, ''); + } + return out ? parseFloat(out) : 0; + }; + getSummarySource = function ($tr, $td, i, decPoint, thousandSep) { var j = 1, data = [], $row = $tr, isGrouped = $row.hasClass('kv-grid-group-row'), rowspan = $td.attr('rowspan') || 1; if (isGrouped) { @@ -115,9 +112,7 @@ var kvGridGroup; $row = $row.next(':not(.kv-grid-group-row'); while (!j && $row.length) { $row.find('td[data-col-seq="' + i + '"]').each(function () { - var out = $(this).is('[data-raw-value]') ? $(this).attr('data-raw-value') : $(this).text().replace(/[\s,]+/g, ''); - out = parseFloat(out); - data.push(out); + data.push(getColValue($(this), decPoint, thousandSep)); }); // jshint ignore:line j = $row.hasClass('kv-grid-group-row'); $row = $row.next(); @@ -125,9 +120,7 @@ var kvGridGroup; } else { while (j <= rowspan && $row.length) { $row.find('td[data-col-seq="' + i + '"]').each(function () { - var out = $(this).is('[data-raw-value]') ? $(this).attr('data-raw-value') : $(this).text().replace(/[\s,]+/g, ''); - out = parseFloat(out); - data.push(out); + data.push(getColValue($(this), decPoint, thousandSep)); }); // jshint ignore:line $row = $row.next(); j++; @@ -135,37 +128,59 @@ var kvGridGroup; } return data; }; - getSummaryContent = function (source, $tr, $td, i) { - var func, data, out = 0, n; + getSummaryContent = function (source, $tr, $td, i, config) { + var out = 0, n, decimals, decPoint, thousandSep, data, func; + /** @namespace config.thousandSep */ + /** @namespace config.decPoint */ + /** @namespace config.func */ + decimals = config.decimals || 0; + decPoint = config.decPoint || '.'; + thousandSep = config.thousandSep || ','; switch (source) { case 'f_count': case 'f_sum': case 'f_avg': case 'f_max': case 'f_min': - data = getSummarySource($tr, $td, i); + data = getSummarySource($tr, $td, i, decPoint, thousandSep); switch (source) { case 'f_count': - return data.length; + out = data.length; + break; case 'f_sum': case 'f_avg': $.each(data, function (key, val) { out += val; }); if (source === 'f_sum') { - return out; + break; } n = data.length; - return n ? out / n : out; + if (n) { + out = out / n; + } + break; case 'f_max': case 'f_min': func = source.replace('f_', ''); - return Math[func].apply(null, data); + out = Math[func].apply(null, data); + break; } - return null; + break; default: - return source; + out = source; + } + if (config.format === 'number') { + return formatNumber(out, decimals, decPoint, thousandSep); } + if (config.format === 'callback') { + func = window[config.func]; + if (typeof func === 'function') { + data = getSummarySource($tr, $td, i, decPoint, thousandSep); + return func(out, data); + } + } + return out; }; addRowSpan = function ($el, n) { n = n || 1; @@ -193,7 +208,7 @@ var kvGridGroup; } }; createSummary = function ($cell, type) { - var data = $cell.data(type), $parent, key, $tr, $td, i, j, $row, $col, $target, content, + var data = $cell.data(type), $parent, key, $tr, $td, i, j, $row, $col, $target, content, config, isGroupedRow = false, css = (type === 'groupHeader') ? 'kv-group-header' : 'kv-group-footer'; if (!data) { return; @@ -216,12 +231,10 @@ var kvGridGroup; if (!key || i != key || isGroupedRow) { // jshint ignore:line $col = $(document.createElement('td')).attr('data-summary-col-seq', i); if (data.content && data.content[i]) { - content = getSummaryContent(data.content[i], $tr, $cell, i); /** @namespace data.contentFormats */ /** @namespace data.contentOptions */ - if (data.contentFormats && data.contentFormats[i]) { - content = applyFormat(content, data.contentFormats[i], $tr, $cell, i); - } + config = data.contentFormats && data.contentFormats[i] || {}; + content = getSummaryContent(data.content[i], $tr, $cell, i, config); $col.html(content); } if (data.contentOptions && data.contentOptions[i]) { diff --git a/assets/js/kv-grid-group.min.js b/assets/js/kv-grid-group.min.js index 65075467..64c811b0 100755 --- a/assets/js/kv-grid-group.min.js +++ b/assets/js/kv-grid-group.min.js @@ -10,4 +10,4 @@ * Copyright: 2015, Kartik Visweswaran, Krajee.com * For more JQuery plugins visit http://plugins.krajee.com * For more Yii related demos visit http://demos.krajee.com - */var kvGridGroup;!function(t){"use strict";kvGridGroup=function(a){var e,r,n,o,d,s,i,u,c,f,l,g,h,p,v,m,k,y,w,q,x;for(e=t("#"+a),r={},n=[],i=0,u=e.find("tr.kv-page-summary"),c=e.find("tr[data-key]:first"),f=e.find("tr[data-key]:last"),l=function(t){return void 0===t||null===t||0===t.length},g=function(){var a=0;u.length&&u.find("td").each(function(){t(this).attr("data-col-seq",a),a++})},h=function(t,a,e,r,n){var o="\\d(?=(\\d{"+(n||3)+"})+"+(t>0?"\\D":"$")+")",d=parseFloat(t),s=parseInt(a);return isNaN(d)?"":(d=d.toFixed(isNaN(s)||0>s?0:s),(e?d.replace(".",e):d).replace(new RegExp(o,"g"),"$&"+(r||",")))},p=function(t,a,e,r,n){var o,d,s,i,u;return"number"===a.format?(o=a.decimals||0,d=a.decPoint||".",s=a.thousandSep||",",h(t,o,d,s)):"callback"===a.format&&(u=window[a.func],"function"==typeof u)?(i=k(e,r,n),u(t,i)):t},v=function(t){var a,e,r,n,o=t.attr("data-sub-group-of");if(l(o))return null;if(n='td[data-col-seq="'+o+'"]',a=t.closest("tr"),e=a.find(n),r=e.length,r>0)return e;for(;0===r&&a.length;)a=a.prev(),e=a.find(n),r=e.length;return 0===r?null:e},m=function(t,a){var e=t.attr("data-group-key"),r=0,n=a;if(a.attr("data-last-row"))return a;for(;0===r&&n.length;)n=a,a=a.next(),r=a.find('td[data-group-key="'+e+'"]').length;return n.length?n:f},k=function(a,e,r){var n=1,o=[],d=a,s=d.hasClass("kv-grid-group-row"),i=e.attr("rowspan")||1;if(s)for(n=!1,d=d.next(":not(.kv-grid-group-row");!n&&d.length;)d.find('td[data-col-seq="'+r+'"]').each(function(){var a=t(this).text().replace(/[\s,]+/g,"");a=parseFloat(a),o.push(a)}),n=d.hasClass("kv-grid-group-row"),d=d.next();else for(;i>=n&&d.length;)d.find('td[data-col-seq="'+r+'"]').each(function(){var a=t(this).text().replace(/[\s,]+/g,"");a=parseFloat(a),o.push(a)}),d=d.next(),n++;return o},y=function(a,e,r,n){var o,d,s,i=0;switch(a){case"f_count":case"f_sum":case"f_avg":case"f_max":case"f_min":switch(d=k(e,r,n),a){case"f_count":return d.length;case"f_sum":case"f_avg":return t.each(d,function(t,a){i+=a}),"f_sum"===a?i:(s=d.length,s?i/s:i);case"f_max":case"f_min":return o=a.replace("f_",""),Math[o].apply(null,d)}return null;default:return a}},w=function(t,a){a=a||1;var e=t.attr("rowspan")||1;e=parseInt(e)+a,t.attr("rowspan",e)},q=function(){var a,e=[];if(f.nextAll("tr.kv-group-footer").each(function(){e.push(t(this))}),e.length)for(a=0;an&&a.before(r))})):(l=m(a,o),k&&l.hasClass("kv-grid-group-row")?l.before(u):l.after(u)),h.mergeColumns&&h.mergeColumns.length&&t.each(h.mergeColumns,function(a,e){var r=e[0],n=e[1],o=0,d="";r>-1&&n>-1&&(u.find("td").each(function(){var a=t(this);i=a.attr("data-summary-col-seq"),i>=r&&n>=i&&(d+=a.html(),o++)}),u.find("td").each(function(){var a=t(this);i=a.attr("data-summary-col-seq"),i>r&&n>=i?a.remove():i==r&&a.attr("colspan",o).html(d)}))}))},g(),e.find("td.kv-grid-group").each(function(){var a=t(this),e=t(this).attr("data-group-key");e&&(t.inArray(e,n)<0&&n.push(e),void 0===r[e]?r[e]=[a]:r[e].push(a))}),t.each(n,function(a,e){var n,o,d=r[e],s=1,i=0,u="",c="",f="",l="";t.each(d,function(t,e){u=e.text().trim(),n=d[i],a>0?(o=v(e),o&&o.length&&(c=o.attr("data-cell-key")),l=c?c+"-"+u:u):l=u,e.attr("data-cell-key",l),l==f?(s++,n.attr("rowspan",s),e.addClass("kv-temp-cells").hide()):(i=t,s=1),f=l})}),e.find("td.kv-grid-group.kv-temp-cells").remove(),t.each(n,function(a,r){var n=0;e.find('td[data-group-key="'+r+'"]').each(function(){var a,e=t(this),r=n%2>0?e.attr("data-odd-css"):e.attr("data-even-css");r&&e.removeClass(r).addClass(r),e.is("[data-grouped-row]")&&(a=t(document.createElement("tr")).addClass("kv-grid-group-row"),e.closest("tr").before(a),e.removeAttr("rowspan").appendTo(a).css("width","auto")),n++})}),o=e.find("tr.kv-grid-group-row"),o.length&&(i=e.find("tr[data-key]:first > td").length,i&&o.each(function(){t(this).find(">td").attr("colspan",i)}),o.find("td[data-group-key]").each(function(){var a=t(this).data("groupKey"),r=e.find(".kv-grid-group-header[data-group-key]"),n=e.find(".kv-grid-group-filter[data-group-key]");t(this).closest("tr").data("groupKey",a),r.length&&e.find('.kv-grid-group-header[data-group-key="'+a+'"]').remove(),n.length&&e.find('.kv-grid-group-filter[data-group-key="'+a+'"]').remove()})),f.attr("data-last-row",1),s=n.length-1,d=s;d>=0;d--)e.find('td[data-group-key="'+n[d]+'"]').each(function(){x(t(this),"groupFooter")});for(d=0;s>=d;d++)e.find('td[data-group-key="'+n[d]+'"]').each(function(){x(t(this),"groupHeader")});q()}}(window.jQuery); \ No newline at end of file + */var kvGridGroup;!function(t){"use strict";kvGridGroup=function(a){var e,r,n,o,d,i,s,u,c,f,l,g,h,p,v,m,k,y,w,b,q;for(e=t("#"+a),r={},n=[],s=0,u=e.find("tr.kv-page-summary"),c=e.find("tr[data-key]:first"),f=e.find("tr[data-key]:last"),l=function(t){return void 0===t||null===t||0===t.length},g=function(){var a=0;u.length&&u.find("td").each(function(){t(this).attr("data-col-seq",a),a++})},h=function(t,a,e,r,n){var o="\\d(?=(\\d{"+(n||3)+"})+"+(t>0?"\\D":"$")+")",d=parseFloat(t),i=parseInt(a);return isNaN(d)?"":(d=d.toFixed(isNaN(i)||0>i?0:i),(e?d.replace(".",e):d).replace(new RegExp(o,"g"),"$&"+(r||",")))},p=function(t){var a,e,r,n,o=t.attr("data-sub-group-of");if(l(o))return null;if(n='td[data-col-seq="'+o+'"]',a=t.closest("tr"),e=a.find(n),r=e.length,r>0)return e;for(;0===r&&a.length;)a=a.prev(),e=a.find(n),r=e.length;return 0===r?null:e},v=function(t,a){var e=t.attr("data-group-key"),r=0,n=a;if(a.attr("data-last-row"))return a;for(;0===r&&n.length;)n=a,a=a.next(),r=a.find('td[data-group-key="'+e+'"]').length;return n.length?n:f},m=function(t,a,e){var r,n;return t&&t.length?(t.is("[data-raw-value]")?n=t.attr("data-raw-value"):(n=t.text(),a&&"."!==a&&(n=n.replace(a,".")),r=new RegExp("[\\s"+e+"]","g"),n=n.replace(r,"")),n?parseFloat(n):0):0},k=function(a,e,r,n,o){var d=1,i=[],s=a,u=s.hasClass("kv-grid-group-row"),c=e.attr("rowspan")||1;if(u)for(d=!1,s=s.next(":not(.kv-grid-group-row");!d&&s.length;)s.find('td[data-col-seq="'+r+'"]').each(function(){i.push(m(t(this),n,o))}),d=s.hasClass("kv-grid-group-row"),s=s.next();else for(;c>=d&&s.length;)s.find('td[data-col-seq="'+r+'"]').each(function(){i.push(m(t(this),n,o))}),s=s.next(),d++;return i},y=function(a,e,r,n,o){var d,i,s,u,c,f,l=0;switch(i=o.decimals||0,s=o.decPoint||".",u=o.thousandSep||",",a){case"f_count":case"f_sum":case"f_avg":case"f_max":case"f_min":switch(c=k(e,r,n,s,u),a){case"f_count":l=c.length;break;case"f_sum":case"f_avg":if(t.each(c,function(t,a){l+=a}),"f_sum"===a)break;d=c.length,d&&(l/=d);break;case"f_max":case"f_min":f=a.replace("f_",""),l=Math[f].apply(null,c)}break;default:l=a}return"number"===o.format?h(l,i,s,u):"callback"===o.format&&(f=window[o.func],"function"==typeof f)?(c=k(e,r,n,s,u),f(l,c)):l},w=function(t,a){a=a||1;var e=t.attr("rowspan")||1;e=parseInt(e)+a,t.attr("rowspan",e)},b=function(){var a,e=[];if(f.nextAll("tr.kv-group-footer").each(function(){e.push(t(this))}),e.length)for(a=0;an&&a.before(r))})):(l=v(a,o),k&&l.hasClass("kv-grid-group-row")?l.before(u):l.after(u)),m.mergeColumns&&m.mergeColumns.length&&t.each(m.mergeColumns,function(a,e){var r=e[0],n=e[1],o=0,d="";r>-1&&n>-1&&(u.find("td").each(function(){var a=t(this);s=a.attr("data-summary-col-seq"),s>=r&&n>=s&&(d+=a.html(),o++)}),u.find("td").each(function(){var a=t(this);s=a.attr("data-summary-col-seq"),s>r&&n>=s?a.remove():s==r&&a.attr("colspan",o).html(d)}))}))},g(),e.find("td.kv-grid-group").each(function(){var a=t(this),e=t(this).attr("data-group-key");e&&(t.inArray(e,n)<0&&n.push(e),void 0===r[e]?r[e]=[a]:r[e].push(a))}),t.each(n,function(a,e){var n,o,d=r[e],i=1,s=0,u="",c="",f="",l="";t.each(d,function(t,e){u=e.text().trim(),n=d[s],a>0?(o=p(e),o&&o.length&&(c=o.attr("data-cell-key")),l=c?c+"-"+u:u):l=u,e.attr("data-cell-key",l),l==f?(i++,n.attr("rowspan",i),e.addClass("kv-temp-cells").hide()):(s=t,i=1),f=l})}),e.find("td.kv-grid-group.kv-temp-cells").remove(),t.each(n,function(a,r){var n=0;e.find('td[data-group-key="'+r+'"]').each(function(){var a,e=t(this),r=n%2>0?e.attr("data-odd-css"):e.attr("data-even-css");r&&e.removeClass(r).addClass(r),e.is("[data-grouped-row]")&&(a=t(document.createElement("tr")).addClass("kv-grid-group-row"),e.closest("tr").before(a),e.removeAttr("rowspan").appendTo(a).css("width","auto")),n++})}),o=e.find("tr.kv-grid-group-row"),o.length&&(s=e.find("tr[data-key]:first > td").length,s&&o.each(function(){t(this).find(">td").attr("colspan",s)}),o.find("td[data-group-key]").each(function(){var a=t(this).data("groupKey"),r=e.find(".kv-grid-group-header[data-group-key]"),n=e.find(".kv-grid-group-filter[data-group-key]");t(this).closest("tr").data("groupKey",a),r.length&&e.find('.kv-grid-group-header[data-group-key="'+a+'"]').remove(),n.length&&e.find('.kv-grid-group-filter[data-group-key="'+a+'"]').remove()})),f.attr("data-last-row",1),i=n.length-1,d=i;d>=0;d--)e.find('td[data-group-key="'+n[d]+'"]').each(function(){q(t(this),"groupFooter")});for(d=0;i>=d;d++)e.find('td[data-group-key="'+n[d]+'"]').each(function(){q(t(this),"groupHeader")});b()}}(window.jQuery); \ No newline at end of file diff --git a/controllers/ExportController.php b/controllers/ExportController.php index 81d1c630..8013fba9 100755 --- a/controllers/ExportController.php +++ b/controllers/ExportController.php @@ -18,7 +18,7 @@ use kartik\mpdf\Pdf; /** - * Export management controller for downloading content from [[GridView]] in various export formats. + * ExportController manages actions for downloading the [[GridView]] tabular content in various export formats. * * @author Kartik Visweswaran * @since 1.0 diff --git a/messages/af/kvgrid.php b/messages/af/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/af/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/ar/kvgrid.php b/messages/ar/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/ar/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/az/kvgrid.php b/messages/az/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/az/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/bg/kvgrid.php b/messages/bg/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/bg/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/bs/kvgrid.php b/messages/bs/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/bs/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/ca/kvgrid.php b/messages/ca/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/ca/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/config.php b/messages/config.php index bde69388..72625c7d 100755 --- a/messages/config.php +++ b/messages/config.php @@ -6,7 +6,7 @@ 'messagePath' => __DIR__, // array, required, list of language codes that the extracted messages // should be translated to. For example, ['zh-CN', 'de']. - 'languages' => ['cs', 'da', 'de', 'el-GR', 'en', 'es', 'fa-IR', 'fr', 'hu', 'id', 'it', 'lt', 'lv', 'nl', 'pl', 'pt', 'ru', 'th', 'tr', 'vi', 'zh', 'gu', 'hi'], + 'languages' => ['af', 'ar', 'az', 'bg', 'bs', 'ca', 'cs', 'da', 'de', 'el', 'en', 'eo', 'es', 'et', 'eu', 'fa', 'fi', 'fo', 'fr', 'gl', 'gu', 'he', 'hi', 'hr', 'hu', 'hy', 'id', 'is', 'it', 'ja', 'ka', 'kk', 'kn', 'ko', 'ky', 'lt', 'lv', 'mi', 'mk', 'mn', 'mr', 'ms', 'mt', 'nb', 'nl', 'nn', 'pl', 'pt', 'pt-BR', 'qu', 'ro', 'ru', 'sa', 'se', 'sk', 'sl', 'sq', 'sr', 'sr-Latn', 'sv', 'sw', 'ta', 'te', 'th', 'tj', 'tl', 'tn', 'tr', 'ts', 'tt', 'uk', 'ur', 'vi', 'zh-CN', 'zh-TW', 'zu'], // string, the name of the function for translating messages. // Defaults to 'Yii::t'. This is used as a mark to find the messages to be // translated. You may use a string for single function name or an array for @@ -48,4 +48,4 @@ // When format is "db", you may specify the following two options //'db' => 'db', //'sourceMessageTable' => '{{%source_message}}', -]; +]; \ No newline at end of file diff --git a/messages/el-GR/kvgrid.php b/messages/el/kvgrid.php similarity index 100% rename from messages/el-GR/kvgrid.php rename to messages/el/kvgrid.php diff --git a/messages/eo/kvgrid.php b/messages/eo/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/eo/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/et/kvgrid.php b/messages/et/kvgrid.php index cc538699..69d84180 100755 --- a/messages/et/kvgrid.php +++ b/messages/et/kvgrid.php @@ -17,52 +17,59 @@ * NOTE: this file must be saved in UTF-8 encoding. */ return [ + 'Book Listing' => '', + 'CSV' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Tab Delimited Text' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'Yii2 Grid Export (PDF)' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', 'Actions' => 'Tegevused', 'Active' => 'Aktiivne', 'Add Book' => 'Lisa raamat', 'All' => 'Kõik', 'Are you sure to delete this item?' => 'Oled kindel, et tahad selle kustutada?', - 'Book Listing' => '', - 'CSV' => '', 'Clear selection' => 'Puhasta valik', - 'Collapse All' => '', - 'Collapse' => '', 'Comma Separated Values' => 'Komaga eristatuc väärtused', 'Delete' => 'Kustuta', 'Disable any popup blockers in your browser to ensure proper download.' => 'Palun ', 'Download Selected' => 'Lae alla valitud', - 'Excel' => '', - 'Expand All' => '', - 'Expand' => '', + 'Export' => 'Ekspordi', 'Export All Data' => 'Ekspordi kõik andmed', 'Export Page Data' => 'Ekspordi lehe andmed', - 'Export' => 'Ekspordi', - 'ExportWorksheet' => '', 'Generated' => 'Genereeritud', 'Generating the export file. Please wait...' => 'Genereerin eksporditvat faili. Palun oota...', 'Grid Export' => 'Tabeli eksportimine', - 'HTML' => '', - 'Hyper Text Markup Language' => '', 'Inactive' => 'Mitteaktiivne', 'Invalid editable index or model form name' => 'Vale muudetav indeks või mudel või vormi nimi', 'Invalid or bad editable data' => 'Muudetavad andmed on valed või vigased', - 'JSON' => '', - 'JavaScript Object Notation' => '', - 'Library' => '', - 'Microsoft Excel 95+' => '', 'No data found' => 'Andmeid ei leitud', 'No valid editable model found' => 'Ei leidnud õiget muudetavat mudelit', 'Ok to proceed?' => 'Kas jätkame? OK?', - 'PDF export generated by kartik-v/yii2-grid extension' => '', - 'PDF' => '', 'Page' => 'Leht', - 'Portable Document Format' => '', - 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 'Reset Grid' => 'Lähtesta tabel', 'Resize table columns just like a spreadsheet by dragging the column edges.' => 'Muuda veergusid nagu Excelis lohistades veeru ääri.', 'Show all data' => 'Näita kõiki andmeid', 'Show first page data' => 'Näita esimese lehe andmeid', - 'Tab Delimited Text' => '', 'Text' => 'Tekst', 'The CSV export file will be generated for download.' => 'Allalaadimiseks genereeritakse eksporditud andmetest CSV fail.', 'The EXCEL export file will be generated for download.' => 'Allalaadimiseks genereeritakse eksporditud andmetest EXCELi fail.', @@ -70,14 +77,8 @@ 'The JSON export file will be generated for download.' => 'Allalaadimiseks genereeritakse eksporditud andmetest JSON fail.', 'The PDF export file will be generated for download.' => 'Allalaadimiseks genereeritakse eksporditud andmetest PDF fail.', 'The TEXT export file will be generated for download.' => 'Allalaadimiseks genereeritakse eksporditud andmetest TEXT fail.', - 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', - 'The table header sticks to the top in this demo as you scroll' => '', 'There are {totalCount} records. Are you sure you want to display them all?' => 'Kokku on {totalCount} ühikut. Oled sa kindel, et soovid kõiki neid kuvada?', 'Update' => 'Uuenda', 'View' => 'Vaata', - 'Yii2 Grid Export (PDF)' => '', 'export' => 'ekspordi', - 'grid-export' => '', - 'krajee, grid, export, yii2-grid, pdf' => '', - '© Krajee Yii2 Extensions' => '', ]; diff --git a/messages/eu/kvgrid.php b/messages/eu/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/eu/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/fa-IR/kvgrid.php b/messages/fa/kvgrid.php similarity index 100% rename from messages/fa-IR/kvgrid.php rename to messages/fa/kvgrid.php diff --git a/messages/fi/kvgrid.php b/messages/fi/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/fi/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/fo/kvgrid.php b/messages/fo/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/fo/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/gl/kvgrid.php b/messages/gl/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/gl/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/gu/kvgrid.php b/messages/gu/kvgrid.php old mode 100644 new mode 100755 diff --git a/messages/he/kvgrid.php b/messages/he/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/he/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/hi/kvgrid.php b/messages/hi/kvgrid.php old mode 100644 new mode 100755 diff --git a/messages/hr/kvgrid.php b/messages/hr/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/hr/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/hy/kvgrid.php b/messages/hy/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/hy/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/is/kvgrid.php b/messages/is/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/is/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/ja/kvgrid.php b/messages/ja/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/ja/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/ka/kvgrid.php b/messages/ka/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/ka/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/kk/kvgrid.php b/messages/kk/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/kk/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/kn/kvgrid.php b/messages/kn/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/kn/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/ko/kvgrid.php b/messages/ko/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/ko/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/ky/kvgrid.php b/messages/ky/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/ky/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/mi/kvgrid.php b/messages/mi/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/mi/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/mk/kvgrid.php b/messages/mk/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/mk/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/mn/kvgrid.php b/messages/mn/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/mn/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/mr/kvgrid.php b/messages/mr/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/mr/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/ms/kvgrid.php b/messages/ms/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/ms/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/mt/kvgrid.php b/messages/mt/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/mt/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/nb/kvgrid.php b/messages/nb/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/nb/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/nn/kvgrid.php b/messages/nn/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/nn/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/pt-BR/kvgrid.php b/messages/pt-BR/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/pt-BR/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/qu/kvgrid.php b/messages/qu/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/qu/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/ro/kvgrid.php b/messages/ro/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/ro/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/sa/kvgrid.php b/messages/sa/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/sa/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/se/kvgrid.php b/messages/se/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/se/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/sk/kvgrid.php b/messages/sk/kvgrid.php index b45950e6..0a8460fb 100755 --- a/messages/sk/kvgrid.php +++ b/messages/sk/kvgrid.php @@ -17,6 +17,7 @@ * NOTE: this file must be saved in UTF-8 encoding. */ return [ + 'Failed to update editable data due to an unknown server error' => '', 'Actions' => 'Akcia', 'Active' => 'Aktívne', 'Add Book' => 'Pridať knihu', @@ -25,18 +26,18 @@ 'Book Listing' => 'Zoznam kníh', 'CSV' => 'CSV', 'Clear selection' => 'Zrušiť výber', - 'Collapse All' => 'Zbaliť všetko', 'Collapse' => 'Zbaliť', + 'Collapse All' => 'Zbaliť všetko', 'Comma Separated Values' => 'Text oddelený čiarkou', 'Delete' => 'Zmazať', 'Disable any popup blockers in your browser to ensure proper download.' => 'Povoľte vyskakovacie okná pre umožnenie exportu.', 'Download Selected' => 'Stiahnuť vybrané', 'Excel' => 'Excel', - 'Expand All' => 'Rozbaliť všetko', 'Expand' => 'Rozbaliť', + 'Expand All' => 'Rozbaliť všetko', + 'Export' => 'Export', 'Export All Data' => 'Exportovať všetky dáta', 'Export Page Data' => 'Exportovať dáta stránky', - 'Export' => 'Export', 'ExportWorksheet' => 'Exportovať zošit', 'Generated' => 'Vygenerované', 'Generating the export file. Please wait...' => 'Generovanie súboru. Čakajte prosím...', @@ -53,8 +54,8 @@ 'No data found' => 'Nenájdené žiadne dáta', 'No valid editable model found' => 'Nenájdený platný editovateľný model', 'Ok to proceed?' => 'Pokračovat?', - 'PDF export generated by kartik-v/yii2-grid extension' => 'PDF export generovaný rozšírením kartik-v/yii2-grid', 'PDF' => 'PDF', + 'PDF export generated by kartik-v/yii2-grid extension' => 'PDF export generovaný rozšírením kartik-v/yii2-grid', 'Page' => 'Strana', 'Portable Document Format' => 'PDF', 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Požiadavka bola spracovaná. Po uložení súboru môžete bezpečne zatvoriť toto okno.', diff --git a/messages/sl/kvgrid.php b/messages/sl/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/sl/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/sq/kvgrid.php b/messages/sq/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/sq/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/sr-Latn/kvgrid.php b/messages/sr-Latn/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/sr-Latn/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/sr/kvgrid.php b/messages/sr/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/sr/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/sv/kvgrid.php b/messages/sv/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/sv/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/sw/kvgrid.php b/messages/sw/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/sw/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/ta/kvgrid.php b/messages/ta/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/ta/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/te/kvgrid.php b/messages/te/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/te/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/tj/kvgrid.php b/messages/tj/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/tj/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/tl/kvgrid.php b/messages/tl/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/tl/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/tn/kvgrid.php b/messages/tn/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/tn/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/ts/kvgrid.php b/messages/ts/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/ts/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/tt/kvgrid.php b/messages/tt/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/tt/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/uk/kvgrid.php b/messages/uk/kvgrid.php index 0b43218b..6a79facd 100755 --- a/messages/uk/kvgrid.php +++ b/messages/uk/kvgrid.php @@ -17,6 +17,12 @@ * NOTE: this file must be saved in UTF-8 encoding. */ return [ + 'Failed to update editable data due to an unknown server error' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'No valid editable model found' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', 'Actions' => 'Дії', 'Active' => 'Вкл', 'Add Book' => 'Додати книгу', @@ -25,18 +31,18 @@ 'Book Listing' => 'Зміст книги', 'CSV' => 'CSV', 'Clear selection' => 'Видалити виділення', - 'Collapse All' => 'Згорнути все', 'Collapse' => 'Згорнути', + 'Collapse All' => 'Згорнути все', 'Comma Separated Values' => 'Данні розділені комою', 'Delete' => 'Удалить', 'Disable any popup blockers in your browser to ensure proper download.' => 'Щоб скачати файл, вимкніть блокування спливаючих вікон у вашому браузері.', 'Download Selected' => 'Завантажити обране', 'Excel' => 'Excel', - 'Expand All' => 'Розгорнути все', 'Expand' => 'Розгорнути', + 'Expand All' => 'Розгорнути все', + 'Export' => 'Експорт', 'Export All Data' => 'Експортувати всі данні', 'Export Page Data' => 'Експорт даних з цієї сторінки', - 'Export' => 'Експорт', 'ExportWorksheet' => 'ЕкспортPобочийЛист', 'Generated' => 'Згенеровано', 'Generating the export file. Please wait...' => 'Файл для експорту генерується. Будь ласка зачекайте...', @@ -44,17 +50,14 @@ 'HTML' => 'HTML', 'Hyper Text Markup Language' => 'HTML', 'Inactive' => 'Вимк', - 'Invalid editable index or model form name' => '', - 'Invalid or bad editable data' => '', 'JSON' => 'JSON', 'JavaScript Object Notation' => 'Формат данних JavaScript', 'Library' => 'Бібліотека', 'Microsoft Excel 95+' => 'Microsoft Excel 95+', 'No data found' => 'Данні не знайдені', - 'No valid editable model found' => '', 'Ok to proceed?' => 'Продовжити?', - 'PDF export generated by kartik-v/yii2-grid extension' => 'PDF згенерований розширенням kartik-v/yii2-grid', 'PDF' => 'PDF', + 'PDF export generated by kartik-v/yii2-grid extension' => 'PDF згенерований розширенням kartik-v/yii2-grid', 'Page' => 'Сторінка', 'Portable Document Format' => 'Міжплатформенний формат електронних документів', 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Зараз почнеться завантаження файлу. Будь ласка зачекайте...', @@ -72,12 +75,10 @@ 'The TEXT export file will be generated for download.' => 'Буде згенеровано текстовий файл для завантаження.', 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => 'Зведена сторінка відображає суму 3 перших стовпців і середнє для останнього.', 'The table header sticks to the top in this demo as you scroll' => 'У цій демо-версії заголовок таблиці прилипає до верху, поки ви скролите', - 'There are {totalCount} records. Are you sure you want to display them all?' => '', 'Update' => 'Змінити', 'View' => 'Перегляд', 'Yii2 Grid Export (PDF)' => 'PDF експорт таблиці Yii2', 'export' => 'експорт', 'grid-export' => 'Експорт таблицы', - 'krajee, grid, export, yii2-grid, pdf' => '', '© Krajee Yii2 Extensions' => '© Krajee Yii2 Розширення', ]; diff --git a/messages/ur/kvgrid.php b/messages/ur/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/ur/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +]; diff --git a/messages/zh/kvgrid.php b/messages/zh-CN/kvgrid.php similarity index 100% rename from messages/zh/kvgrid.php rename to messages/zh-CN/kvgrid.php diff --git a/messages/zh-TW/kvgrid.php b/messages/zh-TW/kvgrid.php new file mode 100755 index 00000000..fac7247e --- /dev/null +++ b/messages/zh-TW/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Failed to update editable data due to an unknown server error' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'No valid editable model found' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '有{totalCount}条记录。你确定你想要显示他们所有?', + 'Actions' => '动作', + 'Active' => '已激活', + 'Add Book' => '新增书籍', + 'All' => '全部', + 'Are you sure to delete this item?' => '确定删除此记录?', + 'Book Listing' => '书籍列表', + 'CSV' => 'CSV', + 'Collapse' => '收起', + 'Collapse All' => '全部收起', + 'Comma Separated Values' => '以逗号分割的值', + 'Delete' => '删除', + 'Disable any popup blockers in your browser to ensure proper download.' => '禁用所有阻止弹出窗口的浏览器设置来确保下载成功', + 'Download Selected' => '已选择下载项', + 'Excel' => 'Excel', + 'Expand' => '展开', + 'Expand All' => '全部展开', + 'Export' => '导出', + 'Export All Data' => '导出所有数据', + 'Export Page Data' => '导出当前页数据', + 'ExportWorksheet' => '导出工作表', + 'Generated' => '已经生成', + 'Generating the export file. Please wait...' => '正在导出文件,请稍后...', + 'Grid Export' => '导出表格', + 'HTML' => 'HTML', + 'Hyper Text Markup Language' => '超文本标记语言', + 'Inactive' => '未激活', + 'JSON' => 'JSON', + 'JavaScript Object Notation' => 'JavaScript对象符号', + 'Library' => '类库', + 'Microsoft Excel 95+' => '微软Excel版本95以上', + 'No data found' => '未找到数据', + 'Ok to proceed?' => '确定执行操作?', + 'PDF' => 'PDF', + 'PDF export generated by kartik-v/yii2-grid extension' => '导出由kartik-v/yii2-grid扩展生成的PDF', + 'Page' => '页', + 'Portable Document Format' => '便携的文档格式', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '请求已经提交,你可以在文件下载成功后关闭此对话.', + 'Reset Grid' => '重置表格', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '拖动表格边缘来进行缩放', + 'Show all data' => '显示所有数据', + 'Show first page data' => '显示第一页数据', + 'Tab Delimited Text' => 'TAB键分割的文本', + 'Text' => '文本', + 'The CSV export file will be generated for download.' => '将会导出CSV文件以供下载', + 'The EXCEL export file will be generated for download.' => '将会导出EXCEL文件以供下载', + 'The HTML export file will be generated for download.' => '将会导出HTML文件以供下载', + 'The JSON export file will be generated for download.' => '将会导出JSON文件以供下载', + 'The PDF export file will be generated for download.' => '将会导出PDF文件以供下载', + 'The TEXT export file will be generated for download.' => '将会导出文本文件以供下载', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '页面概要显示前三列的和以及最后一列的平均值', + 'The table header sticks to the top in this demo as you scroll' => '此示例中表头将在你滚动页面的时候固定在顶部', + 'Update' => '更新', + 'View' => '查看', + 'Yii2 Grid Export (PDF)' => '由Yii2 Grid导出的PDF', + 'export' => '导出', + 'grid-export' => '导出表格', + 'krajee, grid, export, yii2-grid, pdf' => 'krajee, grid, export, yii2-grid, pdf', + '© Krajee Yii2 Extensions' => '© Krajee Yii2 Extensions', +]; diff --git a/messages/zu/kvgrid.php b/messages/zu/kvgrid.php new file mode 100755 index 00000000..e862a1ef --- /dev/null +++ b/messages/zu/kvgrid.php @@ -0,0 +1,84 @@ + '', + 'Active' => '', + 'Add Book' => '', + 'All' => '', + 'Are you sure to delete this item?' => '', + 'Book Listing' => '', + 'CSV' => '', + 'Clear selection' => '', + 'Collapse' => '', + 'Collapse All' => '', + 'Comma Separated Values' => '', + 'Delete' => '', + 'Disable any popup blockers in your browser to ensure proper download.' => '', + 'Download Selected' => '', + 'Excel' => '', + 'Expand' => '', + 'Expand All' => '', + 'Export' => '', + 'Export All Data' => '', + 'Export Page Data' => '', + 'ExportWorksheet' => '', + 'Failed to update editable data due to an unknown server error' => '', + 'Generated' => '', + 'Generating the export file. Please wait...' => '', + 'Grid Export' => '', + 'HTML' => '', + 'Hyper Text Markup Language' => '', + 'Inactive' => '', + 'Invalid editable index or model form name' => '', + 'Invalid or bad editable data' => '', + 'JSON' => '', + 'JavaScript Object Notation' => '', + 'Library' => '', + 'Microsoft Excel 95+' => '', + 'No data found' => '', + 'No valid editable model found' => '', + 'Ok to proceed?' => '', + 'PDF' => '', + 'PDF export generated by kartik-v/yii2-grid extension' => '', + 'Page' => '', + 'Portable Document Format' => '', + 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', + 'Reset Grid' => '', + 'Resize table columns just like a spreadsheet by dragging the column edges.' => '', + 'Show all data' => '', + 'Show first page data' => '', + 'Tab Delimited Text' => '', + 'Text' => '', + 'The CSV export file will be generated for download.' => '', + 'The EXCEL export file will be generated for download.' => '', + 'The HTML export file will be generated for download.' => '', + 'The JSON export file will be generated for download.' => '', + 'The PDF export file will be generated for download.' => '', + 'The TEXT export file will be generated for download.' => '', + 'The page summary displays SUM for first 3 amount columns and AVG for the last.' => '', + 'The table header sticks to the top in this demo as you scroll' => '', + 'There are {totalCount} records. Are you sure you want to display them all?' => '', + 'Update' => '', + 'View' => '', + 'Yii2 Grid Export (PDF)' => '', + 'export' => '', + 'grid-export' => '', + 'krajee, grid, export, yii2-grid, pdf' => '', + '© Krajee Yii2 Extensions' => '', +];