/**
* @namespace Initiators/FlipClock/Language
*/
const Lang = {};
/**
* @memberof Initiators/FlipClock/Language
* @exports Lang
* @description Object with lang variable for Ukraine
* @member {Object} Ukraine
*/
Lang.Ukraine = {
years: 'років',
months: 'місяців',
days: 'днів',
hours: 'годин',
minutes: 'хвилин',
seconds: 'секунд',
};
Lang.ua = Lang.Ukraine;
Lang['ua-ua'] = Lang.Ukraine;
Lang.ukraine = Lang.Ukraine;
/**
* @memberof Initiators/FlipClock/Language
* @exports Lang
* @description Object with lang variable for France
* @member {Object} France
*/
Lang.France = {
years: 'années',
months: 'mois',
days: 'jours',
hours: 'heures',
minutes: 'minutes',
seconds: 'secondes',
};
Lang.fr = Lang.France;
Lang['fr-fr'] = Lang.France;
Lang.france = Lang.France;
/**
* @memberof Initiators/FlipClock/Language
* @exports Lang
* @description Object with lang variable for Poland
* @member {Object} Poland
*/
Lang.Poland = {
years: 'lat',
months: 'miesiące',
days: 'dni',
hours: 'godziny',
minutes: 'minuty',
seconds: 'sekundy',
};
Lang.pl = Lang.Poland;
Lang['pl-pl'] = Lang.Poland;
Lang.poland = Lang.Poland;
export default Lang;