mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
31 lines
1.1 KiB
JavaScript
31 lines
1.1 KiB
JavaScript
/**
|
||
* @preserve date-and-time.js locale configuration
|
||
* @preserve Turkish (tr)
|
||
* @preserve It is using moment.js locale configuration as a reference.
|
||
*/
|
||
(function (global) {
|
||
'use strict';
|
||
|
||
var exec = function (date) {
|
||
date.locale('tr', {
|
||
res: {
|
||
MMMM: ['Ocak', 'Şubat', 'Mart', 'Nisan', 'Mayıs', 'Haziran', 'Temmuz', 'Ağustos', 'Eylül', 'Ekim', 'Kasım', 'Aralık'],
|
||
MMM: ['Oca', 'Şub', 'Mar', 'Nis', 'May', 'Haz', 'Tem', 'Ağu', 'Eyl', 'Eki', 'Kas', 'Ara'],
|
||
dddd: ['Pazar', 'Pazartesi', 'Salı', 'Çarşamba', 'Perşembe', 'Cuma', 'Cumartesi'],
|
||
ddd: ['Paz', 'Pts', 'Sal', 'Çar', 'Per', 'Cum', 'Cts'],
|
||
dd: ['Pz', 'Pt', 'Sa', 'Ça', 'Pe', 'Cu', 'Ct']
|
||
}
|
||
});
|
||
};
|
||
|
||
if (typeof module === 'object' && typeof module.exports === 'object') {
|
||
(module.paths || []).push('./');
|
||
exec(require('date-and-time'));
|
||
} else if (typeof define === 'function' && define.amd) {
|
||
define(['date-and-time'], exec);
|
||
} else {
|
||
exec(global.date);
|
||
}
|
||
|
||
}(this));
|