From 4cd53956ac9543e54bd19088773b48dab774f7fb Mon Sep 17 00:00:00 2001 From: basketshoe <54729294+basketshoe@users.noreply.github.com> Date: Tue, 6 Jan 2026 12:32:54 +0100 Subject: [PATCH 1/3] Update TRANSLATION_GUIDE.md --- i18n/TRANSLATION_GUIDE.md | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/i18n/TRANSLATION_GUIDE.md b/i18n/TRANSLATION_GUIDE.md index 4e0a93ba..e163bdb0 100644 --- a/i18n/TRANSLATION_GUIDE.md +++ b/i18n/TRANSLATION_GUIDE.md @@ -24,14 +24,20 @@ Each language folder follows the same structure: i18n/[language-code]/ ├── docusaurus-plugin-content-docs/ │ └── current/ -│ ├── intro.mdx -│ ├── faq.mdx -│ ├── release-notes.mdx -│ ├── advanced/ -│ ├── installation/ -│ └── troubleshooting/ +│ │ ├── intro.mdx +│ │ ├── faq.mdx +│ │ ├── release-notes.mdx +│ │ ├── advanced/ +│ │ ├── contributing/ +│ │ ├── installation/ +│ │ └── troubleshooting/ +| └── current.json ├── docusaurus-plugin-content-blog/ -└── docusaurus-theme-classic/ +| └── options.json +├── docusaurus-theme-classic/ +| ├── footer.json +| └── navbar.json +└── code.json ``` ## Getting Started @@ -56,6 +62,7 @@ i18n/[language-code]/ 3. **Translation workflow** - The English files are already present in each language folder and ready for translation + * If your locale is not present in the i18n directory, open the terminal in /path/to/SideStore-Docs and run `yarn write-translations --locale [language-code]`, then copy the docs directory into `/i18n/[language-code]/docusaurus-plugin-content-docs/current/` - Simply locate the file you want to translate in your target language folder (e.g., `/i18n/[language-code]/docusaurus-plugin-content-docs/current/`) - Translate the English content into your target language while preserving all markup, links, and formatting - You can also improve and complete partially translated pages @@ -65,11 +72,11 @@ i18n/[language-code]/ - Make sure formatting and links work correctly - You can test your translations locally by running: ```bash - yarn start -- --locale [language-code] + yarn start --locale [language-code] ``` - For example, to test Spanish translations: ```bash - yarn start -- --locale es + yarn start --locale es ``` ## Translation Guidelines From 1cfd83ab6f9b433d173a305236fe15f7dd006b73 Mon Sep 17 00:00:00 2001 From: basketshoe <54729294+basketshoe@users.noreply.github.com> Date: Tue, 6 Jan 2026 12:34:26 +0100 Subject: [PATCH 2/3] Update TRANSLATION_GUIDE.md --- i18n/TRANSLATION_GUIDE.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/i18n/TRANSLATION_GUIDE.md b/i18n/TRANSLATION_GUIDE.md index e163bdb0..29be894b 100644 --- a/i18n/TRANSLATION_GUIDE.md +++ b/i18n/TRANSLATION_GUIDE.md @@ -62,7 +62,11 @@ i18n/[language-code]/ 3. **Translation workflow** - The English files are already present in each language folder and ready for translation - * If your locale is not present in the i18n directory, open the terminal in /path/to/SideStore-Docs and run `yarn write-translations --locale [language-code]`, then copy the docs directory into `/i18n/[language-code]/docusaurus-plugin-content-docs/current/` + * If your locale is not present in the i18n directory, open the terminal in /path/to/SideStore-Docs and run + ```bash + yarn write-translations --locale [language-code] + ``` + then copy the docs directory into `/i18n/[language-code]/docusaurus-plugin-content-docs/current/` - Simply locate the file you want to translate in your target language folder (e.g., `/i18n/[language-code]/docusaurus-plugin-content-docs/current/`) - Translate the English content into your target language while preserving all markup, links, and formatting - You can also improve and complete partially translated pages From e36770ce769d616a7bdfbad77e324a9dfe520a1a Mon Sep 17 00:00:00 2001 From: basketshoe <54729294+basketshoe@users.noreply.github.com> Date: Tue, 6 Jan 2026 12:36:33 +0100 Subject: [PATCH 3/3] Update TRANSLATION_GUIDE.md --- i18n/TRANSLATION_GUIDE.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/i18n/TRANSLATION_GUIDE.md b/i18n/TRANSLATION_GUIDE.md index 29be894b..66b330e0 100644 --- a/i18n/TRANSLATION_GUIDE.md +++ b/i18n/TRANSLATION_GUIDE.md @@ -63,10 +63,10 @@ i18n/[language-code]/ 3. **Translation workflow** - The English files are already present in each language folder and ready for translation * If your locale is not present in the i18n directory, open the terminal in /path/to/SideStore-Docs and run - ```bash - yarn write-translations --locale [language-code] - ``` - then copy the docs directory into `/i18n/[language-code]/docusaurus-plugin-content-docs/current/` + ```bash + yarn write-translations --locale [language-code] + ``` + then copy the docs directory into `/i18n/[language-code]/docusaurus-plugin-content-docs/current/` - Simply locate the file you want to translate in your target language folder (e.g., `/i18n/[language-code]/docusaurus-plugin-content-docs/current/`) - Translate the English content into your target language while preserving all markup, links, and formatting - You can also improve and complete partially translated pages