├── .github ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md ├── stale.yml └── ISSUE_TEMPLATE.md ├── src ├── assets │ ├── css │ │ ├── kv-export-columns.min.css │ │ └── kv-export-columns.css │ └── js │ │ ├── kv-export-columns.min.js │ │ └── kv-export-columns.js ├── ExportColumnAsset.php ├── ExportMenuAsset.php ├── views │ ├── _view.php │ └── _columns.php ├── ExportWriterPdf.php └── messages │ ├── af │ └── kvexport.php │ ├── ar │ └── kvexport.php │ ├── az │ └── kvexport.php │ ├── bg │ └── kvexport.php │ ├── bs │ └── kvexport.php │ ├── ca │ └── kvexport.php │ ├── da │ └── kvexport.php │ ├── en │ └── kvexport.php │ ├── eo │ └── kvexport.php │ ├── eu │ └── kvexport.php │ ├── fi │ └── kvexport.php │ ├── fo │ └── kvexport.php │ ├── gl │ └── kvexport.php │ ├── gu │ └── kvexport.php │ ├── he │ └── kvexport.php │ ├── hi │ └── kvexport.php │ ├── hr │ └── kvexport.php │ ├── hy │ └── kvexport.php │ ├── is │ └── kvexport.php │ ├── ja │ └── kvexport.php │ ├── ka │ └── kvexport.php │ ├── kk │ └── kvexport.php │ ├── kn │ └── kvexport.php │ ├── ko │ └── kvexport.php │ ├── ky │ └── kvexport.php │ ├── lv │ └── kvexport.php │ ├── mi │ └── kvexport.php │ ├── mk │ └── kvexport.php │ ├── mn │ └── kvexport.php │ ├── mr │ └── kvexport.php │ ├── ms │ └── kvexport.php │ ├── mt │ └── kvexport.php │ ├── nb │ └── kvexport.php │ ├── nn │ └── kvexport.php │ ├── qu │ └── kvexport.php │ ├── ro │ └── kvexport.php │ ├── sa │ └── kvexport.php │ ├── se │ └── kvexport.php │ ├── sk │ └── kvexport.php │ ├── sl │ └── kvexport.php │ ├── sq │ └── kvexport.php │ ├── sr │ └── kvexport.php │ ├── sv │ └── kvexport.php │ ├── sw │ └── kvexport.php │ ├── ta │ └── kvexport.php │ ├── te │ └── kvexport.php │ ├── th │ └── kvexport.php │ ├── tj │ └── kvexport.php │ ├── tl │ └── kvexport.php │ ├── tn │ └── kvexport.php │ ├── ts │ └── kvexport.php │ ├── tt │ └── kvexport.php │ ├── ur │ └── kvexport.php │ ├── zu │ └── kvexport.php │ ├── zh-TW │ └── kvexport.php │ ├── zh-CN │ └── kvexport.php │ ├── fr │ └── kvexport.php │ ├── id │ └── kvexport.php │ ├── pt-PT │ └── kvexport.php │ ├── vi │ └── kvexport.php │ ├── ru │ └── kvexport.php │ ├── pl │ └── kvexport.php │ ├── hu │ └── kvexport.php │ ├── cs │ └── kvexport.php │ ├── pt │ └── kvexport.php │ ├── es │ └── kvexport.php │ ├── fa │ └── kvexport.php │ ├── de │ └── kvexport.php │ ├── it │ └── kvexport.php │ ├── uk │ └── kvexport.php │ ├── config.php │ ├── et │ └── kvexport.php │ ├── tr │ └── kvexport.php │ ├── pt-BR │ └── kvexport.php │ ├── lt │ └── kvexport.php │ ├── nl │ └── kvexport.php │ └── el │ └── kvexport.php ├── composer.json └── LICENSE.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | # github: [kartik-v] 4 | open_collective: yii2-export 5 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Scope 2 | This pull request includes a 3 | 4 | - [ ] Bug fix 5 | - [ ] New feature 6 | - [ ] Translation 7 | 8 | ## Changes 9 | The following changes were made (this change is also documented in the [change log](https://github.com/kartik-v/yii2-export/blob/master/CHANGE.md)): 10 | 11 | - 12 | - 13 | - 14 | 15 | ## Related Issues 16 | If this is related to an existing ticket, include a link to it as well. -------------------------------------------------------------------------------- /src/assets/css/kv-export-columns.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * @package yii2-export 3 | * @author Kartik Visweswaran 4 | * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2015 - 2023 5 | * @version 1.4.3 6 | * 7 | * Export Columns Selector Style Sheet 8 | * 9 | */.dropdown-menu.kv-checkbox-list{max-height:360px;min-width:240px;overflow:auto}.kv-checkbox-list .checkbox{padding:0 20px}.kv-checkbox-list .custom-checkbox{margin:.4rem 0 .4rem .8rem}.kv-checkbox-list label{width:100%}.kv-checkbox-list label.disabled{cursor:not-allowed;filter:alpha(opacity=65);opacity:.65}.kv-toggle-all{font-style:italic;color:#337ab7}.kv-toggle-all:hover{color:#286090} -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Number of days of inactivity before an issue becomes stale 2 | daysUntilStale: 60 3 | # Number of days of inactivity before a stale issue is closed 4 | daysUntilClose: 7 5 | # Issues with these labels will never be considered stale 6 | exemptLabels: 7 | - bug 8 | - enhancement 9 | - pinned 10 | - security 11 | # Label to use when marking an issue as stale 12 | staleLabel: wontfix 13 | # Comment to post when marking an issue as stale. Set to `false` to disable 14 | markComment: > 15 | This issue has been automatically marked as stale because it has not had 16 | recent activity. It will be closed if no further activity occurs. Thank you 17 | for your contributions. 18 | # Comment to post when closing a stale issue. Set to `false` to disable 19 | closeComment: false -------------------------------------------------------------------------------- /src/ExportColumnAsset.php: -------------------------------------------------------------------------------- 1 | 17 | * @since 1.0 18 | */ 19 | class ExportColumnAsset extends AssetBundle 20 | { 21 | /** 22 | * @inheritdoc 23 | */ 24 | public function init() 25 | { 26 | $this->setSourcePath(__DIR__.'/assets'); 27 | $this->setupAssets('js', ['js/kv-export-columns']); 28 | $this->setupAssets('css', ['css/kv-export-columns']); 29 | parent::init(); 30 | } 31 | } -------------------------------------------------------------------------------- /src/ExportMenuAsset.php: -------------------------------------------------------------------------------- 1 | 17 | * @since 1.0 18 | */ 19 | class ExportMenuAsset extends AssetBundle 20 | { 21 | /** 22 | * @inheritdoc 23 | */ 24 | public function init() 25 | { 26 | $this->depends = array_merge(["\\kartik\\dialog\\DialogAsset"], $this->depends); 27 | $this->setSourcePath(__DIR__.'/assets'); 28 | $this->setupAssets('js', ['js/kv-export-data']); 29 | parent::init(); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/assets/css/kv-export-columns.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * @package yii2-export 3 | * @author Kartik Visweswaran 4 | * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2015 - 2023 5 | * @version 1.4.3 6 | * 7 | * Export Columns Selector Style Sheet 8 | * 9 | */ 10 | .dropdown-menu.kv-checkbox-list { 11 | max-height: 360px; 12 | min-width: 240px; 13 | overflow: auto; 14 | } 15 | 16 | .kv-checkbox-list .checkbox { 17 | padding: 0 20px; 18 | } 19 | 20 | .kv-checkbox-list .custom-checkbox { 21 | margin: 0.4rem 0 0.4rem 0.8rem; 22 | } 23 | 24 | .kv-checkbox-list label { 25 | width: 100%; 26 | } 27 | 28 | .kv-checkbox-list label.disabled { 29 | cursor: not-allowed; 30 | filter: alpha(opacity=65); 31 | opacity: .65; 32 | } 33 | 34 | .kv-toggle-all { 35 | font-style: italic; 36 | color: #337ab7; 37 | } 38 | 39 | .kv-toggle-all:hover { 40 | color: #286090; 41 | } -------------------------------------------------------------------------------- /src/views/_view.php: -------------------------------------------------------------------------------- 1 | 5 | * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2015 - 2023 6 | * @version 1.4.3 7 | * 8 | * Export Submission View 9 | * 10 | */ 11 | 12 | use yii\helpers\Html; 13 | 14 | /** 15 | * @var bool $notBs3 16 | * @var string $icon 17 | * @var string $file 18 | * @var string $href 19 | */ 20 | $badgePrefix = $notBs3 ? 'badge bg-' : 'label label-'; 21 | ?> 22 | -------------------------------------------------------------------------------- /src/assets/js/kv-export-columns.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * @package yii2-export 3 | * @author Kartik Visweswaran 4 | * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2015 - 2023 5 | * @version 1.4.3 6 | * 7 | * Export Columns Selector Validation Module. 8 | * 9 | */ 10 | !function(t){"use strict";var n=function(n,o){var e=this;e.$element=t(n),e.options=o,e.listen()};n.prototype={constructor:n,listen:function(){var t=this,n=t.$element,o=n.find('input[name="export_columns_toggle"]');n.off("click").on("click",function(t){t.stopPropagation()}),o.off("change").on("change",function(){var t=o.is(":checked");n.find('input[name="export_columns_selector[]"]:not([disabled])').prop("checked",t)})}},t.fn.exportcolumns=function(o){var e=Array.apply(null,arguments);return e.shift(),this.each(function(){var c=t(this),i=c.data("exportcolumns"),s="object"==typeof o&&o;i||c.data("exportcolumns",i=new n(this,t.extend({},t.fn.exportcolumns.defaults,s,t(this).data()))),"string"==typeof o&&i[o].apply(i,e)})},t.fn.exportcolumns.defaults={}}(window.jQuery); -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kartik-v/yii2-export", 3 | "description": "A library to export server/db data in various formats (e.g. excel, html, pdf, csv etc.)", 4 | "keywords": [ 5 | "yii2", 6 | "extension", 7 | "widget", 8 | "export", 9 | "spreadsheet", 10 | "html", 11 | "csv", 12 | "text", 13 | "pdf", 14 | "json", 15 | "xls", 16 | "xlsx", 17 | "OpenXML" 18 | ], 19 | "homepage": "https://github.com/kartik-v/yii2-export", 20 | "type": "yii2-extension", 21 | "license": "BSD-3-Clause", 22 | "authors": [ 23 | { 24 | "name": "Kartik Visweswaran", 25 | "email": "kartikv2@gmail.com", 26 | "homepage": "http://www.krajee.com/" 27 | } 28 | ], 29 | "require": { 30 | "kartik-v/yii2-dynagrid": ">=1.5.5", 31 | "kartik-v/yii2-mpdf": ">=1.0", 32 | "phpoffice/phpspreadsheet": ">=1.0" 33 | }, 34 | "autoload": { 35 | "psr-4": { 36 | "kartik\\export\\": "src" 37 | } 38 | }, 39 | "extra": { 40 | "branch-alias": { 41 | "dev-master": "1.4.x-dev" 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /src/ExportWriterPdf.php: -------------------------------------------------------------------------------- 1 | 18 | * @since 1.0 19 | */ 20 | class ExportWriterPdf extends Mpdf 21 | { 22 | /** 23 | * @var string the exported output file name. Defaults to 'grid-export'; 24 | */ 25 | public $filename = ''; 26 | 27 | /** 28 | * @var array kartik\mpdf\Pdf component configuration settings 29 | */ 30 | public $pdfConfig = []; 31 | 32 | /** 33 | * @inheritdoc 34 | */ 35 | protected function createExternalWriterInstance($config = []) 36 | { 37 | if (isset($config['tempDir'])) { 38 | unset($config['tempDir']); 39 | } 40 | $config = array_replace_recursive($config, $this->pdfConfig); 41 | $pdf = new Pdf($config); 42 | 43 | return $pdf->getApi(); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Prerequisites 2 | 3 | - [ ] I have searched for similar issues in both open and closed tickets and cannot find a duplicate. 4 | - [ ] The issue still exists against the latest `master` branch of yii2-export. 5 | - [ ] This is not an usage question. I confirm having gone through and read the [documentation](http://demos.krajee.com/export) and [demos](http://demos.krajee.com/export-demo). 6 | - [ ] This is not a general programming / coding question. (Those should be directed to the [webtips Q & A forum](http://webtips.krajee.com/questions)). 7 | - [ ] I have attempted to find the simplest possible steps to reproduce the issue. 8 | - [ ] I have included a failing test as a pull request (Optional). 9 | 10 | ## Steps to reproduce the issue 11 | 12 | 1. 13 | 2. 14 | 3. 15 | 16 | ## Expected behavior and actual behavior 17 | 18 | When I follow those steps, I see... 19 | 20 | I was expecting... 21 | 22 | ## Environment 23 | 24 | #### Browsers 25 | 26 | - [ ] Google Chrome 27 | - [ ] Mozilla Firefox 28 | - [ ] Internet Explorer 29 | - [ ] Safari 30 | 31 | #### Operating System 32 | 33 | - [ ] Windows 34 | - [ ] Mac OS X 35 | - [ ] Linux 36 | - [ ] Mobile 37 | 38 | #### Libraries 39 | 40 | - jQuery version: 41 | - yii2-export version: 42 | 43 | ## Isolating the problem 44 | 45 | - [ ] This bug happens [on the demos page](https://demos.krajee.com/export-demo) 46 | - [ ] The bug happens consistently across all tested browsers 47 | - [ ] This bug happens when using yii2-export without other plugins. 48 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 - 2023, Kartik Visweswaran 2 | Krajee.com 3 | All rights reserved. 4 | 5 | Redistribution and use in source and binary forms, with or without modification, 6 | are permitted provided that the following conditions are met: 7 | 8 | * Redistributions of source code must retain the above copyright notice, this 9 | list of conditions and the following disclaimer. 10 | 11 | * Redistributions in binary form must reproduce the above copyright notice, this 12 | list of conditions and the following disclaimer in the documentation and/or 13 | other materials provided with the distribution. 14 | 15 | * Neither the names of Kartik Visweswaran or Krajee nor the names of its 16 | contributors may be used to endorse or promote products derived from 17 | this software without specific prior written permission. 18 | 19 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 20 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 21 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 22 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR 23 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 24 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 25 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 26 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 28 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 | -------------------------------------------------------------------------------- /src/assets/js/kv-export-columns.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * @package yii2-export 3 | * @author Kartik Visweswaran 4 | * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2015 - 2023 5 | * @version 1.4.3 6 | * 7 | * Export Columns Selector Validation Module. 8 | * 9 | */ 10 | (function ($) { 11 | "use strict"; 12 | 13 | var ExportColumns = function (element, options) { 14 | var self = this; 15 | self.$element = $(element); 16 | self.options = options; 17 | self.listen(); 18 | }; 19 | 20 | ExportColumns.prototype = { 21 | constructor: ExportColumns, 22 | listen: function () { 23 | var self = this, $el = self.$element, $tog = $el.find('input[name="export_columns_toggle"]'); 24 | $el.off('click').on('click', function (e) { 25 | e.stopPropagation(); 26 | }); 27 | $tog.off('change').on('change', function () { 28 | var checked = $tog.is(':checked'); 29 | $el.find('input[name="export_columns_selector[]"]:not([disabled])').prop('checked', checked); 30 | }); 31 | } 32 | }; 33 | 34 | //ExportColumns plugin definition 35 | $.fn.exportcolumns = function (option) { 36 | var args = Array.apply(null, arguments); 37 | args.shift(); 38 | return this.each(function () { 39 | var $this = $(this), 40 | data = $this.data('exportcolumns'), 41 | options = typeof option === 'object' && option; 42 | 43 | if (!data) { 44 | $this.data('exportcolumns', (data = new ExportColumns(this, 45 | $.extend({}, $.fn.exportcolumns.defaults, options, $(this).data())))); 46 | } 47 | 48 | if (typeof option === 'string') { 49 | data[option].apply(data, args); 50 | } 51 | }); 52 | }; 53 | 54 | $.fn.exportcolumns.defaults = {}; 55 | 56 | })(window.jQuery); -------------------------------------------------------------------------------- /src/messages/af/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/ar/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/az/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/bg/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/bs/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/ca/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/da/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/en/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/eo/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/eu/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/fi/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/fo/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/gl/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/gu/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/he/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/hi/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/hr/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/hy/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/is/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/ja/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/ka/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/kk/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/kn/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/ko/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/ky/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/lv/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/mi/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/mk/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/mn/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/mr/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/ms/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/mt/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/nb/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/nn/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/qu/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/ro/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/sa/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/se/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/sk/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/sl/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/sq/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/sr/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/sv/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/sw/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/ta/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/te/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/th/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/tj/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/tl/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/tn/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/ts/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/tt/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/ur/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/zu/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/zh-TW/kvexport.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Column' => '', 22 | 'Comma Separated Values' => '', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => '', 24 | 'Download exported file' => '', 25 | 'Excel 2007+' => '', 26 | 'Excel 95 +' => '', 27 | 'Export data in selected format' => '', 28 | 'Exported File' => '', 29 | 'Generating the export file. Please wait...' => '', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 31 | 'HTML' => '', 32 | 'Hyper Text Markup Language' => '', 33 | 'Input error' => '', 34 | 'Key' => '', 35 | 'Microsoft Excel 2007+ (xlsx)' => '', 36 | 'Microsoft Excel 95+ (xls)' => '', 37 | 'Ok to proceed?' => '', 38 | 'PDF' => '', 39 | 'Pick from list' => '', 40 | 'Please pick a value from the drop-down list.' => '', 41 | 'Portable Document Format' => '', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '', 43 | 'Select Columns' => '', 44 | 'Select columns to export' => '', 45 | 'Tab Delimited Text' => '', 46 | 'Text' => '', 47 | 'The CSV export file will be generated for download.' => '', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => '', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => '', 50 | 'The HTML export file will be generated for download.' => '', 51 | 'The PDF export file will be generated for download.' => '', 52 | 'The TEXT export file will be generated for download.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/zh-CN/kvexport.php: -------------------------------------------------------------------------------- 1 | '列', 21 | 'Disable any popup blockers in your browser to ensure proper download.' => '请禁用浏览器弹出窗拦截器以确保正常下载。', 22 | 'Export data in selected format' => '以选定格式导出数据', 23 | 'Generating the export file. Please wait...' => '正在生成导出文件,请稍后...', 24 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '表格数据由Krajee的ExportMenu组件(yii2-export)生成导出', 25 | 'Ok to proceed?' => '确定继续?', 26 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '请求已提交!你可以在下载完文件后安全地关闭本对话框。', 27 | 'Select Columns' => '选择列', 28 | 'Select columns to export' => '选择导出列', 29 | 'Tab Delimited Text' => 'Tab分隔的文本', 30 | 'The CSV export file will be generated for download.' => 'CSV文件即将生成下载。', 31 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'EXCEL 2007+ (xlsx)文件即将生成下载。', 32 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'EXCEL 95+ (xls)文件即将生成下载。', 33 | 'The HTML export file will be generated for download.' => 'HTML文件即将生成下载。', 34 | 'The PDF export file will be generated for download.' => 'PDF文件即将生成下载。', 35 | 'The TEXT export file will be generated for download.' => 'TEXT文件即将生成下载。', 36 | 'grid-export' => '表格导出', 37 | 'CSV' => '', 38 | 'Comma Separated Values' => '', 39 | 'Download exported file' => '', 40 | 'Excel 2007+' => '', 41 | 'Excel 95 +' => '', 42 | 'Exported File' => '', 43 | 'HTML' => '', 44 | 'Hyper Text Markup Language' => '', 45 | 'Input error' => '', 46 | 'Key' => '', 47 | 'Microsoft Excel 2007+ (xlsx)' => '', 48 | 'Microsoft Excel 95+ (xls)' => '', 49 | 'PDF' => '', 50 | 'Pick from list' => '', 51 | 'Please pick a value from the drop-down list.' => '', 52 | 'Portable Document Format' => '', 53 | 'Text' => '', 54 | 'Value' => '', 55 | 'Value is not in list.' => '', 56 | 'Toggle All' => '@@反选所有@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/fr/kvexport.php: -------------------------------------------------------------------------------- 1 | 'Champ', 21 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Veuillez désactiver les pop-ups dans votre navigateur afin de garantir un téléchargement correct', 22 | 'Download exported file' => 'Télécharger le fichier', 23 | 'Export data in selected format' => 'Exporter dans le format sélectionné', 24 | 'Exported File' => 'Fichier exporté', 25 | 'Generating the export file. Please wait...' => 'Génération de l\'exportation. Veuillez patienter...', 26 | 'Ok to proceed?' => 'Continuer?', 27 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Requête envoyée! Vous pourrez fermer cette fenêtre une fois le fichier téléchargé', 28 | 'Select Columns' => 'Choisir les champs', 29 | 'Select columns to export' => 'Choisir les champs à exporter', 30 | 'Text' => 'Texte', 31 | 'The CSV export file will be generated for download.' => 'Le fichier CSV va être généré', 32 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'Le fichier Excel va être généré', 33 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'Le fichier Excel va être généré', 34 | 'The HTML export file will be generated for download.' => 'Le fichier HTML va être généré', 35 | 'The PDF export file will be generated for download.' => 'Le fichier PDF va être généré', 36 | 'The TEXT export file will be generated for download.' => 'Le fichier texte va être généré', 37 | 'CSV' => '', 38 | 'Comma Separated Values' => '', 39 | 'Excel 2007+' => '', 40 | 'Excel 95 +' => '', 41 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 42 | 'HTML' => '', 43 | 'Hyper Text Markup Language' => '', 44 | 'Input error' => '', 45 | 'Key' => '', 46 | 'Microsoft Excel 2007+ (xlsx)' => '', 47 | 'Microsoft Excel 95+ (xls)' => '', 48 | 'PDF' => '', 49 | 'Pick from list' => '', 50 | 'Please pick a value from the drop-down list.' => '', 51 | 'Portable Document Format' => '', 52 | 'Tab Delimited Text' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@(Dé)selectionner tout@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/id/kvexport.php: -------------------------------------------------------------------------------- 1 | 'Kolom', 21 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Non-aktifkan semua popup blocker di browser Anda untuk memastikan proses unduh berjalan lancar', 22 | 'Export data in selected format' => 'Ekspor data dalam format yang ditentukan', 23 | 'Exported File' => 'Ekspor File', 24 | 'Generating the export file. Please wait...' => 'Sedang membuat file unduh-an. Silakan tunggu ...', 25 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Permintaan disampaikan! Anda dapat menutup dialog ini setelah berkas ter-unduh.', 26 | 'Select Columns' => 'Pilih Kolom', 27 | 'Select columns to export' => 'Pilih kolom untuk di ekspor', 28 | 'Text' => 'Teks', 29 | 'The CSV export file will be generated for download.' => 'Berkas CSV akan dibuat untuk di-unduh', 30 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'Berkas EXCEL 2007+ (xlsx) akan dibuat untuk di-unduh', 31 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'Berkas EXCEL 95+ (xls) akan dibuat untuk di-unduh', 32 | 'The HTML export file will be generated for download.' => 'Berkas HTML akan dibuat untuk di-unduh', 33 | 'The PDF export file will be generated for download.' => 'Berkas PDF akan dibuat untuk di-unduh', 34 | 'The TEXT export file will be generated for download.' => 'Berkas TEXT akan dibuat untuk di-unduh', 35 | 'CSV' => '', 36 | 'Comma Separated Values' => '', 37 | 'Download exported file' => '', 38 | 'Excel 2007+' => '', 39 | 'Excel 95 +' => '', 40 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 41 | 'HTML' => '', 42 | 'Hyper Text Markup Language' => '', 43 | 'Input error' => '', 44 | 'Key' => '', 45 | 'Microsoft Excel 2007+ (xlsx)' => '', 46 | 'Microsoft Excel 95+ (xls)' => '', 47 | 'Ok to proceed?' => '', 48 | 'PDF' => '', 49 | 'Pick from list' => '', 50 | 'Please pick a value from the drop-down list.' => '', 51 | 'Portable Document Format' => '', 52 | 'Tab Delimited Text' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/pt-PT/kvexport.php: -------------------------------------------------------------------------------- 1 | 'CSV', 21 | 'Column' => '', 22 | 'Comma Separated Values' => 'Valores separados por vírgula', 23 | 'Download exported file' => '', 24 | 'Export data in selected format' => '', 25 | 'Select Columns' => '', 26 | 'Select columns to export' => '', 27 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Desactive qualquer bloqueador de popups no seu browser para garantir o correcto download', 28 | 'Excel 2007+' => 'Excel 2007+', 29 | 'Excel 95 +' => 'Excel 95 +', 30 | 'Exported File' => '', 31 | 'Generating the export file. Please wait...' => 'A gerar o ficheiro para exportar. Por favor aguarde...', 32 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => 'Exportador de tabelas criado por Krajee ExportMenu widget (yii2-export)', 33 | 'HTML' => 'HTML', 34 | 'Hyper Text Markup Language' => 'Linguagem de Marcação de Hipertexto', 35 | 'Microsoft Excel 2007+ (xlsx)' => 'Microsoft Excel 2007+ (xlsx)', 36 | 'Microsoft Excel 95+ (xls)' => 'Microsoft Excel 95+ (xls)', 37 | 'Ok to proceed?' => 'Ok para continuar?', 38 | 'PDF' => 'PDF', 39 | 'Portable Document Format' => 'Documento em formato PDF', 40 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Pedido submetido! Pode fechar esta janela depois de finalizado o download do ficheiro', 41 | 'Tab Delimited Text' => 'Texto delimitado por tabulações', 42 | 'Text' => 'Texto', 43 | 'The CSV export file will be generated for download.' => 'O ficheiro CSV será gerado para download', 44 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'O ficheiro EXCEL 2007+ (xlsx) será gerado para download', 45 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'O ficheiro EXCEL 95+ (xls) será gerado para download', 46 | 'The HTML export file will be generated for download.' => 'O ficheiro HTML será gerado para download', 47 | 'The PDF export file will be generated for download.' => 'O ficheiro PDF será gerado para download', 48 | 'The TEXT export file will be generated for download.' => 'O ficheiro de Texto será gerado para download', 49 | 'grid-export' => '', 50 | 'Toggle All' => '', 51 | ]; 52 | -------------------------------------------------------------------------------- /src/messages/vi/kvexport.php: -------------------------------------------------------------------------------- 1 | 'CSV', 21 | 'Column' => 'Cột', 22 | 'Comma Separated Values' => 'Dấu phẩy phân cách giá trị', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Tắt chặn popup của trình duyệt để chắc chắn tải về.', 24 | 'Download exported file' => 'Tải tiệp xuất giữ liệu', 25 | 'Excel 2007+' => 'Excel 2007+', 26 | 'Excel 95 +' => 'Excel 95 +', 27 | 'Export data in selected format' => 'Xuất dữ liệu theo mẫu được chọn', 28 | 'Exported File' => 'Xuất ra tiệp', 29 | 'Generating the export file. Please wait...' => 'Đang xuất ra tiệp. Vui lòng chờ...', 30 | 'HTML' => 'HTML', 31 | 'Hyper Text Markup Language' => 'HTML', 32 | 'Microsoft Excel 2007+ (xlsx)' => 'Excel 2007+ (xlsx)', 33 | 'Microsoft Excel 95+ (xls)' => 'Excel 95+ (xls)', 34 | 'Ok to proceed?' => 'Đồng ý thực hiện', 35 | 'PDF' => 'PDF', 36 | 'Portable Document Format' => 'PDF', 37 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Yêu cầu đã được gửi! Bạn có thể đóng cửa sổ sau khi hoàn tất tải tiệp', 38 | 'Select Columns' => 'Chọn Cột', 39 | 'Select columns to export' => 'Chọn cột để xuất dữ liệu', 40 | 'Tab Delimited Text' => 'Phân cách dữ liệu bằng Tab', 41 | 'Text' => 'Văn Bản (Text)', 42 | 'The CSV export file will be generated for download.' => 'Tiệp CSV sẽ được xuất để tải về.', 43 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'Tiệp EXCEL 95+ (xlsx) sẽ được xuất để tải về.', 44 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'Tiệp EXCEL 95+ (xls) sẽ được xuất để tải về.', 45 | 'The HTML export file will be generated for download.' => 'Tiệp HTML sẽ được xuất để tải về.', 46 | 'The PDF export file will be generated for download.' => 'Tiệp PDF sẽ được xuất để tải về.', 47 | 'The TEXT export file will be generated for download.' => 'Tiệp TXT sẽ được xuất để tải về.', 48 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 49 | 'Input error' => '', 50 | 'Key' => '', 51 | 'Pick from list' => '', 52 | 'Please pick a value from the drop-down list.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/ru/kvexport.php: -------------------------------------------------------------------------------- 1 | 'Поле', 21 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Отключите блокировку всплывающих окон в вашем браузере, чтобы это не мешало загрузке.', 22 | 'Export data in selected format' => 'Выберите формат файла для экспорта', 23 | 'Generating the export file. Please wait...' => 'Файл экспорта генерируется, ожидайте...', 24 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => 'Файл сгенерирован при помощи Krajee ExportMenu widget (yii2-export)', 25 | 'Ok to proceed?' => 'Продолжить?', 26 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Запрос принят. Вы можете закрыть это окно после окончания загрузки файла.', 27 | 'Select Columns' => 'Поля для экспорта', 28 | 'Select columns to export' => 'Выберите поля для экспорта', 29 | 'The CSV export file will be generated for download.' => 'Будет сгенерирован файл в формате CSV.', 30 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'Будет сгенерирован файл в формате EXCEL 2007+ (xlsx).', 31 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'Будет сгенерирован файл в формате EXCEL 95+ (xls).', 32 | 'The HTML export file will be generated for download.' => 'Будет сгенерирован файл в формате HTML.', 33 | 'The PDF export file will be generated for download.' => 'Будет сгенерирован файл в формате PDF.', 34 | 'The TEXT export file will be generated for download.' => 'Будет сгенерирован файл в формате TEXT.', 35 | 'CSV' => '', 36 | 'Comma Separated Values' => '', 37 | 'Download exported file' => 'Скачать экспортированный файл', 38 | 'Excel 2007+' => '', 39 | 'Excel 95 +' => '', 40 | 'Exported File' => '', 41 | 'HTML' => '', 42 | 'Hyper Text Markup Language' => '', 43 | 'Input error' => '', 44 | 'Key' => '', 45 | 'Microsoft Excel 2007+ (xlsx)' => '', 46 | 'Microsoft Excel 95+ (xls)' => '', 47 | 'PDF' => '', 48 | 'Pick from list' => '', 49 | 'Please pick a value from the drop-down list.' => '', 50 | 'Portable Document Format' => '', 51 | 'Tab Delimited Text' => '', 52 | 'Text' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@Выбрать все@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/pl/kvexport.php: -------------------------------------------------------------------------------- 1 | 'CSV', 21 | 'Column' => 'Kolumna', 22 | 'Comma Separated Values' => 'Wartości rozdzielone przecinkiem', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Wyłącz blokowanie okien aby poprawnie pobrać plik', 24 | 'Download exported file' => 'Pobierz plik', 25 | 'Export data in selected format' => 'Eksport danych w wybranym formacie', 26 | 'Exported File' => 'Plik', 27 | 'Generating the export file. Please wait...' => 'Trwa generowanie pliku. Proszę czekać...', 28 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => 'Wygenerowane przez Krajee ExportMenu widget (yii2-export)', 29 | 'Ok to proceed?' => 'Wykonać?', 30 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Można zamknąć to okno po pobraniu pliku.', 31 | 'Select Columns' => 'Wybierz kolumny', 32 | 'Select columns to export' => 'Wybierz kolumny do eksportu', 33 | 'Tab Delimited Text' => 'Tekst rozdzielony tabulatorem', 34 | 'Text' => 'Tekst', 35 | 'The CSV export file will be generated for download.' => 'Plik CSV zostanie wygenerowany do pobrania.', 36 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'Plik EXCEL 2007+ (xlsx) zostanie wygenerowany do pobrania.', 37 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'Plik EXCEL 95+ (xls) zostanie wygenerowany do pobrania.', 38 | 'The HTML export file will be generated for download.' => 'Plik HTML zostanie wygenerowany do pobrania.', 39 | 'The PDF export file will be generated for download.' => 'Plik PDF zostanie wygenerowany do pobrania.', 40 | 'The TEXT export file will be generated for download.' => 'Plik tekstowy zostanie wygenerowany do pobrania.', 41 | 'grid-export' => 'eksport', 42 | 'Excel 2007+' => '', 43 | 'Excel 95 +' => '', 44 | 'HTML' => '', 45 | 'Hyper Text Markup Language' => '', 46 | 'Input error' => '', 47 | 'Key' => '', 48 | 'Microsoft Excel 2007+ (xlsx)' => '', 49 | 'Microsoft Excel 95+ (xls)' => '', 50 | 'PDF' => '', 51 | 'Pick from list' => '', 52 | 'Please pick a value from the drop-down list.' => '', 53 | 'Portable Document Format' => '', 54 | 'Value' => '', 55 | 'Value is not in list.' => '', 56 | 'Toggle All' => '@@Przełącz wszystkie@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/hu/kvexport.php: -------------------------------------------------------------------------------- 1 | 'Oszlop', 21 | 'Comma Separated Values' => 'Vesszővel tagolt értékek', 22 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Kapcsoljon ki minden felugró ablak blokkolót a böngészőjében a sikeres letöltés érdekében.', 23 | 'Download exported file' => 'Exportfájl letöltése', 24 | 'Export data in selected format' => 'Adat exportálása a kiválasztott formátumban', 25 | 'Exported File' => 'Exportált fájl', 26 | 'Generating the export file. Please wait...' => 'Export fájl előkészítése letöltésre. Várjon...', 27 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => 'Export készítő: Krajee ExportMenu widget (yii2-export)', 28 | 'Ok to proceed?' => 'Folytathatjuk?', 29 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Kérés elküldve! Letöltés után az ablakot bezárhatja.', 30 | 'Select Columns' => 'Oszlopok kiválasztása', 31 | 'Select columns to export' => 'Exportálandó oszlopok kiválasztása', 32 | 'Tab Delimited Text' => 'Tabulátorral tagolt szöveg', 33 | 'Text' => 'Szöveg', 34 | 'The CSV export file will be generated for download.' => 'A CSV fájl előkészítése letöltésre.', 35 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'Az EXCEL 2007+ (xlsx) fájl előkészítése letöltésre.', 36 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'Az EXCEL fájl előkészítése letöltésre.', 37 | 'The HTML export file will be generated for download.' => 'A HTML fájl előkészítése letöltésre.', 38 | 'The PDF export file will be generated for download.' => 'A PDF fájl előkészítése a letöltésre.', 39 | 'The TEXT export file will be generated for download.' => 'A szöveges export fájl előkészítése letöltésre.', 40 | 'CSV' => '', 41 | 'Excel 2007+' => '', 42 | 'Excel 95 +' => '', 43 | 'HTML' => '', 44 | 'Hyper Text Markup Language' => '', 45 | 'Input error' => '', 46 | 'Key' => '', 47 | 'Microsoft Excel 2007+ (xlsx)' => '', 48 | 'Microsoft Excel 95+ (xls)' => '', 49 | 'PDF' => '', 50 | 'Pick from list' => '', 51 | 'Please pick a value from the drop-down list.' => '', 52 | 'Portable Document Format' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@Összes kijelölése@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/cs/kvexport.php: -------------------------------------------------------------------------------- 1 | 'CSV', 21 | 'Column' => 'Sloupec', 22 | 'Comma Separated Values' => 'Hodnoty oddělené čárkou', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Pro bezchybné stažení, prosím, vypněte blokování vyskakovacích oken pro tyto webové stránky.', 24 | 'Excel 2007+' => 'Excel 2007+', 25 | 'Excel 95 +' => 'Excel 95+', 26 | 'Export data in selected format' => 'Exportovat data ve zvoleném formátu', 27 | 'Generating the export file. Please wait...' => 'Generuje se soubor. Prosím čekejte...', 28 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => 'Export byl vytvořen pomocí Krajee ExportMenu (yii2-export)', 29 | 'HTML' => 'HTML', 30 | 'Hyper Text Markup Language' => 'Jazyk HTML', 31 | 'Microsoft Excel 2007+ (xlsx)' => 'Microsoft Excel 2007+ (xlsx)', 32 | 'Microsoft Excel 95+ (xls)' => 'Microsoft Excel 95+ (xls)', 33 | 'Ok to proceed?' => 'OK pro pokračování?', 34 | 'PDF' => 'PDF', 35 | 'Portable Document Format' => 'Přenositelný formát dokumentu', 36 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Požadavek odeslán! Po stažení souboru můžete toto okno bez obav zavřít.', 37 | 'Select Columns' => 'Zvolte sloupce', 38 | 'Select columns to export' => 'Zvolte sloupce k exportu', 39 | 'Tab Delimited Text' => 'Text oddělený tabulátorem', 40 | 'Text' => 'Text', 41 | 'The CSV export file will be generated for download.' => 'Soubor CSV bude vygenerován a stažen.', 42 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'Soubor Excel 2007+ (xlsx) bude vygenerován a stažen.', 43 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'Soubor Excel 95+ (xls) bude vygenerován a stažen.', 44 | 'The HTML export file will be generated for download.' => 'Soubor HTML bude vygenerován a stažen.', 45 | 'The PDF export file will be generated for download.' => 'Soubor PDF bude vygenerován a stažen.', 46 | 'The TEXT export file will be generated for download.' => 'Soubor Text bude vygenerován a stažen.', 47 | 'grid-export' => 'export', 48 | 'Download exported file' => '', 49 | 'Exported File' => '', 50 | 'Input error' => '', 51 | 'Key' => '', 52 | 'Pick from list' => '', 53 | 'Please pick a value from the drop-down list.' => '', 54 | 'Value' => '', 55 | 'Value is not in list.' => '', 56 | 'Toggle All' => '@@Vybrat vše@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/pt/kvexport.php: -------------------------------------------------------------------------------- 1 | 'CSV', 21 | 'Comma Separated Values' => 'Valores separados por vírgula', 22 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Desactive qualquer bloqueador de popups no seu browser para garantir o correcto download', 23 | 'Excel 2007+' => 'Excel 2007+', 24 | 'Excel 95 +' => 'Excel 95 +', 25 | 'Generating the export file. Please wait...' => 'A gerar o ficheiro para exportar. Por favor aguarde...', 26 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => 'Exportador de tabelas criado por Krajee ExportMenu widget (yii2-export)', 27 | 'HTML' => 'HTML', 28 | 'Hyper Text Markup Language' => 'Linguagem de Marcação de Hipertexto', 29 | 'Microsoft Excel 2007+ (xlsx)' => 'Microsoft Excel 2007+ (xlsx)', 30 | 'Microsoft Excel 95+ (xls)' => 'Microsoft Excel 95+ (xls)', 31 | 'Ok to proceed?' => 'Ok para continuar?', 32 | 'PDF' => 'PDF', 33 | 'Portable Document Format' => 'Documento em formato PDF', 34 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Pedido submetido! Pode fechar esta janela depois de finalizado o download do ficheiro', 35 | 'Tab Delimited Text' => 'Texto delimitado por tabulações', 36 | 'Text' => 'Texto', 37 | 'The CSV export file will be generated for download.' => 'O ficheiro CSV será gerado para download', 38 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'O ficheiro EXCEL 2007+ (xlsx) será gerado para download', 39 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'O ficheiro EXCEL 95+ (xls) será gerado para download', 40 | 'The HTML export file will be generated for download.' => 'O ficheiro HTML será gerado para download', 41 | 'The PDF export file will be generated for download.' => 'O ficheiro PDF será gerado para download', 42 | 'The TEXT export file will be generated for download.' => 'O ficheiro de Texto será gerado para download', 43 | 'Column' => '', 44 | 'Download exported file' => '', 45 | 'Export data in selected format' => '', 46 | 'Exported File' => '', 47 | 'Input error' => '', 48 | 'Key' => '', 49 | 'Pick from list' => '', 50 | 'Please pick a value from the drop-down list.' => '', 51 | 'Select Columns' => '', 52 | 'Select columns to export' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/es/kvexport.php: -------------------------------------------------------------------------------- 1 | 'Columna', 21 | 'Comma Separated Values' => 'Valores Separados por Coma', 22 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Desactive bloqueadores de ventanas emergentes para asegurar una descarga correcta.', 23 | 'Download exported file' => 'Descargar archivo exportado', 24 | 'Export data in selected format' => 'Exportar datos en el formato seleccionado', 25 | 'Exported File' => 'Archivo Exportado', 26 | 'Generating the export file. Please wait...' => 'Generando el archivo de exportación. Por favor espere...', 27 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => 'Exportación de grilla generada por Krajee ExportMenu (yii2-export)', 28 | 'Ok to proceed?' => '¿Ok para continuar?', 29 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => '¡Solicitud enviada! Puede cerrar este diálogo después de guardar el archivo descargado.', 30 | 'Select Columns' => 'Seleccionar Columnas', 31 | 'Select columns to export' => 'Seleccionar columnas a exportar', 32 | 'Tab Delimited Text' => 'Texto Delimitado por Tabulaciones', 33 | 'The CSV export file will be generated for download.' => 'El archivo CSV será generado para descargar', 34 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'El archivo EXCEL 2007+ (xlsx) será generado para descargar', 35 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'El archivo EXCEL 95+ (xls) será generado para descargar', 36 | 'The HTML export file will be generated for download.' => 'El archivo HTML será generado para descargar', 37 | 'The PDF export file will be generated for download.' => 'El archivo PDF será generado para descargar', 38 | 'The TEXT export file will be generated for download.' => 'El archivo TEXT será generado para descargar', 39 | 'CSV' => '', 40 | 'Excel 2007+' => '', 41 | 'Excel 95 +' => '', 42 | 'HTML' => '', 43 | 'Hyper Text Markup Language' => '', 44 | 'Input error' => '', 45 | 'Key' => '', 46 | 'Microsoft Excel 2007+ (xlsx)' => '', 47 | 'Microsoft Excel 95+ (xls)' => '', 48 | 'PDF' => '', 49 | 'Pick from list' => '', 50 | 'Please pick a value from the drop-down list.' => '', 51 | 'Portable Document Format' => '', 52 | 'Text' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@Mostrar Todos@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/fa/kvexport.php: -------------------------------------------------------------------------------- 1 | 'ستون', 21 | 'Comma Separated Values' => 'مقادیر جدا شده به وسیله کاما', 22 | 'Disable any popup blockers in your browser to ensure proper download.' => 'برای اطمینان از صحت دانلود، مسدود کننده پاپ آپ مرورگر خود را غیر فعال کنید.', 23 | 'Download exported file' => 'دانلود فایل خروجی', 24 | 'Export data in selected format' => 'خروجی داده در فرمت انتخابی', 25 | 'Exported File' => 'فایل خروجی', 26 | 'Generating the export file. Please wait...' => 'در حال تولید فایل خروجی. لطفا منتظر باشید', 27 | 'Hyper Text Markup Language' => 'زبان نشانه گذاری اَبَر متن', 28 | 'Input error' => 'خطای ورودی', 29 | 'Key' => 'کلید', 30 | 'Ok to proceed?' => 'تایید برای پردازش؟', 31 | 'Pick from list' => 'انتخاب از لیست', 32 | 'Please pick a value from the drop-down list.' => 'لطفا مقداری را از لیست کشویی انتخاب نمایید.', 33 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'درخواست ارسال شد! شما با خیال راحت ممکن می‌توانید این صفحه را پس از ذخیره فایل های دانلود شده خود ببندید.', 34 | 'Select Columns' => 'انتخاب ستون‌ها', 35 | 'Select columns to export' => 'انتخاب ستون‌ها برای خروجی', 36 | 'Tab Delimited Text' => 'متن جدا شده با Tab', 37 | 'Text' => 'متن', 38 | 'The CSV export file will be generated for download.' => 'فایل CSV خروجی برای دانلود ایجاد خواهد شد.', 39 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'فایل EXCEL 2007+ (xlsx) خروجی برای دانلود ایجاد خواهد شد.', 40 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'فایل EXCEL 95+ (xls) خروجی برای دانلود ایجاد خواهد شد.', 41 | 'The HTML export file will be generated for download.' => 'فایل HTML خروجی برای دانلود ایجاد خواهد شد.', 42 | 'The PDF export file will be generated for download.' => 'فایل PDF خروجی برای دانلود ایجاد خواهد شد.', 43 | 'The TEXT export file will be generated for download.' => 'فایل TEXT خروجی برای دانلود ایجاد خواهد شد.', 44 | 'Value' => 'مقدار', 45 | 'Value is not in list.' => 'مقدار در لیست وجود ندارد', 46 | 'grid-export' => 'خروجی گرید', 47 | 'CSV' => '', 48 | 'Excel 2007+' => '', 49 | 'Excel 95 +' => '', 50 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => '', 51 | 'HTML' => '', 52 | 'Microsoft Excel 2007+ (xlsx)' => '', 53 | 'Microsoft Excel 95+ (xls)' => '', 54 | 'PDF' => '', 55 | 'Portable Document Format' => '', 56 | 'Toggle All' => '@@همه را تغییر دهید@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/de/kvexport.php: -------------------------------------------------------------------------------- 1 | 'Spalte', 21 | 'Comma Separated Values' => 'Komma-getrennte Werte', 22 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Deaktivieren Sie den Popup-Blocker in Ihrem Browser damit der Download funktioniert.', 23 | 'Download exported file' => 'Herunterladen exportierte Datei', 24 | 'Export data in selected format' => 'Exportieren von Daten in ausgewählten Format', 25 | 'Exported File' => 'Exportierte Datei', 26 | 'Generating the export file. Please wait...' => 'Generieren der Exportdatei. Warten Sie bitte...', 27 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => 'Grid Export erzeugt durch Krajee ExportMenü-Widget (yii2-export)', 28 | 'Ok to proceed?' => 'Fortfahren?', 29 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Anfrage übermittelt! Sie können diesen Dialog schließen nachdem Sie die Datei gespeichert haben.', 30 | 'Select Columns' => 'Spalten auswählen', 31 | 'Select columns to export' => 'Wählen Sie Spalten zu exportieren', 32 | 'Tab Delimited Text' => 'Tabulator-Text', 33 | 'The CSV export file will be generated for download.' => 'Die CSV-Export-Datei wird für den Download erstellt.', 34 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'Die Excel 2007+(xlsx)-Export-Datei wird für den Download erstellt.', 35 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'Die Excel 95+(xls)-Export-Datei wird für den Download erstellt.', 36 | 'The HTML export file will be generated for download.' => 'Die HTML-Export-Datei wird für den Download erstellt.', 37 | 'The PDF export file will be generated for download.' => 'Die PDF-Export-Datei wird für den Download erstellt.', 38 | 'The TEXT export file will be generated for download.' => 'Die Text-Export-Datei wird für den Download erstellt.', 39 | 'CSV' => '', 40 | 'Excel 2007+' => '', 41 | 'Excel 95 +' => '', 42 | 'HTML' => '', 43 | 'Hyper Text Markup Language' => '', 44 | 'Input error' => '', 45 | 'Key' => '', 46 | 'Microsoft Excel 2007+ (xlsx)' => '', 47 | 'Microsoft Excel 95+ (xls)' => '', 48 | 'PDF' => '', 49 | 'Pick from list' => '', 50 | 'Please pick a value from the drop-down list.' => '', 51 | 'Portable Document Format' => '', 52 | 'Text' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@Alle umschalten@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/it/kvexport.php: -------------------------------------------------------------------------------- 1 | 'Colonna', 21 | 'Comma Separated Values' => 'Valori Separati Da Virgole', 22 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Disabilita qualsiasi blockers popup nel tuo browser per permettere il download', 23 | 'Download exported file' => 'Scarica il file esportato', 24 | 'Export data in selected format' => 'Esporta i dati nel formato selezionato', 25 | 'Exported File' => 'File Esportato', 26 | 'Generating the export file. Please wait...' => 'Generazione del file da esportare. Attendere...', 27 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => 'Esportazione Grid generata da Krajee ExportMenu widget (yii2-export)', 28 | 'Ok to proceed?' => 'Procedere?', 29 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Richiesta sottomessa! Puoi chiudere in sicurezza questa finestra dopo aver scaricato il file', 30 | 'Select Columns' => 'Seleziona Colonne', 31 | 'Select columns to export' => 'Seleziona colonne da esportare', 32 | 'Tab Delimited Text' => 'Il Testo Delimitato Dal Tab', 33 | 'Text' => 'Testo', 34 | 'The CSV export file will be generated for download.' => 'Il file esportato in CSV sarà generato per il download', 35 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'Il file esportato in EXCEL 2007+ (xlsx) sarà generato per il download', 36 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'Il file esportato in EXCEL 95+ (xls) sarà generato per il download', 37 | 'The HTML export file will be generated for download.' => 'Il file esportato in HTML sarà generato per il download', 38 | 'The PDF export file will be generated for download.' => 'Il file esportato in PDF sarà generato per il download', 39 | 'The TEXT export file will be generated for download.' => 'Il file esportato in TEXT sarà generato per il download', 40 | 'CSV' => '', 41 | 'Excel 2007+' => '', 42 | 'Excel 95 +' => '', 43 | 'HTML' => '', 44 | 'Hyper Text Markup Language' => '', 45 | 'Input error' => '', 46 | 'Key' => '', 47 | 'Microsoft Excel 2007+ (xlsx)' => '', 48 | 'Microsoft Excel 95+ (xls)' => '', 49 | 'PDF' => '', 50 | 'Pick from list' => '', 51 | 'Please pick a value from the drop-down list.' => '', 52 | 'Portable Document Format' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@Seleziona Tutti@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/uk/kvexport.php: -------------------------------------------------------------------------------- 1 | 'CSV', 21 | 'Column' => 'Сповпець', 22 | 'Comma Separated Values' => 'Розділені комами значення', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Вимкніть блокування спливаючих вікон у вашому браузері, щоб це не заважало завантаженні.', 24 | 'Download exported file' => 'Завантажити експортований файл', 25 | 'Excel 2007+' => 'Excel 2007+', 26 | 'Excel 95 +' => 'Excel 95+', 27 | 'Export data in selected format' => 'Оберіть формат файлу для експорту', 28 | 'Exported File' => 'Експортований файл', 29 | 'Generating the export file. Please wait...' => 'Файл експорту генерується, очікуйте...', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => 'Файл згенерований за допомогою Krajee ExportMenu widget (yii2-export)', 31 | 'HTML' => 'HTML', 32 | 'Hyper Text Markup Language' => 'Мова розмітки гіпертексту (Веб-сторінка)', 33 | 'Microsoft Excel 2007+ (xlsx)' => 'Microsoft Excel 2007+ (xlsx)', 34 | 'Microsoft Excel 95+ (xls)' => 'Microsoft Excel 95+ (xls)', 35 | 'Ok to proceed?' => 'Продовжити?', 36 | 'PDF' => 'PDF', 37 | 'Portable Document Format' => 'Портативний формат документа', 38 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Запит прийнятий. Ви можете закрити це вікно після закінчення завантаження файлу.', 39 | 'Select Columns' => 'Стовпці для експорту', 40 | 'Select columns to export' => 'Оберіть стовпці для експорту', 41 | 'Tab Delimited Text' => 'Розділений текст вкладок', 42 | 'Text' => 'Текст', 43 | 'The CSV export file will be generated for download.' => 'Згенерується файл у форматі CSV.', 44 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'Згенерується файл у форматі EXCEL 2007+ (xlsx).', 45 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'Згенерується файл у форматі EXCEL 95+ (xls).', 46 | 'The HTML export file will be generated for download.' => 'Згенерується файл у форматі HTML.', 47 | 'The PDF export file will be generated for download.' => 'Згенерується файл у форматі PDF.', 48 | 'The TEXT export file will be generated for download.' => 'Згенерується файл у форматі TEXT.', 49 | 'Input error' => '', 50 | 'Key' => '', 51 | 'Pick from list' => '', 52 | 'Please pick a value from the drop-down list.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@Усі@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/config.php: -------------------------------------------------------------------------------- 1 | __DIR__ . DIRECTORY_SEPARATOR . '..', 6 | // string, required, root directory containing message translations. 7 | 'messagePath' => __DIR__, 8 | // array, required, list of language codes that the extracted messages 9 | // should be translated to. For example, ['zh-CN', 'de']. 10 | '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', 'sv', 'sw', 'ta', 'te', 'th', 'tj', 'tl', 'tn', 'tr', 'ts', 'tt', 'uk', 'ur', 'vi', 'zh-CN', 'zh-TW', 'zu'], 11 | // string, the name of the function for translating messages. 12 | // Defaults to 'Yii::t'. This is used as a mark to find the messages to be 13 | // translated. You may use a string for single function name or an array for 14 | // multiple function names. 15 | 'translator' => 'Yii::t', 16 | // boolean, whether to sort messages by keys when merging new messages 17 | // with the existing ones. Defaults to false, which means the new (untranslated) 18 | // messages will be separated from the old (translated) ones. 19 | 'sort' => false, 20 | // boolean, whether the message file should be overwritten with the merged messages 21 | 'overwrite' => true, 22 | // boolean, whether to remove messages that no longer appear in the source code. 23 | // Defaults to false, which means each of these messages will be enclosed with a pair of '@@' marks. 24 | 'removeUnused' => false, 25 | // array, list of patterns that specify which files/directories should NOT be processed. 26 | // If empty or not set, all files/directories will be processed. 27 | // A path matches a pattern if it contains the pattern string at its end. For example, 28 | // '/a/b' will match all files and directories ending with '/a/b'; 29 | // the '*.svn' will match all files and directories whose name ends with '.svn'. 30 | // and the '.svn' will match all files and directories named exactly '.svn'. 31 | // Note, the '/' characters in a pattern matches both '/' and '\'. 32 | // See helpers/FileHelper::findFiles() description for more details on pattern matching rules. 33 | 'only' => ['*.php'], 34 | // array, list of patterns that specify which files (not directories) should be processed. 35 | // If empty or not set, all files will be processed. 36 | // Please refer to "except" for details about the patterns. 37 | // If a file/directory matches both a pattern in "only" and "except", it will NOT be processed. 38 | 'except' => [ 39 | '.svn', 40 | '.git', 41 | '.gitignore', 42 | '.gitkeep', 43 | '.hgignore', 44 | '.hgkeep', 45 | '/messages', 46 | ], 47 | // Generated file format. Can be either "php", "po" or "db". 48 | 'format' => 'php', 49 | // When format is "db", you may specify the following two options 50 | //'db' => 'db', 51 | //'sourceMessageTable' => '{{%source_message}}', 52 | ]; 53 | -------------------------------------------------------------------------------- /src/messages/et/kvexport.php: -------------------------------------------------------------------------------- 1 | 'CSV', 21 | 'Column' => 'Veerg', 22 | 'Comma Separated Values' => 'Komaga eristatud väärtused', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Luba hüpikaknad, et tagada faili allalaadimise võimalus.', 24 | 'Download exported file' => 'Lae eksportitud fail alla', 25 | 'Excel 2007+' => 'Excel 2007+', 26 | 'Excel 95 +' => 'Excel 95 +', 27 | 'Export data in selected format' => 'Ekspordi fail valitud formaadis', 28 | 'Exported File' => 'Eksporditud fail', 29 | 'Generating the export file. Please wait...' => 'Genereerin exportditavat faili. Palun oota ...', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => 'Grid ekspordi on genereerinud Krajee ExportMenu vidin (yii2-export)', 31 | 'HTML' => 'HTML', 32 | 'Hyper Text Markup Language' => 'Hyper Text Markup Language', 33 | 'Microsoft Excel 2007+ (xlsx)' => 'Microsoft Excel 2007+ (xlsx)', 34 | 'Microsoft Excel 95+ (xls)' => 'Microsoft Excel 95+ (xls)', 35 | 'Ok to proceed?' => 'Kas läheme edasi?', 36 | 'PDF' => 'PDF', 37 | 'Portable Document Format' => 'Portable Document Format', 38 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Palve on edastatud! Kui oled faili alla laadinud, võid akna julgesti kinni panna.', 39 | 'Select Columns' => 'Vali veerud', 40 | 'Select columns to export' => 'Vali veerud, mida soovid eksportida', 41 | 'Tab Delimited Text' => 'Tabulaatoriga eraldatud tekst', 42 | 'Text' => 'Tekst', 43 | 'The CSV export file will be generated for download.' => 'Genereerin CSV faili alla laadimiseks.', 44 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'Genereerin EXCEL 2007+ (xlsx) faili alla laadimiseks.', 45 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'Genereerin EXCEL 95+ (xls) faili alla laadimiseks.', 46 | 'The HTML export file will be generated for download.' => 'Genereerin HTML faili alla laadimiseks.', 47 | 'The PDF export file will be generated for download.' => 'Genereerin PDF faili alla laadimiseks.', 48 | 'The TEXT export file will be generated for download.' => 'Genereerin TEXT faili alla laadimiseks.', 49 | 'grid-export' => 'grid-export', 50 | 'Input error' => '', 51 | 'Key' => '', 52 | 'Pick from list' => '', 53 | 'Please pick a value from the drop-down list.' => '', 54 | 'Value' => '', 55 | 'Value is not in list.' => '', 56 | 'Toggle All' => '@@Vali kõik@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/tr/kvexport.php: -------------------------------------------------------------------------------- 1 | 'CSV', 21 | 'Column' => 'Alan', 22 | 'Comma Separated Values' => 'Virgülle Ayrılmış Değerler', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Düzgün bir indirme için tarayıcınızın açılır pencere engelleyicilerini devredışı bırakın.', 24 | 'Excel 2007+' => 'Excel 2007+', 25 | 'Excel 95 +' => 'Excel 95+', 26 | 'Export data in selected format' => 'Veriyi seçilen formatta dışa aktar', 27 | 'Generating the export file. Please wait...' => 'Dışa çıkarılacak dosya oluşturuluyor. Lütfen bekleyiniz...', 28 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => 'Izgara dışa aktarımı Krajee Export Menu aracıyla oluşturuldu(yii2-export)', 29 | 'HTML' => 'HTML', 30 | 'Hyper Text Markup Language' => 'Hiper Metin İşaretleme Dili', 31 | 'Microsoft Excel 2007+ (xlsx)' => 'Microsoft Excel 2007+ (xlsx)', 32 | 'Microsoft Excel 95+ (xls)' => 'Microsoft Excel 95+ (xls)', 33 | 'Ok to proceed?' => 'İşlemek için OK?', 34 | 'PDF' => 'PDF', 35 | 'Portable Document Format' => 'Taşınabilir Döküman Formatı', 36 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'İstek alındı! İndirilen dosyayı kaydettikten sonra bu pencereyi kapatabilirsiniz.', 37 | 'Select Columns' => 'Alanları Seç', 38 | 'Select columns to export' => 'Dışa aktarmak için alanları seç', 39 | 'Tab Delimited Text' => 'Sekme Sınırlandırılmış Metin', 40 | 'Text' => 'Text', 41 | 'The CSV export file will be generated for download.' => 'İndirmek için CSV aktarım dosyası oluşturulacak.', 42 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'İndirmek için EXCEL 2007+ (xlsx) aktarım dosyası oluşturulacak.', 43 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'Excel 95+ (xls) aktarım dosyası oluşturulacak.', 44 | 'The HTML export file will be generated for download.' => 'HTML aktarım dosyası oluşturulacak.', 45 | 'The PDF export file will be generated for download.' => 'PDF aktarım dosyası oluşturulacak.', 46 | 'The TEXT export file will be generated for download.' => 'Text aktarım dosyası oluşturulacak.', 47 | 'grid-export' => 'export', 48 | 'Download exported file' => '', 49 | 'Exported File' => '', 50 | 'Input error' => '', 51 | 'Key' => '', 52 | 'Pick from list' => '', 53 | 'Please pick a value from the drop-down list.' => '', 54 | 'Value' => '', 55 | 'Value is not in list.' => '', 56 | 'Toggle All' => '@@Tümünü seç@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/pt-BR/kvexport.php: -------------------------------------------------------------------------------- 1 | 'CSV', 21 | 'Column' => 'Coluna', 22 | 'Comma Separated Values' => 'Valores separados por vírgula', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Desativar qualquer bloqueador de popups no seu browser para garantir o download correto.', 24 | 'Download exported file' => 'Baixar arquivo exportado', 25 | 'Excel 2007+' => 'Excel 2007+', 26 | 'Excel 95 +' => 'Excel 95 +', 27 | 'Export data in selected format' => 'Exportar dados no formato selecionado', 28 | 'Exported File' => 'Arquivo Exportado', 29 | 'Generating the export file. Please wait...' => 'Gerando arquivo para exportar. Por favor aguarde...', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => 'Exportador de tabelas criado por Krajee ExportMenu widget (yii2-export)', 31 | 'HTML' => 'HTML', 32 | 'Hyper Text Markup Language' => 'Linguagem de Marcação de Hipertexto', 33 | 'Microsoft Excel 2007+ (xlsx)' => 'Microsoft Excel 2007+ (xlsx)', 34 | 'Microsoft Excel 95+ (xls)' => 'Microsoft Excel 95+ (xls)', 35 | 'Ok to proceed?' => 'Ok para continuar?', 36 | 'PDF' => 'PDF', 37 | 'Portable Document Format' => 'Documento em formato PDF', 38 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Pedido submetido! Pode fechar esta janela depois de finalizado o download do arquivo', 39 | 'Select Columns' => 'Selecionar Colunas', 40 | 'Select columns to export' => 'Selecionar colunas para exportar', 41 | 'Tab Delimited Text' => 'Texto delimitado por tabulações', 42 | 'Text' => 'Texto', 43 | 'The CSV export file will be generated for download.' => 'O arquivo CSV será gerado para download', 44 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'O arquivo EXCEL 2007+ (xlsx) será gerado para download', 45 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'O arquivo EXCEL 95+ (xls) será gerado para download', 46 | 'The HTML export file will be generated for download.' => 'O arquivo HTML será gerado para download', 47 | 'The PDF export file will be generated for download.' => 'O arquivo PDF será gerado para download', 48 | 'The TEXT export file will be generated for download.' => 'O arquivo de Texto será gerado para download', 49 | 'Input error' => '', 50 | 'Key' => '', 51 | 'Pick from list' => '', 52 | 'Please pick a value from the drop-down list.' => '', 53 | 'Value' => '', 54 | 'Value is not in list.' => '', 55 | 'grid-export' => '', 56 | 'Toggle All' => '@@Marcar Todos@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/lt/kvexport.php: -------------------------------------------------------------------------------- 1 | 'CSV', 21 | 'Column' => 'Stulpelis', 22 | 'Comma Separated Values' => 'Kableliu atskirtos reikšmės', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Kad sklandžiai veiktų failo parsisiuntimas, atjunkite visus reklaminių langų blokuotojus.', 24 | 'Download exported file' => 'Parsisiųsti eksportuotą failą', 25 | 'Excel 2007+' => 'Excel 2007+', 26 | 'Excel 95 +' => 'Excel 95 +', 27 | 'Export data in selected format' => 'Eksportuoti duomenis pasirinktu formatu', 28 | 'Exported File' => 'Eksportuotas Failas', 29 | 'Generating the export file. Please wait...' => 'Generuojamas eksporto failas. Prašome palaukti...', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => 'Lentelės eksportas sugeneruotas su Krajee ExportMenu widget (yii2-export)', 31 | 'HTML' => 'HTML', 32 | 'Hyper Text Markup Language' => 'Hyper Text Markup Language', 33 | 'Microsoft Excel 2007+ (xlsx)' => 'Microsoft Excel 2007+ (xlsx)', 34 | 'Microsoft Excel 95+ (xls)' => 'Microsoft Excel 95+ (xls)', 35 | 'Ok to proceed?' => 'Galima tęsti?', 36 | 'PDF' => 'PDF', 37 | 'Portable Document Format' => 'Portable Document Format', 38 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Užklausa išsiųsta! Užsisaugoję failą, galite uždaryti dialogo langą.', 39 | 'Select Columns' => 'Pasirinkti Stulpelius', 40 | 'Select columns to export' => 'Pasirinkti eksportuojamus stulpelius', 41 | 'Tab Delimited Text' => 'Tabuliacija atskirtas tekstas', 42 | 'Text' => 'Tekstas', 43 | 'The CSV export file will be generated for download.' => 'Bus sugeneruotas CSV eksporto failas parsisiuntimui.', 44 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'Bus sugeneruotas EXCEL 2007+ (xlsx) eksporto failas parsisiuntimui.', 45 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'Bus sugeneruotas EXCEL 95+ (xls) eksporto failas parsisiuntimui.', 46 | 'The HTML export file will be generated for download.' => 'Bus sugeneruotas HTML eksporto failas parsisiuntimui.', 47 | 'The PDF export file will be generated for download.' => 'Bus sugeneruotas PDF eksporto failas parsisiuntimui.', 48 | 'The TEXT export file will be generated for download.' => 'Bus sugeneruotas TEXT eksporto failas parsisiuntimui.', 49 | 'grid-export' => 'lentelės eksportas', 50 | 'Input error' => '', 51 | 'Key' => '', 52 | 'Pick from list' => '', 53 | 'Please pick a value from the drop-down list.' => '', 54 | 'Value' => '', 55 | 'Value is not in list.' => '', 56 | 'Toggle All' => '@@Žymėti visus@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/nl/kvexport.php: -------------------------------------------------------------------------------- 1 | 'CSV', 21 | 'Column' => 'Kolom', 22 | 'Comma Separated Values' => 'Komma gescheiden waardes', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Schakel alle pop-up blockers uit om een correcte download te garanderen.', 24 | 'Download exported file' => 'Download geëxporteerd bestand', 25 | 'Excel 2007+' => 'Excel 2007+', 26 | 'Excel 95 +' => 'Excel 95 +', 27 | 'Export data in selected format' => 'Exporteer data in het geselecteerde format', 28 | 'Exported File' => 'Geëxporteerd bestand', 29 | 'Generating the export file. Please wait...' => 'Het export bestand wordt gegenereerd. Even geduld alstublieft...', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => 'Raster export gegenereerd door Krajee ExportMenu widget (yii2-export)', 31 | 'HTML' => 'HTML', 32 | 'Hyper Text Markup Language' => 'Hyper Text Markup Language', 33 | 'Microsoft Excel 2007+ (xlsx)' => 'Microsoft Excel 2007+ (xlsx)', 34 | 'Microsoft Excel 95+ (xls)' => 'Microsoft Excel 95+ (xls)', 35 | 'Ok to proceed?' => 'Akkoord om verder te gaan?', 36 | 'PDF' => 'PDF', 37 | 'Portable Document Format' => 'Portable Document Format', 38 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Aanvraag verstuurd! U mag deze dialoog veilig afsluiten na het downloaden van uw bestand.', 39 | 'Select Columns' => 'Selecteer kolommen', 40 | 'Select columns to export' => 'Selecteer kolommen om te exporteren', 41 | 'Tab Delimited Text' => 'Tabs gescheiden tekst', 42 | 'Text' => 'Tekst', 43 | 'The CSV export file will be generated for download.' => 'Het CSV export bestand zal gegenereerd worden om te downloaden', 44 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'Het EXCEL 2007+ (xlsx) export bestand zal gegenereerd worden om te downloaden', 45 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'Het EXCEL 95+ (xls) export bestand zal gegenereerd worden om te downloaden', 46 | 'The HTML export file will be generated for download.' => 'Het HTML export bestand zal gegenereerd worden om te downloaden', 47 | 'The PDF export file will be generated for download.' => 'Het PDF export bestand zal gegenereerd worden om te downloaden', 48 | 'The TEXT export file will be generated for download.' => 'Het TEXT export bestand zal gegenereerd worden om te downloaden', 49 | 'grid-export' => 'raster-export', 50 | 'Input error' => '', 51 | 'Key' => '', 52 | 'Pick from list' => '', 53 | 'Please pick a value from the drop-down list.' => '', 54 | 'Value' => '', 55 | 'Value is not in list.' => '', 56 | 'Toggle All' => '@@Wissel alles@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/messages/el/kvexport.php: -------------------------------------------------------------------------------- 1 | 'CSV', 21 | 'Column' => 'Στήλη', 22 | 'Comma Separated Values' => 'Τιμές διαχωριζόμενες με κόμμα', 23 | 'Disable any popup blockers in your browser to ensure proper download.' => 'Απενεργοποιήστε τους popup blockers του φυλλομετρητή σας για να εξασφαλίσετε ορθή λήψη του αρχείου.', 24 | 'Download exported file' => 'Λήψη του αρχείου', 25 | 'Excel 2007+' => 'Excel 2007+', 26 | 'Excel 95 +' => 'Excel 95 +', 27 | 'Export data in selected format' => 'Λήψη των δεδομένων στην επιλεγμένη μορφή', 28 | 'Exported File' => 'Αρχείο ', 29 | 'Generating the export file. Please wait...' => 'Γίνεται δημιουργία του αρχείου δεδομένων. Παρακαλώ περιμένετε...', 30 | 'Grid export generated by Krajee ExportMenu widget (yii2-export)' => 'Grid export generated by Krajee ExportMenu widget (yii2-export)', 31 | 'HTML' => 'HTML', 32 | 'Hyper Text Markup Language' => 'Hyper Text Markup Language', 33 | 'Input error' => 'Σφάλμα εισόδου', 34 | 'Key' => 'Κλειδί', 35 | 'Microsoft Excel 2007+ (xlsx)' => 'Microsoft Excel 2007+ (xlsx)', 36 | 'Microsoft Excel 95+ (xls)' => 'Microsoft Excel 95+ (xls)', 37 | 'Ok to proceed?' => 'Είστε έτοιμοι;', 38 | 'PDF' => 'PDF', 39 | 'Pick from list' => 'Επιλέξτε από την λίστα', 40 | 'Please pick a value from the drop-down list.' => 'Παρακαλώ επιλέξτε μια τιμή από την λίστα', 41 | 'Portable Document Format' => 'Portable Document Format', 42 | 'Request submitted! You may safely close this dialog after saving your downloaded file.' => 'Το αίτημα στάλθηκε! Μπορείτε να κλείσετε αυτό το παράθυρο αφού αποθηκεύσετε το αρχείο που κατεβάσατε', 43 | 'Select Columns' => 'Επιλογή στηλών', 44 | 'Select columns to export' => 'Επιλέξτε τις στήλες που θέλετε να εξάγετε', 45 | 'Tab Delimited Text' => 'Tab Delimited Text', 46 | 'Text' => 'Κείμενο', 47 | 'The CSV export file will be generated for download.' => 'Θα δημιουργηθεί το αρχείο δεδομένων σε μορφή CSV.', 48 | 'The EXCEL 2007+ (xlsx) export file will be generated for download.' => 'Θα δημιουργηθεί το αρχείο δεδομένων σε μορφή EXCEL 2007+ (xlsx)', 49 | 'The EXCEL 95+ (xls) export file will be generated for download.' => 'Θα δημιουργηθεί το αρχείο δεδομένων σε μορφή EXCEL 95+ (xls)', 50 | 'The HTML export file will be generated for download.' => 'Θα δημιουργηθεί το αρχείο δεδομένων σε μορφή HTML.', 51 | 'The PDF export file will be generated for download.' => 'Θα δημιουργηθεί το αρχείο δεδομένων σε μορφή PDF.', 52 | 'The TEXT export file will be generated for download.' => 'Θα δημιουργηθεί το αρχείο δεδομένων σε μορφή TEXT.', 53 | 'Value' => 'Τιμή', 54 | 'Value is not in list.' => 'Η τιμή δεν είναι στη λίστα.', 55 | 'grid-export' => 'grid-export', 56 | 'Toggle All' => '@@@@', 57 | ]; 58 | -------------------------------------------------------------------------------- /src/views/_columns.php: -------------------------------------------------------------------------------- 1 | 5 | * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2015 - 2023 6 | * @version 1.4.3 7 | * 8 | * Column Selector View 9 | * 10 | */ 11 | 12 | use yii\helpers\Html; 13 | use yii\helpers\ArrayHelper; 14 | 15 | /** 16 | * @var int $id 17 | * @var bool $notBs3 18 | * @var bool $isBs4 19 | * @var array $options 20 | * @var array $batchToggle 21 | * @var array $columnSelector 22 | * @var array $hiddenColumns 23 | * @var array $selectedColumns 24 | * @var array $disabledColumns 25 | * @var array $noExportColumns 26 | * @var array $menuOptions 27 | */ 28 | 29 | $label = ArrayHelper::remove($options, 'label'); 30 | $icon = ArrayHelper::remove($options, 'icon'); 31 | $showToggle = ArrayHelper::remove($batchToggle, 'show', true); 32 | if (!empty($icon)) { 33 | $label = $icon.' '.$label; 34 | } 35 | echo Html::beginTag('div', ['class' => 'btn-group', 'role' => 'group']); 36 | echo Html::button($label.' ', $options); 37 | foreach ($columnSelector as $value => $label) { 38 | if (in_array($value, $hiddenColumns)) { 39 | $checked = in_array($value, $selectedColumns); 40 | echo Html::checkbox('export_columns_selector[]', $checked, ['data-key' => $value, 'style' => 'display:none']); 41 | unset($columnSelector[$value]); 42 | } 43 | if (in_array($value, $noExportColumns)) { 44 | unset($columnSelector[$value]); 45 | } 46 | } 47 | $cbxContCss = 'checkbox'; 48 | $cbxCss = ''; 49 | $cbxLabelCss = ''; 50 | if ($notBs3) { 51 | $cbxContCss = $isBs4 ? 'custom-control custom-checkbox' : 'form-check'; 52 | $cbxCss = $isBs4 ? 'custom-control-input' : 'form-check-input'; 53 | $cbxLabelCss = $isBs4 ? 'custom-control-label' : 'form-check-label'; 54 | } 55 | $cbxToggle = 'export_columns_toggle'; 56 | $cbxToggleId = $cbxToggle.'_'.$id; 57 | echo Html::beginTag('ul', $menuOptions); 58 | ?> 59 | 60 | 62 | 67 |
  • 68 | $cbxContCss]); 70 | $cbx = Html::checkbox($cbxToggle, true, ['class' => $cbxCss, 'id' => $cbxToggleId]); 71 | $lab = Html::tag('span', $toggleLabel, $toggleOptions); 72 | if ($notBs3) { 73 | echo $cbx."\n".Html::label($lab, $cbxToggleId, ['class' => $cbxLabelCss]); 74 | } else { 75 | echo Html::label($cbx."\n".$lab, $cbxToggleId, ['class' => $cbxLabelCss]); 76 | } 77 | echo Html::endTag('div'); 78 | ?> 79 |
  • 80 |
  • 81 | 83 | 84 | $label) { 87 | $checked = in_array($value, $selectedColumns); 88 | $disabled = in_array($value, $disabledColumns); 89 | $cbxId = "export_columns_selector_{$id}_{$i}"; 90 | $labCss = $cbxLabelCss; 91 | if ($disabled) { 92 | $labCss .= ' disabled'; 93 | } 94 | echo Html::beginTag('li'); 95 | echo Html::beginTag('div', ['class' => $cbxContCss]); 96 | $cbx = Html::checkbox('export_columns_selector[]', $checked, 97 | ['id' => $cbxId, 'class' => $cbxCss, 'data-key' => $value, 'disabled' => $disabled]); 98 | if ($notBs3) { 99 | echo $cbx."\n".Html::label($label, $cbxId, ['class' => $labCss]); 100 | } else { 101 | echo Html::label($cbx."\n".$label, $cbxId, ['class' => $labCss]); 102 | } 103 | echo Html::endTag('div'); 104 | echo Html::endTag('li'); 105 | $i++; 106 | } 107 | echo Html::endTag('ul'); 108 | echo Html::endTag('div'); 109 | ?> --------------------------------------------------------------------------------