Browse Source

feat(timeline): added new locales for french and espanol (#2723)

network_performance_pullrequest
Alexander Wunschik 7 years ago
committed by yotamberk
parent
commit
e51b996eec
1 changed files with 16 additions and 0 deletions
  1. +16
    -0
      lib/timeline/locales.js

+ 16
- 0
lib/timeline/locales.js View File

@ -28,3 +28,19 @@ exports['de'] = {
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'];

Loading…
Cancel
Save