Skip to content

Commit

Permalink
Add Arabic localization (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
achaabni authored Sep 16, 2024
1 parent 855c5ac commit db8d88c
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion src/localization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,28 @@ const LANG_KR: Localization = {
text_error: "검증 실패",
button_retry: "다시 시도해 주세요",
text_fetch_error: "연결하지 못했습니다",
}
};

// Arabic
const LANG_AR: Localization = {
text_init: "...التهيئة",

text_ready: "يتم التحقيق",
button_start: "إضغط هنا للتحقيق",

text_fetching: "تهيئة التحدي",

text_solving: "نتحقق من أنك لست روبوتًا...",
text_completed: "أنا لست روبوتًا",
text_completed_sr: "تم الانتهاء من التحقق التلقائي من البريد العشوائي",

text_expired: "انتهت صلاحية التحقق",
button_restart: "إعادة تشغيل",

text_error: "فشل التحقق",
button_retry: "ابدأ مرة أخرى",
text_fetch_error: "مشكلة في الاتصال مع",
};

export const localizations = {
en: LANG_EN,
Expand Down Expand Up @@ -807,6 +828,7 @@ export const localizations = {
he: LANG_HE,
th: LANG_TH,
kr: LANG_KR,
ar: LANG_AR,

// alternative language codes
nb: LANG_NO,
Expand Down

0 comments on commit db8d88c

Please sign in to comment.