https://git.reactos.org/?p=reactos.git;a=commitdiff;h=2a616b0a14a5abc629c369...
commit 2a616b0a14a5abc629c3692d8e031868248a30d1 Author: Stanislav Motylkov x86corez@gmail.com AuthorDate: Thu Dec 9 16:10:42 2021 +0300 Commit: Stanislav Motylkov x86corez@gmail.com CommitDate: Thu Dec 9 16:10:42 2021 +0300
[W32TIME] Restore remaining translations
They were unintentionally dropped in commit 3d8d88ea. Also add corresponding translation authors.
References: e4898e6e, c81af08f, 05c39d8d --- base/services/w32time/lang/de-DE.rc | 7 +++++++ base/services/w32time/lang/en-US.rc | 8 ++++++++ base/services/w32time/lang/pl-PL.rc | 14 ++++++++++++++ base/services/w32time/lang/tr-TR.rc | 14 ++++++++++++++ base/services/w32time/w32time.rc | 6 ++++++ 5 files changed, 49 insertions(+)
diff --git a/base/services/w32time/lang/de-DE.rc b/base/services/w32time/lang/de-DE.rc index b4b7f2f2663..8cc1b3bf7ac 100644 --- a/base/services/w32time/lang/de-DE.rc +++ b/base/services/w32time/lang/de-DE.rc @@ -1,3 +1,10 @@ +/* + * PROJECT: ReactOS W32Time Service + * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) + * PURPOSE: German resource file + * TRANSLATORS: Copyright 2021 Eric Kohl ekohl@reactos.org + */ + LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
STRINGTABLE diff --git a/base/services/w32time/lang/en-US.rc b/base/services/w32time/lang/en-US.rc index 3aef0f2a641..b91b7f96271 100644 --- a/base/services/w32time/lang/en-US.rc +++ b/base/services/w32time/lang/en-US.rc @@ -1,3 +1,11 @@ +/* + * PROJECT: ReactOS W32Time Service + * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) + * PURPOSE: English resource file + * TRANSLATORS: Copyright 2019 Doug Lyons douglyons@douglyons.com + * Copyright 2021 Eric Kohl ekohl@reactos.org + */ + LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
STRINGTABLE diff --git a/base/services/w32time/lang/pl-PL.rc b/base/services/w32time/lang/pl-PL.rc new file mode 100644 index 00000000000..181a1c64d36 --- /dev/null +++ b/base/services/w32time/lang/pl-PL.rc @@ -0,0 +1,14 @@ +/* + * PROJECT: ReactOS W32Time Service + * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) + * PURPOSE: Polish resource file + * TRANSLATORS: Copyright 2019 Adam Słaboń asaillen456esx@gmail.com + */ + +LANGUAGE LANG_POLISH, SUBLANG_DEFAULT + +STRINGTABLE +BEGIN + IDS_DISPLAYNAME "Usługa Czas" + IDS_DESCRIPTION "Maintains date and time synchronization on all clients and servers on the network." +END diff --git a/base/services/w32time/lang/tr-TR.rc b/base/services/w32time/lang/tr-TR.rc new file mode 100644 index 00000000000..b727f9a02ac --- /dev/null +++ b/base/services/w32time/lang/tr-TR.rc @@ -0,0 +1,14 @@ +/* + * PROJECT: ReactOS W32Time Service + * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) + * PURPOSE: Turkish resource file + * TRANSLATORS: Copyright 2021 Süleyman Poyraz zaryob.dev@gmail.com + */ + +LANGUAGE LANG_TURKISH, SUBLANG_DEFAULT + +STRINGTABLE +BEGIN + IDS_DISPLAYNAME "Zaman Hizmeti" + IDS_DESCRIPTION "Maintains date and time synchronization on all clients and servers on the network." +END diff --git a/base/services/w32time/w32time.rc b/base/services/w32time/w32time.rc index ae963d23cc1..305338435e2 100644 --- a/base/services/w32time/w32time.rc +++ b/base/services/w32time/w32time.rc @@ -21,3 +21,9 @@ #ifdef LANGUAGE_ES_ES #include "lang/es-ES.rc" #endif +#ifdef LANGUAGE_PL_PL + #include "lang/pl-PL.rc" +#endif +#ifdef LANGUAGE_TR_TR + #include "lang/tr-TR.rc" +#endif