diff options
author | 2021-08-06 08:51:07 +0300 | |
---|---|---|
committer | 2021-08-05 22:51:07 -0700 | |
commit | 8330071509b26b31b4553a78865c5f5fae127411 (patch) | |
tree | 721f99cc59524a57744ea68de4b797af0638a6b9 /docs/src/components | |
parent | dbf18b11306171e07752efa468e2810204d0f688 (diff) | |
download | astro-8330071509b26b31b4553a78865c5f5fae127411.tar.gz astro-8330071509b26b31b4553a78865c5f5fae127411.tar.zst astro-8330071509b26b31b4553a78865c5f5fae127411.zip |
Added Bulgarian translation for the Getting Started page. (#1032)
* Added translation for the Getting Started page.
* Removed remaining English text from the translated version.
* Added Bulgarian as a known langugage (index.astro).
* Added Bulgarian as a known langugage (index.astro).
Co-authored-by: V. Tinev <vtiev@2create.studio>
Diffstat (limited to 'docs/src/components')
-rw-r--r-- | docs/src/components/Header/LanguageSelect.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/src/components/Header/LanguageSelect.tsx b/docs/src/components/Header/LanguageSelect.tsx index 815bef472..a5fb73f78 100644 --- a/docs/src/components/Header/LanguageSelect.tsx +++ b/docs/src/components/Header/LanguageSelect.tsx @@ -70,6 +70,9 @@ const LanguageSelect: FunctionalComponent<{ lang: string }> = ({ lang }) => { <option value="zh-TW"> <span>正體中文</span> </option> + <option value="bg"> + <span>Български</span> + </option> </select> </div> ); |