From c66d5b2f99d7d796395ec48a8625be1a2ef8f5a1 Mon Sep 17 00:00:00 2001 From: jermanuts <109705802+jermanuts@users.noreply.github.com> Date: Wed, 27 Mar 2024 18:34:52 +0300 Subject: [PATCH] Add Arabic locale to i18n.ts (#40) --- src/plugins/i18n.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/i18n.ts b/src/plugins/i18n.ts index 465a8a2..1830e06 100644 --- a/src/plugins/i18n.ts +++ b/src/plugins/i18n.ts @@ -1,4 +1,5 @@ import {createI18n} from 'vue-i18n' +import ar from '@/locales/ar.json' import cs from '@/locales/cs.json' import de from '@/locales/de.json' import en from '@/locales/en.json' @@ -19,6 +20,7 @@ import zhHK from '@/locales/zh-HK.json' import he from '@/locales/he.json' export const locales: { [key: string]: [string, Record] } = { + 'ar': ['العربية', ar], 'cs': ['Čeština', cs], 'de': ['Deutsch', de], 'en': ['English', en],