├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── stale.yml ├── CHANGE.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── DateRangeBehavior.php ├── DateRangePicker.php ├── DateRangePickerAsset.php ├── LanguageAsset.php ├── MomentAsset.php ├── assets ├── css │ ├── daterangepicker-kv.css │ ├── daterangepicker-kv.min.css │ ├── daterangepicker.css │ └── daterangepicker.min.css └── js │ ├── daterangepicker.js │ ├── daterangepicker.min.js │ ├── locales │ ├── af.js │ ├── ar-dz.js │ ├── ar-kw.js │ ├── ar-ly.js │ ├── ar-ma.js │ ├── ar-sa.js │ ├── ar-tn.js │ ├── ar.js │ ├── az.js │ ├── be.js │ ├── bg.js │ ├── bm.js │ ├── bn.js │ ├── bo.js │ ├── br.js │ ├── bs.js │ ├── ca.js │ ├── cs.js │ ├── cv.js │ ├── cy.js │ ├── da.js │ ├── de-at.js │ ├── de-ch.js │ ├── de.js │ ├── dv.js │ ├── el.js │ ├── en-au.js │ ├── en-ca.js │ ├── en-gb.js │ ├── en-ie.js │ ├── en-il.js │ ├── en-nz.js │ ├── eo.js │ ├── es-do.js │ ├── es-us.js │ ├── es.js │ ├── et.js │ ├── eu.js │ ├── fa.js │ ├── fi.js │ ├── fo.js │ ├── fr-ca.js │ ├── fr-ch.js │ ├── fr.js │ ├── fy.js │ ├── gd.js │ ├── gl.js │ ├── gom-latn.js │ ├── gu.js │ ├── he.js │ ├── hi.js │ ├── hr.js │ ├── hu.js │ ├── hy-am.js │ ├── id.js │ ├── is.js │ ├── it.js │ ├── ja.js │ ├── jv.js │ ├── ka.js │ ├── kk.js │ ├── km.js │ ├── kn.js │ ├── ko.js │ ├── ky.js │ ├── lb.js │ ├── lo.js │ ├── lt.js │ ├── lv.js │ ├── me.js │ ├── mi.js │ ├── mk.js │ ├── ml.js │ ├── mn.js │ ├── mr.js │ ├── ms-my.js │ ├── ms.js │ ├── mt.js │ ├── my.js │ ├── nb.js │ ├── ne.js │ ├── nl-be.js │ ├── nl.js │ ├── nn.js │ ├── pa-in.js │ ├── pl.js │ ├── pt-br.js │ ├── pt.js │ ├── ro.js │ ├── ru.js │ ├── sd.js │ ├── se.js │ ├── si.js │ ├── sk.js │ ├── sl.js │ ├── sq.js │ ├── sr-cyrl.js │ ├── sr.js │ ├── ss.js │ ├── sv.js │ ├── sw.js │ ├── ta.js │ ├── te.js │ ├── tet.js │ ├── tg.js │ ├── th.js │ ├── tl-ph.js │ ├── tlh.js │ ├── tr.js │ ├── tzl.js │ ├── tzm-latn.js │ ├── tzm.js │ ├── ug-cn.js │ ├── uk.js │ ├── ur.js │ ├── uz-latn.js │ ├── uz.js │ ├── vi.js │ ├── x-pseudo.js │ ├── yo.js │ ├── zh-cn.js │ ├── zh-hk.js │ └── zh-tw.js │ ├── moment.js │ └── moment.min.js └── messages ├── af └── kvdrp.php ├── ar-MA └── kvdrp.php ├── ar-SA └── kvdrp.php ├── ar └── kvdrp.php ├── az └── kvdrp.php ├── be └── kvdrp.php ├── bg └── kvdrp.php ├── bn └── kvdrp.php ├── bo └── kvdrp.php ├── br └── kvdrp.php ├── bs └── kvdrp.php ├── ca └── kvdrp.php ├── config.php ├── cs └── kvdrp.php ├── cv └── kvdrp.php ├── cy └── kvdrp.php ├── da └── kvdrp.php ├── de-AT └── kvdrp.php ├── de └── kvdrp.php ├── el └── kvdrp.php ├── en-AU └── kvdrp.php ├── en-CA └── kvdrp.php ├── en-GB └── kvdrp.php ├── en └── kvdrp.php ├── eo └── kvdrp.php ├── es └── kvdrp.php ├── et └── kvdrp.php ├── eu └── kvdrp.php ├── fa └── kvdrp.php ├── fi └── kvdrp.php ├── fo └── kvdrp.php ├── fr-CA └── kvdrp.php ├── fr └── kvdrp.php ├── gl └── kvdrp.php ├── he └── kvdrp.php ├── hi └── kvdrp.php ├── hr └── kvdrp.php ├── hu └── kvdrp.php ├── hy-AM └── kvdrp.php ├── id └── kvdrp.php ├── is └── kvdrp.php ├── it └── kvdrp.php ├── ja └── kvdrp.php ├── ka └── kvdrp.php ├── kk └── kvdrp.php ├── km └── kvdrp.php ├── ko └── kvdrp.php ├── lb └── kvdrp.php ├── lt └── kvdrp.php ├── lv └── kvdrp.php ├── mk └── kvdrp.php ├── ml └── kvdrp.php ├── mr └── kvdrp.php ├── ms-MY └── kvdrp.php ├── my └── kvdrp.php ├── nb └── kvdrp.php ├── ne └── kvdrp.php ├── nl └── kvdrp.php ├── nn └── kvdrp.php ├── pl └── kvdrp.php ├── pt-BR └── kvdrp.php ├── pt └── kvdrp.php ├── ro └── kvdrp.php ├── ru └── kvdrp.php ├── sk └── kvdrp.php ├── sl └── kvdrp.php ├── sq └── kvdrp.php ├── sr-CYRL └── kvdrp.php ├── sr └── kvdrp.php ├── sv └── kvdrp.php ├── ta └── kvdrp.php ├── th └── kvdrp.php ├── tl-PH └── kvdrp.php ├── tr └── kvdrp.php ├── tzm-LATN └── kvdrp.php ├── tzm └── kvdrp.php ├── uk └── kvdrp.php ├── uz-Cy └── kvdrp.php ├── uz └── kvdrp.php ├── vi └── kvdrp.php ├── zh-CN └── kvdrp.php └── zh-TW └── kvdrp.php /.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-date-range. 5 | - [ ] This is not an usage question. I confirm having gone through and read the [documentation](http://demos.krajee.com/date-range) and [demos](http://demos.krajee.com/date-range-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-date-range version: 42 | 43 | ## Isolating the problem 44 | 45 | - [ ] This bug happens [on the demos page](https://demos.krajee.com/date-range-demo) 46 | - [ ] The bug happens consistently across all tested browsers 47 | - [ ] This bug happens when using yii2-date-range without other plugins. -------------------------------------------------------------------------------- /.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-date-range/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. -------------------------------------------------------------------------------- /.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 -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 - 2021, 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 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kartik-v/yii2-date-range", 3 | "description": "An advanced Yii 2 date range picker input for based on bootstrap-daterangepicker plugin.", 4 | "keywords": [ 5 | "yii2", 6 | "extension", 7 | "widget", 8 | "date-range", 9 | "time", 10 | "date", 11 | "range", 12 | "bootstrap", 13 | "bootstrap 3" 14 | ], 15 | "homepage": "https://github.com/kartik-v/yii2-date-range", 16 | "type": "yii2-extension", 17 | "license": "BSD-3-Clause", 18 | "authors": [ 19 | { 20 | "name": "Kartik Visweswaran", 21 | "email": "kartikv2@gmail.com", 22 | "homepage": "http://www.krajee.com/" 23 | } 24 | ], 25 | "require": { 26 | "kartik-v/yii2-krajee-base": ">=3.0.0" 27 | }, 28 | "autoload": { 29 | "psr-4": { 30 | "kartik\\daterange\\": "src" 31 | } 32 | }, 33 | "extra": { 34 | "branch-alias": { 35 | "dev-master": "1.7.x-dev" 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /src/DateRangePickerAsset.php: -------------------------------------------------------------------------------- 1 | 17 | * @since 1.0 18 | */ 19 | class DateRangePickerAsset extends AssetBundle 20 | { 21 | /** 22 | * @inheritdoc 23 | */ 24 | public $depends = [ 25 | 'kartik\daterange\MomentAsset', 26 | 'yii\web\JqueryAsset' 27 | ]; 28 | 29 | /** 30 | * @inheritdoc 31 | */ 32 | public function init() 33 | { 34 | $this->setSourcePath(__DIR__ . '/assets'); 35 | $this->setupAssets('css', ['css/daterangepicker', 'css/daterangepicker-kv']); 36 | $this->setupAssets('js', ['js/daterangepicker']); 37 | parent::init(); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/LanguageAsset.php: -------------------------------------------------------------------------------- 1 | 18 | * @since 1.0 19 | */ 20 | class LanguageAsset extends AssetBundle 21 | { 22 | /** 23 | * @inheritdoc 24 | */ 25 | public $jsOptions = ['position' => View::POS_HEAD]; 26 | /** 27 | * @inheritdoc 28 | */ 29 | public $depends = ['\kartik\daterange\MomentAsset']; 30 | 31 | /** 32 | * @inheritdoc 33 | */ 34 | public function init() 35 | { 36 | $this->setSourcePath(__DIR__ . '/assets'); 37 | parent::init(); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/MomentAsset.php: -------------------------------------------------------------------------------- 1 | 18 | * @since 1.0 19 | */ 20 | class MomentAsset extends AssetBundle 21 | { 22 | /** 23 | * @inheritdoc 24 | */ 25 | public $jsOptions = ['position' => View::POS_HEAD]; 26 | /** 27 | * @inheritdoc 28 | */ 29 | public $depends = []; 30 | 31 | /** 32 | * @inheritdoc 33 | */ 34 | public function init() 35 | { 36 | $this->setSourcePath(__DIR__ . '/assets'); 37 | $this->setupAssets('js', ['js/moment']); 38 | parent::init(); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /src/assets/css/daterangepicker-kv.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2015 - 2021 3 | * @version 1.7.3 4 | * 5 | * Custom styling for DateRangePicker 6 | * 7 | * Author: Kartik Visweswaran 8 | * For more JQuery plugins visit http://plugins.krajee.com 9 | * For more Yii related demos visit http://demos.krajee.com 10 | */ 11 | .kv-drp-container .kv-drp-dropdown { 12 | position: relative; 13 | } 14 | 15 | .kv-drp-dropdown .range-value { 16 | background: none; 17 | padding-left: 2rem; 18 | opacity: 0.9; 19 | width: 100%; 20 | } 21 | 22 | .kv-drp-dropdown .left-ind, 23 | .kv-drp-dropdown .right-ind { 24 | position: absolute; 25 | top: 0.4rem; 26 | } 27 | 28 | .kv-drp-dropdown .left-ind { 29 | left: 12px; 30 | } 31 | 32 | .kv-drp-dropdown .right-ind { 33 | right: 12px; 34 | } 35 | 36 | .kv-drp-dropdown .kv-clear { 37 | padding:0 0.3rem; 38 | font-size: 1.1rem; 39 | cursor:pointer; 40 | right:1.6rem; 41 | line-height:1.3rem; 42 | } 43 | 44 | .kv-drp-dropdown .caret { 45 | display: inline-block; 46 | cursor: pointer; 47 | width: 0; 48 | height: 0; 49 | vertical-align: 0.255em; 50 | content: ""; 51 | border-top: 0.3em solid; 52 | border-right: 0.3em solid transparent; 53 | border-bottom: 0; 54 | border-left: 0.3em solid transparent; 55 | } -------------------------------------------------------------------------------- /src/assets/css/daterangepicker-kv.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2015 - 2021 3 | * @version 1.7.3 4 | * 5 | * Custom styling for DateRangePicker 6 | * 7 | * Author: Kartik Visweswaran 8 | * For more JQuery plugins visit http://plugins.krajee.com 9 | * For more Yii related demos visit http://demos.krajee.com 10 | */.kv-drp-container .kv-drp-dropdown{position:relative}.kv-drp-dropdown .range-value{background:0 0;padding-left:2rem;opacity:.9;width:100%}.kv-drp-dropdown .left-ind,.kv-drp-dropdown .right-ind{position:absolute;top:.4rem}.kv-drp-dropdown .left-ind{left:12px}.kv-drp-dropdown .right-ind{right:12px}.kv-drp-dropdown .kv-clear{padding:0 .3rem;font-size:1.1rem;cursor:pointer;right:1.6rem;line-height:1.3rem}.kv-drp-dropdown .caret{display:inline-block;cursor:pointer;width:0;height:0;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent} -------------------------------------------------------------------------------- /src/assets/js/locales/af.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var af = moment.defineLocale('af', { 12 | months : 'Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember'.split('_'), 13 | monthsShort : 'Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des'.split('_'), 14 | weekdays : 'Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag'.split('_'), 15 | weekdaysShort : 'Son_Maa_Din_Woe_Don_Vry_Sat'.split('_'), 16 | weekdaysMin : 'So_Ma_Di_Wo_Do_Vr_Sa'.split('_'), 17 | meridiemParse: /vm|nm/i, 18 | isPM : function (input) { 19 | return /^nm$/i.test(input); 20 | }, 21 | meridiem : function (hours, minutes, isLower) { 22 | if (hours < 12) { 23 | return isLower ? 'vm' : 'VM'; 24 | } else { 25 | return isLower ? 'nm' : 'NM'; 26 | } 27 | }, 28 | longDateFormat : { 29 | LT : 'HH:mm', 30 | LTS : 'HH:mm:ss', 31 | L : 'DD/MM/YYYY', 32 | LL : 'D MMMM YYYY', 33 | LLL : 'D MMMM YYYY HH:mm', 34 | LLLL : 'dddd, D MMMM YYYY HH:mm' 35 | }, 36 | calendar : { 37 | sameDay : '[Vandag om] LT', 38 | nextDay : '[Môre om] LT', 39 | nextWeek : 'dddd [om] LT', 40 | lastDay : '[Gister om] LT', 41 | lastWeek : '[Laas] dddd [om] LT', 42 | sameElse : 'L' 43 | }, 44 | relativeTime : { 45 | future : 'oor %s', 46 | past : '%s gelede', 47 | s : '\'n paar sekondes', 48 | ss : '%d sekondes', 49 | m : '\'n minuut', 50 | mm : '%d minute', 51 | h : '\'n uur', 52 | hh : '%d ure', 53 | d : '\'n dag', 54 | dd : '%d dae', 55 | M : '\'n maand', 56 | MM : '%d maande', 57 | y : '\'n jaar', 58 | yy : '%d jaar' 59 | }, 60 | dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/, 61 | ordinal : function (number) { 62 | return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de'); // Thanks to Joris Röling : https://github.com/jjupiter 63 | }, 64 | week : { 65 | dow : 1, // Maandag is die eerste dag van die week. 66 | doy : 4 // Die week wat die 4de Januarie bevat is die eerste week van die jaar. 67 | } 68 | }); 69 | 70 | return af; 71 | 72 | }))); 73 | -------------------------------------------------------------------------------- /src/assets/js/locales/ar-dz.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var arDz = moment.defineLocale('ar-dz', { 12 | months : 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), 13 | monthsShort : 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), 14 | weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), 15 | weekdaysShort : 'احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'), 16 | weekdaysMin : 'أح_إث_ثلا_أر_خم_جم_سب'.split('_'), 17 | weekdaysParseExact : true, 18 | longDateFormat : { 19 | LT : 'HH:mm', 20 | LTS : 'HH:mm:ss', 21 | L : 'DD/MM/YYYY', 22 | LL : 'D MMMM YYYY', 23 | LLL : 'D MMMM YYYY HH:mm', 24 | LLLL : 'dddd D MMMM YYYY HH:mm' 25 | }, 26 | calendar : { 27 | sameDay: '[اليوم على الساعة] LT', 28 | nextDay: '[غدا على الساعة] LT', 29 | nextWeek: 'dddd [على الساعة] LT', 30 | lastDay: '[أمس على الساعة] LT', 31 | lastWeek: 'dddd [على الساعة] LT', 32 | sameElse: 'L' 33 | }, 34 | relativeTime : { 35 | future : 'في %s', 36 | past : 'منذ %s', 37 | s : 'ثوان', 38 | ss : '%d ثانية', 39 | m : 'دقيقة', 40 | mm : '%d دقائق', 41 | h : 'ساعة', 42 | hh : '%d ساعات', 43 | d : 'يوم', 44 | dd : '%d أيام', 45 | M : 'شهر', 46 | MM : '%d أشهر', 47 | y : 'سنة', 48 | yy : '%d سنوات' 49 | }, 50 | week : { 51 | dow : 0, // Sunday is the first day of the week. 52 | doy : 4 // The week that contains Jan 1st is the first week of the year. 53 | } 54 | }); 55 | 56 | return arDz; 57 | 58 | }))); 59 | -------------------------------------------------------------------------------- /src/assets/js/locales/ar-kw.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var arKw = moment.defineLocale('ar-kw', { 12 | months : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'), 13 | monthsShort : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'), 14 | weekdays : 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), 15 | weekdaysShort : 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'), 16 | weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'), 17 | weekdaysParseExact : true, 18 | longDateFormat : { 19 | LT : 'HH:mm', 20 | LTS : 'HH:mm:ss', 21 | L : 'DD/MM/YYYY', 22 | LL : 'D MMMM YYYY', 23 | LLL : 'D MMMM YYYY HH:mm', 24 | LLLL : 'dddd D MMMM YYYY HH:mm' 25 | }, 26 | calendar : { 27 | sameDay: '[اليوم على الساعة] LT', 28 | nextDay: '[غدا على الساعة] LT', 29 | nextWeek: 'dddd [على الساعة] LT', 30 | lastDay: '[أمس على الساعة] LT', 31 | lastWeek: 'dddd [على الساعة] LT', 32 | sameElse: 'L' 33 | }, 34 | relativeTime : { 35 | future : 'في %s', 36 | past : 'منذ %s', 37 | s : 'ثوان', 38 | ss : '%d ثانية', 39 | m : 'دقيقة', 40 | mm : '%d دقائق', 41 | h : 'ساعة', 42 | hh : '%d ساعات', 43 | d : 'يوم', 44 | dd : '%d أيام', 45 | M : 'شهر', 46 | MM : '%d أشهر', 47 | y : 'سنة', 48 | yy : '%d سنوات' 49 | }, 50 | week : { 51 | dow : 0, // Sunday is the first day of the week. 52 | doy : 12 // The week that contains Jan 1st is the first week of the year. 53 | } 54 | }); 55 | 56 | return arKw; 57 | 58 | }))); 59 | -------------------------------------------------------------------------------- /src/assets/js/locales/ar-ma.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var arMa = moment.defineLocale('ar-ma', { 12 | months : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'), 13 | monthsShort : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'), 14 | weekdays : 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), 15 | weekdaysShort : 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'), 16 | weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'), 17 | weekdaysParseExact : true, 18 | longDateFormat : { 19 | LT : 'HH:mm', 20 | LTS : 'HH:mm:ss', 21 | L : 'DD/MM/YYYY', 22 | LL : 'D MMMM YYYY', 23 | LLL : 'D MMMM YYYY HH:mm', 24 | LLLL : 'dddd D MMMM YYYY HH:mm' 25 | }, 26 | calendar : { 27 | sameDay: '[اليوم على الساعة] LT', 28 | nextDay: '[غدا على الساعة] LT', 29 | nextWeek: 'dddd [على الساعة] LT', 30 | lastDay: '[أمس على الساعة] LT', 31 | lastWeek: 'dddd [على الساعة] LT', 32 | sameElse: 'L' 33 | }, 34 | relativeTime : { 35 | future : 'في %s', 36 | past : 'منذ %s', 37 | s : 'ثوان', 38 | ss : '%d ثانية', 39 | m : 'دقيقة', 40 | mm : '%d دقائق', 41 | h : 'ساعة', 42 | hh : '%d ساعات', 43 | d : 'يوم', 44 | dd : '%d أيام', 45 | M : 'شهر', 46 | MM : '%d أشهر', 47 | y : 'سنة', 48 | yy : '%d سنوات' 49 | }, 50 | week : { 51 | dow : 6, // Saturday is the first day of the week. 52 | doy : 12 // The week that contains Jan 1st is the first week of the year. 53 | } 54 | }); 55 | 56 | return arMa; 57 | 58 | }))); 59 | -------------------------------------------------------------------------------- /src/assets/js/locales/ar-tn.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var arTn = moment.defineLocale('ar-tn', { 12 | months: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), 13 | monthsShort: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), 14 | weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), 15 | weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'), 16 | weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'), 17 | weekdaysParseExact : true, 18 | longDateFormat: { 19 | LT: 'HH:mm', 20 | LTS: 'HH:mm:ss', 21 | L: 'DD/MM/YYYY', 22 | LL: 'D MMMM YYYY', 23 | LLL: 'D MMMM YYYY HH:mm', 24 | LLLL: 'dddd D MMMM YYYY HH:mm' 25 | }, 26 | calendar: { 27 | sameDay: '[اليوم على الساعة] LT', 28 | nextDay: '[غدا على الساعة] LT', 29 | nextWeek: 'dddd [على الساعة] LT', 30 | lastDay: '[أمس على الساعة] LT', 31 | lastWeek: 'dddd [على الساعة] LT', 32 | sameElse: 'L' 33 | }, 34 | relativeTime: { 35 | future: 'في %s', 36 | past: 'منذ %s', 37 | s: 'ثوان', 38 | ss : '%d ثانية', 39 | m: 'دقيقة', 40 | mm: '%d دقائق', 41 | h: 'ساعة', 42 | hh: '%d ساعات', 43 | d: 'يوم', 44 | dd: '%d أيام', 45 | M: 'شهر', 46 | MM: '%d أشهر', 47 | y: 'سنة', 48 | yy: '%d سنوات' 49 | }, 50 | week: { 51 | dow: 1, // Monday is the first day of the week. 52 | doy: 4 // The week that contains Jan 4th is the first week of the year. 53 | } 54 | }); 55 | 56 | return arTn; 57 | 58 | }))); 59 | -------------------------------------------------------------------------------- /src/assets/js/locales/bm.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var bm = moment.defineLocale('bm', { 12 | months : 'Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_Mɛkalo_Zuwɛnkalo_Zuluyekalo_Utikalo_Sɛtanburukalo_ɔkutɔburukalo_Nowanburukalo_Desanburukalo'.split('_'), 13 | monthsShort : 'Zan_Few_Mar_Awi_Mɛ_Zuw_Zul_Uti_Sɛt_ɔku_Now_Des'.split('_'), 14 | weekdays : 'Kari_Ntɛnɛn_Tarata_Araba_Alamisa_Juma_Sibiri'.split('_'), 15 | weekdaysShort : 'Kar_Ntɛ_Tar_Ara_Ala_Jum_Sib'.split('_'), 16 | weekdaysMin : 'Ka_Nt_Ta_Ar_Al_Ju_Si'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'DD/MM/YYYY', 21 | LL : 'MMMM [tile] D [san] YYYY', 22 | LLL : 'MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm', 23 | LLLL : 'dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm' 24 | }, 25 | calendar : { 26 | sameDay : '[Bi lɛrɛ] LT', 27 | nextDay : '[Sini lɛrɛ] LT', 28 | nextWeek : 'dddd [don lɛrɛ] LT', 29 | lastDay : '[Kunu lɛrɛ] LT', 30 | lastWeek : 'dddd [tɛmɛnen lɛrɛ] LT', 31 | sameElse : 'L' 32 | }, 33 | relativeTime : { 34 | future : '%s kɔnɔ', 35 | past : 'a bɛ %s bɔ', 36 | s : 'sanga dama dama', 37 | ss : 'sekondi %d', 38 | m : 'miniti kelen', 39 | mm : 'miniti %d', 40 | h : 'lɛrɛ kelen', 41 | hh : 'lɛrɛ %d', 42 | d : 'tile kelen', 43 | dd : 'tile %d', 44 | M : 'kalo kelen', 45 | MM : 'kalo %d', 46 | y : 'san kelen', 47 | yy : 'san %d' 48 | }, 49 | week : { 50 | dow : 1, // Monday is the first day of the week. 51 | doy : 4 // The week that contains Jan 4th is the first week of the year. 52 | } 53 | }); 54 | 55 | return bm; 56 | 57 | }))); 58 | -------------------------------------------------------------------------------- /src/assets/js/locales/cv.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var cv = moment.defineLocale('cv', { 12 | months : 'кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав'.split('_'), 13 | monthsShort : 'кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш'.split('_'), 14 | weekdays : 'вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун'.split('_'), 15 | weekdaysShort : 'выр_тун_ытл_юн_кӗҫ_эрн_шӑм'.split('_'), 16 | weekdaysMin : 'вр_тн_ыт_юн_кҫ_эр_шм'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'DD-MM-YYYY', 21 | LL : 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]', 22 | LLL : 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm', 23 | LLLL : 'dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm' 24 | }, 25 | calendar : { 26 | sameDay: '[Паян] LT [сехетре]', 27 | nextDay: '[Ыран] LT [сехетре]', 28 | lastDay: '[Ӗнер] LT [сехетре]', 29 | nextWeek: '[Ҫитес] dddd LT [сехетре]', 30 | lastWeek: '[Иртнӗ] dddd LT [сехетре]', 31 | sameElse: 'L' 32 | }, 33 | relativeTime : { 34 | future : function (output) { 35 | var affix = /сехет$/i.exec(output) ? 'рен' : /ҫул$/i.exec(output) ? 'тан' : 'ран'; 36 | return output + affix; 37 | }, 38 | past : '%s каялла', 39 | s : 'пӗр-ик ҫеккунт', 40 | ss : '%d ҫеккунт', 41 | m : 'пӗр минут', 42 | mm : '%d минут', 43 | h : 'пӗр сехет', 44 | hh : '%d сехет', 45 | d : 'пӗр кун', 46 | dd : '%d кун', 47 | M : 'пӗр уйӑх', 48 | MM : '%d уйӑх', 49 | y : 'пӗр ҫул', 50 | yy : '%d ҫул' 51 | }, 52 | dayOfMonthOrdinalParse: /\d{1,2}-мӗш/, 53 | ordinal : '%d-мӗш', 54 | week : { 55 | dow : 1, // Monday is the first day of the week. 56 | doy : 7 // The week that contains Jan 1st is the first week of the year. 57 | } 58 | }); 59 | 60 | return cv; 61 | 62 | }))); 63 | -------------------------------------------------------------------------------- /src/assets/js/locales/da.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var da = moment.defineLocale('da', { 12 | months : 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split('_'), 13 | monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'), 14 | weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'), 15 | weekdaysShort : 'søn_man_tir_ons_tor_fre_lør'.split('_'), 16 | weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'DD.MM.YYYY', 21 | LL : 'D. MMMM YYYY', 22 | LLL : 'D. MMMM YYYY HH:mm', 23 | LLLL : 'dddd [d.] D. MMMM YYYY [kl.] HH:mm' 24 | }, 25 | calendar : { 26 | sameDay : '[i dag kl.] LT', 27 | nextDay : '[i morgen kl.] LT', 28 | nextWeek : 'på dddd [kl.] LT', 29 | lastDay : '[i går kl.] LT', 30 | lastWeek : '[i] dddd[s kl.] LT', 31 | sameElse : 'L' 32 | }, 33 | relativeTime : { 34 | future : 'om %s', 35 | past : '%s siden', 36 | s : 'få sekunder', 37 | ss : '%d sekunder', 38 | m : 'et minut', 39 | mm : '%d minutter', 40 | h : 'en time', 41 | hh : '%d timer', 42 | d : 'en dag', 43 | dd : '%d dage', 44 | M : 'en måned', 45 | MM : '%d måneder', 46 | y : 'et år', 47 | yy : '%d år' 48 | }, 49 | dayOfMonthOrdinalParse: /\d{1,2}\./, 50 | ordinal : '%d.', 51 | week : { 52 | dow : 1, // Monday is the first day of the week. 53 | doy : 4 // The week that contains Jan 4th is the first week of the year. 54 | } 55 | }); 56 | 57 | return da; 58 | 59 | }))); 60 | -------------------------------------------------------------------------------- /src/assets/js/locales/en-au.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var enAu = moment.defineLocale('en-au', { 12 | months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), 13 | monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), 14 | weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), 15 | weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), 16 | weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), 17 | longDateFormat : { 18 | LT : 'h:mm A', 19 | LTS : 'h:mm:ss A', 20 | L : 'DD/MM/YYYY', 21 | LL : 'D MMMM YYYY', 22 | LLL : 'D MMMM YYYY h:mm A', 23 | LLLL : 'dddd, D MMMM YYYY h:mm A' 24 | }, 25 | calendar : { 26 | sameDay : '[Today at] LT', 27 | nextDay : '[Tomorrow at] LT', 28 | nextWeek : 'dddd [at] LT', 29 | lastDay : '[Yesterday at] LT', 30 | lastWeek : '[Last] dddd [at] LT', 31 | sameElse : 'L' 32 | }, 33 | relativeTime : { 34 | future : 'in %s', 35 | past : '%s ago', 36 | s : 'a few seconds', 37 | ss : '%d seconds', 38 | m : 'a minute', 39 | mm : '%d minutes', 40 | h : 'an hour', 41 | hh : '%d hours', 42 | d : 'a day', 43 | dd : '%d days', 44 | M : 'a month', 45 | MM : '%d months', 46 | y : 'a year', 47 | yy : '%d years' 48 | }, 49 | dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/, 50 | ordinal : function (number) { 51 | var b = number % 10, 52 | output = (~~(number % 100 / 10) === 1) ? 'th' : 53 | (b === 1) ? 'st' : 54 | (b === 2) ? 'nd' : 55 | (b === 3) ? 'rd' : 'th'; 56 | return number + output; 57 | }, 58 | week : { 59 | dow : 1, // Monday is the first day of the week. 60 | doy : 4 // The week that contains Jan 4th is the first week of the year. 61 | } 62 | }); 63 | 64 | return enAu; 65 | 66 | }))); 67 | -------------------------------------------------------------------------------- /src/assets/js/locales/en-ca.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var enCa = moment.defineLocale('en-ca', { 12 | months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), 13 | monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), 14 | weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), 15 | weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), 16 | weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), 17 | longDateFormat : { 18 | LT : 'h:mm A', 19 | LTS : 'h:mm:ss A', 20 | L : 'YYYY-MM-DD', 21 | LL : 'MMMM D, YYYY', 22 | LLL : 'MMMM D, YYYY h:mm A', 23 | LLLL : 'dddd, MMMM D, YYYY h:mm A' 24 | }, 25 | calendar : { 26 | sameDay : '[Today at] LT', 27 | nextDay : '[Tomorrow at] LT', 28 | nextWeek : 'dddd [at] LT', 29 | lastDay : '[Yesterday at] LT', 30 | lastWeek : '[Last] dddd [at] LT', 31 | sameElse : 'L' 32 | }, 33 | relativeTime : { 34 | future : 'in %s', 35 | past : '%s ago', 36 | s : 'a few seconds', 37 | ss : '%d seconds', 38 | m : 'a minute', 39 | mm : '%d minutes', 40 | h : 'an hour', 41 | hh : '%d hours', 42 | d : 'a day', 43 | dd : '%d days', 44 | M : 'a month', 45 | MM : '%d months', 46 | y : 'a year', 47 | yy : '%d years' 48 | }, 49 | dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/, 50 | ordinal : function (number) { 51 | var b = number % 10, 52 | output = (~~(number % 100 / 10) === 1) ? 'th' : 53 | (b === 1) ? 'st' : 54 | (b === 2) ? 'nd' : 55 | (b === 3) ? 'rd' : 'th'; 56 | return number + output; 57 | } 58 | }); 59 | 60 | return enCa; 61 | 62 | }))); 63 | -------------------------------------------------------------------------------- /src/assets/js/locales/en-gb.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var enGb = moment.defineLocale('en-gb', { 12 | months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), 13 | monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), 14 | weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), 15 | weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), 16 | weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'DD/MM/YYYY', 21 | LL : 'D MMMM YYYY', 22 | LLL : 'D MMMM YYYY HH:mm', 23 | LLLL : 'dddd, D MMMM YYYY HH:mm' 24 | }, 25 | calendar : { 26 | sameDay : '[Today at] LT', 27 | nextDay : '[Tomorrow at] LT', 28 | nextWeek : 'dddd [at] LT', 29 | lastDay : '[Yesterday at] LT', 30 | lastWeek : '[Last] dddd [at] LT', 31 | sameElse : 'L' 32 | }, 33 | relativeTime : { 34 | future : 'in %s', 35 | past : '%s ago', 36 | s : 'a few seconds', 37 | ss : '%d seconds', 38 | m : 'a minute', 39 | mm : '%d minutes', 40 | h : 'an hour', 41 | hh : '%d hours', 42 | d : 'a day', 43 | dd : '%d days', 44 | M : 'a month', 45 | MM : '%d months', 46 | y : 'a year', 47 | yy : '%d years' 48 | }, 49 | dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/, 50 | ordinal : function (number) { 51 | var b = number % 10, 52 | output = (~~(number % 100 / 10) === 1) ? 'th' : 53 | (b === 1) ? 'st' : 54 | (b === 2) ? 'nd' : 55 | (b === 3) ? 'rd' : 'th'; 56 | return number + output; 57 | }, 58 | week : { 59 | dow : 1, // Monday is the first day of the week. 60 | doy : 4 // The week that contains Jan 4th is the first week of the year. 61 | } 62 | }); 63 | 64 | return enGb; 65 | 66 | }))); 67 | -------------------------------------------------------------------------------- /src/assets/js/locales/en-ie.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var enIe = moment.defineLocale('en-ie', { 12 | months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), 13 | monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), 14 | weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), 15 | weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), 16 | weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'DD-MM-YYYY', 21 | LL : 'D MMMM YYYY', 22 | LLL : 'D MMMM YYYY HH:mm', 23 | LLLL : 'dddd D MMMM YYYY HH:mm' 24 | }, 25 | calendar : { 26 | sameDay : '[Today at] LT', 27 | nextDay : '[Tomorrow at] LT', 28 | nextWeek : 'dddd [at] LT', 29 | lastDay : '[Yesterday at] LT', 30 | lastWeek : '[Last] dddd [at] LT', 31 | sameElse : 'L' 32 | }, 33 | relativeTime : { 34 | future : 'in %s', 35 | past : '%s ago', 36 | s : 'a few seconds', 37 | ss : '%d seconds', 38 | m : 'a minute', 39 | mm : '%d minutes', 40 | h : 'an hour', 41 | hh : '%d hours', 42 | d : 'a day', 43 | dd : '%d days', 44 | M : 'a month', 45 | MM : '%d months', 46 | y : 'a year', 47 | yy : '%d years' 48 | }, 49 | dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/, 50 | ordinal : function (number) { 51 | var b = number % 10, 52 | output = (~~(number % 100 / 10) === 1) ? 'th' : 53 | (b === 1) ? 'st' : 54 | (b === 2) ? 'nd' : 55 | (b === 3) ? 'rd' : 'th'; 56 | return number + output; 57 | }, 58 | week : { 59 | dow : 1, // Monday is the first day of the week. 60 | doy : 4 // The week that contains Jan 4th is the first week of the year. 61 | } 62 | }); 63 | 64 | return enIe; 65 | 66 | }))); 67 | -------------------------------------------------------------------------------- /src/assets/js/locales/en-il.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var enIl = moment.defineLocale('en-il', { 12 | months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), 13 | monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), 14 | weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), 15 | weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), 16 | weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'DD/MM/YYYY', 21 | LL : 'D MMMM YYYY', 22 | LLL : 'D MMMM YYYY HH:mm', 23 | LLLL : 'dddd, D MMMM YYYY HH:mm' 24 | }, 25 | calendar : { 26 | sameDay : '[Today at] LT', 27 | nextDay : '[Tomorrow at] LT', 28 | nextWeek : 'dddd [at] LT', 29 | lastDay : '[Yesterday at] LT', 30 | lastWeek : '[Last] dddd [at] LT', 31 | sameElse : 'L' 32 | }, 33 | relativeTime : { 34 | future : 'in %s', 35 | past : '%s ago', 36 | s : 'a few seconds', 37 | m : 'a minute', 38 | mm : '%d minutes', 39 | h : 'an hour', 40 | hh : '%d hours', 41 | d : 'a day', 42 | dd : '%d days', 43 | M : 'a month', 44 | MM : '%d months', 45 | y : 'a year', 46 | yy : '%d years' 47 | }, 48 | dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/, 49 | ordinal : function (number) { 50 | var b = number % 10, 51 | output = (~~(number % 100 / 10) === 1) ? 'th' : 52 | (b === 1) ? 'st' : 53 | (b === 2) ? 'nd' : 54 | (b === 3) ? 'rd' : 'th'; 55 | return number + output; 56 | } 57 | }); 58 | 59 | return enIl; 60 | 61 | }))); 62 | -------------------------------------------------------------------------------- /src/assets/js/locales/en-nz.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var enNz = moment.defineLocale('en-nz', { 12 | months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), 13 | monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), 14 | weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), 15 | weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), 16 | weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), 17 | longDateFormat : { 18 | LT : 'h:mm A', 19 | LTS : 'h:mm:ss A', 20 | L : 'DD/MM/YYYY', 21 | LL : 'D MMMM YYYY', 22 | LLL : 'D MMMM YYYY h:mm A', 23 | LLLL : 'dddd, D MMMM YYYY h:mm A' 24 | }, 25 | calendar : { 26 | sameDay : '[Today at] LT', 27 | nextDay : '[Tomorrow at] LT', 28 | nextWeek : 'dddd [at] LT', 29 | lastDay : '[Yesterday at] LT', 30 | lastWeek : '[Last] dddd [at] LT', 31 | sameElse : 'L' 32 | }, 33 | relativeTime : { 34 | future : 'in %s', 35 | past : '%s ago', 36 | s : 'a few seconds', 37 | ss : '%d seconds', 38 | m : 'a minute', 39 | mm : '%d minutes', 40 | h : 'an hour', 41 | hh : '%d hours', 42 | d : 'a day', 43 | dd : '%d days', 44 | M : 'a month', 45 | MM : '%d months', 46 | y : 'a year', 47 | yy : '%d years' 48 | }, 49 | dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/, 50 | ordinal : function (number) { 51 | var b = number % 10, 52 | output = (~~(number % 100 / 10) === 1) ? 'th' : 53 | (b === 1) ? 'st' : 54 | (b === 2) ? 'nd' : 55 | (b === 3) ? 'rd' : 'th'; 56 | return number + output; 57 | }, 58 | week : { 59 | dow : 1, // Monday is the first day of the week. 60 | doy : 4 // The week that contains Jan 4th is the first week of the year. 61 | } 62 | }); 63 | 64 | return enNz; 65 | 66 | }))); 67 | -------------------------------------------------------------------------------- /src/assets/js/locales/eo.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var eo = moment.defineLocale('eo', { 12 | months : 'januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro'.split('_'), 13 | monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aŭg_sep_okt_nov_dec'.split('_'), 14 | weekdays : 'dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato'.split('_'), 15 | weekdaysShort : 'dim_lun_mard_merk_ĵaŭ_ven_sab'.split('_'), 16 | weekdaysMin : 'di_lu_ma_me_ĵa_ve_sa'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'YYYY-MM-DD', 21 | LL : 'D[-a de] MMMM, YYYY', 22 | LLL : 'D[-a de] MMMM, YYYY HH:mm', 23 | LLLL : 'dddd, [la] D[-a de] MMMM, YYYY HH:mm' 24 | }, 25 | meridiemParse: /[ap]\.t\.m/i, 26 | isPM: function (input) { 27 | return input.charAt(0).toLowerCase() === 'p'; 28 | }, 29 | meridiem : function (hours, minutes, isLower) { 30 | if (hours > 11) { 31 | return isLower ? 'p.t.m.' : 'P.T.M.'; 32 | } else { 33 | return isLower ? 'a.t.m.' : 'A.T.M.'; 34 | } 35 | }, 36 | calendar : { 37 | sameDay : '[Hodiaŭ je] LT', 38 | nextDay : '[Morgaŭ je] LT', 39 | nextWeek : 'dddd [je] LT', 40 | lastDay : '[Hieraŭ je] LT', 41 | lastWeek : '[pasinta] dddd [je] LT', 42 | sameElse : 'L' 43 | }, 44 | relativeTime : { 45 | future : 'post %s', 46 | past : 'antaŭ %s', 47 | s : 'sekundoj', 48 | ss : '%d sekundoj', 49 | m : 'minuto', 50 | mm : '%d minutoj', 51 | h : 'horo', 52 | hh : '%d horoj', 53 | d : 'tago',//ne 'diurno', ĉar estas uzita por proksimumo 54 | dd : '%d tagoj', 55 | M : 'monato', 56 | MM : '%d monatoj', 57 | y : 'jaro', 58 | yy : '%d jaroj' 59 | }, 60 | dayOfMonthOrdinalParse: /\d{1,2}a/, 61 | ordinal : '%da', 62 | week : { 63 | dow : 1, // Monday is the first day of the week. 64 | doy : 7 // The week that contains Jan 1st is the first week of the year. 65 | } 66 | }); 67 | 68 | return eo; 69 | 70 | }))); 71 | -------------------------------------------------------------------------------- /src/assets/js/locales/eu.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var eu = moment.defineLocale('eu', { 12 | months : 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split('_'), 13 | monthsShort : 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split('_'), 14 | monthsParseExact : true, 15 | weekdays : 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split('_'), 16 | weekdaysShort : 'ig._al._ar._az._og._ol._lr.'.split('_'), 17 | weekdaysMin : 'ig_al_ar_az_og_ol_lr'.split('_'), 18 | weekdaysParseExact : true, 19 | longDateFormat : { 20 | LT : 'HH:mm', 21 | LTS : 'HH:mm:ss', 22 | L : 'YYYY-MM-DD', 23 | LL : 'YYYY[ko] MMMM[ren] D[a]', 24 | LLL : 'YYYY[ko] MMMM[ren] D[a] HH:mm', 25 | LLLL : 'dddd, YYYY[ko] MMMM[ren] D[a] HH:mm', 26 | l : 'YYYY-M-D', 27 | ll : 'YYYY[ko] MMM D[a]', 28 | lll : 'YYYY[ko] MMM D[a] HH:mm', 29 | llll : 'ddd, YYYY[ko] MMM D[a] HH:mm' 30 | }, 31 | calendar : { 32 | sameDay : '[gaur] LT[etan]', 33 | nextDay : '[bihar] LT[etan]', 34 | nextWeek : 'dddd LT[etan]', 35 | lastDay : '[atzo] LT[etan]', 36 | lastWeek : '[aurreko] dddd LT[etan]', 37 | sameElse : 'L' 38 | }, 39 | relativeTime : { 40 | future : '%s barru', 41 | past : 'duela %s', 42 | s : 'segundo batzuk', 43 | ss : '%d segundo', 44 | m : 'minutu bat', 45 | mm : '%d minutu', 46 | h : 'ordu bat', 47 | hh : '%d ordu', 48 | d : 'egun bat', 49 | dd : '%d egun', 50 | M : 'hilabete bat', 51 | MM : '%d hilabete', 52 | y : 'urte bat', 53 | yy : '%d urte' 54 | }, 55 | dayOfMonthOrdinalParse: /\d{1,2}\./, 56 | ordinal : '%d.', 57 | week : { 58 | dow : 1, // Monday is the first day of the week. 59 | doy : 7 // The week that contains Jan 1st is the first week of the year. 60 | } 61 | }); 62 | 63 | return eu; 64 | 65 | }))); 66 | -------------------------------------------------------------------------------- /src/assets/js/locales/fo.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var fo = moment.defineLocale('fo', { 12 | months : 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split('_'), 13 | monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'), 14 | weekdays : 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split('_'), 15 | weekdaysShort : 'sun_mán_týs_mik_hós_frí_ley'.split('_'), 16 | weekdaysMin : 'su_má_tý_mi_hó_fr_le'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'DD/MM/YYYY', 21 | LL : 'D MMMM YYYY', 22 | LLL : 'D MMMM YYYY HH:mm', 23 | LLLL : 'dddd D. MMMM, YYYY HH:mm' 24 | }, 25 | calendar : { 26 | sameDay : '[Í dag kl.] LT', 27 | nextDay : '[Í morgin kl.] LT', 28 | nextWeek : 'dddd [kl.] LT', 29 | lastDay : '[Í gjár kl.] LT', 30 | lastWeek : '[síðstu] dddd [kl] LT', 31 | sameElse : 'L' 32 | }, 33 | relativeTime : { 34 | future : 'um %s', 35 | past : '%s síðani', 36 | s : 'fá sekund', 37 | ss : '%d sekundir', 38 | m : 'ein minutt', 39 | mm : '%d minuttir', 40 | h : 'ein tími', 41 | hh : '%d tímar', 42 | d : 'ein dagur', 43 | dd : '%d dagar', 44 | M : 'ein mánaði', 45 | MM : '%d mánaðir', 46 | y : 'eitt ár', 47 | yy : '%d ár' 48 | }, 49 | dayOfMonthOrdinalParse: /\d{1,2}\./, 50 | ordinal : '%d.', 51 | week : { 52 | dow : 1, // Monday is the first day of the week. 53 | doy : 4 // The week that contains Jan 4th is the first week of the year. 54 | } 55 | }); 56 | 57 | return fo; 58 | 59 | }))); 60 | -------------------------------------------------------------------------------- /src/assets/js/locales/fr-ca.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var frCa = moment.defineLocale('fr-ca', { 12 | months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'), 13 | monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'), 14 | monthsParseExact : true, 15 | weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'), 16 | weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'), 17 | weekdaysMin : 'di_lu_ma_me_je_ve_sa'.split('_'), 18 | weekdaysParseExact : true, 19 | longDateFormat : { 20 | LT : 'HH:mm', 21 | LTS : 'HH:mm:ss', 22 | L : 'YYYY-MM-DD', 23 | LL : 'D MMMM YYYY', 24 | LLL : 'D MMMM YYYY HH:mm', 25 | LLLL : 'dddd D MMMM YYYY HH:mm' 26 | }, 27 | calendar : { 28 | sameDay : '[Aujourd’hui à] LT', 29 | nextDay : '[Demain à] LT', 30 | nextWeek : 'dddd [à] LT', 31 | lastDay : '[Hier à] LT', 32 | lastWeek : 'dddd [dernier à] LT', 33 | sameElse : 'L' 34 | }, 35 | relativeTime : { 36 | future : 'dans %s', 37 | past : 'il y a %s', 38 | s : 'quelques secondes', 39 | ss : '%d secondes', 40 | m : 'une minute', 41 | mm : '%d minutes', 42 | h : 'une heure', 43 | hh : '%d heures', 44 | d : 'un jour', 45 | dd : '%d jours', 46 | M : 'un mois', 47 | MM : '%d mois', 48 | y : 'un an', 49 | yy : '%d ans' 50 | }, 51 | dayOfMonthOrdinalParse: /\d{1,2}(er|e)/, 52 | ordinal : function (number, period) { 53 | switch (period) { 54 | // Words with masculine grammatical gender: mois, trimestre, jour 55 | default: 56 | case 'M': 57 | case 'Q': 58 | case 'D': 59 | case 'DDD': 60 | case 'd': 61 | return number + (number === 1 ? 'er' : 'e'); 62 | 63 | // Words with feminine grammatical gender: semaine 64 | case 'w': 65 | case 'W': 66 | return number + (number === 1 ? 're' : 'e'); 67 | } 68 | } 69 | }); 70 | 71 | return frCa; 72 | 73 | }))); 74 | -------------------------------------------------------------------------------- /src/assets/js/locales/gd.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var months = [ 12 | 'Am Faoilleach', 'An Gearran', 'Am Màrt', 'An Giblean', 'An Cèitean', 'An t-Ògmhios', 'An t-Iuchar', 'An Lùnastal', 'An t-Sultain', 'An Dàmhair', 'An t-Samhain', 'An Dùbhlachd' 13 | ]; 14 | 15 | var monthsShort = ['Faoi', 'Gear', 'Màrt', 'Gibl', 'Cèit', 'Ògmh', 'Iuch', 'Lùn', 'Sult', 'Dàmh', 'Samh', 'Dùbh']; 16 | 17 | var weekdays = ['Didòmhnaich', 'Diluain', 'Dimàirt', 'Diciadain', 'Diardaoin', 'Dihaoine', 'Disathairne']; 18 | 19 | var weekdaysShort = ['Did', 'Dil', 'Dim', 'Dic', 'Dia', 'Dih', 'Dis']; 20 | 21 | var weekdaysMin = ['Dò', 'Lu', 'Mà', 'Ci', 'Ar', 'Ha', 'Sa']; 22 | 23 | var gd = moment.defineLocale('gd', { 24 | months : months, 25 | monthsShort : monthsShort, 26 | monthsParseExact : true, 27 | weekdays : weekdays, 28 | weekdaysShort : weekdaysShort, 29 | weekdaysMin : weekdaysMin, 30 | longDateFormat : { 31 | LT : 'HH:mm', 32 | LTS : 'HH:mm:ss', 33 | L : 'DD/MM/YYYY', 34 | LL : 'D MMMM YYYY', 35 | LLL : 'D MMMM YYYY HH:mm', 36 | LLLL : 'dddd, D MMMM YYYY HH:mm' 37 | }, 38 | calendar : { 39 | sameDay : '[An-diugh aig] LT', 40 | nextDay : '[A-màireach aig] LT', 41 | nextWeek : 'dddd [aig] LT', 42 | lastDay : '[An-dè aig] LT', 43 | lastWeek : 'dddd [seo chaidh] [aig] LT', 44 | sameElse : 'L' 45 | }, 46 | relativeTime : { 47 | future : 'ann an %s', 48 | past : 'bho chionn %s', 49 | s : 'beagan diogan', 50 | ss : '%d diogan', 51 | m : 'mionaid', 52 | mm : '%d mionaidean', 53 | h : 'uair', 54 | hh : '%d uairean', 55 | d : 'latha', 56 | dd : '%d latha', 57 | M : 'mìos', 58 | MM : '%d mìosan', 59 | y : 'bliadhna', 60 | yy : '%d bliadhna' 61 | }, 62 | dayOfMonthOrdinalParse : /\d{1,2}(d|na|mh)/, 63 | ordinal : function (number) { 64 | var output = number === 1 ? 'd' : number % 10 === 2 ? 'na' : 'mh'; 65 | return number + output; 66 | }, 67 | week : { 68 | dow : 1, // Monday is the first day of the week. 69 | doy : 4 // The week that contains Jan 4th is the first week of the year. 70 | } 71 | }); 72 | 73 | return gd; 74 | 75 | }))); 76 | -------------------------------------------------------------------------------- /src/assets/js/locales/it.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var it = moment.defineLocale('it', { 12 | months : 'gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre'.split('_'), 13 | monthsShort : 'gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic'.split('_'), 14 | weekdays : 'domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato'.split('_'), 15 | weekdaysShort : 'dom_lun_mar_mer_gio_ven_sab'.split('_'), 16 | weekdaysMin : 'do_lu_ma_me_gi_ve_sa'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'DD/MM/YYYY', 21 | LL : 'D MMMM YYYY', 22 | LLL : 'D MMMM YYYY HH:mm', 23 | LLLL : 'dddd D MMMM YYYY HH:mm' 24 | }, 25 | calendar : { 26 | sameDay: '[Oggi alle] LT', 27 | nextDay: '[Domani alle] LT', 28 | nextWeek: 'dddd [alle] LT', 29 | lastDay: '[Ieri alle] LT', 30 | lastWeek: function () { 31 | switch (this.day()) { 32 | case 0: 33 | return '[la scorsa] dddd [alle] LT'; 34 | default: 35 | return '[lo scorso] dddd [alle] LT'; 36 | } 37 | }, 38 | sameElse: 'L' 39 | }, 40 | relativeTime : { 41 | future : function (s) { 42 | return ((/^[0-9].+$/).test(s) ? 'tra' : 'in') + ' ' + s; 43 | }, 44 | past : '%s fa', 45 | s : 'alcuni secondi', 46 | ss : '%d secondi', 47 | m : 'un minuto', 48 | mm : '%d minuti', 49 | h : 'un\'ora', 50 | hh : '%d ore', 51 | d : 'un giorno', 52 | dd : '%d giorni', 53 | M : 'un mese', 54 | MM : '%d mesi', 55 | y : 'un anno', 56 | yy : '%d anni' 57 | }, 58 | dayOfMonthOrdinalParse : /\d{1,2}º/, 59 | ordinal: '%dº', 60 | week : { 61 | dow : 1, // Monday is the first day of the week. 62 | doy : 4 // The week that contains Jan 4th is the first week of the year. 63 | } 64 | }); 65 | 66 | return it; 67 | 68 | }))); 69 | -------------------------------------------------------------------------------- /src/assets/js/locales/ko.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var ko = moment.defineLocale('ko', { 12 | months : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'), 13 | monthsShort : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'), 14 | weekdays : '일요일_월요일_화요일_수요일_목요일_금요일_토요일'.split('_'), 15 | weekdaysShort : '일_월_화_수_목_금_토'.split('_'), 16 | weekdaysMin : '일_월_화_수_목_금_토'.split('_'), 17 | longDateFormat : { 18 | LT : 'A h:mm', 19 | LTS : 'A h:mm:ss', 20 | L : 'YYYY.MM.DD.', 21 | LL : 'YYYY년 MMMM D일', 22 | LLL : 'YYYY년 MMMM D일 A h:mm', 23 | LLLL : 'YYYY년 MMMM D일 dddd A h:mm', 24 | l : 'YYYY.MM.DD.', 25 | ll : 'YYYY년 MMMM D일', 26 | lll : 'YYYY년 MMMM D일 A h:mm', 27 | llll : 'YYYY년 MMMM D일 dddd A h:mm' 28 | }, 29 | calendar : { 30 | sameDay : '오늘 LT', 31 | nextDay : '내일 LT', 32 | nextWeek : 'dddd LT', 33 | lastDay : '어제 LT', 34 | lastWeek : '지난주 dddd LT', 35 | sameElse : 'L' 36 | }, 37 | relativeTime : { 38 | future : '%s 후', 39 | past : '%s 전', 40 | s : '몇 초', 41 | ss : '%d초', 42 | m : '1분', 43 | mm : '%d분', 44 | h : '한 시간', 45 | hh : '%d시간', 46 | d : '하루', 47 | dd : '%d일', 48 | M : '한 달', 49 | MM : '%d달', 50 | y : '일 년', 51 | yy : '%d년' 52 | }, 53 | dayOfMonthOrdinalParse : /\d{1,2}(일|월|주)/, 54 | ordinal : function (number, period) { 55 | switch (period) { 56 | case 'd': 57 | case 'D': 58 | case 'DDD': 59 | return number + '일'; 60 | case 'M': 61 | return number + '월'; 62 | case 'w': 63 | case 'W': 64 | return number + '주'; 65 | default: 66 | return number; 67 | } 68 | }, 69 | meridiemParse : /오전|오후/, 70 | isPM : function (token) { 71 | return token === '오후'; 72 | }, 73 | meridiem : function (hour, minute, isUpper) { 74 | return hour < 12 ? '오전' : '오후'; 75 | } 76 | }); 77 | 78 | return ko; 79 | 80 | }))); 81 | -------------------------------------------------------------------------------- /src/assets/js/locales/lo.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var lo = moment.defineLocale('lo', { 12 | months : 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split('_'), 13 | monthsShort : 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split('_'), 14 | weekdays : 'ອາທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'), 15 | weekdaysShort : 'ທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'), 16 | weekdaysMin : 'ທ_ຈ_ອຄ_ພ_ພຫ_ສກ_ສ'.split('_'), 17 | weekdaysParseExact : true, 18 | longDateFormat : { 19 | LT : 'HH:mm', 20 | LTS : 'HH:mm:ss', 21 | L : 'DD/MM/YYYY', 22 | LL : 'D MMMM YYYY', 23 | LLL : 'D MMMM YYYY HH:mm', 24 | LLLL : 'ວັນdddd D MMMM YYYY HH:mm' 25 | }, 26 | meridiemParse: /ຕອນເຊົ້າ|ຕອນແລງ/, 27 | isPM: function (input) { 28 | return input === 'ຕອນແລງ'; 29 | }, 30 | meridiem : function (hour, minute, isLower) { 31 | if (hour < 12) { 32 | return 'ຕອນເຊົ້າ'; 33 | } else { 34 | return 'ຕອນແລງ'; 35 | } 36 | }, 37 | calendar : { 38 | sameDay : '[ມື້ນີ້ເວລາ] LT', 39 | nextDay : '[ມື້ອື່ນເວລາ] LT', 40 | nextWeek : '[ວັນ]dddd[ໜ້າເວລາ] LT', 41 | lastDay : '[ມື້ວານນີ້ເວລາ] LT', 42 | lastWeek : '[ວັນ]dddd[ແລ້ວນີ້ເວລາ] LT', 43 | sameElse : 'L' 44 | }, 45 | relativeTime : { 46 | future : 'ອີກ %s', 47 | past : '%sຜ່ານມາ', 48 | s : 'ບໍ່ເທົ່າໃດວິນາທີ', 49 | ss : '%d ວິນາທີ' , 50 | m : '1 ນາທີ', 51 | mm : '%d ນາທີ', 52 | h : '1 ຊົ່ວໂມງ', 53 | hh : '%d ຊົ່ວໂມງ', 54 | d : '1 ມື້', 55 | dd : '%d ມື້', 56 | M : '1 ເດືອນ', 57 | MM : '%d ເດືອນ', 58 | y : '1 ປີ', 59 | yy : '%d ປີ' 60 | }, 61 | dayOfMonthOrdinalParse: /(ທີ່)\d{1,2}/, 62 | ordinal : function (number) { 63 | return 'ທີ່' + number; 64 | } 65 | }); 66 | 67 | return lo; 68 | 69 | }))); 70 | -------------------------------------------------------------------------------- /src/assets/js/locales/mi.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var mi = moment.defineLocale('mi', { 12 | months: 'Kohi-tāte_Hui-tanguru_Poutū-te-rangi_Paenga-whāwhā_Haratua_Pipiri_Hōngoingoi_Here-turi-kōkā_Mahuru_Whiringa-ā-nuku_Whiringa-ā-rangi_Hakihea'.split('_'), 13 | monthsShort: 'Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki'.split('_'), 14 | monthsRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i, 15 | monthsStrictRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i, 16 | monthsShortRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i, 17 | monthsShortStrictRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,2}/i, 18 | weekdays: 'Rātapu_Mane_Tūrei_Wenerei_Tāite_Paraire_Hātarei'.split('_'), 19 | weekdaysShort: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'), 20 | weekdaysMin: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'), 21 | longDateFormat: { 22 | LT: 'HH:mm', 23 | LTS: 'HH:mm:ss', 24 | L: 'DD/MM/YYYY', 25 | LL: 'D MMMM YYYY', 26 | LLL: 'D MMMM YYYY [i] HH:mm', 27 | LLLL: 'dddd, D MMMM YYYY [i] HH:mm' 28 | }, 29 | calendar: { 30 | sameDay: '[i teie mahana, i] LT', 31 | nextDay: '[apopo i] LT', 32 | nextWeek: 'dddd [i] LT', 33 | lastDay: '[inanahi i] LT', 34 | lastWeek: 'dddd [whakamutunga i] LT', 35 | sameElse: 'L' 36 | }, 37 | relativeTime: { 38 | future: 'i roto i %s', 39 | past: '%s i mua', 40 | s: 'te hēkona ruarua', 41 | ss: '%d hēkona', 42 | m: 'he meneti', 43 | mm: '%d meneti', 44 | h: 'te haora', 45 | hh: '%d haora', 46 | d: 'he ra', 47 | dd: '%d ra', 48 | M: 'he marama', 49 | MM: '%d marama', 50 | y: 'he tau', 51 | yy: '%d tau' 52 | }, 53 | dayOfMonthOrdinalParse: /\d{1,2}º/, 54 | ordinal: '%dº', 55 | week : { 56 | dow : 1, // Monday is the first day of the week. 57 | doy : 4 // The week that contains Jan 4th is the first week of the year. 58 | } 59 | }); 60 | 61 | return mi; 62 | 63 | }))); 64 | -------------------------------------------------------------------------------- /src/assets/js/locales/mt.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var mt = moment.defineLocale('mt', { 12 | months : 'Jannar_Frar_Marzu_April_Mejju_Ġunju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Diċembru'.split('_'), 13 | monthsShort : 'Jan_Fra_Mar_Apr_Mej_Ġun_Lul_Aww_Set_Ott_Nov_Diċ'.split('_'), 14 | weekdays : 'Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt'.split('_'), 15 | weekdaysShort : 'Ħad_Tne_Tli_Erb_Ħam_Ġim_Sib'.split('_'), 16 | weekdaysMin : 'Ħa_Tn_Tl_Er_Ħa_Ġi_Si'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'DD/MM/YYYY', 21 | LL : 'D MMMM YYYY', 22 | LLL : 'D MMMM YYYY HH:mm', 23 | LLLL : 'dddd, D MMMM YYYY HH:mm' 24 | }, 25 | calendar : { 26 | sameDay : '[Illum fil-]LT', 27 | nextDay : '[Għada fil-]LT', 28 | nextWeek : 'dddd [fil-]LT', 29 | lastDay : '[Il-bieraħ fil-]LT', 30 | lastWeek : 'dddd [li għadda] [fil-]LT', 31 | sameElse : 'L' 32 | }, 33 | relativeTime : { 34 | future : 'f’ %s', 35 | past : '%s ilu', 36 | s : 'ftit sekondi', 37 | ss : '%d sekondi', 38 | m : 'minuta', 39 | mm : '%d minuti', 40 | h : 'siegħa', 41 | hh : '%d siegħat', 42 | d : 'ġurnata', 43 | dd : '%d ġranet', 44 | M : 'xahar', 45 | MM : '%d xhur', 46 | y : 'sena', 47 | yy : '%d sni' 48 | }, 49 | dayOfMonthOrdinalParse : /\d{1,2}º/, 50 | ordinal: '%dº', 51 | week : { 52 | dow : 1, // Monday is the first day of the week. 53 | doy : 4 // The week that contains Jan 4th is the first week of the year. 54 | } 55 | }); 56 | 57 | return mt; 58 | 59 | }))); 60 | -------------------------------------------------------------------------------- /src/assets/js/locales/nb.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var nb = moment.defineLocale('nb', { 12 | months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'), 13 | monthsShort : 'jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.'.split('_'), 14 | monthsParseExact : true, 15 | weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'), 16 | weekdaysShort : 'sø._ma._ti._on._to._fr._lø.'.split('_'), 17 | weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'), 18 | weekdaysParseExact : true, 19 | longDateFormat : { 20 | LT : 'HH:mm', 21 | LTS : 'HH:mm:ss', 22 | L : 'DD.MM.YYYY', 23 | LL : 'D. MMMM YYYY', 24 | LLL : 'D. MMMM YYYY [kl.] HH:mm', 25 | LLLL : 'dddd D. MMMM YYYY [kl.] HH:mm' 26 | }, 27 | calendar : { 28 | sameDay: '[i dag kl.] LT', 29 | nextDay: '[i morgen kl.] LT', 30 | nextWeek: 'dddd [kl.] LT', 31 | lastDay: '[i går kl.] LT', 32 | lastWeek: '[forrige] dddd [kl.] LT', 33 | sameElse: 'L' 34 | }, 35 | relativeTime : { 36 | future : 'om %s', 37 | past : '%s siden', 38 | s : 'noen sekunder', 39 | ss : '%d sekunder', 40 | m : 'ett minutt', 41 | mm : '%d minutter', 42 | h : 'en time', 43 | hh : '%d timer', 44 | d : 'en dag', 45 | dd : '%d dager', 46 | M : 'en måned', 47 | MM : '%d måneder', 48 | y : 'ett år', 49 | yy : '%d år' 50 | }, 51 | dayOfMonthOrdinalParse: /\d{1,2}\./, 52 | ordinal : '%d.', 53 | week : { 54 | dow : 1, // Monday is the first day of the week. 55 | doy : 4 // The week that contains Jan 4th is the first week of the year. 56 | } 57 | }); 58 | 59 | return nb; 60 | 61 | }))); 62 | -------------------------------------------------------------------------------- /src/assets/js/locales/nn.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var nn = moment.defineLocale('nn', { 12 | months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'), 13 | monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'), 14 | weekdays : 'sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag'.split('_'), 15 | weekdaysShort : 'sun_mån_tys_ons_tor_fre_lau'.split('_'), 16 | weekdaysMin : 'su_må_ty_on_to_fr_lø'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'DD.MM.YYYY', 21 | LL : 'D. MMMM YYYY', 22 | LLL : 'D. MMMM YYYY [kl.] H:mm', 23 | LLLL : 'dddd D. MMMM YYYY [kl.] HH:mm' 24 | }, 25 | calendar : { 26 | sameDay: '[I dag klokka] LT', 27 | nextDay: '[I morgon klokka] LT', 28 | nextWeek: 'dddd [klokka] LT', 29 | lastDay: '[I går klokka] LT', 30 | lastWeek: '[Føregåande] dddd [klokka] LT', 31 | sameElse: 'L' 32 | }, 33 | relativeTime : { 34 | future : 'om %s', 35 | past : '%s sidan', 36 | s : 'nokre sekund', 37 | ss : '%d sekund', 38 | m : 'eit minutt', 39 | mm : '%d minutt', 40 | h : 'ein time', 41 | hh : '%d timar', 42 | d : 'ein dag', 43 | dd : '%d dagar', 44 | M : 'ein månad', 45 | MM : '%d månader', 46 | y : 'eit år', 47 | yy : '%d år' 48 | }, 49 | dayOfMonthOrdinalParse: /\d{1,2}\./, 50 | ordinal : '%d.', 51 | week : { 52 | dow : 1, // Monday is the first day of the week. 53 | doy : 4 // The week that contains Jan 4th is the first week of the year. 54 | } 55 | }); 56 | 57 | return nn; 58 | 59 | }))); 60 | -------------------------------------------------------------------------------- /src/assets/js/locales/pt-br.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var ptBr = moment.defineLocale('pt-br', { 12 | months : 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split('_'), 13 | monthsShort : 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'), 14 | weekdays : 'Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado'.split('_'), 15 | weekdaysShort : 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'), 16 | weekdaysMin : 'Do_2ª_3ª_4ª_5ª_6ª_Sá'.split('_'), 17 | weekdaysParseExact : true, 18 | longDateFormat : { 19 | LT : 'HH:mm', 20 | LTS : 'HH:mm:ss', 21 | L : 'DD/MM/YYYY', 22 | LL : 'D [de] MMMM [de] YYYY', 23 | LLL : 'D [de] MMMM [de] YYYY [às] HH:mm', 24 | LLLL : 'dddd, D [de] MMMM [de] YYYY [às] HH:mm' 25 | }, 26 | calendar : { 27 | sameDay: '[Hoje às] LT', 28 | nextDay: '[Amanhã às] LT', 29 | nextWeek: 'dddd [às] LT', 30 | lastDay: '[Ontem às] LT', 31 | lastWeek: function () { 32 | return (this.day() === 0 || this.day() === 6) ? 33 | '[Último] dddd [às] LT' : // Saturday + Sunday 34 | '[Última] dddd [às] LT'; // Monday - Friday 35 | }, 36 | sameElse: 'L' 37 | }, 38 | relativeTime : { 39 | future : 'em %s', 40 | past : 'há %s', 41 | s : 'poucos segundos', 42 | ss : '%d segundos', 43 | m : 'um minuto', 44 | mm : '%d minutos', 45 | h : 'uma hora', 46 | hh : '%d horas', 47 | d : 'um dia', 48 | dd : '%d dias', 49 | M : 'um mês', 50 | MM : '%d meses', 51 | y : 'um ano', 52 | yy : '%d anos' 53 | }, 54 | dayOfMonthOrdinalParse: /\d{1,2}º/, 55 | ordinal : '%dº' 56 | }); 57 | 58 | return ptBr; 59 | 60 | }))); 61 | -------------------------------------------------------------------------------- /src/assets/js/locales/pt.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var pt = moment.defineLocale('pt', { 12 | months : 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split('_'), 13 | monthsShort : 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'), 14 | weekdays : 'Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado'.split('_'), 15 | weekdaysShort : 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'), 16 | weekdaysMin : 'Do_2ª_3ª_4ª_5ª_6ª_Sá'.split('_'), 17 | weekdaysParseExact : true, 18 | longDateFormat : { 19 | LT : 'HH:mm', 20 | LTS : 'HH:mm:ss', 21 | L : 'DD/MM/YYYY', 22 | LL : 'D [de] MMMM [de] YYYY', 23 | LLL : 'D [de] MMMM [de] YYYY HH:mm', 24 | LLLL : 'dddd, D [de] MMMM [de] YYYY HH:mm' 25 | }, 26 | calendar : { 27 | sameDay: '[Hoje às] LT', 28 | nextDay: '[Amanhã às] LT', 29 | nextWeek: 'dddd [às] LT', 30 | lastDay: '[Ontem às] LT', 31 | lastWeek: function () { 32 | return (this.day() === 0 || this.day() === 6) ? 33 | '[Último] dddd [às] LT' : // Saturday + Sunday 34 | '[Última] dddd [às] LT'; // Monday - Friday 35 | }, 36 | sameElse: 'L' 37 | }, 38 | relativeTime : { 39 | future : 'em %s', 40 | past : 'há %s', 41 | s : 'segundos', 42 | ss : '%d segundos', 43 | m : 'um minuto', 44 | mm : '%d minutos', 45 | h : 'uma hora', 46 | hh : '%d horas', 47 | d : 'um dia', 48 | dd : '%d dias', 49 | M : 'um mês', 50 | MM : '%d meses', 51 | y : 'um ano', 52 | yy : '%d anos' 53 | }, 54 | dayOfMonthOrdinalParse: /\d{1,2}º/, 55 | ordinal : '%dº', 56 | week : { 57 | dow : 1, // Monday is the first day of the week. 58 | doy : 4 // The week that contains Jan 4th is the first week of the year. 59 | } 60 | }); 61 | 62 | return pt; 63 | 64 | }))); 65 | -------------------------------------------------------------------------------- /src/assets/js/locales/ro.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | function relativeTimeWithPlural(number, withoutSuffix, key) { 12 | var format = { 13 | 'ss': 'secunde', 14 | 'mm': 'minute', 15 | 'hh': 'ore', 16 | 'dd': 'zile', 17 | 'MM': 'luni', 18 | 'yy': 'ani' 19 | }, 20 | separator = ' '; 21 | if (number % 100 >= 20 || (number >= 100 && number % 100 === 0)) { 22 | separator = ' de '; 23 | } 24 | return number + separator + format[key]; 25 | } 26 | 27 | var ro = moment.defineLocale('ro', { 28 | months : 'ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie'.split('_'), 29 | monthsShort : 'ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.'.split('_'), 30 | monthsParseExact: true, 31 | weekdays : 'duminică_luni_marți_miercuri_joi_vineri_sâmbătă'.split('_'), 32 | weekdaysShort : 'Dum_Lun_Mar_Mie_Joi_Vin_Sâm'.split('_'), 33 | weekdaysMin : 'Du_Lu_Ma_Mi_Jo_Vi_Sâ'.split('_'), 34 | longDateFormat : { 35 | LT : 'H:mm', 36 | LTS : 'H:mm:ss', 37 | L : 'DD.MM.YYYY', 38 | LL : 'D MMMM YYYY', 39 | LLL : 'D MMMM YYYY H:mm', 40 | LLLL : 'dddd, D MMMM YYYY H:mm' 41 | }, 42 | calendar : { 43 | sameDay: '[azi la] LT', 44 | nextDay: '[mâine la] LT', 45 | nextWeek: 'dddd [la] LT', 46 | lastDay: '[ieri la] LT', 47 | lastWeek: '[fosta] dddd [la] LT', 48 | sameElse: 'L' 49 | }, 50 | relativeTime : { 51 | future : 'peste %s', 52 | past : '%s în urmă', 53 | s : 'câteva secunde', 54 | ss : relativeTimeWithPlural, 55 | m : 'un minut', 56 | mm : relativeTimeWithPlural, 57 | h : 'o oră', 58 | hh : relativeTimeWithPlural, 59 | d : 'o zi', 60 | dd : relativeTimeWithPlural, 61 | M : 'o lună', 62 | MM : relativeTimeWithPlural, 63 | y : 'un an', 64 | yy : relativeTimeWithPlural 65 | }, 66 | week : { 67 | dow : 1, // Monday is the first day of the week. 68 | doy : 7 // The week that contains Jan 1st is the first week of the year. 69 | } 70 | }); 71 | 72 | return ro; 73 | 74 | }))); 75 | -------------------------------------------------------------------------------- /src/assets/js/locales/sd.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var months = [ 12 | 'جنوري', 13 | 'فيبروري', 14 | 'مارچ', 15 | 'اپريل', 16 | 'مئي', 17 | 'جون', 18 | 'جولاءِ', 19 | 'آگسٽ', 20 | 'سيپٽمبر', 21 | 'آڪٽوبر', 22 | 'نومبر', 23 | 'ڊسمبر' 24 | ]; 25 | var days = [ 26 | 'آچر', 27 | 'سومر', 28 | 'اڱارو', 29 | 'اربع', 30 | 'خميس', 31 | 'جمع', 32 | 'ڇنڇر' 33 | ]; 34 | 35 | var sd = moment.defineLocale('sd', { 36 | months : months, 37 | monthsShort : months, 38 | weekdays : days, 39 | weekdaysShort : days, 40 | weekdaysMin : days, 41 | longDateFormat : { 42 | LT : 'HH:mm', 43 | LTS : 'HH:mm:ss', 44 | L : 'DD/MM/YYYY', 45 | LL : 'D MMMM YYYY', 46 | LLL : 'D MMMM YYYY HH:mm', 47 | LLLL : 'dddd، D MMMM YYYY HH:mm' 48 | }, 49 | meridiemParse: /صبح|شام/, 50 | isPM : function (input) { 51 | return 'شام' === input; 52 | }, 53 | meridiem : function (hour, minute, isLower) { 54 | if (hour < 12) { 55 | return 'صبح'; 56 | } 57 | return 'شام'; 58 | }, 59 | calendar : { 60 | sameDay : '[اڄ] LT', 61 | nextDay : '[سڀاڻي] LT', 62 | nextWeek : 'dddd [اڳين هفتي تي] LT', 63 | lastDay : '[ڪالهه] LT', 64 | lastWeek : '[گزريل هفتي] dddd [تي] LT', 65 | sameElse : 'L' 66 | }, 67 | relativeTime : { 68 | future : '%s پوء', 69 | past : '%s اڳ', 70 | s : 'چند سيڪنڊ', 71 | ss : '%d سيڪنڊ', 72 | m : 'هڪ منٽ', 73 | mm : '%d منٽ', 74 | h : 'هڪ ڪلاڪ', 75 | hh : '%d ڪلاڪ', 76 | d : 'هڪ ڏينهن', 77 | dd : '%d ڏينهن', 78 | M : 'هڪ مهينو', 79 | MM : '%d مهينا', 80 | y : 'هڪ سال', 81 | yy : '%d سال' 82 | }, 83 | preparse: function (string) { 84 | return string.replace(/،/g, ','); 85 | }, 86 | postformat: function (string) { 87 | return string.replace(/,/g, '،'); 88 | }, 89 | week : { 90 | dow : 1, // Monday is the first day of the week. 91 | doy : 4 // The week that contains Jan 4th is the first week of the year. 92 | } 93 | }); 94 | 95 | return sd; 96 | 97 | }))); 98 | -------------------------------------------------------------------------------- /src/assets/js/locales/se.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var se = moment.defineLocale('se', { 12 | months : 'ođđajagemánnu_guovvamánnu_njukčamánnu_cuoŋománnu_miessemánnu_geassemánnu_suoidnemánnu_borgemánnu_čakčamánnu_golggotmánnu_skábmamánnu_juovlamánnu'.split('_'), 13 | monthsShort : 'ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov'.split('_'), 14 | weekdays : 'sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat'.split('_'), 15 | weekdaysShort : 'sotn_vuos_maŋ_gask_duor_bear_láv'.split('_'), 16 | weekdaysMin : 's_v_m_g_d_b_L'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'DD.MM.YYYY', 21 | LL : 'MMMM D. [b.] YYYY', 22 | LLL : 'MMMM D. [b.] YYYY [ti.] HH:mm', 23 | LLLL : 'dddd, MMMM D. [b.] YYYY [ti.] HH:mm' 24 | }, 25 | calendar : { 26 | sameDay: '[otne ti] LT', 27 | nextDay: '[ihttin ti] LT', 28 | nextWeek: 'dddd [ti] LT', 29 | lastDay: '[ikte ti] LT', 30 | lastWeek: '[ovddit] dddd [ti] LT', 31 | sameElse: 'L' 32 | }, 33 | relativeTime : { 34 | future : '%s geažes', 35 | past : 'maŋit %s', 36 | s : 'moadde sekunddat', 37 | ss: '%d sekunddat', 38 | m : 'okta minuhta', 39 | mm : '%d minuhtat', 40 | h : 'okta diimmu', 41 | hh : '%d diimmut', 42 | d : 'okta beaivi', 43 | dd : '%d beaivvit', 44 | M : 'okta mánnu', 45 | MM : '%d mánut', 46 | y : 'okta jahki', 47 | yy : '%d jagit' 48 | }, 49 | dayOfMonthOrdinalParse: /\d{1,2}\./, 50 | ordinal : '%d.', 51 | week : { 52 | dow : 1, // Monday is the first day of the week. 53 | doy : 4 // The week that contains Jan 4th is the first week of the year. 54 | } 55 | }); 56 | 57 | return se; 58 | 59 | }))); 60 | -------------------------------------------------------------------------------- /src/assets/js/locales/si.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | /*jshint -W100*/ 12 | var si = moment.defineLocale('si', { 13 | months : 'ජනවාරි_පෙබරවාරි_මාර්තු_අප්‍රේල්_මැයි_ජූනි_ජූලි_අගෝස්තු_සැප්තැම්බර්_ඔක්තෝබර්_නොවැම්බර්_දෙසැම්බර්'.split('_'), 14 | monthsShort : 'ජන_පෙබ_මාර්_අප්_මැයි_ජූනි_ජූලි_අගෝ_සැප්_ඔක්_නොවැ_දෙසැ'.split('_'), 15 | weekdays : 'ඉරිදා_සඳුදා_අඟහරුවාදා_බදාදා_බ්‍රහස්පතින්දා_සිකුරාදා_සෙනසුරාදා'.split('_'), 16 | weekdaysShort : 'ඉරි_සඳු_අඟ_බදා_බ්‍රහ_සිකු_සෙන'.split('_'), 17 | weekdaysMin : 'ඉ_ස_අ_බ_බ්‍ර_සි_සෙ'.split('_'), 18 | weekdaysParseExact : true, 19 | longDateFormat : { 20 | LT : 'a h:mm', 21 | LTS : 'a h:mm:ss', 22 | L : 'YYYY/MM/DD', 23 | LL : 'YYYY MMMM D', 24 | LLL : 'YYYY MMMM D, a h:mm', 25 | LLLL : 'YYYY MMMM D [වැනි] dddd, a h:mm:ss' 26 | }, 27 | calendar : { 28 | sameDay : '[අද] LT[ට]', 29 | nextDay : '[හෙට] LT[ට]', 30 | nextWeek : 'dddd LT[ට]', 31 | lastDay : '[ඊයේ] LT[ට]', 32 | lastWeek : '[පසුගිය] dddd LT[ට]', 33 | sameElse : 'L' 34 | }, 35 | relativeTime : { 36 | future : '%sකින්', 37 | past : '%sකට පෙර', 38 | s : 'තත්පර කිහිපය', 39 | ss : 'තත්පර %d', 40 | m : 'මිනිත්තුව', 41 | mm : 'මිනිත්තු %d', 42 | h : 'පැය', 43 | hh : 'පැය %d', 44 | d : 'දිනය', 45 | dd : 'දින %d', 46 | M : 'මාසය', 47 | MM : 'මාස %d', 48 | y : 'වසර', 49 | yy : 'වසර %d' 50 | }, 51 | dayOfMonthOrdinalParse: /\d{1,2} වැනි/, 52 | ordinal : function (number) { 53 | return number + ' වැනි'; 54 | }, 55 | meridiemParse : /පෙර වරු|පස් වරු|පෙ.ව|ප.ව./, 56 | isPM : function (input) { 57 | return input === 'ප.ව.' || input === 'පස් වරු'; 58 | }, 59 | meridiem : function (hours, minutes, isLower) { 60 | if (hours > 11) { 61 | return isLower ? 'ප.ව.' : 'පස් වරු'; 62 | } else { 63 | return isLower ? 'පෙ.ව.' : 'පෙර වරු'; 64 | } 65 | } 66 | }); 67 | 68 | return si; 69 | 70 | }))); 71 | -------------------------------------------------------------------------------- /src/assets/js/locales/sq.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var sq = moment.defineLocale('sq', { 12 | months : 'Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor'.split('_'), 13 | monthsShort : 'Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj'.split('_'), 14 | weekdays : 'E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë'.split('_'), 15 | weekdaysShort : 'Die_Hën_Mar_Mër_Enj_Pre_Sht'.split('_'), 16 | weekdaysMin : 'D_H_Ma_Më_E_P_Sh'.split('_'), 17 | weekdaysParseExact : true, 18 | meridiemParse: /PD|MD/, 19 | isPM: function (input) { 20 | return input.charAt(0) === 'M'; 21 | }, 22 | meridiem : function (hours, minutes, isLower) { 23 | return hours < 12 ? 'PD' : 'MD'; 24 | }, 25 | longDateFormat : { 26 | LT : 'HH:mm', 27 | LTS : 'HH:mm:ss', 28 | L : 'DD/MM/YYYY', 29 | LL : 'D MMMM YYYY', 30 | LLL : 'D MMMM YYYY HH:mm', 31 | LLLL : 'dddd, D MMMM YYYY HH:mm' 32 | }, 33 | calendar : { 34 | sameDay : '[Sot në] LT', 35 | nextDay : '[Nesër në] LT', 36 | nextWeek : 'dddd [në] LT', 37 | lastDay : '[Dje në] LT', 38 | lastWeek : 'dddd [e kaluar në] LT', 39 | sameElse : 'L' 40 | }, 41 | relativeTime : { 42 | future : 'në %s', 43 | past : '%s më parë', 44 | s : 'disa sekonda', 45 | ss : '%d sekonda', 46 | m : 'një minutë', 47 | mm : '%d minuta', 48 | h : 'një orë', 49 | hh : '%d orë', 50 | d : 'një ditë', 51 | dd : '%d ditë', 52 | M : 'një muaj', 53 | MM : '%d muaj', 54 | y : 'një vit', 55 | yy : '%d vite' 56 | }, 57 | dayOfMonthOrdinalParse: /\d{1,2}\./, 58 | ordinal : '%d.', 59 | week : { 60 | dow : 1, // Monday is the first day of the week. 61 | doy : 4 // The week that contains Jan 4th is the first week of the year. 62 | } 63 | }); 64 | 65 | return sq; 66 | 67 | }))); 68 | -------------------------------------------------------------------------------- /src/assets/js/locales/sv.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var sv = moment.defineLocale('sv', { 12 | months : 'januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december'.split('_'), 13 | monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'), 14 | weekdays : 'söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag'.split('_'), 15 | weekdaysShort : 'sön_mån_tis_ons_tor_fre_lör'.split('_'), 16 | weekdaysMin : 'sö_må_ti_on_to_fr_lö'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'YYYY-MM-DD', 21 | LL : 'D MMMM YYYY', 22 | LLL : 'D MMMM YYYY [kl.] HH:mm', 23 | LLLL : 'dddd D MMMM YYYY [kl.] HH:mm', 24 | lll : 'D MMM YYYY HH:mm', 25 | llll : 'ddd D MMM YYYY HH:mm' 26 | }, 27 | calendar : { 28 | sameDay: '[Idag] LT', 29 | nextDay: '[Imorgon] LT', 30 | lastDay: '[Igår] LT', 31 | nextWeek: '[På] dddd LT', 32 | lastWeek: '[I] dddd[s] LT', 33 | sameElse: 'L' 34 | }, 35 | relativeTime : { 36 | future : 'om %s', 37 | past : 'för %s sedan', 38 | s : 'några sekunder', 39 | ss : '%d sekunder', 40 | m : 'en minut', 41 | mm : '%d minuter', 42 | h : 'en timme', 43 | hh : '%d timmar', 44 | d : 'en dag', 45 | dd : '%d dagar', 46 | M : 'en månad', 47 | MM : '%d månader', 48 | y : 'ett år', 49 | yy : '%d år' 50 | }, 51 | dayOfMonthOrdinalParse: /\d{1,2}(e|a)/, 52 | ordinal : function (number) { 53 | var b = number % 10, 54 | output = (~~(number % 100 / 10) === 1) ? 'e' : 55 | (b === 1) ? 'a' : 56 | (b === 2) ? 'a' : 57 | (b === 3) ? 'e' : 'e'; 58 | return number + output; 59 | }, 60 | week : { 61 | dow : 1, // Monday is the first day of the week. 62 | doy : 4 // The week that contains Jan 4th is the first week of the year. 63 | } 64 | }); 65 | 66 | return sv; 67 | 68 | }))); 69 | -------------------------------------------------------------------------------- /src/assets/js/locales/sw.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var sw = moment.defineLocale('sw', { 12 | months : 'Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba'.split('_'), 13 | monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des'.split('_'), 14 | weekdays : 'Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi'.split('_'), 15 | weekdaysShort : 'Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos'.split('_'), 16 | weekdaysMin : 'J2_J3_J4_J5_Al_Ij_J1'.split('_'), 17 | weekdaysParseExact : true, 18 | longDateFormat : { 19 | LT : 'HH:mm', 20 | LTS : 'HH:mm:ss', 21 | L : 'DD.MM.YYYY', 22 | LL : 'D MMMM YYYY', 23 | LLL : 'D MMMM YYYY HH:mm', 24 | LLLL : 'dddd, D MMMM YYYY HH:mm' 25 | }, 26 | calendar : { 27 | sameDay : '[leo saa] LT', 28 | nextDay : '[kesho saa] LT', 29 | nextWeek : '[wiki ijayo] dddd [saat] LT', 30 | lastDay : '[jana] LT', 31 | lastWeek : '[wiki iliyopita] dddd [saat] LT', 32 | sameElse : 'L' 33 | }, 34 | relativeTime : { 35 | future : '%s baadaye', 36 | past : 'tokea %s', 37 | s : 'hivi punde', 38 | ss : 'sekunde %d', 39 | m : 'dakika moja', 40 | mm : 'dakika %d', 41 | h : 'saa limoja', 42 | hh : 'masaa %d', 43 | d : 'siku moja', 44 | dd : 'masiku %d', 45 | M : 'mwezi mmoja', 46 | MM : 'miezi %d', 47 | y : 'mwaka mmoja', 48 | yy : 'miaka %d' 49 | }, 50 | week : { 51 | dow : 1, // Monday is the first day of the week. 52 | doy : 7 // The week that contains Jan 1st is the first week of the year. 53 | } 54 | }); 55 | 56 | return sw; 57 | 58 | }))); 59 | -------------------------------------------------------------------------------- /src/assets/js/locales/tet.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var tet = moment.defineLocale('tet', { 12 | months : 'Janeiru_Fevereiru_Marsu_Abril_Maiu_Juñu_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru'.split('_'), 13 | monthsShort : 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez'.split('_'), 14 | weekdays : 'Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu'.split('_'), 15 | weekdaysShort : 'Dom_Seg_Ters_Kua_Kint_Sest_Sab'.split('_'), 16 | weekdaysMin : 'Do_Seg_Te_Ku_Ki_Ses_Sa'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'DD/MM/YYYY', 21 | LL : 'D MMMM YYYY', 22 | LLL : 'D MMMM YYYY HH:mm', 23 | LLLL : 'dddd, D MMMM YYYY HH:mm' 24 | }, 25 | calendar : { 26 | sameDay: '[Ohin iha] LT', 27 | nextDay: '[Aban iha] LT', 28 | nextWeek: 'dddd [iha] LT', 29 | lastDay: '[Horiseik iha] LT', 30 | lastWeek: 'dddd [semana kotuk] [iha] LT', 31 | sameElse: 'L' 32 | }, 33 | relativeTime : { 34 | future : 'iha %s', 35 | past : '%s liuba', 36 | s : 'minutu balun', 37 | ss : 'minutu %d', 38 | m : 'minutu ida', 39 | mm : 'minutu %d', 40 | h : 'oras ida', 41 | hh : 'oras %d', 42 | d : 'loron ida', 43 | dd : 'loron %d', 44 | M : 'fulan ida', 45 | MM : 'fulan %d', 46 | y : 'tinan ida', 47 | yy : 'tinan %d' 48 | }, 49 | dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/, 50 | ordinal : function (number) { 51 | var b = number % 10, 52 | output = (~~(number % 100 / 10) === 1) ? 'th' : 53 | (b === 1) ? 'st' : 54 | (b === 2) ? 'nd' : 55 | (b === 3) ? 'rd' : 'th'; 56 | return number + output; 57 | }, 58 | week : { 59 | dow : 1, // Monday is the first day of the week. 60 | doy : 4 // The week that contains Jan 4th is the first week of the year. 61 | } 62 | }); 63 | 64 | return tet; 65 | 66 | }))); 67 | -------------------------------------------------------------------------------- /src/assets/js/locales/th.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var th = moment.defineLocale('th', { 12 | months : 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'.split('_'), 13 | monthsShort : 'ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'.split('_'), 14 | monthsParseExact: true, 15 | weekdays : 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'), 16 | weekdaysShort : 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'), // yes, three characters difference 17 | weekdaysMin : 'อา._จ._อ._พ._พฤ._ศ._ส.'.split('_'), 18 | weekdaysParseExact : true, 19 | longDateFormat : { 20 | LT : 'H:mm', 21 | LTS : 'H:mm:ss', 22 | L : 'DD/MM/YYYY', 23 | LL : 'D MMMM YYYY', 24 | LLL : 'D MMMM YYYY เวลา H:mm', 25 | LLLL : 'วันddddที่ D MMMM YYYY เวลา H:mm' 26 | }, 27 | meridiemParse: /ก่อนเที่ยง|หลังเที่ยง/, 28 | isPM: function (input) { 29 | return input === 'หลังเที่ยง'; 30 | }, 31 | meridiem : function (hour, minute, isLower) { 32 | if (hour < 12) { 33 | return 'ก่อนเที่ยง'; 34 | } else { 35 | return 'หลังเที่ยง'; 36 | } 37 | }, 38 | calendar : { 39 | sameDay : '[วันนี้ เวลา] LT', 40 | nextDay : '[พรุ่งนี้ เวลา] LT', 41 | nextWeek : 'dddd[หน้า เวลา] LT', 42 | lastDay : '[เมื่อวานนี้ เวลา] LT', 43 | lastWeek : '[วัน]dddd[ที่แล้ว เวลา] LT', 44 | sameElse : 'L' 45 | }, 46 | relativeTime : { 47 | future : 'อีก %s', 48 | past : '%sที่แล้ว', 49 | s : 'ไม่กี่วินาที', 50 | ss : '%d วินาที', 51 | m : '1 นาที', 52 | mm : '%d นาที', 53 | h : '1 ชั่วโมง', 54 | hh : '%d ชั่วโมง', 55 | d : '1 วัน', 56 | dd : '%d วัน', 57 | M : '1 เดือน', 58 | MM : '%d เดือน', 59 | y : '1 ปี', 60 | yy : '%d ปี' 61 | } 62 | }); 63 | 64 | return th; 65 | 66 | }))); 67 | -------------------------------------------------------------------------------- /src/assets/js/locales/tl-ph.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var tlPh = moment.defineLocale('tl-ph', { 12 | months : 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split('_'), 13 | monthsShort : 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'), 14 | weekdays : 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split('_'), 15 | weekdaysShort : 'Lin_Lun_Mar_Miy_Huw_Biy_Sab'.split('_'), 16 | weekdaysMin : 'Li_Lu_Ma_Mi_Hu_Bi_Sab'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'MM/D/YYYY', 21 | LL : 'MMMM D, YYYY', 22 | LLL : 'MMMM D, YYYY HH:mm', 23 | LLLL : 'dddd, MMMM DD, YYYY HH:mm' 24 | }, 25 | calendar : { 26 | sameDay: 'LT [ngayong araw]', 27 | nextDay: '[Bukas ng] LT', 28 | nextWeek: 'LT [sa susunod na] dddd', 29 | lastDay: 'LT [kahapon]', 30 | lastWeek: 'LT [noong nakaraang] dddd', 31 | sameElse: 'L' 32 | }, 33 | relativeTime : { 34 | future : 'sa loob ng %s', 35 | past : '%s ang nakalipas', 36 | s : 'ilang segundo', 37 | ss : '%d segundo', 38 | m : 'isang minuto', 39 | mm : '%d minuto', 40 | h : 'isang oras', 41 | hh : '%d oras', 42 | d : 'isang araw', 43 | dd : '%d araw', 44 | M : 'isang buwan', 45 | MM : '%d buwan', 46 | y : 'isang taon', 47 | yy : '%d taon' 48 | }, 49 | dayOfMonthOrdinalParse: /\d{1,2}/, 50 | ordinal : function (number) { 51 | return number; 52 | }, 53 | week : { 54 | dow : 1, // Monday is the first day of the week. 55 | doy : 4 // The week that contains Jan 4th is the first week of the year. 56 | } 57 | }); 58 | 59 | return tlPh; 60 | 61 | }))); 62 | -------------------------------------------------------------------------------- /src/assets/js/locales/tzm-latn.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var tzmLatn = moment.defineLocale('tzm-latn', { 12 | months : 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split('_'), 13 | monthsShort : 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split('_'), 14 | weekdays : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), 15 | weekdaysShort : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), 16 | weekdaysMin : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'DD/MM/YYYY', 21 | LL : 'D MMMM YYYY', 22 | LLL : 'D MMMM YYYY HH:mm', 23 | LLLL : 'dddd D MMMM YYYY HH:mm' 24 | }, 25 | calendar : { 26 | sameDay: '[asdkh g] LT', 27 | nextDay: '[aska g] LT', 28 | nextWeek: 'dddd [g] LT', 29 | lastDay: '[assant g] LT', 30 | lastWeek: 'dddd [g] LT', 31 | sameElse: 'L' 32 | }, 33 | relativeTime : { 34 | future : 'dadkh s yan %s', 35 | past : 'yan %s', 36 | s : 'imik', 37 | ss : '%d imik', 38 | m : 'minuḍ', 39 | mm : '%d minuḍ', 40 | h : 'saɛa', 41 | hh : '%d tassaɛin', 42 | d : 'ass', 43 | dd : '%d ossan', 44 | M : 'ayowr', 45 | MM : '%d iyyirn', 46 | y : 'asgas', 47 | yy : '%d isgasn' 48 | }, 49 | week : { 50 | dow : 6, // Saturday is the first day of the week. 51 | doy : 12 // The week that contains Jan 1st is the first week of the year. 52 | } 53 | }); 54 | 55 | return tzmLatn; 56 | 57 | }))); 58 | -------------------------------------------------------------------------------- /src/assets/js/locales/tzm.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var tzm = moment.defineLocale('tzm', { 12 | months : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'), 13 | monthsShort : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'), 14 | weekdays : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), 15 | weekdaysShort : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), 16 | weekdaysMin : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS: 'HH:mm:ss', 20 | L : 'DD/MM/YYYY', 21 | LL : 'D MMMM YYYY', 22 | LLL : 'D MMMM YYYY HH:mm', 23 | LLLL : 'dddd D MMMM YYYY HH:mm' 24 | }, 25 | calendar : { 26 | sameDay: '[ⴰⵙⴷⵅ ⴴ] LT', 27 | nextDay: '[ⴰⵙⴽⴰ ⴴ] LT', 28 | nextWeek: 'dddd [ⴴ] LT', 29 | lastDay: '[ⴰⵚⴰⵏⵜ ⴴ] LT', 30 | lastWeek: 'dddd [ⴴ] LT', 31 | sameElse: 'L' 32 | }, 33 | relativeTime : { 34 | future : 'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s', 35 | past : 'ⵢⴰⵏ %s', 36 | s : 'ⵉⵎⵉⴽ', 37 | ss : '%d ⵉⵎⵉⴽ', 38 | m : 'ⵎⵉⵏⵓⴺ', 39 | mm : '%d ⵎⵉⵏⵓⴺ', 40 | h : 'ⵙⴰⵄⴰ', 41 | hh : '%d ⵜⴰⵙⵙⴰⵄⵉⵏ', 42 | d : 'ⴰⵙⵙ', 43 | dd : '%d oⵙⵙⴰⵏ', 44 | M : 'ⴰⵢoⵓⵔ', 45 | MM : '%d ⵉⵢⵢⵉⵔⵏ', 46 | y : 'ⴰⵙⴳⴰⵙ', 47 | yy : '%d ⵉⵙⴳⴰⵙⵏ' 48 | }, 49 | week : { 50 | dow : 6, // Saturday is the first day of the week. 51 | doy : 12 // The week that contains Jan 1st is the first week of the year. 52 | } 53 | }); 54 | 55 | return tzm; 56 | 57 | }))); 58 | -------------------------------------------------------------------------------- /src/assets/js/locales/ur.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var months = [ 12 | 'جنوری', 13 | 'فروری', 14 | 'مارچ', 15 | 'اپریل', 16 | 'مئی', 17 | 'جون', 18 | 'جولائی', 19 | 'اگست', 20 | 'ستمبر', 21 | 'اکتوبر', 22 | 'نومبر', 23 | 'دسمبر' 24 | ]; 25 | var days = [ 26 | 'اتوار', 27 | 'پیر', 28 | 'منگل', 29 | 'بدھ', 30 | 'جمعرات', 31 | 'جمعہ', 32 | 'ہفتہ' 33 | ]; 34 | 35 | var ur = moment.defineLocale('ur', { 36 | months : months, 37 | monthsShort : months, 38 | weekdays : days, 39 | weekdaysShort : days, 40 | weekdaysMin : days, 41 | longDateFormat : { 42 | LT : 'HH:mm', 43 | LTS : 'HH:mm:ss', 44 | L : 'DD/MM/YYYY', 45 | LL : 'D MMMM YYYY', 46 | LLL : 'D MMMM YYYY HH:mm', 47 | LLLL : 'dddd، D MMMM YYYY HH:mm' 48 | }, 49 | meridiemParse: /صبح|شام/, 50 | isPM : function (input) { 51 | return 'شام' === input; 52 | }, 53 | meridiem : function (hour, minute, isLower) { 54 | if (hour < 12) { 55 | return 'صبح'; 56 | } 57 | return 'شام'; 58 | }, 59 | calendar : { 60 | sameDay : '[آج بوقت] LT', 61 | nextDay : '[کل بوقت] LT', 62 | nextWeek : 'dddd [بوقت] LT', 63 | lastDay : '[گذشتہ روز بوقت] LT', 64 | lastWeek : '[گذشتہ] dddd [بوقت] LT', 65 | sameElse : 'L' 66 | }, 67 | relativeTime : { 68 | future : '%s بعد', 69 | past : '%s قبل', 70 | s : 'چند سیکنڈ', 71 | ss : '%d سیکنڈ', 72 | m : 'ایک منٹ', 73 | mm : '%d منٹ', 74 | h : 'ایک گھنٹہ', 75 | hh : '%d گھنٹے', 76 | d : 'ایک دن', 77 | dd : '%d دن', 78 | M : 'ایک ماہ', 79 | MM : '%d ماہ', 80 | y : 'ایک سال', 81 | yy : '%d سال' 82 | }, 83 | preparse: function (string) { 84 | return string.replace(/،/g, ','); 85 | }, 86 | postformat: function (string) { 87 | return string.replace(/,/g, '،'); 88 | }, 89 | week : { 90 | dow : 1, // Monday is the first day of the week. 91 | doy : 4 // The week that contains Jan 4th is the first week of the year. 92 | } 93 | }); 94 | 95 | return ur; 96 | 97 | }))); 98 | -------------------------------------------------------------------------------- /src/assets/js/locales/uz-latn.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var uzLatn = moment.defineLocale('uz-latn', { 12 | months : 'Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr'.split('_'), 13 | monthsShort : 'Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek'.split('_'), 14 | weekdays : 'Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba'.split('_'), 15 | weekdaysShort : 'Yak_Dush_Sesh_Chor_Pay_Jum_Shan'.split('_'), 16 | weekdaysMin : 'Ya_Du_Se_Cho_Pa_Ju_Sha'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'DD/MM/YYYY', 21 | LL : 'D MMMM YYYY', 22 | LLL : 'D MMMM YYYY HH:mm', 23 | LLLL : 'D MMMM YYYY, dddd HH:mm' 24 | }, 25 | calendar : { 26 | sameDay : '[Bugun soat] LT [da]', 27 | nextDay : '[Ertaga] LT [da]', 28 | nextWeek : 'dddd [kuni soat] LT [da]', 29 | lastDay : '[Kecha soat] LT [da]', 30 | lastWeek : '[O\'tgan] dddd [kuni soat] LT [da]', 31 | sameElse : 'L' 32 | }, 33 | relativeTime : { 34 | future : 'Yaqin %s ichida', 35 | past : 'Bir necha %s oldin', 36 | s : 'soniya', 37 | ss : '%d soniya', 38 | m : 'bir daqiqa', 39 | mm : '%d daqiqa', 40 | h : 'bir soat', 41 | hh : '%d soat', 42 | d : 'bir kun', 43 | dd : '%d kun', 44 | M : 'bir oy', 45 | MM : '%d oy', 46 | y : 'bir yil', 47 | yy : '%d yil' 48 | }, 49 | week : { 50 | dow : 1, // Monday is the first day of the week. 51 | doy : 7 // The week that contains Jan 1st is the first week of the year. 52 | } 53 | }); 54 | 55 | return uzLatn; 56 | 57 | }))); 58 | -------------------------------------------------------------------------------- /src/assets/js/locales/uz.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var uz = moment.defineLocale('uz', { 12 | months : 'январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр'.split('_'), 13 | monthsShort : 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек'.split('_'), 14 | weekdays : 'Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба'.split('_'), 15 | weekdaysShort : 'Якш_Душ_Сеш_Чор_Пай_Жум_Шан'.split('_'), 16 | weekdaysMin : 'Як_Ду_Се_Чо_Па_Жу_Ша'.split('_'), 17 | longDateFormat : { 18 | LT : 'HH:mm', 19 | LTS : 'HH:mm:ss', 20 | L : 'DD/MM/YYYY', 21 | LL : 'D MMMM YYYY', 22 | LLL : 'D MMMM YYYY HH:mm', 23 | LLLL : 'D MMMM YYYY, dddd HH:mm' 24 | }, 25 | calendar : { 26 | sameDay : '[Бугун соат] LT [да]', 27 | nextDay : '[Эртага] LT [да]', 28 | nextWeek : 'dddd [куни соат] LT [да]', 29 | lastDay : '[Кеча соат] LT [да]', 30 | lastWeek : '[Утган] dddd [куни соат] LT [да]', 31 | sameElse : 'L' 32 | }, 33 | relativeTime : { 34 | future : 'Якин %s ичида', 35 | past : 'Бир неча %s олдин', 36 | s : 'фурсат', 37 | ss : '%d фурсат', 38 | m : 'бир дакика', 39 | mm : '%d дакика', 40 | h : 'бир соат', 41 | hh : '%d соат', 42 | d : 'бир кун', 43 | dd : '%d кун', 44 | M : 'бир ой', 45 | MM : '%d ой', 46 | y : 'бир йил', 47 | yy : '%d йил' 48 | }, 49 | week : { 50 | dow : 1, // Monday is the first day of the week. 51 | doy : 7 // The week that contains Jan 4th is the first week of the year. 52 | } 53 | }); 54 | 55 | return uz; 56 | 57 | }))); 58 | -------------------------------------------------------------------------------- /src/assets/js/locales/x-pseudo.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var xPseudo = moment.defineLocale('x-pseudo', { 12 | months : 'J~áñúá~rý_F~ébrú~árý_~Márc~h_Áp~ríl_~Máý_~Júñé~_Júl~ý_Áú~gúst~_Sép~témb~ér_Ó~ctób~ér_Ñ~óvém~bér_~Décé~mbér'.split('_'), 13 | monthsShort : 'J~áñ_~Féb_~Már_~Ápr_~Máý_~Júñ_~Júl_~Áúg_~Sép_~Óct_~Ñóv_~Déc'.split('_'), 14 | monthsParseExact : true, 15 | weekdays : 'S~úñdá~ý_Mó~ñdáý~_Túé~sdáý~_Wéd~ñésd~áý_T~húrs~dáý_~Fríd~áý_S~átúr~dáý'.split('_'), 16 | weekdaysShort : 'S~úñ_~Móñ_~Túé_~Wéd_~Thú_~Frí_~Sát'.split('_'), 17 | weekdaysMin : 'S~ú_Mó~_Tú_~Wé_T~h_Fr~_Sá'.split('_'), 18 | weekdaysParseExact : true, 19 | longDateFormat : { 20 | LT : 'HH:mm', 21 | L : 'DD/MM/YYYY', 22 | LL : 'D MMMM YYYY', 23 | LLL : 'D MMMM YYYY HH:mm', 24 | LLLL : 'dddd, D MMMM YYYY HH:mm' 25 | }, 26 | calendar : { 27 | sameDay : '[T~ódá~ý át] LT', 28 | nextDay : '[T~ómó~rró~w át] LT', 29 | nextWeek : 'dddd [át] LT', 30 | lastDay : '[Ý~ést~érdá~ý át] LT', 31 | lastWeek : '[L~ást] dddd [át] LT', 32 | sameElse : 'L' 33 | }, 34 | relativeTime : { 35 | future : 'í~ñ %s', 36 | past : '%s á~gó', 37 | s : 'á ~féw ~sécó~ñds', 38 | ss : '%d s~écóñ~ds', 39 | m : 'á ~míñ~úté', 40 | mm : '%d m~íñú~tés', 41 | h : 'á~ñ hó~úr', 42 | hh : '%d h~óúrs', 43 | d : 'á ~dáý', 44 | dd : '%d d~áýs', 45 | M : 'á ~móñ~th', 46 | MM : '%d m~óñt~hs', 47 | y : 'á ~ýéár', 48 | yy : '%d ý~éárs' 49 | }, 50 | dayOfMonthOrdinalParse: /\d{1,2}(th|st|nd|rd)/, 51 | ordinal : function (number) { 52 | var b = number % 10, 53 | output = (~~(number % 100 / 10) === 1) ? 'th' : 54 | (b === 1) ? 'st' : 55 | (b === 2) ? 'nd' : 56 | (b === 3) ? 'rd' : 'th'; 57 | return number + output; 58 | }, 59 | week : { 60 | dow : 1, // Monday is the first day of the week. 61 | doy : 4 // The week that contains Jan 4th is the first week of the year. 62 | } 63 | }); 64 | 65 | return xPseudo; 66 | 67 | }))); 68 | -------------------------------------------------------------------------------- /src/assets/js/locales/yo.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | 3 | ;(function (global, factory) { 4 | typeof exports === 'object' && typeof module !== 'undefined' 5 | && typeof require === 'function' ? factory(require('../moment')) : 6 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 7 | factory(global.moment) 8 | }(this, (function (moment) { 'use strict'; 9 | 10 | 11 | var yo = moment.defineLocale('yo', { 12 | months : 'Sẹ́rẹ́_Èrèlè_Ẹrẹ̀nà_Ìgbé_Èbibi_Òkùdu_Agẹmo_Ògún_Owewe_Ọ̀wàrà_Bélú_Ọ̀pẹ̀̀'.split('_'), 13 | monthsShort : 'Sẹ́r_Èrl_Ẹrn_Ìgb_Èbi_Òkù_Agẹ_Ògú_Owe_Ọ̀wà_Bél_Ọ̀pẹ̀̀'.split('_'), 14 | weekdays : 'Àìkú_Ajé_Ìsẹ́gun_Ọjọ́rú_Ọjọ́bọ_Ẹtì_Àbámẹ́ta'.split('_'), 15 | weekdaysShort : 'Àìk_Ajé_Ìsẹ́_Ọjr_Ọjb_Ẹtì_Àbá'.split('_'), 16 | weekdaysMin : 'Àì_Aj_Ìs_Ọr_Ọb_Ẹt_Àb'.split('_'), 17 | longDateFormat : { 18 | LT : 'h:mm A', 19 | LTS : 'h:mm:ss A', 20 | L : 'DD/MM/YYYY', 21 | LL : 'D MMMM YYYY', 22 | LLL : 'D MMMM YYYY h:mm A', 23 | LLLL : 'dddd, D MMMM YYYY h:mm A' 24 | }, 25 | calendar : { 26 | sameDay : '[Ònì ni] LT', 27 | nextDay : '[Ọ̀la ni] LT', 28 | nextWeek : 'dddd [Ọsẹ̀ tón\'bọ] [ni] LT', 29 | lastDay : '[Àna ni] LT', 30 | lastWeek : 'dddd [Ọsẹ̀ tólọ́] [ni] LT', 31 | sameElse : 'L' 32 | }, 33 | relativeTime : { 34 | future : 'ní %s', 35 | past : '%s kọjá', 36 | s : 'ìsẹjú aayá die', 37 | ss :'aayá %d', 38 | m : 'ìsẹjú kan', 39 | mm : 'ìsẹjú %d', 40 | h : 'wákati kan', 41 | hh : 'wákati %d', 42 | d : 'ọjọ́ kan', 43 | dd : 'ọjọ́ %d', 44 | M : 'osù kan', 45 | MM : 'osù %d', 46 | y : 'ọdún kan', 47 | yy : 'ọdún %d' 48 | }, 49 | dayOfMonthOrdinalParse : /ọjọ́\s\d{1,2}/, 50 | ordinal : 'ọjọ́ %d', 51 | week : { 52 | dow : 1, // Monday is the first day of the week. 53 | doy : 4 // The week that contains Jan 4th is the first week of the year. 54 | } 55 | }); 56 | 57 | return yo; 58 | 59 | }))); 60 | -------------------------------------------------------------------------------- /src/messages/af/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/ar-MA/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/ar-SA/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/ar/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/az/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/be/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/bg/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/bn/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/bo/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/br/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/bs/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/ca/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/cs/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Použít', 21 | 'Cancel' => 'Zrušit', 22 | 'Custom Range' => 'Zadat rozmezí', 23 | 'From' => 'Od', 24 | 'Last Month' => 'Minulý měsíc', 25 | 'Last {n} Days' => 'Posledních {n} dní', 26 | 'Select Date Range' => 'Vyberte časové rozmezí', 27 | 'This Month' => 'Tento měsíc', 28 | 'To' => 'Do', 29 | 'Today' => 'Dnes', 30 | 'W' => 'W', 31 | 'Yesterday' => 'Včera', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/cv/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/cy/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/da/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Anvend', 21 | 'Cancel' => 'Annuller', 22 | 'Custom Range' => 'Brugerdefineret interval', 23 | 'From' => 'Fra', 24 | 'Last Month' => 'Sidste måned', 25 | 'Last {n} Days' => 'Sidste {n} dage', 26 | 'Select Date Range' => 'Vælg interval', 27 | 'This Month' => 'Denne måned', 28 | 'To' => 'Til', 29 | 'Today' => 'I dag', 30 | 'Yesterday' => 'I går', 31 | 'Last {n} Months' => '', 32 | 'W' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/de-AT/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/de/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'anwenden', 21 | 'Cancel' => 'stornieren', 22 | 'Custom Range' => 'Benutzerdefiniert', 23 | 'From' => 'von', 24 | 'Last Month' => 'Letzter Monat', 25 | 'Last {n} Days' => 'Letzte {n} Tage', 26 | 'Select Date Range' => 'Wählen Sie Datumsbereich', 27 | 'This Month' => 'Dieser Monat', 28 | 'To' => 'bis', 29 | 'Today' => 'heute', 30 | 'W' => 'W', 31 | 'Yesterday' => 'gestern', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/el/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Εφαρμογή', 21 | 'Cancel' => 'Ακύρωση', 22 | 'Custom Range' => 'Εύρος από χρήστη', 23 | 'From' => 'Από', 24 | 'Last Month' => 'Τελευταίος Μήνας', 25 | 'Last {n} Days' => 'Τελευταίες {n} Ημέρες', 26 | 'Select Date Range' => 'Επιλέξτε Εύρος Ημερομηνιών', 27 | 'This Month' => 'Τρέχων Μήνας', 28 | 'To' => 'Έως', 29 | 'Today' => 'Σήμερα', 30 | 'W' => 'Εβδομάδα', 31 | 'Yesterday' => 'Εχθές', 32 | 'Last {n} Months' => 'Τελευταίοι {n} Μήνες', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/en-AU/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/en-CA/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/en-GB/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/en/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Select Date Range' => '', 27 | 'This Month' => '', 28 | 'To' => '', 29 | 'Today' => '', 30 | 'W' => '', 31 | 'Yesterday' => '' 32 | ]; 33 | -------------------------------------------------------------------------------- /src/messages/eo/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/es/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Aplicar', 21 | 'Cancel' => 'Cancelar', 22 | 'Custom Range' => 'Serie Personalizada', 23 | 'From' => 'Desde', 24 | 'Last Month' => 'Mes Pasado', 25 | 'Last {n} Days' => '{n} Días Anteriores', 26 | 'Select Date Range' => 'Seleccione Rango de Fechas', 27 | 'This Month' => 'Este Mes', 28 | 'To' => 'A', 29 | 'Today' => 'Hoy', 30 | 'W' => 'W', 31 | 'Yesterday' => 'Ayer', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/et/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Sisesta', 21 | 'Cancel' => 'Tühista', 22 | 'Custom Range' => 'Vaba valik', 23 | 'From' => 'Alates', 24 | 'Last Month' => 'Eelmine kuu', 25 | 'Last {n} Days' => 'Viimased {n} päeva', 26 | 'Select Date Range' => 'Vali kuupäevade vahemik', 27 | 'This Month' => 'Käesolev kuu', 28 | 'To' => 'Kuni', 29 | 'Today' => 'Täna', 30 | 'W' => 'N', 31 | 'Yesterday' => 'Eile', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/eu/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/fa/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/fi/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/fo/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/fr-CA/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/fr/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Appliquer', 21 | 'Cancel' => 'Annuler', 22 | 'Custom Range' => 'Plage personnalisée', 23 | 'From' => 'De', 24 | 'Last Month' => 'mois dernier', 25 | 'Last {n} Days' => '{n} derniers jours', 26 | 'Select Date Range' => 'Choisir la période', 27 | 'This Month' => 'ce mois-ci', 28 | 'To' => 'Pour', 29 | 'Today' => 'aujourd\'hui', 30 | 'W' => 'W', 31 | 'Yesterday' => 'hier', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/gl/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/he/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'אישור', 21 | 'Cancel' => 'ביטול', 22 | 'From' => 'מתאריך', 23 | 'Last Month' => 'חודש קודם', 24 | 'Last {n} Days' => '{n} הימים האחרונים', 25 | 'Select Date Range' => 'בחירת תווך תאריכים', 26 | 'This Month' => 'החודש הנוכחי', 27 | 'To' => 'עד תאריך', 28 | 'Today' => 'היום', 29 | 'W' => 'ש', 30 | 'Yesterday' => 'אתמול', 31 | 'Custom Range' => '', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/hi/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/hr/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/hu/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Rendben', 21 | 'Cancel' => 'Mégsem', 22 | 'Custom Range' => 'Egyedi időszak', 23 | 'From' => 'Tól', 24 | 'Last Month' => 'Múlt hónap', 25 | 'Last {n} Days' => 'Utolsó {n} nap', 26 | 'Select Date Range' => 'Válasszon dátumokat', 27 | 'This Month' => 'E hónap', 28 | 'To' => 'Ig', 29 | 'Today' => 'Ma', 30 | 'W' => 'Hét', 31 | 'Yesterday' => 'Tegnap', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/hy-AM/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Կիրառել', 21 | 'Cancel' => 'Չեղարկել', 22 | 'Custom Range' => 'Հարմարեցված միջակայք', 23 | 'From' => '-ից', 24 | 'Last Month' => 'Անցած ամիս', 25 | 'Last {n} Days' => 'Վերջին {n} օրը', 26 | 'Last {n} Months' => 'Վերջին {n} ամիսները', 27 | 'Select Date Range' => 'Ընտրեք ամսաթվերի միջակայք', 28 | 'This Month' => 'Այս ամիս', 29 | 'To' => 'մինչև', 30 | 'Today' => 'Այսօր', 31 | 'W' => 'W', 32 | 'Yesterday' => 'Երեկ', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/id/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Terapkan', 21 | 'Cancel' => 'Batal', 22 | 'Custom Range' => 'Kustom Rentang Waktu', 23 | 'From' => 'Dari', 24 | 'Last Month' => 'Bulan Lalu', 25 | 'Last {n} Days' => '{n} Hari Terakhir', 26 | 'Last {n} Months' => '{n} Bulan Terakhir', 27 | 'Select Date Range' => 'Pilih Rentang', 28 | 'This Month' => 'Bulan Ini', 29 | 'To' => 'Hingga', 30 | 'Today' => 'Hari Ini', 31 | 'W' => 'W', 32 | 'Yesterday' => 'Kemarin', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/is/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/it/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Applica', 21 | 'Cancel' => 'Annulla', 22 | 'Custom Range' => 'Range personalizzato', 23 | 'From' => 'Da', 24 | 'Last Month' => 'Ultimo Mese', 25 | 'Last {n} Days' => 'Ultimi {n} Giorni', 26 | 'Select Date Range' => 'Seleziona un range di date', 27 | 'This Month' => 'Questo Mese', 28 | 'To' => 'A', 29 | 'Today' => 'Oggi', 30 | 'W' => 'W', 31 | 'Yesterday' => 'Ieri', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/ja/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/ka/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/kk/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Қолдану', 21 | 'Cancel' => 'Болдырмау', 22 | 'Custom Range' => 'Меншікті ауқым', 23 | 'From' => 'бастап', 24 | 'Last Month' => 'Өткен айда', 25 | 'Last {n} Days' => 'Соңғы {n} күн', 26 | 'Select Date Range' => 'Күндер ауқымын таңдаңыз', 27 | 'This Month' => 'Осы айда', 28 | 'To' => 'дейін', 29 | 'Today' => 'Бүгін', 30 | 'W' => 'W', 31 | 'Yesterday' => 'Кеше', 32 | 'Last {n} Months' => 'Соңғы {n} ай', 33 | ]; -------------------------------------------------------------------------------- /src/messages/km/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/ko/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/lb/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/lt/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Nustatyti', 21 | 'Cancel' => 'Atšaukti', 22 | 'Custom Range' => 'Intervalo nurodymas', 23 | 'From' => 'Nuo', 24 | 'Last Month' => 'Paskutinį mėnesį', 25 | 'Last {n} Days' => 'Paskutinis {n} dienų', 26 | 'Select Date Range' => 'Pasirinkite data klasės', 27 | 'This Month' => 'Šis mėnuo', 28 | 'To' => 'Iki', 29 | 'Today' => 'šiandien', 30 | 'W' => 'S', 31 | 'Yesterday' => 'vakar', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/lv/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Pielietot', 21 | 'Cancel' => 'Atcelt', 22 | 'Custom Range' => 'Cits periods', 23 | 'From' => 'No', 24 | 'Last Month' => 'Pēdējais mēnesis', 25 | 'Last {n} Days' => 'Pēdējās {n} dienas', 26 | 'Select Date Range' => 'Izvēlēties datuma periodu', 27 | 'This Month' => 'Šis mēnesis', 28 | 'To' => 'Līdz', 29 | 'Today' => 'Šodiena', 30 | 'Yesterday' => 'Vakardiena', 31 | 'Last {n} Months' => '', 32 | 'W' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/mk/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/ml/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/mr/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/ms-MY/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/my/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/nb/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/ne/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/nl/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Toepassen', 21 | 'Cancel' => 'Annuleer', 22 | 'Custom Range' => 'Aangepast bereik', 23 | 'From' => 'Van', 24 | 'Last Month' => 'Laatste maand', 25 | 'Last {n} Days' => 'Laatste {n} dagen', 26 | 'Select Date Range' => 'Selecteer datum bereik', 27 | 'This Month' => 'Deze maand', 28 | 'To' => 'Tot', 29 | 'Today' => 'Vandaag', 30 | 'W' => 'W', 31 | 'Yesterday' => 'Gisteren', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/nn/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/pl/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Zastosuj', 21 | 'Cancel' => 'Anuluj', 22 | 'Custom Range' => 'Zakres niestandardowy', 23 | 'From' => 'Od', 24 | 'Last Month' => 'Ubiegły miesiąc', 25 | 'Last {n} Days' => 'Ostatnie {n} dni', 26 | 'Select Date Range' => 'Wybierz zakres dat', 27 | 'This Month' => 'Bieżący miesiąc', 28 | 'To' => 'Do', 29 | 'Today' => 'Dzisiaj', 30 | 'W' => 'W', 31 | 'Yesterday' => 'Wczoraj', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/pt-BR/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Aplicar', 21 | 'Cancel' => 'Cancelar', 22 | 'Custom Range' => 'Intervalo personalizado', 23 | 'From' => 'De', 24 | 'Last Month' => 'Último mês', 25 | 'Last {n} Days' => 'Últimos {n} dias', 26 | 'Select Date Range' => 'Selecione o período', 27 | 'This Month' => 'Este mês', 28 | 'To' => 'Até', 29 | 'Today' => 'Hoje', 30 | 'W' => 'W', 31 | 'Yesterday' => 'Ontem', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/pt/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Aplicar', 21 | 'Cancel' => 'Cancelar', 22 | 'Custom Range' => 'Definir Período', 23 | 'From' => 'Desde', 24 | 'Last Month' => 'Mês Passado', 25 | 'Last {n} Days' => 'Últimos {n} Dias', 26 | 'Select Date Range' => 'Selecionar Período', 27 | 'This Month' => 'Este Mês', 28 | 'To' => 'Até', 29 | 'Today' => 'Hoje', 30 | 'W' => 'W', 31 | 'Yesterday' => 'Ontem', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/ro/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Aplica', 21 | 'Cancel' => 'Renunta', 22 | 'Custom Range' => 'Interval personalizat', 23 | 'From' => 'Din', 24 | 'Last Month' => 'Ultima luna', 25 | 'Last {n} Days' => 'Ultimele {n} zile', 26 | 'Select Date Range' => 'Alege intervalul', 27 | 'This Month' => 'Aceasta luna', 28 | 'To' => 'Pana la', 29 | 'Today' => 'Azi', 30 | 'W' => 'W', 31 | 'Yesterday' => 'Ieri', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/ru/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Применить', 21 | 'Cancel' => 'Отменить', 22 | 'Custom Range' => 'Свой диапазон', 23 | 'From' => 'от', 24 | 'Last Month' => 'Прошлый месяц', 25 | 'Last {n} Days' => 'Последние {n} дней', 26 | 'Select Date Range' => 'Выберите диапазон дат', 27 | 'This Month' => 'Этот месяц', 28 | 'To' => 'до', 29 | 'Today' => 'Сегодня', 30 | 'W' => 'W', 31 | 'Yesterday' => 'Вчера', 32 | 'Last {n} Months' => 'Последние {n} месяца(ев)', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/sk/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Aplikovať', 21 | 'Cancel' => 'Zrušiť', 22 | 'Custom Range' => 'Vlastný rozsah', 23 | 'From' => 'Od', 24 | 'Last Month' => 'Predchádzajúci mesiac', 25 | 'Last {n} Days' => 'Posledných {n} dní', 26 | 'Select Date Range' => 'Výber dátumového rozsahu', 27 | 'This Month' => 'Aktuálny mesiac', 28 | 'To' => 'Do', 29 | 'Today' => 'Dnes', 30 | 'W' => 'T', 31 | 'Yesterday' => 'Včera', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/sl/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/sq/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/sr-CYRL/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/sr/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/sv/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/ta/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/th/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'นำไปใช้', 21 | 'Cancel' => 'ยกเลิก', 22 | 'Custom Range' => 'กำหนดช่วงเวลา', 23 | 'From' => 'จาก', 24 | 'Last Month' => 'เดือนที่แล้ว', 25 | 'Last {n} Days' => '{n} วันที่แล้ว', 26 | 'Select Date Range' => 'เลือกระยะเวลา', 27 | 'This Month' => 'เดือนนี้', 28 | 'To' => 'ถึง', 29 | 'Today' => 'วันนี้', 30 | 'W' => 'W', 31 | 'Yesterday' => 'เมื่อวานนี้', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/tl-PH/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/tr/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Uygula', 21 | 'Cancel' => 'İptal', 22 | 'Custom Range' => 'Özel Aralık', 23 | 'From' => 'Başlangıç', 24 | 'Last Month' => 'Geçen Ay', 25 | 'Last {n} Days' => 'Son {n} gün', 26 | 'Select Date Range' => 'Tarih Aralığı Seç', 27 | 'This Month' => 'Bu Ay', 28 | 'To' => 'Bitiş', 29 | 'Today' => 'Bugün', 30 | 'W' => 'H', 31 | 'Yesterday' => 'Dün', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/tzm-LATN/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/tzm/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/uk/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'ОК', 21 | 'Cancel' => 'Скасувати', 22 | 'Custom Range' => 'Свій діапазон', 23 | 'From' => 'З', 24 | 'Last Month' => 'Попередній місяць', 25 | 'Last {n} Days' => 'Останні {n} днів', 26 | 'Select Date Range' => 'Оберіть діапазон дат', 27 | 'This Month' => 'Цей місяць', 28 | 'To' => 'По', 29 | 'Today' => 'Сьогодні', 30 | 'W' => 'Т', 31 | 'Yesterday' => 'Вчора', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/uz-Cy/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Тасдиқлаш', 21 | 'Cancel' => 'Бекор қилиш', 22 | 'Custom Range' => 'Ихтиёрий оралиқ', 23 | 'From' => 'Дан', 24 | 'Last Month' => 'Сўнгги ой', 25 | 'Last {n} Days' => 'Сўнгги {n} кун', 26 | 'Last {n} Months' => 'Сўнгги {n} ой', 27 | 'Select Date Range' => "Сана оралиғини танланг", 28 | 'This Month' => 'Шу ой', 29 | 'To' => 'Гача', 30 | 'Today' => 'Бугун', 31 | 'W' => 'Ҳ', 32 | 'Yesterday' => 'Кеча', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/uz/kvdrp.php: -------------------------------------------------------------------------------- 1 | 'Tasdiqlash', 21 | 'Cancel' => 'Bekor qilish', 22 | 'Custom Range' => 'Ixtiyoriy oraliq', 23 | 'From' => 'Dan', 24 | 'Last Month' => 'Oxirgi oy', 25 | 'Last {n} Days' => 'Oxirgi {n} kun', 26 | 'Last {n} Months' => 'Oxirgi {n} oy', 27 | 'Select Date Range' => "Sana oralig'ini tanlang", 28 | 'This Month' => 'Shu oy', 29 | 'To' => 'Gacha', 30 | 'Today' => 'Bugun', 31 | 'W' => 'H', 32 | 'Yesterday' => 'Kecha', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/vi/kvdrp.php: -------------------------------------------------------------------------------- 1 | '', 21 | 'Cancel' => '', 22 | 'Custom Range' => '', 23 | 'From' => '', 24 | 'Last Month' => '', 25 | 'Last {n} Days' => '', 26 | 'Last {n} Months' => '', 27 | 'Select Date Range' => '', 28 | 'This Month' => '', 29 | 'To' => '', 30 | 'Today' => '', 31 | 'W' => '', 32 | 'Yesterday' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/zh-CN/kvdrp.php: -------------------------------------------------------------------------------- 1 | '确定', 21 | 'Cancel' => '取消', 22 | 'Custom Range' => '自选日期', 23 | 'From' => '从', 24 | 'Last Month' => '上月', 25 | 'Last {n} Days' => '最近 {n} 日', 26 | 'Select Date Range' => '选择日期范围', 27 | 'This Month' => '本月', 28 | 'To' => '到', 29 | 'Today' => '今日', 30 | 'W' => '周', 31 | 'Yesterday' => '昨日', 32 | 'Last {n} Months' => '', 33 | ]; 34 | -------------------------------------------------------------------------------- /src/messages/zh-TW/kvdrp.php: -------------------------------------------------------------------------------- 1 | '套用', 21 | 'Cancel' => '取消', 22 | 'Custom Range' => '選擇區間', 23 | 'From' => '從', 24 | 'Last Month' => '上個月', 25 | 'Last {n} Days' => '過去{n}日', 26 | 'Select Date Range' => '選擇日期區間', 27 | 'This Month' => '這個月', 28 | 'To' => '到', 29 | 'Today' => '今日', 30 | 'W' => '周', 31 | 'Yesterday' => '昨日', 32 | 'Last {n} Months' => '', 33 | ]; 34 | --------------------------------------------------------------------------------