docs(i18n): add German (de-DE) localization scout

Adds the German locale per maintainer guidance in issue #1980.

- docs/de-DE/README.md: full translation of the English root README
- docs/de-DE/GLOSSARY.md: German terminology decisions (which ECC
  terms stay English vs. German)
- manifests: docs-de-de module + locale:de-de component, modelled on
  the existing docs-zh-tw / locale:zh-tw entries
- scripts/lib/install-manifests.js: de-DE in SUPPORTED_LOCALES, plus
  de-DE and de aliases so `--locale de` and `--locale de-DE` resolve
- tests/lib/locale-install.test.js: focused de-DE coverage
- Deutsch added to the language selector tables in all 10 existing
  READMEs (root + 9 localized)

Refs #1980
This commit is contained in:
Martin Klein
2026-05-21 00:50:39 +02:00
parent 1e8c7e7994
commit ef0c55c40f
16 changed files with 1927 additions and 18 deletions

View File

@@ -14,7 +14,7 @@ const COMPONENT_FAMILY_PREFIXES = {
skill: 'skill:',
locale: 'locale:',
};
const SUPPORTED_LOCALES = Object.freeze(['ja', 'zh-CN', 'ko-KR', 'pt-BR', 'ru', 'tr', 'vi-VN', 'zh-TW']);
const SUPPORTED_LOCALES = Object.freeze(['ja', 'zh-CN', 'ko-KR', 'pt-BR', 'ru', 'tr', 'vi-VN', 'zh-TW', 'de-DE']);
const LOCALE_ALIAS_TO_COMPONENT_ID = Object.freeze({
'ja': 'locale:ja',
'ja-JP': 'locale:ja',
@@ -29,6 +29,8 @@ const LOCALE_ALIAS_TO_COMPONENT_ID = Object.freeze({
'vi-VN': 'locale:vi-vn',
'vi': 'locale:vi-vn',
'zh-TW': 'locale:zh-tw',
'de-DE': 'locale:de-de',
'de': 'locale:de-de',
});
function listSupportedLocales() {