From e51b996eec723805bec50d26342b3c8ceb541317 Mon Sep 17 00:00:00 2001 From: Alexander Wunschik Date: Fri, 17 Feb 2017 08:19:40 +0100 Subject: [PATCH] feat(timeline): added new locales for french and espanol (#2723) --- lib/timeline/locales.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/lib/timeline/locales.js b/lib/timeline/locales.js index 781deb4a..f5a24515 100644 --- a/lib/timeline/locales.js +++ b/lib/timeline/locales.js @@ -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'];