Skip to content

Commit

Permalink
Add initial Russian translations (#1101)
Browse files Browse the repository at this point in the history
Co-authored-by: KnorpelSenf <shtrog@gmail.com>
Co-authored-by: Pasha Suprunchuk <suprunchuk@internet.ru>
  • Loading branch information
3 people authored Sep 11, 2024
1 parent 48bf35c commit 9ff48b1
Show file tree
Hide file tree
Showing 73 changed files with 16,398 additions and 1 deletion.
3 changes: 2 additions & 1 deletion site/docs/.vitepress/components/LanguagePopup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ const languages: Record<string, string> = {
es: "Spanish",
id: "Indonesian",
zh: "Chinese",
uk: "Ukrainian"
uk: "Ukrainian",
ru: "Russian"
};
const popup = reactive({
Expand Down
1 change: 1 addition & 0 deletions site/docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export default defineConfig({
...locale.siteId,
...locale.siteUk,
...locale.siteZh,
...locale.siteRu,
},

themeConfig: {
Expand Down
1 change: 1 addition & 0 deletions site/docs/.vitepress/configs/algolia/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const algolia: DefaultTheme.Config["search"] = {
...locale.searchId,
...locale.searchUk,
...locale.searchZh,
...locale.searchRu,
},
},
};
1 change: 1 addition & 0 deletions site/docs/.vitepress/configs/locales/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export { searchEn, siteEn } from "./en.js";
export { searchEs, siteEs } from "./es.js";
export { searchId, siteId } from "./id.js";
export { searchRu, siteRu } from "./ru.js";
export { searchUk, siteUk } from "./uk.js";
export { searchZh, siteZh } from "./zh.js";
Loading

0 comments on commit 9ff48b1

Please sign in to comment.