Adding Bulgarian translations to the admin dashboard. (#11565)

This commit is contained in:
Georgi Bachev
2025-02-24 10:29:53 +02:00
committed by GitHub
parent 932fd90d40
commit 92bffadbf9
3 changed files with 2994 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
import {
de,
bg,
enUS,
es,
fr,
@@ -23,6 +24,12 @@ import {
import { Language } from "./types"
export const languages: Language[] = [
{
code: "bg",
display_name: "Български",
ltr: true,
date_locale: bg,
},
{
code: "en",
display_name: "English",

File diff suppressed because it is too large Load Diff

View File

@@ -1,3 +1,4 @@
import bg from "./bg.json"
import de from "./de.json"
import el from "./el.json"
import en from "./en.json"
@@ -20,6 +21,9 @@ import cs from "./cs.json"
import ru from "./ru.json"
export default {
bg: {
translation: bg,
},
de: {
translation: de,
},