From b794e761512ff62659f609a132d6905c37dd4aca Mon Sep 17 00:00:00 2001 From: Javier Fernandez Date: Wed, 8 Dec 2021 13:03:29 +0100 Subject: [PATCH] [W32TIME] Add Spanish (es-ES) translation (#4149) Restore initial translation by Julen committed in ea6e7740 which was then dropped in 3d8d88ea. Add translation for IDS_DESCRIPTION. --- base/services/w32time/lang/es-ES.rc | 15 +++++++++++++++ base/services/w32time/w32time.rc | 3 +++ 2 files changed, 18 insertions(+) create mode 100644 base/services/w32time/lang/es-ES.rc diff --git a/base/services/w32time/lang/es-ES.rc b/base/services/w32time/lang/es-ES.rc new file mode 100644 index 00000000000..2a6d89a87e1 --- /dev/null +++ b/base/services/w32time/lang/es-ES.rc @@ -0,0 +1,15 @@ +/* + * PROJECT: ReactOS W32Time Service + * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) + * PURPOSE: Spanish resource file + * TRANSLATORS: Copyright 2021 Julen Urizar Compains + * Copyright 2021 Javier Fernandez + */ + +LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL + +STRINGTABLE +BEGIN + IDS_DISPLAYNAME "Servicio de hora" + IDS_DESCRIPTION "Mantiene la sincronización de fecha y hora en todos los servidores y clientes de la red." +END diff --git a/base/services/w32time/w32time.rc b/base/services/w32time/w32time.rc index 4b0b320485d..ae963d23cc1 100644 --- a/base/services/w32time/w32time.rc +++ b/base/services/w32time/w32time.rc @@ -18,3 +18,6 @@ #ifdef LANGUAGE_EN_US #include "lang/en-US.rc" #endif +#ifdef LANGUAGE_ES_ES + #include "lang/es-ES.rc" +#endif