PHP Classes

File: CoffeeCMS/contents/themes/cfnews/assets/moment/src/locale/ka.js

Recommend this page to a friend!
  Classes of James Brows   Coffee CMS   CoffeeCMS/contents/themes/cfnews/assets/moment/src/locale/ka.js   Download  
File: CoffeeCMS/contents/themes/cfnews/assets/moment/src/locale/ka.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Coffee CMS
Content management system using MVC based themes
Author: By
Last change:
Date: 2 years ago
Size: 3,619 bytes
 

Contents

Class file image Download
//! moment.js locale configuration //! locale : Georgian [ka] //! author : Irakli Janiashvili : https://github.com/irakli-janiashvili import moment from '../moment'; export default moment.defineLocale('ka', { months : { standalone: '???????_?????????_?????_??????_?????_??????_??????_???????_??????????_?????????_????????_?????????'.split('_'), format: '???????_?????????_?????_???????_?????_??????_??????_???????_??????????_?????????_????????_?????????'.split('_') }, monthsShort : '???_???_???_???_???_???_???_???_???_???_???_???'.split('_'), weekdays : { standalone: '?????_????????_?????????_?????????_?????????_?????????_??????'.split('_'), format: '??????_????????_?????????_?????????_?????????_?????????_??????'.split('_'), isFormat: /(????|??????)/ }, weekdaysShort : '???_???_???_???_???_???_???'.split('_'), weekdaysMin : '??_??_??_??_??_??_??'.split('_'), longDateFormat : { LT : 'h:mm A', LTS : 'h:mm:ss A', L : 'DD/MM/YYYY', LL : 'D MMMM YYYY', LLL : 'D MMMM YYYY h:mm A', LLLL : 'dddd, D MMMM YYYY h:mm A' }, calendar : { sameDay : '[????] LT[-??]', nextDay : '[????] LT[-??]', lastDay : '[?????] LT[-??]', nextWeek : '[??????] dddd LT[-??]', lastWeek : '[????] dddd LT-??', sameElse : 'L' }, relativeTime : { future : function (s) { return (/(????|????|?????|????)/).test(s) ? s.replace(/?$/, '??') : s + '??'; }, past : function (s) { if ((/(????|????|?????|???|???)/).test(s)) { return s.replace(/(?|?)$/, '?? ????'); } if ((/????/).test(s)) { return s.replace(/????$/, '???? ????'); } }, s : '????????? ????', m : '????', mm : '%d ????', h : '?????', hh : '%d ?????', d : '???', dd : '%d ???', M : '???', MM : '%d ???', y : '????', yy : '%d ????' }, dayOfMonthOrdinalParse: /0|1-??|??-\d{1,2}|\d{1,2}-?/, ordinal : function (number) { if (number === 0) { return number; } if (number === 1) { return number + '-??'; } if ((number < 20) || (number <= 100 && (number % 20 === 0)) || (number % 100 === 0)) { return '??-' + number; } return number + '-?'; }, week : { dow : 1, doy : 7 } });