From 97dca1d1b8a77da19b0e474109a66830da25e713 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthew=20Fallah=20=28=E3=83=9E=E3=82=B7=E3=83=A5=E3=83=BC?= =?UTF-8?q?=E3=83=BB=E3=83=95=E3=82=A1=E3=83=A9=E3=83=BC=29?= <107450287+moi-cest-matthew@users.noreply.github.com> Date: Fri, 6 Sep 2024 15:22:28 -1000 Subject: [PATCH 1/5] Update Japanese translation --- i18n/ja/cosmic_greeter.ftl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/i18n/ja/cosmic_greeter.ftl b/i18n/ja/cosmic_greeter.ftl index 293e25b..176fb67 100644 --- a/i18n/ja/cosmic_greeter.ftl +++ b/i18n/ja/cosmic_greeter.ftl @@ -1,7 +1,11 @@ cancel = キャンセル +keyboard-layout = キーボード配列 restart = 再起動 restart-now = いま再起動しますか? +session = セッション restart-timeout = システムは自動的に{$seconds}秒に再起動します。 shutdown = 電源オフ shutdown-now = いま電源を切りますか? -shutdown-timeout = システムは自動的に{$seconds}秒に電源を切りますか。 \ No newline at end of file +shutdown-timeout = システムは自動的に{$seconds}秒に電源を切りますか。 +suspend = サスペンド +user = ユーザー From a43d42025110139cdf932d133eb0e1656a51da2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthew=20Fallah=20=28=E3=83=9E=E3=82=B7=E3=83=A5=E3=83=BC?= =?UTF-8?q?=E3=83=BB=E3=83=95=E3=82=A1=E3=83=A9=E3=83=BC=29?= <107450287+moi-cest-matthew@users.noreply.github.com> Date: Fri, 6 Sep 2024 15:26:05 -1000 Subject: [PATCH 2/5] Update Euro Spanish --- i18n/es/cosmic_greeter.ftl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/i18n/es/cosmic_greeter.ftl b/i18n/es/cosmic_greeter.ftl index 6390587..0557de3 100644 --- a/i18n/es/cosmic_greeter.ftl +++ b/i18n/es/cosmic_greeter.ftl @@ -1,7 +1,11 @@ cancel = Cancelar +keyboard-layout = Distribución de teclado restart = Reiniciar restart-now = ¿Reiniciar ahora? restart-timeout = El ordenador se reiniciará automáticamente en {$seconds} segundos. +session = Sesión shutdown = Apagar shutdown-now = ¿Apagar ahora? shutdown-timeout = El ordenador se apagará automáticamente en {$seconds} segundos. +suspend = Suspender +user = Utente From 43396c0c4a9cbe8e2367b6df2bc88554ec4d73a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthew=20Fallah=20=28=E3=83=9E=E3=82=B7=E3=83=A5=E3=83=BC?= =?UTF-8?q?=E3=83=BB=E3=83=95=E3=82=A1=E3=83=A9=E3=83=BC=29?= <107450287+moi-cest-matthew@users.noreply.github.com> Date: Fri, 6 Sep 2024 15:36:23 -1000 Subject: [PATCH 3/5] es-ES: Do not use plural when one second is left --- i18n/es/cosmic_greeter.ftl | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/i18n/es/cosmic_greeter.ftl b/i18n/es/cosmic_greeter.ftl index 0557de3..b304a58 100644 --- a/i18n/es/cosmic_greeter.ftl +++ b/i18n/es/cosmic_greeter.ftl @@ -2,10 +2,15 @@ cancel = Cancelar keyboard-layout = Distribución de teclado restart = Reiniciar restart-now = ¿Reiniciar ahora? -restart-timeout = El ordenador se reiniciará automáticamente en {$seconds} segundos. +restart-timeout = El ordenador se reiniciará automáticamente en +{ $seconds -> + [one] 1 segundo. + *[other] {$seconds} segundos.} session = Sesión shutdown = Apagar shutdown-now = ¿Apagar ahora? -shutdown-timeout = El ordenador se apagará automáticamente en {$seconds} segundos. +shutdown-timeout = El ordenador se apagará automáticamente en { $seconds -> + [one] 1 segundo. + *[other] {$seconds} segundos.} suspend = Suspender user = Utente From b3be1188c3d3bab671f30c2c297cc865f1832c08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthew=20Fallah=20=28=E3=83=9E=E3=82=B7=E3=83=A5=E3=83=BC?= =?UTF-8?q?=E3=83=BB=E3=83=95=E3=82=A1=E3=83=A9=E3=83=BC=29?= <107450287+moi-cest-matthew@users.noreply.github.com> Date: Fri, 6 Sep 2024 15:37:57 -1000 Subject: [PATCH 4/5] Fix syntax error in es-ES --- i18n/es/cosmic_greeter.ftl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/i18n/es/cosmic_greeter.ftl b/i18n/es/cosmic_greeter.ftl index b304a58..261d803 100644 --- a/i18n/es/cosmic_greeter.ftl +++ b/i18n/es/cosmic_greeter.ftl @@ -2,8 +2,7 @@ cancel = Cancelar keyboard-layout = Distribución de teclado restart = Reiniciar restart-now = ¿Reiniciar ahora? -restart-timeout = El ordenador se reiniciará automáticamente en -{ $seconds -> +restart-timeout = El ordenador se reiniciará automáticamente en { $seconds -> [one] 1 segundo. *[other] {$seconds} segundos.} session = Sesión From 97278499eced196d0fbc04df528b3518dc53aa5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthew=20Fallah=20=28=E3=83=9E=E3=82=B7=E3=83=A5=E3=83=BC?= =?UTF-8?q?=E3=83=BB=E3=83=95=E3=82=A1=E3=83=A9=E3=83=BC=29?= <107450287+moi-cest-matthew@users.noreply.github.com> Date: Fri, 6 Sep 2024 15:55:19 -1000 Subject: [PATCH 5/5] Create Dutch translation --- i18n/nl/cosmic_greeter.ftl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 i18n/nl/cosmic_greeter.ftl diff --git a/i18n/nl/cosmic_greeter.ftl b/i18n/nl/cosmic_greeter.ftl new file mode 100644 index 0000000..39c10d6 --- /dev/null +++ b/i18n/nl/cosmic_greeter.ftl @@ -0,0 +1,15 @@ +cancel = Annuleren +keyboard-layout = Toetsenbordindeling +restart = Herstarten +restart-now = Nu herstarten? +restart-timeout = Het systeem zal na { $seconds -> + [one] één seconde + *[other] {$seconds} seconden} automatisch herstarten. +session = Sessie +shutdown = Afsluiten +shutdown-now = Nu afsluiten? +shutdown-timeout = Het systeem zal na { $seconds -> + [one] één seconde + *[other] {$seconds} seconden} automatisch afsluiten. +suspend = Slaapstand +user = Gebruiker