https://git.reactos.org/?p=reactos.git;a=commitdiff;h=b794e761512ff62659f609...
commit b794e761512ff62659f609a132d6905c37dd4aca Author: Javier Fernandez elhoir@gmail.com AuthorDate: Wed Dec 8 13:03:29 2021 +0100 Commit: Stanislav Motylkov x86corez@gmail.com CommitDate: Thu Dec 9 15:52:02 2021 +0300
[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(+)
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 julenuri@hotmail.com + * Copyright 2021 Javier Fernandez elhoir@gmail.com + */ + +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