From 1de8105927921db3cd15db13ffa45ec87d8b4425 Mon Sep 17 00:00:00 2001 From: Javier Ramos Nistal <43531047+JaviRamosLab@users.noreply.github.com> Date: Tue, 23 Jul 2024 21:59:23 -0600 Subject: [PATCH] Create eo.ts translation to Esperanto language --- src/lang/eo.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/lang/eo.ts diff --git a/src/lang/eo.ts b/src/lang/eo.ts new file mode 100644 index 0000000..5b5e3f0 --- /dev/null +++ b/src/lang/eo.ts @@ -0,0 +1,18 @@ +export default function(number: number, index: number): [string, string] { + return [ + ['nun mem', 'post iom'], + ['antaŭ %s sekundoj', 'en %s sekundoj'], + ['antaŭ 1 minuto', 'en 1 minuto'], + ['antaŭ %s minutoj', 'en %s minutoj'], + ['antaŭ 1 horo', 'en 1 horo'], + ['antaŭ %s horoj', 'en %s horoj'], + ['antaŭ 1 tago', 'en 1 tago'], + ['antaŭ %s tagoj', 'en %s tagoj'], + ['antaŭ 1 semajno', 'en 1 semajno'], + ['antaŭ %s semajnoj', 'en %s semajnoj'], + ['antaŭ 1 monato', 'en 1 monato'], + ['antaŭ %s monatoj', 'en %s monatoj'], + ['antaŭ 1 jaro', 'en 1 jaro'], + ['antaŭ %s jaroj', 'en %s jaroj'], + ][index] as [string, string]; +}