We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4f54260 + e193774 commit 3625058Copy full SHA for 3625058
src/i18n/ar_SA.ts
@@ -0,0 +1,13 @@
1
+export default {
2
+ buttons: {
3
+ next: "التالي",
4
+ prev: "السابق",
5
+ skip: "تخطي",
6
+ done: "إنهاء",
7
+ gotIt: "فهمت",
8
+ },
9
+ messages: {
10
+ dontShowAgainLabel: "لا تظهر مرة أخرى",
11
+ stepNumbersOfLabel: "من",
12
13
+};
src/i18n/language.ts
@@ -3,13 +3,15 @@ import faIR from "./fa_IR";
import deDE from "./de_DE";
import esES from "./es_ES";
import frFR from "./fr_FR";
+import ar_SA from "./ar_SA";
const languages = {
en_US: enUS,
fa_IR: faIR,
de_DE: deDE,
es_ES: esES,
fr_FR: frFR,
14
+ ar_SA: ar_SA,
15
} as const;
16
17
export type LanguageCode = keyof typeof languages;
0 commit comments