feat: add ru locale (#280)

* feat: add ru locale

* feat: add russian lang to readme
This commit is contained in:
Alexander Chepurnoy
2024-08-31 18:29:01 +07:00
committed by GitHub
parent 6f0df2d555
commit bdad92fe01
4 changed files with 418 additions and 3 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ import '@mdi/font/css/materialdesignicons.css'
import 'vuetify/styles'
import colors from 'vuetify/util/colors'
import { fa, en, vi, zhHans, zhHant } from 'vuetify/locale'
import { fa, en, vi, zhHans, zhHant, ru } from 'vuetify/locale'
// Composables
import { createVuetify } from 'vuetify'
@@ -53,6 +53,6 @@ export default createVuetify({
locale: {
locale: localStorage.getItem("locale") ?? 'en',
fallback: 'en',
messages: { en, fa, vi, zhHans, zhHant },
messages: { en, fa, vi, zhHans, zhHant, ru },
},
})