// English
|
|
exports['en'] = {
|
|
current: 'current',
|
|
time: 'time'
|
|
};
|
|
exports['en_EN'] = exports['en'];
|
|
exports['en_US'] = exports['en'];
|
|
|
|
// Italiano
|
|
exports['it'] = {
|
|
current: 'attuale',
|
|
time: 'tempo'
|
|
};
|
|
exports['it_IT'] = exports['it'];
|
|
exports['it_CH'] = exports['it'];
|
|
|
|
// Dutch
|
|
exports['nl'] = {
|
|
current: 'huidige',
|
|
time: 'tijd'
|
|
};
|
|
exports['nl_NL'] = exports['nl'];
|
|
exports['nl_BE'] = exports['nl'];
|
|
|
|
// German
|
|
exports['de'] = {
|
|
current: 'Aktuelle',
|
|
time: 'Zeit'
|
|
};
|
|
exports['de_DE'] = exports['de'];
|
|
|
|
// French
|
|
exports['fr'] = {
|
|
current: 'actuel',
|
|
time: 'heure'
|
|
};
|
|
exports['fr_FR'] = exports['fr'];
|
|
exports['fr_CA'] = exports['fr'];
|
|
exports['fr_BE'] = exports['fr'];
|
|
|
|
// Espanol
|
|
exports['es'] = {
|
|
current: 'corriente',
|
|
time: 'hora'
|
|
};
|
|
exports['es_ES'] = exports['es'];
|