@tap-payments/auth-jsconnect 2.0.91-test → 2.0.92-test
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/api/firebase.d.ts +1 -1
- package/build/api/firebase.js +3 -1
- package/build/api/index.d.ts +1 -1
- package/build/app/settings.d.ts +1 -0
- package/build/app/settings.js +7 -4
- package/build/assets/locales/ar.json +246 -200
- package/build/assets/locales/en.json +178 -125
- package/build/features/auth/Auth.js +1 -1
- package/build/features/shared/Dialog/CloseDialog.js +4 -3
- package/build/hooks/useAppConfig.d.ts +2 -1
- package/build/hooks/useAppConfig.js +2 -2
- package/build/hooks/useErrorListener.js +0 -6
- package/package.json +1 -1
package/build/api/firebase.d.ts
CHANGED
package/build/api/firebase.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { ENDPOINT_PATHS } from '../constants';
|
|
2
2
|
import { httpClient } from './axios';
|
|
3
|
-
var getLocale = function () {
|
|
3
|
+
var getLocale = function (disableLocale) {
|
|
4
|
+
if (disableLocale)
|
|
5
|
+
return Promise.resolve(null);
|
|
4
6
|
return httpClient({
|
|
5
7
|
method: 'get',
|
|
6
8
|
url: ENDPOINT_PATHS.FIREBASE_URL
|
package/build/api/index.d.ts
CHANGED
|
@@ -52,7 +52,7 @@ declare const API: {
|
|
|
52
52
|
checkIbanBank: (data: import("./availabilityServices").CheckIBanBody, config?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
53
53
|
};
|
|
54
54
|
firebaseService: {
|
|
55
|
-
getLocale: () => Promise<any>;
|
|
55
|
+
getLocale: (disableLocale?: boolean | undefined) => Promise<any>;
|
|
56
56
|
};
|
|
57
57
|
accountService: {
|
|
58
58
|
createAccount: (data: CreateAccountBody) => Promise<any>;
|
package/build/app/settings.d.ts
CHANGED
package/build/app/settings.js
CHANGED
|
@@ -53,18 +53,18 @@ import i18n from '../i18n';
|
|
|
53
53
|
import { updateLocale } from '../utils/locale';
|
|
54
54
|
import API, { setAxiosGlobalHeaders } from '../api';
|
|
55
55
|
export var fetchAppSettingsSync = createAsyncThunk('fetchAppSettingsSync', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
56
|
-
var settings, _a, appConfig, language, _b, client, device, os, disableCountries, _c, visitorId, _d, ip, latitude, longitude, locale, list, operatorData, deviceInfo, countries, businessCountry;
|
|
56
|
+
var settings, _a, appConfig, language, _b, client, device, os, disableCountries, disableLocale, _c, visitorId, _d, ip, latitude, longitude, locale, list, operatorData, deviceInfo, countries, businessCountry;
|
|
57
57
|
return __generator(this, function (_e) {
|
|
58
58
|
switch (_e.label) {
|
|
59
59
|
case 0:
|
|
60
60
|
settings = thunkApi.getState().settings;
|
|
61
61
|
_a = settings.data, appConfig = _a.appConfig, language = _a.language;
|
|
62
62
|
_b = getBrowserInfo(), client = _b.client, device = _b.device, os = _b.os;
|
|
63
|
-
disableCountries = params.disableCountries;
|
|
63
|
+
disableCountries = params.disableCountries, disableLocale = params.disableLocale;
|
|
64
64
|
return [4, Promise.all([
|
|
65
65
|
getFingerPrint(),
|
|
66
66
|
API.ipService.getIP(),
|
|
67
|
-
API.firebaseService.getLocale(),
|
|
67
|
+
API.firebaseService.getLocale(disableLocale),
|
|
68
68
|
API.countryService.getCountries(disableCountries)
|
|
69
69
|
])];
|
|
70
70
|
case 1:
|
|
@@ -237,8 +237,11 @@ export var settingsSlice = createSlice({
|
|
|
237
237
|
state.data.countries = countries;
|
|
238
238
|
state.data.businessCountry = businessCountry;
|
|
239
239
|
state.data.deviceInfo = deviceInfo;
|
|
240
|
-
|
|
240
|
+
if (locale)
|
|
241
|
+
updateLocale(locale, businessCountry.iso2);
|
|
241
242
|
state.loading = false;
|
|
243
|
+
if (state.data.appConfig.onReady)
|
|
244
|
+
state.data.appConfig.onReady();
|
|
242
245
|
});
|
|
243
246
|
builder.addCase(fetchAppSettingsSync.rejected, function (state, action) {
|
|
244
247
|
state.loading = false;
|
|
@@ -1,268 +1,314 @@
|
|
|
1
1
|
{
|
|
2
|
-
"language": "English",
|
|
3
2
|
" No Login Credentials available": "البريد الألكتروني غير صحيح",
|
|
4
|
-
"(citizeninfo) dateofbirth does not match nic records": "تاريخ الميلاد
|
|
5
|
-
"Api key is unauthorized to perform the operation": "
|
|
6
|
-
"CR Not Found": "السجل التجاري
|
|
7
|
-
"Freelance License Not Found": "
|
|
8
|
-
"Internal server error": "
|
|
9
|
-
"Invalid National Id or Date of Birth": "
|
|
10
|
-
"Invalid OTP": "رمز
|
|
11
|
-
"Invalid OTP, please try again": "رمز
|
|
12
|
-
"Invalid Password": "
|
|
13
|
-
"Invalid lead_id": "
|
|
14
|
-
"Invalid otp in data_token": "رمز
|
|
15
|
-
"Profile Name Required": "
|
|
16
|
-
"Profile Name already exists": "
|
|
17
|
-
"Profile Name is invalid": "
|
|
3
|
+
"(citizeninfo) dateofbirth does not match nic records": "هل يمكنك التحقق من تاريخ الميلاد الذي تم إدخاله.",
|
|
4
|
+
"Api key is unauthorized to perform the operation": "يرجى التحقق من مشغل الـ API لأداء هذه الخدمة.",
|
|
5
|
+
"CR Not Found": "هل يمكنك التحقق من السجل التجاري الذي تم إدخاله.",
|
|
6
|
+
"Freelance License Not Found": "هل يمكنك التحقق من سجل العمل الحر الذي تم إدخاله.",
|
|
7
|
+
"Internal server error": "أنت تواجه بعض الانقطاع في الخدمة. يرجى المحاولة مرة أخرى.",
|
|
8
|
+
"Invalid National Id or Date of Birth": "يرجى التحقق من المعلومات المدخلة.",
|
|
9
|
+
"Invalid OTP": " الرجاء إدخال رمز المرور الصالح لمرة واحدة - الـ OTP",
|
|
10
|
+
"Invalid OTP, please try again": " الرجاء إدخال رمز المرور الصالح لمرة واحدة - الـ OTP",
|
|
11
|
+
"Invalid Password": "يرجى التحقق من المعلومات المدخلة.",
|
|
12
|
+
"Invalid lead_id": "أنت تواجه بعض الخلل عند الربط في الخدمة. يرجى التواصل مع فريق الدعم الفني.",
|
|
13
|
+
"Invalid otp in data_token": " الرجاء إدخال رمز المرور الصالح لمرة واحدة - الـ OTP",
|
|
14
|
+
"Profile Name Required": "يرجى إدخال اسم تجاري خاص بعملك والمربوط بالعلامة التجارية",
|
|
15
|
+
"Profile Name already exists": "الاسم التجاري الذي تم ادخاله غير متوفر. يرجى ادخال اسم تجاري آخر.",
|
|
16
|
+
"Profile Name is invalid": "هل يمكنك التحقق من اسم التجاري الذي تم إدخاله.",
|
|
18
17
|
"Signup_email_lable": "البريد الإلكتروني",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
18
|
+
"absher_button_label": "المتابعة عن طريق أبشر",
|
|
19
|
+
"acceptance_btn_text": "استقبال المدفوعات",
|
|
20
|
+
"account_details": "تفاصيل حسابك",
|
|
21
|
+
"activities": "أنشطة عملك",
|
|
22
|
+
"activities_selected": "أنشطة مختارة",
|
|
21
23
|
"actual_income_hint": "الدخل الفعلي",
|
|
24
|
+
"add_other_cr": "اضف سجل تجارى اخر",
|
|
25
|
+
"add_other_fl": "اضف وثيقة عمل حر آخرى",
|
|
22
26
|
"agree_on_chargeback_policy": "لقد قرأت ووافقت على ",
|
|
23
27
|
"agree_on_refund_policy": "لقد قرأت ووافقت على ",
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
28
|
+
"alert_bank_confirm": "يجب عليك الموافقة",
|
|
29
|
+
"alert_bank_statement": "الرجاء رفع كشف الحساب",
|
|
30
|
+
"alert_beneficiary_name": "هل يمكنك التحقق من اسم المستفيد الذي تم إدخاله.",
|
|
31
|
+
"alert_file_size": "الملف الذي قمت برفعه حجمه كبير",
|
|
32
|
+
"alert_file_upload": "الرجاء رفع الملف بشكل صحيح",
|
|
33
|
+
"alert_iban": "هل يمكنك التحقق من رقم الحساب البنكي (الـ IBAN) الذي تم إدخاله.",
|
|
34
|
+
"alert_tax_confirm": "الرجاء الموافقة على المعلومات الضريبية",
|
|
35
|
+
"alert_vat": "هل يمكنك التحقق من رقم الضريبي المميز (TIN) والمربوط بحساب الضريبة القيمة المضافة (VAT) الذي تم إدخاله. (ملاحظة - يتكون رقم الضريبي المميز من 15 رقمًا)",
|
|
27
36
|
"app": "تطبيق",
|
|
37
|
+
"apple_btn_open_title": "افتح صندوق بريد آبل ميل - Apple Mail",
|
|
38
|
+
"apple_store_placeholder": "اسم التطبيق عالـ App Store",
|
|
39
|
+
"authenticate_kuwait_mobile_description": "Please go to your Kuwait Mobile ID app and accept the authentication request from Tap.",
|
|
40
|
+
"authenticate_kuwait_mobile_title": "Authenticate with Kuwait Mobile ID app",
|
|
41
|
+
"back": "Back",
|
|
42
|
+
"bank": "رقم حساب البنك",
|
|
43
|
+
"bank_confirm_information": "أتعهد بأن المعلومات البنكية المدخلة صحيحة وأنها تعود إلي",
|
|
44
|
+
"bank_flow_completed": "{{bank_name}} {{iban}}",
|
|
45
|
+
"bank_flow_pending": "أضف البيانات البنكية",
|
|
46
|
+
"bank_name_required": "اسم البنك مطلوب",
|
|
47
|
+
"bank_success_title": "تم تحديث البيانات البنكية الخاصة بك",
|
|
28
48
|
"beneficiary_name": "اسم المستفيد",
|
|
49
|
+
"beneficiary_name_invalid": "هل يمكنك التحقق من اسم المستفيد الذي تم إدخاله. (ملاحظة - يجب ادخال الاسم القانوني المرتبط بالحساب البنكي)",
|
|
29
50
|
"beneficiary_name_placeholder": "اسم المستفيد",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
51
|
+
"beneficiary_name_required": "اسم المستفيد مطلوب",
|
|
52
|
+
"birthdate": "تاريخ الميلاد",
|
|
53
|
+
"brand_name_already_exist": "Profile Name already exists",
|
|
54
|
+
"brand_name_hint": "الرجاء إدخال اسم تجاري مسجل قانونياً بعملك التجاري. سيظهر الاسم التجاري لعملائك عند عملية الدفع.",
|
|
55
|
+
"brand_success_title": "تم تحديث معلومات علامتك التجارية",
|
|
56
|
+
"business_completed_button": "الانتهاء من إعداد حسابي",
|
|
57
|
+
"business_completed_description": "كان ذلك سهلا! أنت الان جاهز لاستقبال المدفوعات. ولكن نرجو منك، إضافة بيانات البنك لبدء تلقي المدفوعات.",
|
|
58
|
+
"business_completed_title": "تم تفعيل حسابك",
|
|
32
59
|
"business_start_date": "تاريخ بدء العمل",
|
|
60
|
+
"call_center_placeholder": "رقم هاتف خدمة الإتصال",
|
|
33
61
|
"category": "الفئة",
|
|
34
62
|
"category_name": "اسم الفئة",
|
|
35
|
-
"channel_of_service": "قنوات
|
|
63
|
+
"channel_of_service": "ما هي قنوات البيع الخاصة بعملك؟ ",
|
|
36
64
|
"chargeback_policy": "سياسة حل نزاعات العمليات",
|
|
37
65
|
"check_terms_cond": "يرجى الموافقة على الشروط والاحكام",
|
|
38
|
-
"choose_activities": "اختر الانشطة",
|
|
39
|
-
"choose_any_business_date": "اختر تاريخ
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
66
|
+
"choose_activities": "اختر من الانشطة",
|
|
67
|
+
"choose_any_business_date": "اختر تاريخ",
|
|
68
|
+
"choose_any_license": "اختر الرخصة",
|
|
69
|
+
"choose_any_occupation": "الرجاء الاختيار - ",
|
|
70
|
+
"choose_any_source_of_income": "- الرجاء الاختيار -",
|
|
71
|
+
"choose_atleast_one_activity": "- الرجاء الاختيار -",
|
|
72
|
+
"choose_atleast_one_channel": "الرجاء اختيار قناة واحدة على الأقل",
|
|
73
|
+
"choose_brand": "يرجى اختيار اسم تجاري",
|
|
74
|
+
"choose_channel": "- الرجاء الاختيار -",
|
|
75
|
+
"choose_customer_base": "- الرجاء الاختيار -",
|
|
76
|
+
"choose_employee_location": "- الرجاء الاختيار -",
|
|
77
|
+
"choose_expected_sales": "- الرجاء الاختيار -",
|
|
78
|
+
"choose_expected_sales_yearly": "- الرجاء الاختيار -",
|
|
79
|
+
"choose_license": "- الرجاء الاختيار -",
|
|
80
|
+
"choose_license_cr": "- الرجاء الاختيار -",
|
|
81
|
+
"choose_license_fl": "- الرجاء الاختيار -",
|
|
51
82
|
"citizenship": "مواطن",
|
|
83
|
+
"civil_id_placeholder": "28xxxxxxxx53",
|
|
52
84
|
"commercial_reg": "منشأة تجارية",
|
|
85
|
+
"confirm": "تآكيد",
|
|
86
|
+
"confirm_close_flow_no": "لا",
|
|
87
|
+
"confirm_close_flow_title": "هل تريد الغاء العملية ؟",
|
|
88
|
+
"confirm_close_flow_yes": "نعم",
|
|
89
|
+
"connect_completed_description": "لقد نجحت في تسجيل الاسم التجاري مع تاب. تحقق من بريدك الإلكتروني لتفعيل حسابك.",
|
|
90
|
+
"connect_completed_title": "شكراً",
|
|
91
|
+
"continue": "استمرار",
|
|
92
|
+
"country_of_residence": "بلد الإقامة",
|
|
93
|
+
"cr_kw_max_length": "May you please verify the entered commercial registration number. (Note - the commercial registration minimum of 3 may contains characters and digits).",
|
|
94
|
+
"cr_max_length": "هل يمكنك التحقق من رقم السجل التجاري الذي تم إدخاله. (ملاحظة - يتكون السجل التجاري من {{length}} رقمًا).",
|
|
95
|
+
"cr_number": "رقم السجل التجارى",
|
|
96
|
+
"cr_number_hint": "2065413241",
|
|
97
|
+
"cr_required": "هل يمكنك إدخال رقم السجل التجاري.",
|
|
53
98
|
"create_new_business": "انشاء حساب جديد",
|
|
99
|
+
"desc_drag_and_drop_certificate": "License certificate file. PDF, JPG or PNG files up to 5mb.",
|
|
100
|
+
"drag_and_drop": "قم بسحب وإدراج الكشف او",
|
|
54
101
|
"edit": "تعديل",
|
|
55
|
-
"email_activation_description": "شكراً لاختيارك تاب
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
102
|
+
"email_activation_description": "شكراً لاختيارك تاب للمدفوعات، لقد تم تفعيل بريدك الإلكتروني بنجاح!",
|
|
103
|
+
"email_button_label": "تواصل مع البريد الإلكتروني",
|
|
104
|
+
"email_confirmed": "تم تأكيد البريد الإلكتروني",
|
|
105
|
+
"email_not_valid": "هل يمكنك التحقق من البريد الإلكتروني الذي تم إدخاله.",
|
|
106
|
+
"employer_name_invalid": "هل يمكنك التحقق من اسم المنشأه الذي تم إدخاله.",
|
|
107
|
+
"enter_at_least_one": "هل يمكنك إدخال وسائط اجتماعية واحدة على الأقل",
|
|
108
|
+
"enter_at_least_one_call_center": "Please enter at least one call center number",
|
|
109
|
+
"enter_at_least_one_mobile_app": "Please enter at least one mobile app store",
|
|
110
|
+
"enter_at_least_one_physical_store": "Please enter at least one physical store",
|
|
111
|
+
"enter_at_least_one_social_media": "Please enter at least one social media",
|
|
112
|
+
"enter_at_least_one_website": "Please enter at least one website",
|
|
59
113
|
"enter_bank_name": "اسم البنك",
|
|
60
114
|
"enter_bank_name_placeholder": "اسم البنك",
|
|
61
115
|
"enter_birth_date": "تاريخ الميلاد",
|
|
62
|
-
"
|
|
116
|
+
"enter_brand_name_english_chars_numbers_space": "هل يمكنك التحقق من الاسم التجاري الذي تم إدخاله. (ملاحظة - يتكون الاسم التجاري من أحرف باللغة الإنجليزية بالإضافة على أرقام ومسافات) ",
|
|
117
|
+
"enter_brand_name_english_chars_only": "هل يمكنك التحقق من الاسم التجاري الذي تم إدخاله. (ملاحظة - يتكون الاسم التجاري من أحرف باللغة الإنجليزية) ",
|
|
118
|
+
"enter_civil_id": "Please enter your civil ID",
|
|
63
119
|
"enter_commercial_register_no": "السجل التجاري",
|
|
64
|
-
"
|
|
65
|
-
"
|
|
120
|
+
"enter_entity_name_english_chars_numbers_space": "ادخل اسم العمل بشكل صحيح",
|
|
121
|
+
"enter_freelance_license": "وثيقة العمل الحر",
|
|
122
|
+
"enter_iban": "يرجى ادخال الحساب البنكي برمز الـ IBAN",
|
|
66
123
|
"enter_iqama_id": "رقم الإقامة",
|
|
67
|
-
"enter_license_no": "رقم
|
|
124
|
+
"enter_license_no": "رقم وثيقة العمل الحر",
|
|
68
125
|
"enter_national_id": "رقم الهوية",
|
|
69
|
-
"enter_served_monthly": "
|
|
70
|
-
"enter_strong_password": "الرجاء إدخال
|
|
71
|
-
"enter_valid_birth_date": "الرجاء ادخال تاريخ
|
|
72
|
-
"enter_valid_brand_name": "
|
|
73
|
-
"enter_valid_customer_no": "
|
|
74
|
-
"enter_valid_license": "
|
|
75
|
-
"enter_valid_mobile_number": "
|
|
76
|
-
"
|
|
77
|
-
"
|
|
126
|
+
"enter_served_monthly": "كم عدد العملاء الذين تتوقع أن يخدمهم عملك على أساس شهري؟",
|
|
127
|
+
"enter_strong_password": "الرجاء إدخال كلمة مرور قوية.",
|
|
128
|
+
"enter_valid_birth_date": "الرجاء ادخال تاريخ ميلاد صحيح",
|
|
129
|
+
"enter_valid_brand_name": "الرجاء إدخال اسم تجاري صحيح",
|
|
130
|
+
"enter_valid_customer_no": "-",
|
|
131
|
+
"enter_valid_license": "هل يمكنك التحقق من رقم الرخصه الذي تم إدخاله.",
|
|
132
|
+
"enter_valid_mobile_number": "هل يمكنك التحقق من رقم الجوال الذي تم إدخاله. (ملاحظة - يتكون رقم الجوال من {{length}} رقمًا)",
|
|
133
|
+
"enter_valid_password": "يرجى إدخال كلمة مرور لا تقل عن {{length}} حرفًا",
|
|
134
|
+
"entity_legal_name_placeholder": "اسم العمل",
|
|
135
|
+
"entity_legal_name_title": "الاسم الرسمي للمنشأة",
|
|
136
|
+
"entity_success_title": "تم تحديث المعلومات بنجاح",
|
|
137
|
+
"expected_customers_to_serve": "كم عدد العملاء الذين تتوقع أن يخدمهم عملك شهريآً؟",
|
|
138
|
+
"expected_sales_yearly": "ما هي المبيعات المتوقعة لعملك شهريًا؟",
|
|
78
139
|
"expiry_date": "تاريخ الإنتهاء",
|
|
79
|
-
"
|
|
140
|
+
"file_not_supported_alert": "نوع الملف غير مدعوم",
|
|
141
|
+
"file_size_alert": "حجم الملف اكبر من المطلوب",
|
|
142
|
+
"file_upload_error": "هناك مشكلة في رفع الملف, يرجى المحاولة لاحقاً.",
|
|
143
|
+
"file_upload_failed": "أنت تواجه بعض التحديات في تحميل الملف. يرجى المحاولة مرة أخرى.",
|
|
144
|
+
"file_uploading_title": "جاري الرفع.....",
|
|
145
|
+
"fl_kw_max_length": "May you please verify the entered freelancer registration reference. (Note - the freelancer registration may contains characters and digits).",
|
|
146
|
+
"fl_max_length": "يرجى التحقق من مرجع وثيقة العمل الحر الذي تم إدخاله. (ملاحظة - يتكون مرجع وثيقة العمل الحر من {{length}} حرفًا).",
|
|
147
|
+
"fl_number": "وثيقة العمل الحر",
|
|
148
|
+
"fl_number_hint": "F31414ESD",
|
|
149
|
+
"fl_required": "هل يمكنك إدخال مرجع وثيقة العمل الحر.",
|
|
80
150
|
"follow_us": "تابعنا",
|
|
81
|
-
"freelancer_reg": "
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
151
|
+
"freelancer_reg": "وثيقة العمل الحر",
|
|
152
|
+
"future_work": "عمل المستقبل",
|
|
153
|
+
"gmail_btn_open_title": "افتح صندوق بريد جي ميل - Gmail",
|
|
154
|
+
"goto_dashboard": "حساب لوحة التحكم",
|
|
155
|
+
"goto_dashboard_button_label": "اخل حساب لوحة التحكم",
|
|
156
|
+
"homemaker_reg": "Home maker",
|
|
157
|
+
"id_placeholder": 2345566666,
|
|
158
|
+
"ide_not_valid_url": "هل يمكنك التحقق من عنوان الموقع الإلكتروني الذي تم إدخاله.",
|
|
159
|
+
"ide_opt_sent_title": "تم إرسال رمز المرور لمرة واحدة الـ OTP إلى رقم جوال",
|
|
160
|
+
"ide_otp_resend_label": "OTPإعادة ارسال رمز الـ ",
|
|
161
|
+
"ide_otp_waiting_title": "جاري التحقق ...",
|
|
162
|
+
"ide_registered_mobile_status_message": "رقم الجوال المسجل",
|
|
89
163
|
"ide_submit_button_confirm_label": "تأكيد",
|
|
90
164
|
"ide_submit_button_next_label": "التالي",
|
|
91
165
|
"ide_successfully_updated_message": "تم تحديث حسابك بنجاح",
|
|
92
166
|
"ide_successfully_verified_message": "تم إنشاء حسابك بنجاح!",
|
|
93
167
|
"ide_terms_and_conditions_description": "",
|
|
94
168
|
"identity_type": "نوع الهوية",
|
|
95
|
-
"
|
|
96
|
-
"
|
|
169
|
+
"individual_flow_completed": "{{individual_name}}",
|
|
170
|
+
"individual_flow_pending": "{{individual_name}}",
|
|
171
|
+
"individual_success_title": "تم تحديث المعلومات الشخصية الخاصة بك",
|
|
172
|
+
"invalid_civil_id": "Please enter valid civil ID",
|
|
173
|
+
"invalid_iban_format": "هل يمكنك التحقق من رقم الحساب البنكي الـ IBAN الذي تم إدخاله.",
|
|
174
|
+
"invalid_token": "يرجى التحلي بالصبر... أنت تواجه بعض التحديات بالربط مع الخدمة",
|
|
175
|
+
"invalid_url": "هل يمكنك التحقق من عنوان الموقع الإلكتروني الذي تم إدخاله.",
|
|
97
176
|
"issue_date": "تاريخ الإصدار",
|
|
98
177
|
"join_our_community": "",
|
|
178
|
+
"language": "English",
|
|
179
|
+
"license_name_label": "اسم الرخصة",
|
|
180
|
+
"license_number_label": "رقم الرخصة",
|
|
99
181
|
"loading": "تحميل...",
|
|
182
|
+
"loading_bank_statement": "تحميل.......",
|
|
183
|
+
"mail_btn_open_title": "افتح البريد الإلكتروني",
|
|
100
184
|
"marital_status": "الحالة الزوجية",
|
|
185
|
+
"masking_symbols": "•••",
|
|
186
|
+
"mobile_button_label": "المتابعة عن طريق رقم الجوال",
|
|
101
187
|
"national_address": "العنوان الوطني ",
|
|
188
|
+
"national_id_placeholder": "0000000000",
|
|
189
|
+
"next": "التالي",
|
|
102
190
|
"no": "لا",
|
|
103
191
|
"notify_strong_password": "رائع لديك كلمة سر قوية!",
|
|
104
192
|
"notify_user_has_account": "رقم الجوال مسجل في تاب. الرجاء تسجيل الدخول لإنشاء حساب جديد",
|
|
105
|
-
"
|
|
106
|
-
"
|
|
193
|
+
"occupation_title": "المنصب",
|
|
194
|
+
"open_mail_box": "افتح البريد الإلكتروني",
|
|
195
|
+
"opt_nid_sent_title": "الرجاء إدخال رمز المرور لمرة واحدة (OTP) المرسل عبر أبشر إلى رقم الجوال المسجل تحت هويتك الوطنية",
|
|
196
|
+
"or": "أو",
|
|
197
|
+
"otp_min_length": "الرجاء إدخال كلمة المرور لمرة واحدة (OTP) المكونة من 6 أرقام",
|
|
198
|
+
"otp_provider": "أبشر",
|
|
199
|
+
"otp_required": "الرجاء إدخال كلمة المرور لمرة واحدة (OTP) المطلوب",
|
|
200
|
+
"otp_success_title": "نجح التوثيق",
|
|
107
201
|
"our_community_description": "",
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
202
|
+
"outlook_btn_open_title": "افتح صندوق بريد آوتلوك - Outlook",
|
|
203
|
+
"paci_button_label": "Continue with PACI",
|
|
204
|
+
"paci_waiting_title": "Please wait we are verifying",
|
|
205
|
+
"password_flow_completed": "إعادة تعيين كلمة المرور",
|
|
206
|
+
"password_flow_pending": "إعداد كلمة المرور",
|
|
207
|
+
"password_flow_title": "إعداد كلمة المرور",
|
|
208
|
+
"password_length": "يجب أن يكون أكثر من 8 أحرف.",
|
|
209
|
+
"password_lower": "يجب أن يتضمن حرفًا صغيرًا واحدًا على الأقل.",
|
|
210
|
+
"password_not_match": "كلمة المرور التي أدخلتها غير متطابقة.",
|
|
211
|
+
"password_required": "يرجى إدخال كلمة المرور المطلوب.",
|
|
212
|
+
"password_special": "يجب أن يتضمن على الأقل على رمز مميز. (! @ #٪)",
|
|
213
|
+
"password_success_title": "تم تعيين كلمة المرور الخاصة بك",
|
|
214
|
+
"password_upper": "يجب أن يتضمن حرفًا كبيرًا واحدًا على الأقل.",
|
|
215
|
+
"payouts_btn_text": "استلام الايداعات",
|
|
113
216
|
"physical_store": "متجر ثابت (محل)",
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
217
|
+
"physical_store_placeholder": "العنوان الوطني أو رابط الموقع عالـ Google Map",
|
|
218
|
+
"place_of_birth": "مكان الميلاد",
|
|
219
|
+
"play_store_placeholder": "اسم التطبيق عالـ Google Play Store",
|
|
220
|
+
"please write your first and last name": "هل يمكنك التحقق من الاسم الذي تم إدخاله بالكامل. (ملاحظة - يتكون اسمك الكامل من اسمك الثلاثي في اللغة الإنجليزية)",
|
|
221
|
+
"please_agree_on_recharge": "الرجاء الموافقة على سياسة نزاع العمليات",
|
|
222
|
+
"please_agree_on_refund": "الرجاء الموافقة على سياسة الاسترداد",
|
|
223
|
+
"please_choose_are_you_influncer": "هل أنت شخص مؤثر اجتماعي",
|
|
224
|
+
"please_choose_base": "- الرجاء الاختيار -",
|
|
225
|
+
"please_choose_employer_location": "- الرجاء الاختيار -",
|
|
226
|
+
"please_choose_relative_pep": "هل أنت أو أحد أقاربك شخص مكشوف علنًا (PEP)",
|
|
227
|
+
"please_enter_actual_income": "ما هو دخلك الشهري؟",
|
|
228
|
+
"please_enter_employer_name": "يرجى إدخال اسم منشأه العمل الخاص بك",
|
|
124
229
|
"read_agree_terms_and_conditions_message": "لقد قرأت ووافقت على ",
|
|
125
230
|
"refund_policy_compliance": "الإلتزام بسياسة الاسترداد",
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
231
|
+
"reset_password_success_description": "تحقق من بريدك الإلكتروني لإعادة تعيين كلمة المرور الخاصة بك.",
|
|
232
|
+
"reset_password_success_title": "لقد ارسلنا رسالة بريدية إليك",
|
|
233
|
+
"search_placeholder": "البحث....",
|
|
234
|
+
"select_brand_label": "الأسماء التجارية",
|
|
235
|
+
"select_cr_license": "- الرجاء الاختيار -",
|
|
236
|
+
"select_customer_base": "ما هي مناطق العملاء التي تخدمها؟",
|
|
237
|
+
"select_expected_customers_serve": "- الرجاء الإختيار - ",
|
|
238
|
+
"select_expected_sales": "- الرجاء الإختيار - ",
|
|
129
239
|
"signin_email_label": "البريد الألكتروني",
|
|
130
|
-
"signin_email_mobile_label": "
|
|
240
|
+
"signin_email_mobile_label": "البريد الإلكتروني / رقم الجوال",
|
|
131
241
|
"signin_email_mobile_placeholder": "ادخل الايميل او الجوال",
|
|
132
242
|
"signin_email_placeholder": "بريدك الألكتروني",
|
|
133
|
-
"signup_Select_country": "اختر
|
|
134
|
-
"signup_beneficiary_name_length_error": "
|
|
243
|
+
"signup_Select_country": "اختر البلد",
|
|
244
|
+
"signup_beneficiary_name_length_error": "هل يمكنك التحقق من اسم المستفيد الذي تم إدخاله.",
|
|
135
245
|
"signup_brand_name_label": "الاسم التجاري",
|
|
136
246
|
"signup_brand_name_placeholder": "الاسم التجاري",
|
|
137
|
-
"signup_business_cr_info_title": "
|
|
138
|
-
"signup_business_fl_info_title": "
|
|
247
|
+
"signup_business_cr_info_title": "السجل التجاري",
|
|
248
|
+
"signup_business_fl_info_title": "وثيقة العمل الحر",
|
|
139
249
|
"signup_business_type_label": "اختر نوع عملك",
|
|
140
250
|
"signup_email_lable": "البريد الإلكتروني",
|
|
141
|
-
"signup_email_placeholder": "
|
|
251
|
+
"signup_email_placeholder": "بريدك الالكتروني",
|
|
142
252
|
"signup_enter_mobile": "رقم الجوال",
|
|
143
|
-
"signup_generic_error": "
|
|
144
|
-
"signup_instagram_placeholder": "
|
|
145
|
-
"signup_invalid_iqama_id_format": "
|
|
146
|
-
"signup_invalid_national_id": "
|
|
147
|
-
"signup_invalid_national_id_format": "
|
|
253
|
+
"signup_generic_error": "أنت تواجه بعض الخلل عند الربط في الخدمة.",
|
|
254
|
+
"signup_instagram_placeholder": "your.business",
|
|
255
|
+
"signup_invalid_iqama_id_format": "هل يمكنك التحقق من رقم الإقامة الذي تم إدخاله. (ملاحظة - يبدأ رقم الإقامة بـ {{number}})",
|
|
256
|
+
"signup_invalid_national_id": "هل يمكنك التحقق من رقم الهوية الوطنية الذي تم إدخاله.",
|
|
257
|
+
"signup_invalid_national_id_format": "هل يمكنك التحقق من رقم الهوية الوطنية الذي تم إدخاله. (ملاحظة - يبدأ رقم الهوية الوطنية بـ {{number}})",
|
|
148
258
|
"signup_legal_name_label": "الاسم القانوني",
|
|
149
|
-
"signup_merchant_name_label": "الاسم
|
|
150
|
-
"signup_merchant_name_placeholder": "الاسم
|
|
151
|
-
"signup_select_country": "
|
|
152
|
-
"signup_twitter_placeholder": "
|
|
153
|
-
"signup_user_not_exists_error": "المستخدم
|
|
154
|
-
"signup_website_placeholder": "
|
|
155
|
-
"signup_welcoming": "
|
|
259
|
+
"signup_merchant_name_label": "الاسم الكامل",
|
|
260
|
+
"signup_merchant_name_placeholder": "الاسم الكامل",
|
|
261
|
+
"signup_select_country": "بلد عملك التجاري ",
|
|
262
|
+
"signup_twitter_placeholder": "your.business",
|
|
263
|
+
"signup_user_not_exists_error": "هل يمكنك التتحقق من المستخدم الذي تم إدخاله.",
|
|
264
|
+
"signup_website_placeholder": "www.yourbusiness.com",
|
|
265
|
+
"signup_welcoming": "مرحبًا {{username}} ،",
|
|
156
266
|
"signup_welcoming_hi": "مرحبا,",
|
|
157
|
-
"start_with_number": "رقم الجوال
|
|
158
|
-
"step_required_by_rayah": "
|
|
267
|
+
"start_with_number": "هل يمكنك التحقق من رقم الجوال الذي تم إدخاله. (ملاحظة - يبدأ رقم الجوال بـ 5 أو 05)",
|
|
268
|
+
"step_required_by_rayah": "هذه الخطوة مطلوبة لبدء التحقق مع خدمة يقين من شركة علم",
|
|
269
|
+
"subtitle_drop": "او اختار",
|
|
159
270
|
"sucess_message_for_non_saudi": "شكرا لاختيارك تاب للمدفوعات الالكترونية. سوف يتم التواصل معكم في أقرب وقت",
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
"
|
|
163
|
-
"
|
|
271
|
+
"switch_to_id": "متابعة التسجيل برقم الهوية",
|
|
272
|
+
"switch_to_mobile": "متابعة التسجيل برقم الجوال",
|
|
273
|
+
"tap_js_actual_income": "ما هو دخلك في الشهر؟",
|
|
274
|
+
"tap_js_are_you_an_influencer": "هل أنت من الأشخاص المؤثرين؟",
|
|
275
|
+
"tap_js_are_you_interesting_signup": "يمكنك الذهاب إلى لوحة التحكم لإدارة عملك، أو يمكنك إنشاء حساب تجاري جديد.",
|
|
276
|
+
"tap_js_cancel_button_label": "إلغاء",
|
|
164
277
|
"tap_js_confirm_password_description": "تأكيد كلمة السر",
|
|
165
|
-
"tap_js_email_already_exist": "البريد
|
|
166
|
-
"tap_js_employer_address_city": "
|
|
167
|
-
"tap_js_employer_name": "اسم
|
|
168
|
-
"tap_js_enter_employer_address": "ادخل عنوان
|
|
169
|
-
"tap_js_enter_employer_name": "
|
|
170
|
-
"tap_js_go_back_button_label": "
|
|
171
|
-
"tap_js_is_close_relative_in_pep": "هل أنت أو
|
|
172
|
-
"tap_js_no_button_label": "
|
|
278
|
+
"tap_js_email_already_exist": "البريد الإلكتروني الذي أدخلته مرتبط بحساب فعال. (ملاحظة - ترتبط عناوين البريد الإلكتروني بشكل فريد بحساب واحد. يمكنك إدخال عنوان بريد إلكتروني آخر أو تسجيل الدخول باستخدام عنوان البريد الإلكتروني الذي أدخلته للاستمرار في استخدام نفس البريد الإلكتروني لهذا النشاط التجاري)",
|
|
279
|
+
"tap_js_employer_address_city": "ما هي مدينة منشأة عملك؟",
|
|
280
|
+
"tap_js_employer_name": "اسم منشأة عملك",
|
|
281
|
+
"tap_js_enter_employer_address": "ادخل عنوان منشأة عملك",
|
|
282
|
+
"tap_js_enter_employer_name": "اسم المنشأة",
|
|
283
|
+
"tap_js_go_back_button_label": "رجوع",
|
|
284
|
+
"tap_js_is_close_relative_in_pep": "هل أنت أو أي من أقاربك أشخاص معرضون سياسيًا؟",
|
|
285
|
+
"tap_js_no_button_label": "لا",
|
|
173
286
|
"tap_js_password_description": "كلمة السر",
|
|
174
287
|
"tap_js_password_placeholder": "كلمة السر",
|
|
175
|
-
"tap_js_password_should_match": "
|
|
176
|
-
"tap_js_select_a_source_income": "
|
|
177
|
-
"tap_js_signin_button_label": "
|
|
288
|
+
"tap_js_password_should_match": "هل يمكنك التحقق من كلمات المرور التي تم إدخالها. (ملاحظة - يجب أن تتطابق كلمتا المرور)",
|
|
289
|
+
"tap_js_select_a_source_income": "ما هو مصدر دخلك؟",
|
|
290
|
+
"tap_js_signin_button_label": "تسجيل الدخول",
|
|
178
291
|
"tap_js_source_of_income": "مصدر الدخل",
|
|
292
|
+
"tax_confirm_information": "اتعهد أن المعلومات الضريبية صحيحة",
|
|
293
|
+
"tax_flow_completed": " رقم الضريبي المميز {{tax_id}}",
|
|
294
|
+
"tax_flow_pending": "أضف البيانات الضريبية",
|
|
295
|
+
"tax_success_title": "تم تحديث المعلومات الضريبية الخاصة بعملك التجاري.",
|
|
179
296
|
"terms_and_conditions_link_title": "الشروط والاحكام",
|
|
180
|
-
"the nin format is not valid": "رقم الهوية
|
|
181
|
-
"
|
|
297
|
+
"the nin format is not valid": "هل يمكنك التحقق من رقم الهوية الذي تم إدخاله.",
|
|
298
|
+
"title_bank_statement": "الصفحة الاولى من كشف الحساب",
|
|
299
|
+
"title_license_certificate": "License Certificate",
|
|
300
|
+
"title_upload_file": "ارفع من جهازك",
|
|
301
|
+
"vat_id": "رقم الضريبي المميز",
|
|
302
|
+
"vat_id_placeholder": "00000000",
|
|
182
303
|
"verification_brand_name": "الاسم التجاري",
|
|
183
304
|
"verification_category": "التصنيف",
|
|
184
|
-
"verification_completed_message": "اكتمل
|
|
185
|
-
"verification_invalid_token": "
|
|
305
|
+
"verification_completed_message": "اكتمل التحقق والتوثيق",
|
|
306
|
+
"verification_invalid_token": "أنت تواجه بعض التحديات بانشاء الاتصال في الخدمة. يرجى المحاولة مرة أخرى.",
|
|
186
307
|
"verification_invalid_token_description": "الرجاء مراجعة رابط التوثيق المرسل إلى بريدك الإلكتروني",
|
|
187
308
|
"verification_merchant_name": "الاسم الكامل",
|
|
188
309
|
"verification_name": "الاسم",
|
|
189
310
|
"verification_status": "الحالة",
|
|
190
311
|
"verification_status_cancelled": "ملغية",
|
|
191
|
-
"website": "موقع",
|
|
192
|
-
"yes": "نعم"
|
|
193
|
-
"switch_to_mobile": "التسجيل برقم الجوال",
|
|
194
|
-
"switch_to_id": "التسجيل برقم الهوية",
|
|
195
|
-
"enter_valid_password": " الرجاء إدخال الرقم السري بما لا يقل طوله عن {{length}}",
|
|
196
|
-
"password_required": "الرقم السري مطلوب",
|
|
197
|
-
"enter_brand_name_english_chars_numbers_space": "فضلاً كتابة احرف انجليزية او ارقام فقط",
|
|
198
|
-
"beneficiary_name_required": "اسم المستفيد مطلوب",
|
|
199
|
-
"bank_name_required": "اسم البنك مطلوب",
|
|
200
|
-
"invalid_iban_format": "الرجاء إدخال رقم ايبان صالح",
|
|
201
|
-
"beneficiary_name_invalid": "الرجاء إدخال الاسم اسم العائلة مع مسافات",
|
|
202
|
-
"select_expected_customers_serve": "- الرجاء الإختيار - ",
|
|
203
|
-
"otp_required": "الرمز المؤقت مطلوب",
|
|
204
|
-
"otp_min_length": "الرجاء إدخال الرمز المكون من 6 أرقام",
|
|
205
|
-
"employer_name_invalid": "الرجاء إدخال الاسم واسم العائلة مع مسافات",
|
|
206
|
-
"cr_required": "السجل التجاري مطلوب",
|
|
207
|
-
"cr_max_length": "طول رقم السجل التجاري يجب أن يكون {{length}}",
|
|
208
|
-
"fl_required": "رقم رخصة العمل الحر مطلوب",
|
|
209
|
-
"fl_max_length": "طول رخصة العمل الحر يجب ان يكون{{length}}",
|
|
210
|
-
"absher_button_label": "المتابعة عن طريق أبشر",
|
|
211
|
-
"or": "أو",
|
|
212
|
-
"next": "التالي",
|
|
213
|
-
"open_mail_box": "افتح البريد الإلكتروني",
|
|
214
|
-
"mobile_button_label": "المتابعة عن طريق رقم الجوال",
|
|
215
|
-
"select_brand_label": "Brand List",
|
|
216
|
-
"choose_brand": "Choose Brand",
|
|
217
|
-
"confirm_enter_iban": "الايبان",
|
|
218
|
-
"gmail_btn_open_title": "Gmail",
|
|
219
|
-
"outlook_btn_open_title": "Outlook",
|
|
220
|
-
"apple_btn_open_title": "Apple",
|
|
221
|
-
"choose_any_license": "Choose Licene",
|
|
222
|
-
"future_work": "Future Work",
|
|
223
|
-
"add_other_fl": "Add Freelance",
|
|
224
|
-
"add_other_cr": "Add CR",
|
|
225
|
-
"cr_number": "CR Number",
|
|
226
|
-
"fl_number": "FL Number",
|
|
227
|
-
"tax_flow_completed": "Tax {{tax_id}}",
|
|
228
|
-
"individual_flow_completed": "Individual {{individual_name}}",
|
|
229
|
-
"bank_flow_completed": "Bank {{iban}}",
|
|
230
|
-
"password_flow_completed": "Password",
|
|
231
|
-
"tax_flow_pending": "Tax",
|
|
232
|
-
"individual_flow_pending": "Individual",
|
|
233
|
-
"bank_flow_pending": "Bank",
|
|
234
|
-
"password_flow_pending": "Password",
|
|
235
|
-
"business_flow_pending": "Business",
|
|
236
|
-
"business_flow_completed": "{{business_type}} {{license_number}}",
|
|
237
|
-
"continue": "Continue",
|
|
238
|
-
"search_placeholder": "البحث...",
|
|
239
|
-
"individual_success_title": "Your personal details are updated",
|
|
240
|
-
"tax_success_title": "Your tax details are updated",
|
|
241
|
-
"bank_success_title": "Your bank details are updated",
|
|
242
|
-
"password_success_title": "Your password is set",
|
|
243
|
-
"bank": "bank",
|
|
244
|
-
"reset_password_success_title": "لقد ارسلنا رسالة بريدية إليك",
|
|
245
|
-
"reset_password_success_description": "تحقق من بريدك الإلكتروني لإعادة تعيين كلمة المرور الخاصة بك.",
|
|
246
|
-
"license_name_label": "اسم الرخصة",
|
|
247
|
-
"email_button_label": "تواصل مع البريد الإلكتروني",
|
|
248
|
-
"apple_store_placeholder": "Enter your app name (iOS)",
|
|
249
|
-
"play_store_placeholder": "Enter your app name (Google Play Store)",
|
|
250
|
-
"physical_store_placeholder": "Enter your store address or Google Map URL",
|
|
251
|
-
"call_center_placeholder": "Enter your Call Center number",
|
|
252
|
-
"back": "Back",
|
|
253
|
-
"civil_id_placeholder": "28xxxxxxxx53",
|
|
254
|
-
"enter_civil_id": "Please enter your civil ID",
|
|
255
|
-
"invalid_civil_id": "Please enter valid civil ID",
|
|
256
|
-
"authenticate_kuwait_mobile_title": "Authenticate with Kuwait Mobile ID app",
|
|
257
|
-
"authenticate_kuwait_mobile_description": "Please go to your Kuwait Mobile ID app and accept the authentication request from Tap.",
|
|
258
|
-
"cr_kw_max_length": "May you please verify the entered commercial registration number. (Note - the commercial registration minimum of 3 may contains characters and digits).",
|
|
259
|
-
"fl_kw_max_length": "May you please verify the entered freelancer registration reference. (Note - the freelancer registration may contains characters and digits).",
|
|
260
|
-
"title_license_certificate": "License Certificate",
|
|
261
|
-
"brand_name_already_exist": "Profile Name already exists",
|
|
262
|
-
"enter_at_least_one_call_center": "Please enter at least one call center number",
|
|
263
|
-
"enter_at_least_one_mobile_app": "Please enter at least one mobile app store",
|
|
264
|
-
"enter_at_least_one_physical_store": "Please enter at least one physical store",
|
|
265
|
-
"enter_at_least_one_website": "Please enter at least one website",
|
|
266
|
-
"enter_at_least_one_social_media": "Please enter at least one social media",
|
|
267
|
-
"homemaker_reg": "Home maker"
|
|
312
|
+
"website": "موقع الكتروني",
|
|
313
|
+
"yes": "نعم"
|
|
268
314
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"language": "العربية",
|
|
3
2
|
"(citizeninfo) dateofbirth does not match nic records": "May you please verify the entered date of birth.",
|
|
4
|
-
"Api key is unauthorized to perform the operation": "
|
|
3
|
+
"Api key is unauthorized to perform the operation": "May you please verify the API operator used to perform this service.",
|
|
5
4
|
"CR Not Found": "May you please verify the entered commercial registration.",
|
|
6
5
|
"Freelance License Not Found": "May you please verify the entered freelancer registration.",
|
|
7
6
|
"Internal server error": "You are experiencing some service interruption. Please give it a try another time.",
|
|
@@ -9,37 +8,72 @@
|
|
|
9
8
|
"Invalid OTP": "Please enter a valid One Time Passcode (OTP).",
|
|
10
9
|
"Invalid OTP, please try again": "Please enter a valid One Time Passcode (OTP).",
|
|
11
10
|
"Invalid Password": "Please verify the entered information.",
|
|
12
|
-
"Invalid lead_id": "You
|
|
11
|
+
"Invalid lead_id": "You are experiencing some service interruption. May you please reach out the support team.",
|
|
13
12
|
"Invalid otp in data_token": "Please enter a valid One Time Passcode (OTP).",
|
|
14
13
|
"Profile Name Required": "May you please enter a brand name for your business.",
|
|
15
|
-
"Profile Name already exists": "The brand name you have entered is
|
|
14
|
+
"Profile Name already exists": "The brand name you have entered is not available. May you please provide an alternate brand name.",
|
|
16
15
|
"Profile Name is invalid": "May you please verify the entered brand name.",
|
|
16
|
+
"absher_button_label": "Continue with Absher",
|
|
17
|
+
"acceptance_btn_text": "Acceptance",
|
|
18
|
+
"account_completed_title_eg": "well done",
|
|
19
|
+
"account_completed_title_sa": "Congratulations",
|
|
20
|
+
"account_details": "Your account details",
|
|
17
21
|
"activities": "Business activities",
|
|
18
22
|
"activities_selected": "Business activities selected",
|
|
19
23
|
"actual_income_hint": "Lorem ipsum dolor sit amet, consetetur",
|
|
24
|
+
"add_other_cr": "Add a Commercial Registration",
|
|
25
|
+
"add_other_fl": "Add a Freelance Registration",
|
|
20
26
|
"agree_on_chargeback_policy": "I agree to the ",
|
|
21
27
|
"agree_on_refund_policy": "I agree to the ",
|
|
28
|
+
"alert_bank_confirm": "you have to confirm",
|
|
29
|
+
"alert_bank_statement": "please upload your bank statement",
|
|
22
30
|
"alert_beneficiary_name": "May you please verify the entered beneficiary name.",
|
|
23
|
-
"
|
|
24
|
-
"
|
|
31
|
+
"alert_file_upload": "please upload a valid file ",
|
|
32
|
+
"alert_iban": "May you please verify the entered IBAN",
|
|
33
|
+
"alert_tax_confirm": "please confirm your tax information",
|
|
34
|
+
"alert_vat": "May you please verify the entered tax identification number (TIN) for VAT purposes. (Note - the TIN constitutes of 15 digits)",
|
|
35
|
+
"android": "Enter your app name (App Store)",
|
|
25
36
|
"app": "App",
|
|
37
|
+
"apple_btn_open_title": "Open Apple Mail",
|
|
38
|
+
"apple_store_placeholder": "Enter your app name (App Store)",
|
|
39
|
+
"authenticate_kuwait_mobile_description": "Please go to your Kuwait Mobile ID app and accept the authentication request from Tap.",
|
|
40
|
+
"authenticate_kuwait_mobile_title": "Authenticate with Kuwait Mobile ID app",
|
|
41
|
+
"bank": "Bank",
|
|
42
|
+
"bank_confirm_information": "I confirm my bank information is correct and related to me.",
|
|
43
|
+
"bank_flow_completed": "{{bank_name}} {{iban}}",
|
|
44
|
+
"bank_flow_pending": "Add the bank account",
|
|
45
|
+
"bank_flow_title": "Add your bank details",
|
|
46
|
+
"bank_name_required": "Bank name is required",
|
|
26
47
|
"bank_statement_first_page": "Bank statement",
|
|
48
|
+
"bank_success_title": "Your bank details are updated",
|
|
27
49
|
"beneficiary_name": "Beneficiary name",
|
|
50
|
+
"beneficiary_name_invalid": "May you please verify the entered beneficiary name. (Note - The beneficiary name is required to match the legal name that is associated with the bank account)",
|
|
28
51
|
"beneficiary_name_placeholder": "Beneficiary name",
|
|
52
|
+
"beneficiary_name_required": "Beneficiary name is required",
|
|
29
53
|
"birthdate": "Date of birth",
|
|
54
|
+
"brand_name_already_exist": "Profile Name already exists",
|
|
30
55
|
"brand_name_hint": "Please enter a brand name for you business. The brand will appear for your customers. (Note - brand names might be taken sometime, therefore please provide a brand name that is legally registered under your business)",
|
|
56
|
+
"brand_success_title": "Your brand details are updated",
|
|
57
|
+
"business_completed_button": "Finish setting up my account",
|
|
58
|
+
"business_completed_description": "That was easy! You’re all set to accept payments. One last thing, add your bank details to start receiving your payouts.",
|
|
59
|
+
"business_completed_title": "Your account is active",
|
|
31
60
|
"business_start_date": "When did you start your business?",
|
|
61
|
+
"call_center": "Enter your call center number",
|
|
62
|
+
"call_center_placeholder": "Enter your call center number",
|
|
32
63
|
"category": "Category",
|
|
33
64
|
"category_name": "Category name",
|
|
34
65
|
"channel_of_service": "What are your sales channels?",
|
|
35
66
|
"chargeback_policy": "Transaction dispute policy",
|
|
36
|
-
"check_terms_cond": "Please accept the terms
|
|
67
|
+
"check_terms_cond": "Please accept the terms & conditions",
|
|
37
68
|
"choose_activities": "Business Activities",
|
|
38
69
|
"choose_activity": "- Please select -",
|
|
39
70
|
"choose_any_business_date": "Please select a date",
|
|
71
|
+
"choose_any_license": "Choose License",
|
|
72
|
+
"choose_any_occupation": "Select -",
|
|
40
73
|
"choose_any_source_of_income": "- Please select -",
|
|
41
74
|
"choose_atleast_one_activity": "- Please select -",
|
|
42
75
|
"choose_atleast_one_channel": "Please select at least a channel.",
|
|
76
|
+
"choose_brand": "Please select a brand",
|
|
43
77
|
"choose_channel": "- Please select -",
|
|
44
78
|
"choose_customer_base": "- Please select -",
|
|
45
79
|
"choose_employee_location": "- Please select -",
|
|
@@ -48,45 +82,88 @@
|
|
|
48
82
|
"choose_license": "- Please select -",
|
|
49
83
|
"choose_license_cr": "- Please select -",
|
|
50
84
|
"choose_license_fl": "- Please select -",
|
|
51
|
-
"citizenship": "
|
|
85
|
+
"citizenship": "Nationality",
|
|
86
|
+
"civil_id_placeholder": "28xxxxxxxx53",
|
|
52
87
|
"commercial_reg": "Comercial entity",
|
|
53
88
|
"commercial_registration": "Commercial registration",
|
|
89
|
+
"confirm": "Confirm",
|
|
90
|
+
"confirm_close_flow_no": "NO",
|
|
91
|
+
"confirm_close_flow_title": "Are you sure you would like to close?",
|
|
92
|
+
"confirm_close_flow_yes": "YES",
|
|
93
|
+
"connect_completed_description": "You successfully signed up your brand with Tap. Check your email to activate your account.",
|
|
94
|
+
"connect_completed_title": "Congratulations",
|
|
95
|
+
"continue": "Continue",
|
|
96
|
+
"country_of_residence": "Country of residence",
|
|
97
|
+
"cr_kw_max_length": "May you please verify the entered commercial registration number. (Note - the commercial registration minimum of 3 may contains characters and digits).",
|
|
98
|
+
"cr_max_length": "May you please verify the entered commercial registration number. (Note - the commercial registration constitutes of {{length}} digits). ",
|
|
99
|
+
"cr_number": "Commercial registration",
|
|
100
|
+
"cr_number_hint": 214151616,
|
|
101
|
+
"cr_required": "May you please enter a commercial registration number.",
|
|
54
102
|
"create_new_business": "Create a new business",
|
|
55
|
-
"
|
|
103
|
+
"desc_drag_and_drop": "First page showing matching bank details. PDF, JPG or PNG files up to 5mb.",
|
|
104
|
+
"desc_drag_and_drop_certificate": "License certificate file. PDF, JPG or PNG files up to 5mb.",
|
|
105
|
+
"drag_and_drop": "Drop or ",
|
|
56
106
|
"edit": "Edit",
|
|
57
107
|
"email_activation_description": "Thank you for choosing Tap Payments. Your email address has been confirmed successfully!",
|
|
108
|
+
"email_button_label": "Continue with Email",
|
|
58
109
|
"email_confirmed": "Email confirmed",
|
|
59
110
|
"email_not_valid": "May you please verify the entered email address.",
|
|
111
|
+
"employer_name_invalid": "May you please verify the entered name of your employer.",
|
|
60
112
|
"enter_at_least_one": "May you please enter at least one social media",
|
|
113
|
+
"enter_at_least_one_call_center": "Please enter at least one call center number",
|
|
114
|
+
"enter_at_least_one_mobile_app": "Please enter at least one mobile app store",
|
|
115
|
+
"enter_at_least_one_physical_store": "Please enter at least one physical store",
|
|
116
|
+
"enter_at_least_one_social_media": "Please enter at least one social media",
|
|
117
|
+
"enter_at_least_one_website": "Please enter at least one website",
|
|
61
118
|
"enter_bank_name": "Bank name",
|
|
62
119
|
"enter_bank_name_placeholder": "bank name",
|
|
63
|
-
"enter_birth_date": "Date of
|
|
64
|
-
"
|
|
120
|
+
"enter_birth_date": "Date of birth",
|
|
121
|
+
"enter_brand_name_english_chars_numbers_space": "May you please verify the entered brand name. (Note - Brand names may consist of English letters, numbers and spaces)",
|
|
122
|
+
"enter_brand_name_english_chars_only": "May you please verify the entered brand name. (Note - Brand names may consist of English letters)",
|
|
123
|
+
"enter_civil_id": "Please enter your civil ID",
|
|
65
124
|
"enter_commercial_register_no": "Commercial registration",
|
|
125
|
+
"enter_entity_name_english_chars_numbers_space": "Enter valid business name",
|
|
66
126
|
"enter_freelance_license": "Freelance registration",
|
|
67
|
-
"enter_iban": "Please enter the IBAN",
|
|
127
|
+
"enter_iban": "Please enter the bank account in the IBAN form",
|
|
68
128
|
"enter_iban_placeholder": "SA44#################0",
|
|
69
129
|
"enter_iqama_id": "Identification number",
|
|
70
130
|
"enter_license_no": "Freelance registration",
|
|
71
131
|
"enter_national_id": "Identification number",
|
|
72
|
-
"enter_served_monthly": "How many customers do you expect to
|
|
132
|
+
"enter_served_monthly": "How many customers do you expect your business to serve per month?",
|
|
73
133
|
"enter_strong_password": "Please enter strong password.",
|
|
74
134
|
"enter_valid_birth_date": "Please enter a valid birth date.",
|
|
75
135
|
"enter_valid_brand_name": "Please enter a valid brand name.",
|
|
76
|
-
"enter_valid_customer_no": "
|
|
136
|
+
"enter_valid_customer_no": "-",
|
|
77
137
|
"enter_valid_license": "May you please verify the entered license number.",
|
|
78
138
|
"enter_valid_mobile_number": "May you please verify the entered mobile number. (Note - Mobile numbers consist of {{length}} digits)",
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
139
|
+
"enter_valid_password": "Please enter a password with a minimum of {{length}} characters",
|
|
140
|
+
"entity_legal_name_placeholder": "Business name",
|
|
141
|
+
"entity_legal_name_title": "Business Name",
|
|
142
|
+
"entity_success_title": "Entity Updated Successfully",
|
|
143
|
+
"expected_customers_to_serve": "How many customers do you expect your business to serve per month?",
|
|
144
|
+
"expected_sales_yearly": "What is the expected sales for your business per month?",
|
|
145
|
+
"expected_served_monthly": "How many customers do you expect your business to serve per month?",
|
|
82
146
|
"expiry_date": "Date of expiry",
|
|
147
|
+
"file_not_supported_alert": "File not supported, please try again",
|
|
148
|
+
"file_size_alert": "Your file is too big, please upload another",
|
|
149
|
+
"file_upload_error": "Something went wrong, please try again",
|
|
83
150
|
"file_upload_failed": "You are experiencing some challenges uploading the file. Please give it another try.",
|
|
151
|
+
"file_uploading_title": "Uploading....",
|
|
152
|
+
"fl_kw_max_length": "May you please verify the entered freelancer registration reference. (Note - the freelancer registration may contains characters and digits).",
|
|
153
|
+
"fl_max_length": "May you please verify the entered freelancer registration reference. (Note - the freelancer registration constitutes of {{length}} characters). ",
|
|
154
|
+
"fl_number": "Freelancer registration",
|
|
155
|
+
"fl_number_hint": "fl31414ss3",
|
|
156
|
+
"fl_required": "May you please enter a freelancer registration reference.",
|
|
84
157
|
"follow_us": "Follow us",
|
|
85
158
|
"freelance": "Freelance registration",
|
|
86
159
|
"freelancer_reg": "Freelancer",
|
|
160
|
+
"future_work": "Future Work",
|
|
161
|
+
"gmail_btn_open_title": "Open Gmail",
|
|
87
162
|
"goto_dashboard": "Dashboard",
|
|
88
163
|
"goto_dashboard_button_label": "Enter the dashboard",
|
|
89
164
|
"have_physical_store": "Do you have a physical store?",
|
|
165
|
+
"homemaker_reg": "Home maker",
|
|
166
|
+
"id_placeholder": 2345566666,
|
|
90
167
|
"ide_not_valid_url": "May you please verify the entered website address.",
|
|
91
168
|
"ide_opt_sent_title": "A One Time Passcode (OTP) has been be sent to mobile number",
|
|
92
169
|
"ide_otp_resend_label": "Resend OTP",
|
|
@@ -96,61 +173,105 @@
|
|
|
96
173
|
"ide_submit_button_next_label": "Next",
|
|
97
174
|
"ide_successfully_updated_message": "Your account has been updated successfully",
|
|
98
175
|
"ide_successfully_verified_message": "Your account has been created successfully!",
|
|
99
|
-
"ide_terms_and_conditions_description": "
|
|
176
|
+
"ide_terms_and_conditions_description": "",
|
|
100
177
|
"identity_type": "Type of identity",
|
|
178
|
+
"individual_flow_completed": "{{individual_name}}",
|
|
179
|
+
"individual_flow_pending": "{{individual_name}}",
|
|
180
|
+
"individual_flow_title": "Complete your details",
|
|
181
|
+
"instagram": "your.business",
|
|
182
|
+
"invalid_civil_id": "Please enter valid civil ID",
|
|
183
|
+
"invalid_iban_format": "May you please verify the entered IBAN.",
|
|
101
184
|
"invalid_token": "Please be patient... You are experiencing some challenges with your connection.",
|
|
102
185
|
"invalid_url": "May you please verify the entered website address.",
|
|
186
|
+
"ios": "Enter your app name (Apple Store)",
|
|
103
187
|
"issue_date": "Date of issuance",
|
|
104
188
|
"join_our_community": "",
|
|
105
189
|
"kyc_verification": "Know Your Customer (KYC)",
|
|
190
|
+
"language": "العربية",
|
|
191
|
+
"license_name_label": "License Name",
|
|
192
|
+
"license_number_label": "License Number",
|
|
193
|
+
"linkedin": "your.business",
|
|
106
194
|
"loading": "Loading...",
|
|
195
|
+
"loading_bank_statement": "loading....",
|
|
196
|
+
"mail_btn_open_title": "Open Mail",
|
|
107
197
|
"marital_status": "Marital status",
|
|
108
|
-
"
|
|
198
|
+
"masking_symbols": "•••",
|
|
199
|
+
"mobile_button_label": "Continue with Mobile",
|
|
200
|
+
"national_address": "National address",
|
|
201
|
+
"national_id_placeholder": "0000000000",
|
|
202
|
+
"next": "Next",
|
|
109
203
|
"no": "No",
|
|
110
204
|
"no login credentials available": "May you please verify the entered email address. (Note - Please make sure to enter an email address associated with Tap)",
|
|
111
205
|
"notify_strong_password": "Awesome! You have a secure password.",
|
|
112
206
|
"notify_user_has_account": "Your mobile number is registered in Tap. Please login to create new business. ",
|
|
207
|
+
"occupation_title": "Occupation",
|
|
208
|
+
"open_mail_box": "Open Mailbox",
|
|
113
209
|
"opt_nid_sent_title": "Please enter the One Time Passcode (OTP) sent via Absher to the mobile number registered under your Saudi National ID",
|
|
210
|
+
"or": "or",
|
|
211
|
+
"otp_min_length": "Please enter the 6 digit OTP",
|
|
114
212
|
"otp_provider": "Absher",
|
|
213
|
+
"otp_required": "Please enter the required OTP",
|
|
214
|
+
"otp_success_title": "successfully verified",
|
|
115
215
|
"our_community_description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.",
|
|
216
|
+
"outlook_btn_open_title": "Open Outlook",
|
|
217
|
+
"paci_button_label": "Continue with PACI",
|
|
218
|
+
"paci_waiting_title": "Please wait we are verifying",
|
|
219
|
+
"password_flow_completed": "Reset my password",
|
|
220
|
+
"password_flow_pending": "Setup my password",
|
|
221
|
+
"password_flow_title": "Setup your password",
|
|
116
222
|
"password_length": "Needs to be more than 8 characters.",
|
|
117
223
|
"password_lower": "Includes at least 1 lowercase character.",
|
|
118
224
|
"password_not_match": "The password you have entered does not match.",
|
|
225
|
+
"password_required": "May you please enter the Password required.",
|
|
119
226
|
"password_special": "Includes at least 1 special character. (!@#%)",
|
|
227
|
+
"password_success_title": "Your password is set",
|
|
120
228
|
"password_upper": "Includes at least 1 uppercase character.",
|
|
121
|
-
"
|
|
229
|
+
"payouts_btn_text": "Payouts",
|
|
230
|
+
"physical_store": "Enter your store address or Google Map URL",
|
|
231
|
+
"physical_store_placeholder": "Enter your store address or Google Map URL",
|
|
122
232
|
"place_of_birth": "Place of birth",
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
233
|
+
"play_store_placeholder": "Enter your app name (Google Play Store)",
|
|
234
|
+
"please write your first and last name": "May you please verify the entered name in full. (Note - Your full name consists of your first, middle and last name)",
|
|
235
|
+
"please_agree_on_recharge": "Please agree to the dispute policy ",
|
|
236
|
+
"please_agree_on_refund": "Please agree to the refund policy",
|
|
126
237
|
"please_choose_are_you_influncer": "Are you an influencer",
|
|
127
238
|
"please_choose_base": "- Please select - ",
|
|
128
|
-
"please_choose_employer_location": "
|
|
239
|
+
"please_choose_employer_location": "- Please select - ",
|
|
129
240
|
"please_choose_relative_pep": "Are you or one of your relatives a Publicly Exposed Person (PEP)",
|
|
130
241
|
"please_enter_actual_income": "What is your monthly income?",
|
|
131
242
|
"please_enter_employer_name": "Please enter the name of your employer",
|
|
132
|
-
"read_agree_terms_and_conditions_message": "I have read
|
|
243
|
+
"read_agree_terms_and_conditions_message": "I have read, agreed to the ",
|
|
133
244
|
"refund_policy_compliance": "Refund policy compliance",
|
|
245
|
+
"reset_password_success_description": "Check your email to reset your password.",
|
|
246
|
+
"reset_password_success_title": "We sent you an email",
|
|
247
|
+
"scs_53Hj4422123SBTK7RV10J578": "your.business",
|
|
248
|
+
"scs_6Nsy4422123sjWe7gt10h579": "your.business",
|
|
249
|
+
"scs_99it4422123pJXN7Jm10Y579": "your.business",
|
|
250
|
+
"scs_FCz64422123nZfm7zm10V577": "Enter your app name (Google Play Store)",
|
|
251
|
+
"scs_ZULK4422123p2PK7Mg105576": "Enter your app name (App Store)",
|
|
252
|
+
"search_placeholder": "Search...",
|
|
134
253
|
"select_bank": "Bank",
|
|
254
|
+
"select_brand_label": "Brands",
|
|
135
255
|
"select_cr_license": "- Please select -",
|
|
136
|
-
"select_customer_base": "What
|
|
256
|
+
"select_customer_base": "What regions of customers do you serve?",
|
|
257
|
+
"select_expected_customers_serve": "- Please select - ",
|
|
137
258
|
"select_expected_sales": "- Please select - ",
|
|
138
259
|
"signin_email_label": "Email address",
|
|
139
|
-
"signin_email_mobile_label": "Email/Mobile",
|
|
140
|
-
"signin_email_mobile_placeholder": "Enter email or mobile",
|
|
260
|
+
"signin_email_mobile_label": "Email / Mobile",
|
|
261
|
+
"signin_email_mobile_placeholder": "Enter email address or mobile number",
|
|
141
262
|
"signin_email_placeholder": "Your email address",
|
|
142
|
-
"signup_Select_country": "Select
|
|
143
|
-
"signup_beneficiary_name_length_error": "
|
|
263
|
+
"signup_Select_country": "Select a country",
|
|
264
|
+
"signup_beneficiary_name_length_error": "May you please verify the entered beneficiary name.",
|
|
144
265
|
"signup_brand_name_label": "Brand name",
|
|
145
266
|
"signup_brand_name_placeholder": "Brand name ",
|
|
146
267
|
"signup_business_cr_info_title": "Commercial registration",
|
|
147
268
|
"signup_business_fl_info_title": "Freelance registration",
|
|
148
269
|
"signup_business_type_label": "Select your type of business",
|
|
149
270
|
"signup_email_lable": "Email address",
|
|
150
|
-
"signup_email_placeholder": "Your
|
|
271
|
+
"signup_email_placeholder": "Your email address",
|
|
151
272
|
"signup_enter_mobile": "Your mobile number",
|
|
152
|
-
"signup_generic_error": "
|
|
153
|
-
"signup_instagram_placeholder": "
|
|
273
|
+
"signup_generic_error": "You are experiencing some service interruption.",
|
|
274
|
+
"signup_instagram_placeholder": "your.business",
|
|
154
275
|
"signup_invalid_iqama_id_format": "May you please verify the entered identification number. (Note - Saudi Iqama's start with {{number}})",
|
|
155
276
|
"signup_invalid_national_id": "May you please verify the entered identification number",
|
|
156
277
|
"signup_invalid_national_id_format": "May you please verify the entered identification number. (Note - Saudi national IDs start with {{number}})",
|
|
@@ -158,28 +279,32 @@
|
|
|
158
279
|
"signup_merchant_name_label": "Full name",
|
|
159
280
|
"signup_merchant_name_placeholder": "Full name",
|
|
160
281
|
"signup_select_country": "Your country of business",
|
|
161
|
-
"signup_twitter_placeholder": "
|
|
282
|
+
"signup_twitter_placeholder": "your.business",
|
|
162
283
|
"signup_user_not_exists_error": "May you please verify the entered user.",
|
|
163
|
-
"signup_website_placeholder": "
|
|
284
|
+
"signup_website_placeholder": "www.yourbusiness.com",
|
|
164
285
|
"signup_welcoming": "Hello {{username}},",
|
|
165
286
|
"signup_welcoming_hi": "Hello,",
|
|
166
|
-
"start_with_number": "May you please verify the entered mobile. (Note - mobile numbers start with
|
|
167
|
-
"step_required_by_rayah": "This step is required in order to initiate a verification with Yaqeen.",
|
|
287
|
+
"start_with_number": "May you please verify the entered mobile. (Note - mobile numbers start with 5 or 05",
|
|
288
|
+
"step_required_by_rayah": "This step is required in order to initiate a verification with Yaqeen service from Elm.",
|
|
289
|
+
"subtitle_drop": "choose file",
|
|
290
|
+
"success_upload_bank_statement": "Done",
|
|
168
291
|
"sucess_message_for_non_saudi": "Thank you for your interest in Tap Payments, we shall be contacting you shortly.",
|
|
169
|
-
"
|
|
292
|
+
"switch_to_id": "Continue with your ID",
|
|
293
|
+
"switch_to_mobile": "Continue with your mobile",
|
|
294
|
+
"tap_js_actual_income": "What is your income per month? ",
|
|
170
295
|
"tap_js_are_you_an_influencer": "Are you a person who is considered an influencer?",
|
|
171
|
-
"tap_js_are_you_interesting_signup": "You may go to the
|
|
296
|
+
"tap_js_are_you_interesting_signup": "You may go to the dashboard to manage your business, or you may create new business account.",
|
|
172
297
|
"tap_js_cancel_button_label": "Cancel",
|
|
173
298
|
"tap_js_confirm_password_description": "Confirm password",
|
|
174
|
-
"tap_js_email_already_exist": "The email you have entered is associated with an existing account. (Note - Email addresses are uniquely linked to a single
|
|
299
|
+
"tap_js_email_already_exist": "The email you have entered is associated with an existing account. (Note - Email addresses are uniquely linked to a single account. You may enter another email address or sign in using the email address you have entered in order to continue using the same email for this business)",
|
|
175
300
|
"tap_js_employer_address_city": "What is the location of your employer?",
|
|
176
301
|
"tap_js_employer_name": "Employer name",
|
|
177
302
|
"tap_js_enter_actual_income": "0",
|
|
178
303
|
"tap_js_enter_employer_address": "Enter the location of your employer",
|
|
179
|
-
"tap_js_enter_employer_name": "
|
|
304
|
+
"tap_js_enter_employer_name": "Employer's name",
|
|
180
305
|
"tap_js_enter_title": "Enter a title",
|
|
181
306
|
"tap_js_go_back_button_label": "Back",
|
|
182
|
-
"tap_js_is_close_relative_in_pep": "Are you or any of your relatives politically exposed persons?",
|
|
307
|
+
"tap_js_is_close_relative_in_pep": "Are you or any of your relatives politically exposed persons (PEP)?",
|
|
183
308
|
"tap_js_no_button_label": "No",
|
|
184
309
|
"tap_js_password_description": "Password",
|
|
185
310
|
"tap_js_password_placeholder": "Your password",
|
|
@@ -188,11 +313,20 @@
|
|
|
188
313
|
"tap_js_select_a_title": "Select a title",
|
|
189
314
|
"tap_js_signin_button_label": "Signin",
|
|
190
315
|
"tap_js_source_of_income": "Source of income",
|
|
316
|
+
"tax_confirm_information": "I confirm my tax information is correct",
|
|
317
|
+
"tax_flow_completed": "TIN {{tax_id}}",
|
|
318
|
+
"tax_flow_pending": "Add the company's tax details",
|
|
319
|
+
"tax_success_title": "Your tax details are updated",
|
|
191
320
|
"terms_and_conditions_link_title": "terms and conditions",
|
|
192
321
|
"the nin format is not valid": "May you please verify the entered identification number.",
|
|
322
|
+
"title_bank_statement": "Bank Statement First Page",
|
|
323
|
+
"title_license_certificate": "License Certificate",
|
|
324
|
+
"title_upload_file": "upload from your computer",
|
|
325
|
+
"twitter": "your.business",
|
|
193
326
|
"upload_bank_statement": "Please upload the bank statement",
|
|
194
327
|
"upload_file": "Select a file from your computer",
|
|
195
328
|
"vat_id": "Tax Identification Number (TIN)",
|
|
329
|
+
"vat_id_placeholder": "000000000",
|
|
196
330
|
"verification_brand_name": "Brand name",
|
|
197
331
|
"verification_category": "Category",
|
|
198
332
|
"verification_completed_message": "Verification completed",
|
|
@@ -202,87 +336,6 @@
|
|
|
202
336
|
"verification_name": "Name",
|
|
203
337
|
"verification_status": "Status",
|
|
204
338
|
"verification_status_cancelled": "Cancelled",
|
|
205
|
-
"website": "
|
|
206
|
-
"yes": "Yes"
|
|
207
|
-
"switch_to_mobile": "Switch to mobile number",
|
|
208
|
-
"switch_to_id": "Switch to ID number",
|
|
209
|
-
"enter_valid_password": "Please enter password with minimum {{length}} characters",
|
|
210
|
-
"password_required": "Password id required",
|
|
211
|
-
"enter_brand_name_english_chars_numbers_space": "Please write English letters and numbers only with spaces",
|
|
212
|
-
"beneficiary_name_required": "Beneficiary name is required",
|
|
213
|
-
"bank_name_required": "Bank name is required",
|
|
214
|
-
"invalid_iban_format": "Please enter valid iban number",
|
|
215
|
-
"beneficiary_name_invalid": "Please enter first name and last name with space",
|
|
216
|
-
"select_expected_customers_serve": "- Please select - ",
|
|
217
|
-
"otp_required": "OTP is required",
|
|
218
|
-
"otp_min_length": "Please enter 6 digits number",
|
|
219
|
-
"employer_name_invalid": "Please enter first name and last name with space",
|
|
220
|
-
"cr_required": "CR number is required",
|
|
221
|
-
"cr_max_length": "CR number length should be {{length}}",
|
|
222
|
-
"fl_required": "Freelance number is required",
|
|
223
|
-
"fl_max_length": "Freelance number length should be {{length}}",
|
|
224
|
-
"absher_button_label": "Continue with Absher",
|
|
225
|
-
"mobile_button_label": "Continue with Mobile Number",
|
|
226
|
-
"or": "Or",
|
|
227
|
-
"next": "next",
|
|
228
|
-
"open_mail_box": "Open Mailbox",
|
|
229
|
-
"select_brand_label": "Brand List",
|
|
230
|
-
"choose_brand": "Choose Brand",
|
|
231
|
-
"confirm_enter_iban": "IBAN",
|
|
232
|
-
"gmail_btn_open_title": "Gmail",
|
|
233
|
-
"outlook_btn_open_title": "Outlook",
|
|
234
|
-
"apple_btn_open_title": "Apple",
|
|
235
|
-
"choose_any_license": "Choose Licene",
|
|
236
|
-
"future_work": "Future Work",
|
|
237
|
-
"add_other_fl": "Add Freelance",
|
|
238
|
-
"add_other_cr": "Add CR",
|
|
239
|
-
"cr_number": "CR Number",
|
|
240
|
-
"fl_number": "FL Number",
|
|
241
|
-
"tax_flow_completed": "Tax {{tax_id}}",
|
|
242
|
-
"individual_flow_completed": "Individual {{individual_name}}",
|
|
243
|
-
"bank_flow_completed": "{{bank_name}} {{iban}}",
|
|
244
|
-
"password_flow_completed": "Password",
|
|
245
|
-
"tax_flow_pending": "Tax",
|
|
246
|
-
"individual_flow_pending": "Individual {{individual_name}}",
|
|
247
|
-
"bank_flow_pending": "Bank",
|
|
248
|
-
"password_flow_pending": "Password",
|
|
249
|
-
"business_flow_pending": "Business",
|
|
250
|
-
"business_flow_completed": "{{business_type}} {{license_number}}",
|
|
251
|
-
"continue": "Continue",
|
|
252
|
-
"search_placeholder": "search..",
|
|
253
|
-
"connect_completed_title": "Congratulations",
|
|
254
|
-
"connect_completed_description": "You successfully signed up your brand with Tap. Check your email to activate your account.",
|
|
255
|
-
"business_completed_title": "Your account is active",
|
|
256
|
-
"business_completed_description": "That was easy! You’re all set to accept payments. One last thing, add your bank and tax info to start receiving your payouts.",
|
|
257
|
-
"business_completed_button": "Finish setting up my account",
|
|
258
|
-
"individual_success_title": "Your personal details are updated",
|
|
259
|
-
"tax_success_title": "Your tax details are updated",
|
|
260
|
-
"bank_success_title": "Your bank details are updated",
|
|
261
|
-
"password_success_title": "Your password is set",
|
|
262
|
-
"account_details": "Your account details",
|
|
263
|
-
"bank": "bank",
|
|
264
|
-
"reset_password_success_title": "We sent you an email",
|
|
265
|
-
"reset_password_success_description": "Check your email to reset your password.",
|
|
266
|
-
"license_name_label": "License Name",
|
|
267
|
-
"email_button_label": "Continue with Email",
|
|
268
|
-
"apple_store_placeholder": "Enter your app name (iOS)",
|
|
269
|
-
"play_store_placeholder": "Enter your app name (Google Play Store)",
|
|
270
|
-
"physical_store_placeholder": "Enter your store address or Google Map URL",
|
|
271
|
-
"call_center_placeholder": "Enter your Call Center number",
|
|
272
|
-
"back": "Back",
|
|
273
|
-
"civil_id_placeholder": "28xxxxxxxx53",
|
|
274
|
-
"enter_civil_id": "Please enter your civil ID",
|
|
275
|
-
"invalid_civil_id": "Please enter valid civil ID",
|
|
276
|
-
"authenticate_kuwait_mobile_title": "Authenticate with Kuwait Mobile ID app",
|
|
277
|
-
"authenticate_kuwait_mobile_description": "Please go to your Kuwait Mobile ID app and accept the authentication request from Tap.",
|
|
278
|
-
"cr_kw_max_length": "May you please verify the entered commercial registration number. (Note - the commercial registration minimum of 3 may contains characters and digits).",
|
|
279
|
-
"fl_kw_max_length": "May you please verify the entered freelancer registration reference. (Note - the freelancer registration may contains characters and digits).",
|
|
280
|
-
"title_license_certificate": "License Certificate",
|
|
281
|
-
"brand_name_already_exist": "Profile Name already exists",
|
|
282
|
-
"enter_at_least_one_call_center": "Please enter at least one call center number",
|
|
283
|
-
"enter_at_least_one_mobile_app": "Please enter at least one mobile app store",
|
|
284
|
-
"enter_at_least_one_physical_store": "Please enter at least one physical store",
|
|
285
|
-
"enter_at_least_one_website": "Please enter at least one website",
|
|
286
|
-
"enter_at_least_one_social_media": "Please enter at least one social media",
|
|
287
|
-
"homemaker_reg": "Home maker"
|
|
339
|
+
"website": "www.yourbusiness.com",
|
|
340
|
+
"yes": "Yes"
|
|
288
341
|
}
|
|
@@ -40,7 +40,7 @@ var Auth = memo(function (_a) {
|
|
|
40
40
|
var dispatch = useAppDispatch();
|
|
41
41
|
var _b = useAppSelector(settingsSelector), data = _b.data, error = _b.error, settingLoading = _b.loading;
|
|
42
42
|
var _c = useAppSelector(authSelector), authError = _c.error, customLoading = _c.customLoading;
|
|
43
|
-
useAppConfig(__assign({ navigation: AUTH_SCREENS_NAVIGATION, disableCountries: true }, props));
|
|
43
|
+
useAppConfig(__assign({ navigation: AUTH_SCREENS_NAVIGATION, disableCountries: true, disableLocale: true }, props));
|
|
44
44
|
useErrorListener(authError || error);
|
|
45
45
|
useStepStartedListener();
|
|
46
46
|
var activeScreen = data.activeScreen, isTapOrigin = data.isTapOrigin, open = data.open;
|
|
@@ -10,7 +10,7 @@ var __assign = (this && this.__assign) || function () {
|
|
|
10
10
|
return __assign.apply(this, arguments);
|
|
11
11
|
};
|
|
12
12
|
import { jsxs as _jsxs, jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
-
import { alpha, styled } from '@mui/material/styles';
|
|
13
|
+
import { alpha, styled, useTheme } from '@mui/material/styles';
|
|
14
14
|
import Collapse from '../../../components/Collapse';
|
|
15
15
|
import Text from '../../../components/Text';
|
|
16
16
|
import Box from '@mui/material/Box';
|
|
@@ -52,11 +52,12 @@ var YesTextStyled = styled(Text)(function (_a) {
|
|
|
52
52
|
var NoTextStyled = styled(Text)(function (_a) {
|
|
53
53
|
var theme = _a.theme;
|
|
54
54
|
return ({
|
|
55
|
-
color: theme.palette.
|
|
55
|
+
color: theme.palette.text.secondary,
|
|
56
56
|
cursor: 'pointer'
|
|
57
57
|
});
|
|
58
58
|
});
|
|
59
59
|
export default function CloseDialog(_a) {
|
|
60
60
|
var message = _a.message, confirmTitle = _a.confirmTitle, closeTitle = _a.closeTitle, open = _a.open, onConfirm = _a.onConfirm, onCancel = _a.onCancel;
|
|
61
|
-
|
|
61
|
+
var theme = useTheme();
|
|
62
|
+
return (_jsxs(Collapse, __assign({ in: open }, { children: [_jsx(Box, __assign({ sx: { direction: theme.direction } }, { children: _jsxs(ConfirmCloseBox, { children: [_jsxs(Text, { children: [" ", message] }), _jsx(YesTextStyled, __assign({ onClick: onConfirm }, { children: confirmTitle })), _jsx(NoTextStyled, __assign({ onClick: onCancel }, { children: closeTitle }))] }) })), _jsx(DisableBoxStyled, { id: 'disable-container' })] })));
|
|
62
63
|
}
|
|
@@ -2,6 +2,7 @@ import { LibConfig, ScreenStepNavigation } from '../@types';
|
|
|
2
2
|
interface AppConfigProps extends LibConfig {
|
|
3
3
|
navigation: ScreenStepNavigation[];
|
|
4
4
|
disableCountries?: boolean;
|
|
5
|
+
disableLocale?: boolean;
|
|
5
6
|
}
|
|
6
|
-
export declare const useAppConfig: ({ appInfo, navigation, publicKey, disableCountries, ...rest }: AppConfigProps) => void;
|
|
7
|
+
export declare const useAppConfig: ({ appInfo, navigation, publicKey, disableCountries, disableLocale, ...rest }: AppConfigProps) => void;
|
|
7
8
|
export {};
|
|
@@ -27,7 +27,7 @@ import { axiosInstance } from '../api';
|
|
|
27
27
|
import { isTapDomain, removeRequestHeaders } from '../utils';
|
|
28
28
|
import { ENDPOINT_PATHS } from '../constants';
|
|
29
29
|
export var useAppConfig = function (_a) {
|
|
30
|
-
var appInfo = _a.appInfo, navigation = _a.navigation, publicKey = _a.publicKey, disableCountries = _a.disableCountries, rest = __rest(_a, ["appInfo", "navigation", "publicKey", "disableCountries"]);
|
|
30
|
+
var appInfo = _a.appInfo, navigation = _a.navigation, publicKey = _a.publicKey, disableCountries = _a.disableCountries, disableLocale = _a.disableLocale, rest = __rest(_a, ["appInfo", "navigation", "publicKey", "disableCountries", "disableLocale"]);
|
|
31
31
|
var dispatch = useAppDispatch();
|
|
32
32
|
var setBaseUrl = function () {
|
|
33
33
|
var isProd = publicKey.includes('pk_live');
|
|
@@ -56,6 +56,6 @@ export var useAppConfig = function (_a) {
|
|
|
56
56
|
setBaseUrl();
|
|
57
57
|
setAppConfig();
|
|
58
58
|
dispatch(handleLanguage(rest.language));
|
|
59
|
-
dispatch(fetchAppSettingsSync({ disableCountries: disableCountries }));
|
|
59
|
+
dispatch(fetchAppSettingsSync({ disableCountries: disableCountries, disableLocale: disableLocale }));
|
|
60
60
|
}, []);
|
|
61
61
|
};
|
|
@@ -9,10 +9,4 @@ export var useErrorListener = function (error) {
|
|
|
9
9
|
(_b = (_a = settings.data.appConfig) === null || _a === void 0 ? void 0 : _a.onError) === null || _b === void 0 ? void 0 : _b.call(_a, error);
|
|
10
10
|
}
|
|
11
11
|
}, [error]);
|
|
12
|
-
useEffect(function () {
|
|
13
|
-
var _a, _b;
|
|
14
|
-
if (!settings.error && !settings.loading) {
|
|
15
|
-
(_b = (_a = settings.data.appConfig).onReady) === null || _b === void 0 ? void 0 : _b.call(_a);
|
|
16
|
-
}
|
|
17
|
-
}, [settings.error, settings.loading]);
|
|
18
12
|
};
|