mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-28 00:24:21 +02:00
16 lines
275 B
JavaScript
16 lines
275 B
JavaScript
// English
|
|
exports['en'] = {
|
|
current: 'current',
|
|
time: 'time'
|
|
};
|
|
exports['en_EN'] = exports['en'];
|
|
exports['en_US'] = exports['en'];
|
|
|
|
// Dutch
|
|
exports['nl'] = {
|
|
custom: 'aangepaste',
|
|
time: 'tijd'
|
|
};
|
|
exports['nl_NL'] = exports['nl'];
|
|
exports['nl_BE'] = exports['nl'];
|