diff --git a/intaleq_diff.patch b/intaleq_diff.patch
new file mode 100644
index 0000000..9fc745e
--- /dev/null
+++ b/intaleq_diff.patch
@@ -0,0 +1,303 @@
+diff --git a/backend/auth/otp/verify.php b/backend/auth/otp/verify.php
+index a6d5b82..f11625f 100644
+--- a/backend/auth/otp/verify.php
++++ b/backend/auth/otp/verify.php
+@@ -177,8 +177,10 @@ try {
+ $isRegistered = false;
+ $driverData = null;
+
+- $chkStmt = $con->prepare("SELECT id, first_name, last_name, email, phone FROM driver WHERE phone = ?");
+- $chkStmt->execute([$encryptionHelper->encryptData($phone_number)]);
++ global $blindIndex;
++ $phoneBidx = $blindIndex ? $blindIndex->index('driver.phone', $phone_number) : null;
++ $chkStmt = $con->prepare("SELECT id, first_name, last_name, email, phone FROM driver WHERE phone = ? OR (? IS NOT NULL AND phone_bidx = ?)");
++ $chkStmt->execute([$encryptionHelper->encryptData($phone_number), $phoneBidx, $phoneBidx]);
+ $driver = $chkStmt->fetch(PDO::FETCH_ASSOC);
+
+ // Generate driverID for unregistered users (hash of phone)
+@@ -268,13 +270,14 @@ try {
+ $stmtUpd->bindParam(':id', $matchedRowId, PDO::PARAM_INT);
+ $stmtUpd->execute();
+
+- // Check registration status
+ $isRegistered = false;
+ $passengerData = null;
+ $passengerID = '';
+
+- $chkStmt = $con->prepare("SELECT id, first_name, last_name, email, phone FROM passengers WHERE phone = ?");
+- $chkStmt->execute([$encryptionHelper->encryptData($phone_number)]);
++ global $blindIndex;
++ $phoneBidx = $blindIndex ? $blindIndex->index('passengers.phone', $phone_number) : null;
++ $chkStmt = $con->prepare("SELECT id, first_name, last_name, email, phone FROM passengers WHERE phone = ? OR (? IS NOT NULL AND phone_bidx = ?)");
++ $chkStmt->execute([$encryptionHelper->encryptData($phone_number), $phoneBidx, $phoneBidx]);
+ $passenger = $chkStmt->fetch(PDO::FETCH_ASSOC);
+
+ if ($passenger) {
+diff --git a/backend/auth/passenger/register.php b/backend/auth/passenger/register.php
+index fb0f7de..100674a 100644
+--- a/backend/auth/passenger/register.php
++++ b/backend/auth/passenger/register.php
+@@ -63,7 +63,7 @@ try {
+ $firstName_encrypted = $encryptionHelper->encryptData($firstName);
+ $lastName_encrypted = $encryptionHelper->encryptData($lastName);
+ $email_encrypted = $encryptionHelper->encryptData($email);
+- $uniqueId = substr(md5($phoneNumber), 0, 20);
++ $uniqueId = substr(md5($phoneNumber), 0, 16);
+ $password_hashed = password_hash($email . $uniqueId, PASSWORD_DEFAULT);
+ $unknown_encrypted = $encryptionHelper->encryptData("unknown yet");
+
+@@ -77,12 +77,13 @@ try {
+ // (مهلة أوسع من صلاحية الرمز نفسه [5 دقائق] لإعطاء وقت كافٍ لإكمال
+ // نموذج التسجيل بعد التحقق مباشرة).
+ $step = 4.5;
++ $otpSearchKey = otpPhoneKey($phoneNumber);
+ $verifyCheckStmt = $con->prepare(
+ "SELECT id FROM phone_verification_passenger
+ WHERE phone_number = ? AND verified = 1 AND created_at > DATE_SUB(NOW(), INTERVAL 30 MINUTE)
+ LIMIT 1"
+ );
+- $verifyCheckStmt->execute([$phoneNumber_encrypted]);
++ $verifyCheckStmt->execute([$otpSearchKey]);
+ if ($verifyCheckStmt->rowCount() === 0) {
+ error_log("$logTag Step 4.5 Error: Phone number not verified via OTP.");
+ jsonError("Phone number must be verified before registration.");
+diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml
+index cbb9dd7..c654706 100644
+--- a/docker/docker-compose.yml
++++ b/docker/docker-compose.yml
+@@ -30,8 +30,8 @@ services:
+ # التقسيم لأبعد من هذا لا يضيف أداءً — نفس الصورة، نفس النواة.
+ php:
+ build:
+- context: ./php
+- dockerfile: Dockerfile.fpm
++ context: ..
++ dockerfile: docker/php/Dockerfile.fpm
+ args:
+ PHP_VERSION: "${PHP_VERSION:-8.2}"
+ volumes:
+@@ -67,7 +67,9 @@ services:
+ # TLS على هذا المنفذ (https://…:2020) فتتجمّد المصافحة وينتهي بـ timeout.
+ # nginx على المضيف يستمع على 2020 بالشهادة ويمرّر إلى 12020 هنا.
+ # انظر nginx/siro-sockets-tls.conf
+- - "127.0.0.1:12020:2020"
++ # المنفذ قابل للضبط: على سيرفر تعمل عليه أكثر من نسخة (siro/tripz/intaleq)
++ # يتصادم 12020 الثابت فلا تبدأ الحاوية أصلاً. اضبط DRIVER_SOCKET_PORT في .env.
++ - "127.0.0.1:${DRIVER_SOCKET_PORT:-12020}:2020"
+ # و2021 داخلي فقط: الباك إند يناديه عبر http://socket_driver:2021
+ depends_on:
+ - redis
+@@ -90,7 +92,7 @@ services:
+ ports:
+ # نفس منطق سوكيت السائقين: nginx على المضيف يستمع على 3030 بالشهادة
+ # ويمرّر إلى 13030 هنا. و3031 داخلي فقط (http://socket_passenger:3031).
+- - "127.0.0.1:13030:3030"
++ - "127.0.0.1:${PASSENGER_SOCKET_PORT:-13030}:3030"
+ depends_on:
+ - redis
+ mem_limit: 512m
+diff --git a/docker/php/Dockerfile.fpm b/docker/php/Dockerfile.fpm
+index 46c4e5c..afc2698 100644
+--- a/docker/php/Dockerfile.fpm
++++ b/docker/php/Dockerfile.fpm
+@@ -6,4 +6,9 @@ ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/do
+ RUN chmod +x /usr/local/bin/install-php-extensions && \
+ install-php-extensions mysqli pdo_mysql redis opcache gd zip @composer
+
++# تثبيت مكتبات سيرفر المدفوعات (firebase/php-jwt وغيره)
++# هذا يخبز vendor/ داخل الصورة مباشرة حتى لا يعتمد على مجلد خارجي
++COPY payment_server/v2/composer.json payment_server/v2/composer.lock /var/www/v2/
++RUN cd /var/www/v2 && composer install --no-dev --no-interaction --optimize-autoloader
++
+ WORKDIR /var/www
+diff --git a/payment_server/v2/main/connect.php b/payment_server/v2/main/connect.php
+index f30bd57..b5874c9 100755
+--- a/payment_server/v2/main/connect.php
++++ b/payment_server/v2/main/connect.php
+@@ -1,54 +1,61 @@
+ false,
+- PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
++ PDO::ATTR_EMULATE_PREPARES => false,
++ PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
+ PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
+- PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES UTF8"
++ PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES UTF8",
+ ];
+- $user = getenv('DB_PAYMENT_USER') ?: (getenv('USER') ?: 'root');
+- $pass = getenv('DB_PAYMENT_PASS') ?: (getenv('PASS') ?: getenv('MYSQL_ROOT_PASSWORD'));
+ $con = new PDO($dsn, $user, $pass, $options);
+-
+-// echo $con;
+- // --- JWT Authentication ---
+- include "functions.php"; // Include the functions file
+-
+- $decodedToken = authenticateJWT(); // Call the authentication function
+
++ // 5. JWT Authentication
++ include __DIR__ . "/functions.php";
++ $decodedToken = authenticateJWT();
+
+ } catch (PDOException $e) {
+- error_log($e->getMessage());
+- http_response_code(500); // Internal Server Error
++ error_log('[WALLET] DB Error: ' . $e->getMessage());
++ http_response_code(500);
+ echo json_encode(['error' => 'A database error occurred.']);
+ exit;
+ }
+diff --git a/payment_server/v2/main/ride/cliq/create_cliq_invoice.php b/payment_server/v2/main/ride/cliq/create_cliq_invoice.php
+index 6365bee..b96aae4 100755
+--- a/payment_server/v2/main/ride/cliq/create_cliq_invoice.php
++++ b/payment_server/v2/main/ride/cliq/create_cliq_invoice.php
+@@ -7,7 +7,7 @@ try {
+ $userId = filterRequest("user_id");
+ $userType = filterRequest("user_type");
+ $amount = filterRequest("amount");
+- $cliqPhone = filterRequest("cliq_phone");
++ $cliqPhone = filterRequest("cliq_phone") ?: filterRequest("click_phone"); // التطبيق يرسل click_phone
+ $phone = filterRequest("phone");
+
+ if (empty($userId) || empty($userType) || !is_numeric($amount) || $amount <= 0 || empty($cliqPhone)) {
+@@ -37,14 +37,12 @@ try {
+ $upd = $con->prepare("
+ UPDATE cliq_invoices
+ SET amount = :amount,
+- phone = :phone,
+ cliq_phone = :cliq_phone,
+ updated_at = NOW()
+ WHERE id = :id
+ ");
+ $upd->execute([
+ ':amount' => $amount,
+- ':phone' => $phone ?: null,
+ ':cliq_phone' => $cliqPhone,
+ ':id' => $existing['id'],
+ ]);
+@@ -62,15 +60,14 @@ try {
+
+ $ins = $con->prepare("
+ INSERT INTO cliq_invoices
+- (invoice_number, user_id, user_type, phone, amount, cliq_phone, status, created_at, updated_at)
++ (invoice_number, user_id, user_type, amount, cliq_phone, status, created_at, updated_at)
+ VALUES
+- (:invoice_number, :user_id, :user_type, :phone, :amount, :cliq_phone, 'pending', NOW(), NOW())
++ (:invoice_number, :user_id, :user_type, :amount, :cliq_phone, 'pending', NOW(), NOW())
+ ");
+ $ins->execute([
+ ':invoice_number' => $invoiceNumber,
+ ':user_id' => $userId,
+ ':user_type' => $userType,
+- ':phone' => $phone ?: null,
+ ':amount' => $amount,
+ ':cliq_phone' => $cliqPhone
+ ]);
+diff --git a/payment_server/v2/main/ride/passengerWallet/getWalletByPassenger.php b/payment_server/v2/main/ride/passengerWallet/getWalletByPassenger.php
+index 0a256ea..e81caf1 100755
+--- a/payment_server/v2/main/ride/passengerWallet/getWalletByPassenger.php
++++ b/payment_server/v2/main/ride/passengerWallet/getWalletByPassenger.php
+@@ -3,13 +3,13 @@ include "../../connect.php";
+ $passenger_id = filterRequest("passenger_id");
+
+ $sql = "SELECT
+- COALESCE(dummy.passenger_id, '$passenger_id') AS passenger_id,
+- COALESCE(SUM(pw.balance), 0) AS total, -- Adjust column to represent payments
++ COALESCE(dummy.passenger_id, :passenger_id) AS passenger_id,
++ COALESCE(SUM(pw.balance), 0) AS total,
+ COALESCE(p.first_name, '') AS first_name,
+ COALESCE(p.last_name, '') AS last_name,
+ COALESCE(p.phone, '') AS phone
+ FROM
+- (SELECT '$passenger_id' AS passenger_id) AS dummy
++ (SELECT :passenger_id2 AS passenger_id) AS dummy
+ LEFT JOIN `passengerWallet` pw ON pw.passenger_id = dummy.passenger_id
+ LEFT JOIN passengers p ON p.id = dummy.passenger_id
+ GROUP BY
+@@ -17,17 +17,13 @@ GROUP BY
+ LIMIT 0, 25;
+ ";
+ $stmt = $con->prepare($sql);
+-$stmt->execute();
++$stmt->execute(['passenger_id' => $passenger_id, 'passenger_id2' => $passenger_id]);
+
+-if ($stmt->rowCount() > 0) {
+- // Fetch the record
+- $row = $stmt->fetchAll(PDO::FETCH_ASSOC);
+-
+- printSuccess( $row);
+-
+-}
+- else{
+- // Print a failure message
+- printFailure($message = "No wallet record found");
++// LEFT JOIN يُرجع دائماً صفاً واحداً على الأقل (balance=0 إذا لم توجد محفظة)
++$row = $stmt->fetchAll(PDO::FETCH_ASSOC);
++if (!empty($row)) {
++ printSuccess($row);
++} else {
++ printFailure("No wallet record found");
+ }
+ ?>
+\ No newline at end of file
diff --git a/intaleq_driver/android/app/src/main/res/values/strings.xml b/intaleq_driver/android/app/src/main/res/values/strings.xml
index ef164d3..f061b53 100755
--- a/intaleq_driver/android/app/src/main/res/values/strings.xml
+++ b/intaleq_driver/android/app/src/main/res/values/strings.xml
@@ -6,7 +6,7 @@
e
Security Warning
AIzaSyB04YNW3LbvmQ5lX1t2bOwEU18-
- Siro Driver
+ كابتن انطلق
A security issue or modification has been detected on
this device. The app cannot run on this device.
diff --git a/intaleq_driver/lib/controller/local/ar_eg.dart b/intaleq_driver/lib/controller/local/ar_eg.dart
index 5a86b44..0d8525d 100644
--- a/intaleq_driver/lib/controller/local/ar_eg.dart
+++ b/intaleq_driver/lib/controller/local/ar_eg.dart
@@ -34,8 +34,8 @@ final Map ar_eg = {
"\${\"You must leave at least": "\${\"You must leave at least",
"\${\"amount": "\${\"amount",
"\${\"transaction_id": "\${\"transaction_id",
- "\${'*Siro APP CODE*": "\${'*Intaleq APP CODE*",
- "\${'*Siro DRIVER CODE*": "\${'*Intaleq DRIVER CODE*",
+ "\${'*Intaleq APP CODE*": "\${'*Intaleq APP CODE*",
+ "\${'*Intaleq DRIVER CODE*": "\${'*Intaleq DRIVER CODE*",
"\${'Address": "\${'Address",
"\${'Address: ": "\${'Address: ",
"\${'Age": "\${'Age",
@@ -133,8 +133,8 @@ final Map ar_eg = {
"([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'نص",
"([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'نص",
")[1]}": ")[1]}",
- "*Siro APP CODE*": "*كود تطبيق انطلق*",
- "*Siro DRIVER CODE*": "*كود سايق انطلق*",
+ "*Intaleq APP CODE*": "*كود تطبيق انطلق*",
+ "*Intaleq DRIVER CODE*": "*كود سايق انطلق*",
"--": "--",
"-1% commission": "خصم 1% من العمولة",
"-2% commission": "خصم 2% من العمولة",
@@ -556,7 +556,7 @@ final Map ar_eg = {
"Day Off": "يوم إجازة",
"Day Streak": "سلسلة الأيام",
"Days": "الأيام",
- "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Siro app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nSiro ,": "عزيزي/عزيزتي،\\n🚀 بدأيت رحلة مثيرة دلوقتي، وعايز أشاركك تفاصيل رحلتي وموقعي الحالي معاك في الوقت الحقيقي! من فضلك حمّل تطبيق انطلق. هيسمح لك تشوف تفاصيل رحلتي وأحدث موقعي.\\n👉 رابط التحميل:\\nأندرويد [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\nآيفون [https://getapp.cc/app/6458734951]\\nبانتظار أني أبقي قريب منك أثناء مغامرتي!\\nانطلق،",
+ "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,": "عزيزي/عزيزتي،\\n🚀 بدأيت رحلة مثيرة دلوقتي، وعايز أشاركك تفاصيل رحلتي وموقعي الحالي معاك في الوقت الحقيقي! من فضلك حمّل تطبيق انطلق. هيسمح لك تشوف تفاصيل رحلتي وأحدث موقعي.\\n👉 رابط التحميل:\\nأندرويد [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\nآيفون [https://getapp.cc/app/6458734951]\\nبانتظار أني أبقي قريب منك أثناء مغامرتي!\\nانطلق،",
"Debit": "خصم",
"Debit Card": "كارت خصم",
"Dec 15 - Dec 21, 2024": "15 ديسمبر - 21 ديسمبر 2024",
@@ -596,8 +596,8 @@ final Map ar_eg = {
"Don't have an account? Register": "ممعكش حساب؟ سجّل دلوقتي",
"Done": "تم",
"Don’t forget your personal belongings.": "متتنسيش حاجاتك الشخصية.",
- "Download the Siro Driver app now and earn rewards!": "حمّل تطبيق سايق انطلق دلوقتي واكسب مكافآت!",
- "Download the Siro app now and enjoy your ride!": "حمّل تطبيق انطلق دلوقتي واستمتع برحلتك!",
+ "Download the Intaleq Driver app now and earn rewards!": "حمّل تطبيق سايق انطلق دلوقتي واكسب مكافآت!",
+ "Download the Intaleq app now and enjoy your ride!": "حمّل تطبيق انطلق دلوقتي واستمتع برحلتك!",
"Download the app now:": "حمّل التطبيق دلوقتي:",
"Drawing route on map...": "بيتم رسم الطريق على الخريطة...",
"Driver": "السايق",
@@ -719,7 +719,7 @@ final Map ar_eg = {
"Evening": "المساء",
"Excellent": "ممتاز",
"Exclusive offers and discounts always with the Sefer app": "عروض وخصومات حصرية دايماً مع تطبيق سفر",
- "Exclusive offers and discounts always with the Siro app": "عروض وخصومات حصرية دايماً مع تطبيق انطلق",
+ "Exclusive offers and discounts always with the Intaleq app": "عروض وخصومات حصرية دايماً مع تطبيق انطلق",
"Exit": "خروج",
"Exit Ride?": "تخرج من الرحلة؟",
"Expiration Date": "تاريخ الانتهاء",
@@ -766,8 +766,8 @@ final Map ar_eg = {
"Flag-down fee": "رسوم بداية الرحلة",
"For Drivers": "للسايقين",
"For Egypt": "لمصر",
- "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "لرحلات انطلق والتوصيل، يتم حساب السعر ديناميكيًا. لرحلات كومفورت، يعتمد السعر على الوقت والمسافة",
- "For Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "لرحلات انطلق والسكوتر، يتم حساب السعر ديناميكيًا. لرحلات كومفورت، يعتمد السعر على الوقت والمسافة",
+ "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "لرحلات انطلق والتوصيل، يتم حساب السعر ديناميكيًا. لرحلات كومفورت، يعتمد السعر على الوقت والمسافة",
+ "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "لرحلات انطلق والسكوتر، يتم حساب السعر ديناميكيًا. لرحلات كومفورت، يعتمد السعر على الوقت والمسافة",
"Free Call": "مكالمة مجانية",
"Frequently Asked Questions": "الأسئلة الشائعة",
"Frequently Questions": "أسئلة متكررة",
@@ -789,7 +789,7 @@ final Map ar_eg = {
"Get": "احصل على",
"Get Details of Trip": "احصل على تفاصيل الرحلة",
"Get Direction": "احصل على الاتجاهات",
- "Get a discount on your first Siro ride!": "احصل على خصم على رحلتك الأولى مع انطلق!",
+ "Get a discount on your first Intaleq ride!": "احصل على خصم على رحلتك الأولى مع انطلق!",
"Get features for your country": "احصل على الميزات الخاصة ببلدك",
"Get it Now!": "احصل عليه دلوقتي!",
"Get to your destination quickly and easily.": "وصل لوجهتك بسرعة وسهولة.",
@@ -855,7 +855,7 @@ final Map ar_eg = {
"How much do you want to earn today?": "عايز تكسب كام النهاردة؟",
"How much longer will you be?": "هتتأخر كام؟",
"How to use App": "إزاي تستخدم التطبيق",
- "How to use Siro": "إزاي تستخدم انطلق",
+ "How to use Intaleq": "إزاي تستخدم انطلق",
"How was the passenger?": "إزاي كان الراكب؟",
"How was your trip with": "إزاي كانت رحلتك مع",
"How would you like to receive your reward?": "إزاي عايز تستلم مكافأتك؟",
@@ -939,7 +939,7 @@ final Map ar_eg = {
"IssueDate": "تاريخ الإصدار",
"JOD": "دينار أردني",
"Join": "انضم",
- "Join Siro as a driver using my referral code!": "انضم لانطلق كسايق باستخدام كود الإحالة بتاعي!",
+ "Join Intaleq as a driver using my referral code!": "انضم لانطلق كسايق باستخدام كود الإحالة بتاعي!",
"Jordan": "الأردن",
"Just now": "دلوقتي",
"KM": "كم",
@@ -1161,7 +1161,7 @@ final Map ar_eg = {
"Order Applied": "تم تطبيق الطلب",
"Order Cancelled": "تم إلغاء الطلب",
"Order Cancelled by Passenger": "تم إلغاء الطلب من الراكب",
- "Order Details Siro": "تفاصيل طلب انطلق",
+ "Order Details Intaleq": "تفاصيل طلب انطلق",
"Order History": "سجل الطلبات",
"Order ID": "رقم الطلب",
"Order Request Page": "صفحة طلب الرحلة",
@@ -1212,7 +1212,7 @@ final Map ar_eg = {
"Pay using MTN Cash wallet": "الدفع باستخدام محفظة MTN Cash",
"Pay using Sham Cash wallet": "الدفع باستخدام محفظة Sham Cash",
"Pay using Syriatel mobile wallet": "الدفع باستخدام محفظة سيريتل للموبايل",
- "Pay via CliQ (Alias: siroapp)": "الدفع عبر CliQ (الاسم المستعار: intaleqapp)",
+ "Pay via CliQ (Alias: intaleqapp)": "الدفع عبر CliQ (الاسم المستعار: intaleqapp)",
"Pay with Credit Card": "الدفع بكارت ائتمان",
"Pay with Debit Card": "الدفع بكارت خصم",
"Pay with Wallet": "الدفع عبر المحفظة",
@@ -1304,7 +1304,7 @@ final Map ar_eg = {
"Please help! Contact me as soon as possible.": "ساعدني من فضلك! اتصل بي في أسرع وقت ممكن.",
"Please make sure not to leave any personal belongings in the car.": "من فضلك تأكد من إنك متسيبش أي حاجات شخصية في العربية.",
"Please make sure to read the license carefully.": "من فضلك تأكد من إنك قريت الرخصة بعناية.",
- "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Siro app": "من فضلك تأكد إن معاك كل حاجاتك الشخصية وإن أي أجرة متبقية، لو موجودة، اتضافت لمحفظتك قبل ما تمشي. شكرًا لاختيارك تطبيق انطلق",
+ "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app": "من فضلك تأكد إن معاك كل حاجاتك الشخصية وإن أي أجرة متبقية، لو موجودة، اتضافت لمحفظتك قبل ما تمشي. شكرًا لاختيارك تطبيق انطلق",
"Please paste the transfer message": "من فضلك الصق رسالة التحويل",
"Please provide details about any long-term diseases.": "من فضلك قدّم تفاصيل عن أي أمراض طويلة الأمد.",
"Please put your licence in these border": "من فضلك حط رخصتك في الإطار ده",
@@ -1314,7 +1314,7 @@ final Map ar_eg = {
"Please select a ride before submitting.": "من فضلك اختر رحلة قبل ما ترسل.",
"Please stay on the picked point.": "من فضلك افضل في نقطة الالتقاط المحددة.",
"Please tell us why you want to cancel.": "من فضلك قولنا ليه عايز تلغي.",
- "Please transfer the amount to alias: siroapp": "من فضلك حول المبلغ للاسم المستعار: intaleqapp",
+ "Please transfer the amount to alias: intaleqapp": "من فضلك حول المبلغ للاسم المستعار: intaleqapp",
"Please try again in a few moments": "من فضلك جرب تاني بعد شوية لحظات",
"Please upload a clear photo of your face to be identified by passengers.": "من فضلك ارفع صورة واضحة لوجهك عشان الركاب يتعرفوا عليك.",
"Please upload all 4 required documents.": "من فضلك ارفع كل المستندات المطلوبة الأربعة.",
@@ -1496,7 +1496,7 @@ final Map ar_eg = {
"Send Email": "إرسال بريد إلكتروني",
"Send Invite": "إرسال دعوة",
"Send Message": "إرسال رسالة",
- "Send Siro app to him": "أرسل تطبيق انطلق له",
+ "Send Intaleq app to him": "أرسل تطبيق انطلق له",
"Send Verfication Code": "إرسال كود التحقق",
"Send Verification Code": "إرسال كود التحقق",
"Send WhatsApp Message": "إرسال رسالة واتساب",
@@ -1550,34 +1550,34 @@ final Map ar_eg = {
"Sign in with Google for easier email and name entry": "سجّل دخول عبر جوجل لإدخال البريد الإلكتروني والاسم بسهولة",
"Sign in with a provider for easy access": "سجّل دخول باستخدام مزوّد للوصول السهل",
"Silver badge": "شارة فضية",
- "Siro": "انطلق",
- "Siro Balance": "رصيد انطلق",
- "Siro DRIVER CODE": "كود سايق انطلق",
- "Siro Driver": "سايق انطلق",
- "Siro LLC": "شركة انطلق ذ.م.م",
- "Siro LLC\\n\${'Syria": "Intaleq LLC\\n\${'Syria",
- "Siro LLC\\n\\\${'Syria": "شركة انطلق ذ.م.م\\n\\\${'سوريا",
- "Siro Order": "طلب انطلق",
- "Siro Over": "انطلق انتهى",
- "Siro Reminder": "تذكير انطلق",
- "Siro Wallet": "محفظة انطلق",
- "Siro Wallet Features:": "ميزات محفظة انطلق:",
- "Siro is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:": "انطلق هو تطبيق لمشاركة الرحلات صُمم مع مراعاة سلامتك وبأسعار معقولة. بنوصلك بسايقين موثوقين في منطقتك، مما يضمن لك تجربة سفر مريحة وخالية من التوتر. إليك بعض الميزات الأساسية اللي تميزنا:",
- "Siro is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:": "انطلق هو تطبيق لمشاركة الرحلات صُمم مع مراعاة سلامتك وتكلفتك. بنوصلك بسايقين موثوقين في منطقتك، مما يضمن لك تجربة سفر مريحة وخالية من التوتر.\\n\\nإليك بعض الميزات الأساسية اللي تميزنا:",
- "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "انطلق ملتزم بالسلامة، ويتم فحص كل كباتننا بعناية والتحقق من خلفياتهم.",
- "Siro is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "انطلق هو أول تطبيق لمشاركة الرحلات في سوريا، صُمم يوصلك بأقرب السايقين لتجربة سفر سريعة ومريحة.",
- "Siro is the ride-hailing app that is safe, reliable, and accessible.": "انطلق هو تطبيق طلب الرحلات الآمن والموثوق والمتاح للكل.",
- "Siro is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Siro, you enjoy quality, safety, and peace of mind—every time you ride.": "انطلق هو تطبيق مشاركة الرحلات الآمن والأكثر موثوقية المصمم خصيصًا للركاب في سوريا. بنوفر تجربة ركوب مريحة ومحترمة وبأسعار معقولة مع ميزات بتعطي أولوية لسلامتك وراحتك. كباتننا الموثوقين بيتم التحقق منهم وتأمينهم، وبيدعمهم صيانة دورية للعربيات يقوم بيها أفضل المهندسين. كمان بنقدم خدمات دعم على الطريق عشان نضمن إن كل رحلة تكون سلسة وخالية من الهموم. مع انطلق، بتستمتع بالجودة والسلامة وراحة البال—في كل مرة تركب فيها.",
- "Siro is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.": "انطلق هو تطبيق مشاركة الرحلات الآمن اللي يقدم العديد من الميزات لكل من الكباتن والركاب. بنقدم أقل معدل عمولة وهو 8% بس، مما يضمن لك الحصول على أفضل قيمة لرحلاتك. يتضمن تطبيقنا تأمين لأفضل الكباتن، وصيانة دورية للعربيات مع أفضل المهندسين، وخدمات على الطريق لضمان تجربة محترمة وعالية الجودة لكل المستخدمين.",
- "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "يقدم انطلق مجموعة متنوعة من الخيارات بما في ذلك الاقتصادي، والراحة، والفخامة لتتناسب مع احتياجاتك وميزانيتك.",
- "Siro offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.": "يقدم انطلق مجموعة متنوعة من خيارات العربيات لتتناسب مع احتياجاتك، بما في ذلك الاقتصادي، والراحة، والفخامة. اختر الخيار الأنسب لميزانيتك وعدد الركاب.",
- "Siro offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "يقدم انطلق طرق دفع متعددة لراحتك. اختر بين الدفع كاش أو الدفع بكارت الائتمان/الخصم أثناء تأكيد الرحلة.",
- "Siro offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.": "يقدم انطلق ميزات أمان متنوعة تشمل التحقق من السايق، وتتبع الرحلة داخل التطبيق، وخيارات جهات اتصال الطوارئ، وإمكانية مشاركة حالة رحلتك مع جهات اتصال موثوقة.",
- "Siro prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "انطلق بيعطي أولوية لسلامتك. بنقدم ميزات زي التحقق من السايق، وتتبع الرحلة داخل التطبيق، وخيارات جهات اتصال الطوارئ.",
- "Siro provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "يوفر انطلق وظيفة الدردشة داخل التطبيق عشان تتواصل مع سايقك أو راكبك أثناء رحلتك.",
- "Siro's Response": "رد انطلق",
- "Siro123": "انطلق123",
- "Siro: For fixed salary and endpoints.": "انطلق: للراتب الثابت ونقاط النهاية.",
+ "Intaleq": "انطلق",
+ "Intaleq Balance": "رصيد انطلق",
+ "Intaleq DRIVER CODE": "كود سايق انطلق",
+ "Intaleq Driver": "سايق انطلق",
+ "Intaleq LLC": "شركة انطلق ذ.م.م",
+ "Intaleq LLC\\n\${'Syria": "Intaleq LLC\\n\${'Syria",
+ "Intaleq LLC\\n\\\${'Syria": "شركة انطلق ذ.م.م\\n\\\${'سوريا",
+ "Intaleq Order": "طلب انطلق",
+ "Intaleq Over": "انطلق انتهى",
+ "Intaleq Reminder": "تذكير انطلق",
+ "Intaleq Wallet": "محفظة انطلق",
+ "Intaleq Wallet Features:": "ميزات محفظة انطلق:",
+ "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:": "انطلق هو تطبيق لمشاركة الرحلات صُمم مع مراعاة سلامتك وبأسعار معقولة. بنوصلك بسايقين موثوقين في منطقتك، مما يضمن لك تجربة سفر مريحة وخالية من التوتر. إليك بعض الميزات الأساسية اللي تميزنا:",
+ "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:": "انطلق هو تطبيق لمشاركة الرحلات صُمم مع مراعاة سلامتك وتكلفتك. بنوصلك بسايقين موثوقين في منطقتك، مما يضمن لك تجربة سفر مريحة وخالية من التوتر.\\n\\nإليك بعض الميزات الأساسية اللي تميزنا:",
+ "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "انطلق ملتزم بالسلامة، ويتم فحص كل كباتننا بعناية والتحقق من خلفياتهم.",
+ "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "انطلق هو أول تطبيق لمشاركة الرحلات في سوريا، صُمم يوصلك بأقرب السايقين لتجربة سفر سريعة ومريحة.",
+ "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "انطلق هو تطبيق طلب الرحلات الآمن والموثوق والمتاح للكل.",
+ "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.": "انطلق هو تطبيق مشاركة الرحلات الآمن والأكثر موثوقية المصمم خصيصًا للركاب في سوريا. بنوفر تجربة ركوب مريحة ومحترمة وبأسعار معقولة مع ميزات بتعطي أولوية لسلامتك وراحتك. كباتننا الموثوقين بيتم التحقق منهم وتأمينهم، وبيدعمهم صيانة دورية للعربيات يقوم بيها أفضل المهندسين. كمان بنقدم خدمات دعم على الطريق عشان نضمن إن كل رحلة تكون سلسة وخالية من الهموم. مع انطلق، بتستمتع بالجودة والسلامة وراحة البال—في كل مرة تركب فيها.",
+ "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.": "انطلق هو تطبيق مشاركة الرحلات الآمن اللي يقدم العديد من الميزات لكل من الكباتن والركاب. بنقدم أقل معدل عمولة وهو 8% بس، مما يضمن لك الحصول على أفضل قيمة لرحلاتك. يتضمن تطبيقنا تأمين لأفضل الكباتن، وصيانة دورية للعربيات مع أفضل المهندسين، وخدمات على الطريق لضمان تجربة محترمة وعالية الجودة لكل المستخدمين.",
+ "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "يقدم انطلق مجموعة متنوعة من الخيارات بما في ذلك الاقتصادي، والراحة، والفخامة لتتناسب مع احتياجاتك وميزانيتك.",
+ "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.": "يقدم انطلق مجموعة متنوعة من خيارات العربيات لتتناسب مع احتياجاتك، بما في ذلك الاقتصادي، والراحة، والفخامة. اختر الخيار الأنسب لميزانيتك وعدد الركاب.",
+ "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "يقدم انطلق طرق دفع متعددة لراحتك. اختر بين الدفع كاش أو الدفع بكارت الائتمان/الخصم أثناء تأكيد الرحلة.",
+ "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.": "يقدم انطلق ميزات أمان متنوعة تشمل التحقق من السايق، وتتبع الرحلة داخل التطبيق، وخيارات جهات اتصال الطوارئ، وإمكانية مشاركة حالة رحلتك مع جهات اتصال موثوقة.",
+ "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "انطلق بيعطي أولوية لسلامتك. بنقدم ميزات زي التحقق من السايق، وتتبع الرحلة داخل التطبيق، وخيارات جهات اتصال الطوارئ.",
+ "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "يوفر انطلق وظيفة الدردشة داخل التطبيق عشان تتواصل مع سايقك أو راكبك أثناء رحلتك.",
+ "Intaleq's Response": "رد انطلق",
+ "Intaleq123": "انطلق123",
+ "Intaleq: For fixed salary and endpoints.": "انطلق: للراتب الثابت ونقاط النهاية.",
"Slide to End Trip": "اسحب لإنهاء الرحلة",
"So go and gain your money": "اذهب واستلم فلوسك",
"Social Butterfly": "الفراشة الاجتماعية",
@@ -1607,7 +1607,7 @@ final Map ar_eg = {
"Status": "الحالة",
"Status is": "الحالة هي",
"Stay": "ابقَ",
- "Step-by-step instructions on how to request a ride through the Siro app.": "تعليمات خطوة بخطوة حول كيفية طلب رحلة من خلال تطبيق انطلق.",
+ "Step-by-step instructions on how to request a ride through the Intaleq app.": "تعليمات خطوة بخطوة حول كيفية طلب رحلة من خلال تطبيق انطلق.",
"Stop": "توقف",
"Store your money with us and receive it in your bank as a monthly salary.": "احفظ فلوسك معانا واحصل عليها في بنكك كراتب شهري.",
"Submission Failed": "فشل الإرسال",
@@ -1727,8 +1727,8 @@ final Map ar_eg = {
"To become a driver, you must review and agree to the": "عشان تصير سايق، لازم تراجع وتوافق على",
"To become a driver, you must review and agree to the ": "عشان تصير سايق، لازم تراجع وتوافق على",
"To become a passenger, you must review and agree to the": "عشان تصير راكب، لازم تراجع وتوافق على",
- "To become a ride-sharing driver on the Siro app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Siro app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "عشان تصير سايق لمشاركة الرحلات على تطبيق انطلق، تحتاج ترفع رخصة قيادتك، وثيقة هويتك، ووثيقة تسجيل عربيتك. نظام الذكاء الاصطناعي هيراجع ويؤكد صحتهم فورًا خلال دقيقتين لـ 3 دقائق. إذا اتمت الموافقة على مستنداتك، تقدر تبدأ تشتغل كسايق على تطبيق انطلق. من فضلك لاحظ إن تقديم مستندات مزورة جريمة خطيرة وممكن تؤدي لإنهاء فوري وعواقب قانونية.",
- "To become a ride-sharing driver on the Siro app...": "عشان تصير سايق لمشاركة الرحلات على تطبيق انطلق...",
+ "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "عشان تصير سايق لمشاركة الرحلات على تطبيق انطلق، تحتاج ترفع رخصة قيادتك، وثيقة هويتك، ووثيقة تسجيل عربيتك. نظام الذكاء الاصطناعي هيراجع ويؤكد صحتهم فورًا خلال دقيقتين لـ 3 دقائق. إذا اتمت الموافقة على مستنداتك، تقدر تبدأ تشتغل كسايق على تطبيق انطلق. من فضلك لاحظ إن تقديم مستندات مزورة جريمة خطيرة وممكن تؤدي لإنهاء فوري وعواقب قانونية.",
+ "To become a ride-sharing driver on the Intaleq app...": "عشان تصير سايق لمشاركة الرحلات على تطبيق انطلق...",
"To change Language the App": "عشان تغيّر لغة التطبيق",
"To change some Settings": "عشان تغيّر بعض الإعدادات",
"To display orders instantly, please grant permission to draw over other apps.": "عشان تعرض الطلبات فورًا، من فضلك منح الإذن بالعرض فوق التطبيقات التانية.",
@@ -1736,7 +1736,7 @@ final Map ar_eg = {
"To ensure you receive the most accurate information for your location, please select your country below. This will help tailor the app experience and content to your country.": "عشان تاخد أدق معلومات لموقعك، من فضلك اختر دولتك من تحت. هيساعدنا ده نخصص تجربة التطبيق والمحتوى لدولتك.",
"To get a gift for both": "عشان تاخد هدية ليك وللشخص التاني",
"To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "عشان نعطيك أحسن تجربة، لازم نعرف موقعك. بيتم استخدام موقعك عشان نلاقي كباتن قريبين ولعمليات الالتقاط.",
- "To register as a driver or learn about the requirements, please visit our website or contact Siro support directly.": "عشان تسجل كسايق أو تتعرف على المتطلبات، من فضلك زور موقعنا أو اتصل بدعم انطلق مباشرة.",
+ "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "عشان تسجل كسايق أو تتعرف على المتطلبات، من فضلك زور موقعنا أو اتصل بدعم انطلق مباشرة.",
"To use Wallet charge it": "عشان تستخدم المحفظة، اشحنها",
"Today": "النهاردة",
"Today Overview": "نظرة عامة على النهاردة",
@@ -1826,7 +1826,7 @@ final Map ar_eg = {
"Type your Email": "اكتب بريدك الإلكتروني",
"Type your message": "اكتب رسالتك",
"Type your message...": "اكتب رسالتك...",
- "Types of Trips in Siro:": "أنواع الرحلات في انطلق:",
+ "Types of Trips in Intaleq:": "أنواع الرحلات في انطلق:",
"USA": "أمريكا",
"Uncompromising Security": "أمان بدون تنازلات",
"Unknown": "غير معروف",
@@ -1885,7 +1885,7 @@ final Map ar_eg = {
"View your past transactions": "شوف معاملاتك السابقة",
"Visa": "فيزا",
"Visit Website/Contact Support": "زيارة الموقع/الاتصال بالدعم",
- "Visit our website or contact Siro support for information on driver registration and requirements.": "قم بزيارة موقعنا أو اتصل بدعم انطلق للحصول على معلومات حول تسجيل السايق والمتطلبات.",
+ "Visit our website or contact Intaleq support for information on driver registration and requirements.": "قم بزيارة موقعنا أو اتصل بدعم انطلق للحصول على معلومات حول تسجيل السايق والمتطلبات.",
"Voice Calling": "المكالمات الصوتية",
"Voice call over internet": "مكالمة صوتية عبر الإنترنت",
"Wait for timer": "انتظر المؤقت",
@@ -1908,7 +1908,7 @@ final Map ar_eg = {
"Wallet is blocked": "المحفظة مقفولة",
"Wallet!": "المحفظة!",
"Warning": "تحذير",
- "Warning: Siroing detected!": "تحذير: اتكتشف مخالفات!",
+ "Warning: Intaleqing detected!": "تحذير: اتكتشف مخالفات!",
"Warning: Speeding detected!": "تحذير: اتكتشف تجاوز السرعة!",
"We Are Sorry That we dont have cars in your Location!": "آسفين إن إحنا مالناش عربيات في موقعك!",
"We are looking for a captain but the price may increase to let a captain accept": "إحنا بنبص على كابتن بس السعر ممكن يزيد عشان كابتن يقبل",
@@ -1918,8 +1918,7 @@ final Map ar_eg = {
"We are searching for the nearest driver": "إحنا بنبص على أقرب سايق ليك",
"We are searching for the nearest driver to you": "إحنا بنبص على أقرب سايق ليك",
"We connect you with the nearest drivers for faster pickups and quicker journeys.": "بنوصلك بأقرب السايقين لالتقاط أسرع ورحلات أسرع.",
- "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Siro app and be part of our Siro family.": "عندنا عروض صيانة لعربيتك. تقدر تستخدمها بعد ما تكمل 600 رحلة عشان تاخد خصم 20% على إصلاحات العربية. استمتع باستخدام تطبيق انطلق وكن جزء من عيلة انطلق.",
- "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Tripz app and be part of our Tripz family.": "عندنا عروض صيانة لعربيتك. تقدر تستخدمها بعد ما تكمل 600 رحلة عشان تاخد خصم 20% على إصلاحات العربية. استمتع باستخدام تطبيق انطلق وكن جزء من عيلة انطلق.",
+ "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.": "عندنا عروض صيانة لعربيتك. تقدر تستخدمها بعد ما تكمل 600 رحلة عشان تاخد خصم 20% على إصلاحات العربية. استمتع باستخدام تطبيق انطلق وكن جزء من عيلة انطلق.",
"We have partnered with health insurance providers to offer you special health coverage. Complete 500 trips and receive a 20% discount on health insurance premiums.": "اتعاونا مع مزوّدي التأمين الصحي عشان نوفر لك تغطية صحية خاصة. اكمل 500 رحلة واحصل على خصم 20% على أقساط التأمين الصحي.",
"We have received your application to join us as a driver. Our team is currently reviewing it. Thank you for your patience.": "استلمنا طلبك للانضمام إلينا كسايق. فريقنا دلوقتي بيراجعه. شكرًا لصبرك.",
"We have sent a verification code to your mobile number:": "أرسلنا كود التحقق لرقم موبايلك:",
@@ -1928,7 +1927,7 @@ final Map ar_eg = {
"We need your location to find nearby drivers for pickups and drop-offs.": "نحتاج موقعك عشان نلاقي سايقين قريبين لعمليات الالتقاط والتنزيل.",
"We need your phone number to contact you and to help you receive orders.": "نحتاج رقم موبايلك عشان نتواصل معاك ونساعدك تستلم طلبات.",
"We need your phone number to contact you and to help you.": "نحتاج رقم موبايلك عشان نتواصل معاك ونساعدك.",
- "We noticed the Siro is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.": "لقدنا إن انطلق بيزيد عن 100 كم/ساعة. من فضلك خفّف السرعة عشان سلامتك. إذا حسيت إنك مش بأمان، تقدر تشارك تفاصيل رحلتك مع جهة اتصال أو تتصل بالشرطة باستخدام زر SOS الأحمر.",
+ "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.": "لقدنا إن انطلق بيزيد عن 100 كم/ساعة. من فضلك خفّف السرعة عشان سلامتك. إذا حسيت إنك مش بأمان، تقدر تشارك تفاصيل رحلتك مع جهة اتصال أو تتصل بالشرطة باستخدام زر SOS الأحمر.",
"We regret to inform you that another driver has accepted this order.": "نأسف لإبلاغك إن سايق تاني قبل الطلب ده.",
"We search nearst Driver to you": "إحنا بنبص على أقرب سايق ليك",
"We sent 5 digit to your Email provided": "أرسلنا 5 أرقام لبريدك الإلكتروني اللي قدّمته",
@@ -1946,12 +1945,12 @@ final Map ar_eg = {
"Welcome": "أهلاً وسهلاً",
"Welcome Back!": "مرحبًا بعودتك!",
"Welcome Offer!": "عرض ترحيبي!",
- "Welcome to Siro!": "أهلاً بك في انطلق!",
+ "Welcome to Intaleq!": "أهلاً بك في انطلق!",
"What are the order details we provide to you?": "إيه تفاصيل الطلب اللي بنقدملك؟",
"What are the requirements to become a driver?": "إيه المتطلبات عشان تصير سايق؟",
- "What is Types of Trips in Siro?": "إيه أنواع الرحلات في انطلق؟",
+ "What is Types of Trips in Intaleq?": "إيه أنواع الرحلات في انطلق؟",
"What is the feature of our wallet?": "إيه ميزة محفظتنا؟",
- "What safety measures does Siro offer?": "إيه إجراءات السلامة اللي بيقدمها انطلق؟",
+ "What safety measures does Intaleq offer?": "إيه إجراءات السلامة اللي بيقدمها انطلق؟",
"What types of vehicles are available?": "إيه أنواع العربيات المتاحة؟",
"WhatsApp": "واتساب",
"WhatsApp Location Extractor": "مستخرج موقع الواتساب",
@@ -1963,9 +1962,9 @@ final Map ar_eg = {
"Where to": "إلى أين؟",
"Where you want go": "إلى أين تريد الذهاب؟",
"Which method you will pay": "بأي طريقة ستدفع؟",
- "Why Choose Siro?": "لماذا تختار انطلق؟",
+ "Why Choose Intaleq?": "لماذا تختار انطلق؟",
"Why do you want to cancel this trip?": "لماذا تريد إلغاء هذه الرحلة؟",
- "With Siro, you can get a ride to your destination in minutes.": "مع انطلق، يمكنك الحصول على رحلة إلى وجهتك في دقائق.",
+ "With Intaleq, you can get a ride to your destination in minutes.": "مع انطلق، يمكنك الحصول على رحلة إلى وجهتك في دقائق.",
"Withdraw": "سحب",
"Work": "العمل",
"Work & Contact": "العمل والتواصل",
@@ -1989,7 +1988,7 @@ final Map ar_eg = {
"Yes": "نعم",
"Yes, Pay": "نعم، ادفع",
"Yes, optimize": "نعم، قم بالتحسين",
- "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Siro cancellation policy for details.": "نعم، يمكنك إلغاء رحلتك تحت ظروف معينة (مثل قبل تعيين السائق). راجع سياسة إلغاء انطلق للتفاصيل.",
+ "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "نعم، يمكنك إلغاء رحلتك تحت ظروف معينة (مثل قبل تعيين السائق). راجع سياسة إلغاء انطلق للتفاصيل.",
"Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.": "نعم، يمكنك إلغاء رحلتك، ولكن يرجى ملاحظة أن رسوم الإلغاء قد تنطبق اعتماداً على المدة الزمنية التي تقوم بالإلغاء فيها مسبقاً.",
"You": "أنت",
"You Are Stopped For this Day !": "تم إيقافك لهذا اليوم!",
@@ -2041,7 +2040,7 @@ final Map ar_eg = {
"You can purchase a budget to enable online access through the options listed below": "يمكنك شراء ميزانية لتمكين الوصول عبر الإنترنت من خلال الخيارات المدرجة أدناه",
"You can purchase a budget to enable online access through the options listed below.": "يمكنك شراء ميزانية لتمكين الوصول عبر الإنترنت من خلال الخيارات المدرجة أدناه.",
"You can resend in": "يمكنك إعادة الإرسال خلال",
- "You can share the Siro App with your friends and earn rewards for rides they take using your code": "يمكنك مشاركة تطبيق انطلق مع أصدقائك وكسب مكافآت عن الرحلات التي يقومون بها باستخدام رمزك",
+ "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "يمكنك مشاركة تطبيق انطلق مع أصدقائك وكسب مكافآت عن الرحلات التي يقومون بها باستخدام رمزك",
"You can upgrade price to may driver accept your order": "يمكنك رفع السعر ليقبل السائق طلبك",
"You can\\'t continue with us .\\nYou should renew Driver license": "لا يمكنك الاستمرار معنا.\\nيجب تجديد رخصة القيادة",
"You canceled VIP trip": "لقد ألغيت رحلة VIP",
@@ -2188,8 +2187,8 @@ final Map ar_eg = {
"\\\${\"You must leave at least": "\\\${\"لازم تسيب على الأقل",
"\\\${\"amount": "\\\${\"المبلغ",
"\\\${\"transaction_id": "\\\${\"رقم العملية",
- "\\\${'*Siro APP CODE*": "\\\${'*كود تطبيق انطلق*",
- "\\\${'*Siro DRIVER CODE*": "\\\${'*كود سائق انطلق*",
+ "\\\${'*Intaleq APP CODE*": "\\\${'*كود تطبيق انطلق*",
+ "\\\${'*Intaleq DRIVER CODE*": "\\\${'*كود سائق انطلق*",
"\\\${'Address": "\\\${'العنوان",
"\\\${'Address: ": "\\\${'العنوان: ",
"\\\${'Age": "\\\${'العمر",
@@ -2436,7 +2435,7 @@ final Map ar_eg = {
"login or register subtitle": "عنوان تسجيل الدخول أو التسجيل",
"m": "م",
"m at the agreed-upon location": "في الموقع المتفق عليه",
- "m inviting you to try Siro.": "بادعوك تجرب انطلق.",
+ "m inviting you to try Intaleq.": "بادعوك تجرب انطلق.",
"m waiting for you": "بانتظارك",
"m waiting for you at the specified location.": "بانتظارك في الموقع المحدد.",
"message From Driver": "رسالة من السايق",
@@ -2492,16 +2491,16 @@ final Map ar_eg = {
"s Promo": "عرضه",
"s Promos": "عروضه",
"s Response": "رده",
- "s Siro account.": "حساب انطلق الخاص به.",
- "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "ميزات حساب انطلق الخاص به:\\n- حوّل الفلوس كذا مرة.\\n- التحويل لأي حد.\\n- عمل عمليات شراء.\\n- شحن حسابك.\\n- شحن حساب انطلق لصديق.\\n- احفظ فلوسك معانا واحصل عليها في بنكك كراتب شهري.",
+ "s Intaleq account.": "حساب انطلق الخاص به.",
+ "s Intaleq account.\\nStore your money with us and receive it in your bank as a monthly salary.": "ميزات حساب انطلق الخاص به:\\n- حوّل الفلوس كذا مرة.\\n- التحويل لأي حد.\\n- عمل عمليات شراء.\\n- شحن حسابك.\\n- شحن حساب انطلق لصديق.\\n- احفظ فلوسك معانا واحصل عليها في بنكك كراتب شهري.",
"s Terms & Review Privacy Notice": "شروطه ومراجعة إشعار الخصوصية",
"s heavy traffic here. Can you suggest an alternate pickup point?": "فيه زحمة مرورية شديدة هنا. تقدر تقترح نقطة التقاء بديلة؟",
"s license does not match the one on your ID document. Please verify and provide the correct documents.": "رخصته مش متطابقة مع اللي في وثيقة هويتك. من فضلك تحقق وقدّم المستندات الصحيحة.",
- "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Siro app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "رخصة القيادة، وثيقة الهوية، ووثيقة تسجيل العربية. نظام الذكاء الاصطناعي هيراجع ويؤكد صحتهم فورًا خلال دقيقتين لـ 3 دقائق. إذا اتمت الموافقة على مستنداتك، تقدر تبدأ تشتغل كسايق على تطبيق انطلق. من فضلك لاحظ إن تقديم مستندات مزورة جريمة خطيرة وممكن تؤدي لإنهاء فوري وعواقب قانونية.",
+ "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "رخصة القيادة، وثيقة الهوية، ووثيقة تسجيل العربية. نظام الذكاء الاصطناعي هيراجع ويؤكد صحتهم فورًا خلال دقيقتين لـ 3 دقائق. إذا اتمت الموافقة على مستنداتك، تقدر تبدأ تشتغل كسايق على تطبيق انطلق. من فضلك لاحظ إن تقديم مستندات مزورة جريمة خطيرة وممكن تؤدي لإنهاء فوري وعواقب قانونية.",
"s license. Please verify and provide the correct documents.": "رخصته. من فضلك تحقق وقدّم المستندات الصحيحة.",
"s phone": "موبايله",
"s pioneering ride-sharing service, proudly developed by Arabian and local owners. We prioritize being near you – both our valued passengers and our dedicated captains.": "خدمة مشاركة الرحلات الرائدة، اللي اتطورت بفخر من ملاك عرب ومحليين. بنعطي أولوية للقرب منك – سواء كركاب قيّمين أو كباتن متفانين.",
- "s time to check the Siro app!": "حان الوقت للتحقق من تطبيق انطلق!",
+ "s time to check the Intaleq app!": "حان الوقت للتحقق من تطبيق انطلق!",
"safe_and_comfortable": "آمن ومريح",
"scams operations": "عمليات احتيال",
"scan Car License.": "امسح رخصة العربية.",
@@ -2530,7 +2529,7 @@ final Map ar_eg = {
"t have a phone number.": "ممعكش رقم موبايل.",
"t have a reason": "ممعكش سبب",
"t have account": "ممعكش حساب",
- "t have enough money in your Siro wallet": "ممعكش فلوس كافية في محفظة انطلق بتاعتك",
+ "t have enough money in your Intaleq wallet": "ممعكش فلوس كافية في محفظة انطلق بتاعتك",
"t moved sufficiently!": "متحركتش بشكل كافي!",
"t need a ride anymore": "محتاجش رحلة تاني",
"t return to use app after 1 month": "متقدر ترجع تستخدم التطبيق بعد شهر",
@@ -2580,10 +2579,10 @@ final Map ar_eg = {
"wallet due to a previous trip.": "محفظة بسبب رحلة سابقة.",
"wallet_credited_message": "تمت الإضافة",
"wallet_updated": "تم تحديث المحفظة",
- "welcome to siro": "أهلاً بك في انطلق",
+ "welcome to intaleq": "أهلاً بك في انطلق",
"welcome user": "أهلاً بالمستخدم",
"welcome_message": "رسالة الترحيب",
- "welcome_to_siro": "أهلاً بك في انطلق",
+ "welcome_to_intaleq": "أهلاً بك في انطلق",
"whatsapp', phone1, 'Hello": "واتساب', phone1, 'أهلاً",
"with license plate": "مع لوحة الترخيص",
"with type": "مع النوع",
@@ -2607,7 +2606,7 @@ final Map ar_eg = {
"you must insert token code": "يجب عليك إدخال رمز الرمز",
"you must insert token code ": "يجب عليك إدخال رمز الرمز",
"you will pay to Driver": "سوف تدفع للسائق",
- "you will pay to Driver you will be pay the cost of driver time look to your Siro Wallet": "سوف تدفع للسائق، سوف تدفع تكلفة وقت السائق، انظر إلى محفظة انطلق الخاصة بك",
+ "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "سوف تدفع للسائق، سوف تدفع تكلفة وقت السائق، انظر إلى محفظة انطلق الخاصة بك",
"you will use this device?": "هل ستستخدم هذا الجهاز؟",
"your ride is Accepted": "تم قبول رحلتك",
"your ride is applied": "تم تطبيق رحلتك",
diff --git a/intaleq_driver/lib/controller/local/ar_jo.dart b/intaleq_driver/lib/controller/local/ar_jo.dart
index 6c66f37..d68ec1f 100644
--- a/intaleq_driver/lib/controller/local/ar_jo.dart
+++ b/intaleq_driver/lib/controller/local/ar_jo.dart
@@ -34,8 +34,8 @@ final Map ar_jo = {
"\${\"You must leave at least": "\${\"You must leave at least",
"\${\"amount": "\${\"amount",
"\${\"transaction_id": "\${\"transaction_id",
- "\${'*Siro APP CODE*": "\${'*Intaleq APP CODE*",
- "\${'*Siro DRIVER CODE*": "\${'*Intaleq DRIVER CODE*",
+ "\${'*Intaleq APP CODE*": "\${'*Intaleq APP CODE*",
+ "\${'*Intaleq DRIVER CODE*": "\${'*Intaleq DRIVER CODE*",
"\${'Address": "\${'Address",
"\${'Address: ": "\${'Address: ",
"\${'Age": "\${'Age",
@@ -133,8 +133,8 @@ final Map ar_jo = {
"([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'نص",
"([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'نص",
")[1]}": ")[1]}",
- "*Siro APP CODE*": "*رمز تطبيق انطلق*",
- "*Siro DRIVER CODE*": "*رمز سائق انطلق*",
+ "*Intaleq APP CODE*": "*رمز تطبيق انطلق*",
+ "*Intaleq DRIVER CODE*": "*رمز سائق انطلق*",
"--": "--",
"-1% commission": "خصم 1% من العمولة",
"-2% commission": "خصم 2% من العمولة",
@@ -556,7 +556,7 @@ final Map ar_jo = {
"Day Off": "يوم إجازة",
"Day Streak": "سلسلة الأيام",
"Days": "الأيام",
- "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Siro app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nSiro ,": "عزيزي/عزيزتي،\\n🚀 لقد بدأت للتو رحلة مثيرة، وأرغب في مشاركة تفاصيل رحلتي وموقعي الحالي معك في الوقت الفعلي! يرجى تحميل تطبيق انطلق. سيسمح لك بعرض تفاصيل رحلتي وأحدث موقعي.\\n👉 رابط التحميل:\\nأندرويد [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\nآيفون [https://getapp.cc/app/6458734951]\\nأتطلع إلى إبقائك قريباً أثناء مغامرتي!\\nانطلق،",
+ "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,": "عزيزي/عزيزتي،\\n🚀 لقد بدأت للتو رحلة مثيرة، وأرغب في مشاركة تفاصيل رحلتي وموقعي الحالي معك في الوقت الفعلي! يرجى تحميل تطبيق انطلق. سيسمح لك بعرض تفاصيل رحلتي وأحدث موقعي.\\n👉 رابط التحميل:\\nأندرويد [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\nآيفون [https://getapp.cc/app/6458734951]\\nأتطلع إلى إبقائك قريباً أثناء مغامرتي!\\nانطلق،",
"Debit": "خصم",
"Debit Card": "بطاقة خصم",
"Dec 15 - Dec 21, 2024": "15 ديسمبر - 21 ديسمبر 2024",
@@ -596,8 +596,8 @@ final Map ar_jo = {
"Don't have an account? Register": "ليس لديك حساب؟ سجّل الآن",
"Done": "تم",
"Don’t forget your personal belongings.": "لا تنسَ ممتلكاتك الشخصية.",
- "Download the Siro Driver app now and earn rewards!": "حمّل تطبيق سائق انطلق الآن واكسب مكافآت!",
- "Download the Siro app now and enjoy your ride!": "حمّل تطبيق انطلق الآن واستمتع برحلتك!",
+ "Download the Intaleq Driver app now and earn rewards!": "حمّل تطبيق سائق انطلق الآن واكسب مكافآت!",
+ "Download the Intaleq app now and enjoy your ride!": "حمّل تطبيق انطلق الآن واستمتع برحلتك!",
"Download the app now:": "حمّل التطبيق الآن:",
"Drawing route on map...": "جارٍ رسم الطريق على الخريطة...",
"Driver": "السائق",
@@ -719,7 +719,7 @@ final Map ar_jo = {
"Evening": "المساء",
"Excellent": "ممتاز",
"Exclusive offers and discounts always with the Sefer app": "عروض وخصومات حصرية دائماً مع تطبيق سفر",
- "Exclusive offers and discounts always with the Siro app": "عروض وخصومات حصرية دائماً مع تطبيق انطلق",
+ "Exclusive offers and discounts always with the Intaleq app": "عروض وخصومات حصرية دائماً مع تطبيق انطلق",
"Exit": "خروج",
"Exit Ride?": "هل تريد إنهاء الرحلة؟",
"Expiration Date": "تاريخ الانتهاء",
@@ -766,8 +766,8 @@ final Map ar_jo = {
"Flag-down fee": "رسوم بداية الرحلة",
"For Drivers": "للسائقين",
"For Egypt": "لمصر",
- "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "لرحلات انطلق والتوصيل، يتم حساب السعر ديناميكياً. لرحلات كومفورت، يعتمد السعر على الوقت والمسافة",
- "For Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "لرحلات انطلق والسكوتر، يتم حساب السعر ديناميكياً. لرحلات كومفورت، يعتمد السعر على الوقت والمسافة",
+ "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "لرحلات انطلق والتوصيل، يتم حساب السعر ديناميكياً. لرحلات كومفورت، يعتمد السعر على الوقت والمسافة",
+ "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "لرحلات انطلق والسكوتر، يتم حساب السعر ديناميكياً. لرحلات كومفورت، يعتمد السعر على الوقت والمسافة",
"Free Call": "مكالمة مجانية",
"Frequently Asked Questions": "الأسئلة الشائعة",
"Frequently Questions": "أسئلة متكررة",
@@ -789,7 +789,7 @@ final Map ar_jo = {
"Get": "احصل على",
"Get Details of Trip": "احصل على تفاصيل الرحلة",
"Get Direction": "احصل على الاتجاهات",
- "Get a discount on your first Siro ride!": "احصل على خصم على رحلتك الأولى مع انطلق!",
+ "Get a discount on your first Intaleq ride!": "احصل على خصم على رحلتك الأولى مع انطلق!",
"Get features for your country": "احصل على الميزات الخاصة ببلدك",
"Get it Now!": "احصل عليه الآن!",
"Get to your destination quickly and easily.": "صل إلى وجهتك بسرعة وسهولة.",
@@ -855,7 +855,7 @@ final Map ar_jo = {
"How much do you want to earn today?": "كم تريد أن تربح اليوم؟",
"How much longer will you be?": "كم من الوقت ستتأخر؟",
"How to use App": "كيفية استخدام التطبيق",
- "How to use Siro": "كيفية استخدام انطلق",
+ "How to use Intaleq": "كيفية استخدام انطلق",
"How was the passenger?": "كيف كان الراكب؟",
"How was your trip with": "كيف كانت رحلتك مع",
"How would you like to receive your reward?": "كيف ترغب في استلام مكافأتك؟",
@@ -939,7 +939,7 @@ final Map ar_jo = {
"IssueDate": "تاريخ الإصدار",
"JOD": "دينار أردني",
"Join": "انضم",
- "Join Siro as a driver using my referral code!": "انضم إلى انطلق كسائق باستخدام رمز الإحالة الخاص بي!",
+ "Join Intaleq as a driver using my referral code!": "انضم إلى انطلق كسائق باستخدام رمز الإحالة الخاص بي!",
"Jordan": "الأردن",
"Just now": "الآن",
"KM": "كم",
@@ -1161,7 +1161,7 @@ final Map ar_jo = {
"Order Applied": "تم تطبيق الطلب",
"Order Cancelled": "تم إلغاء الطلب",
"Order Cancelled by Passenger": "تم إلغاء الطلب من قبل الراكب",
- "Order Details Siro": "تفاصيل طلب انطلق",
+ "Order Details Intaleq": "تفاصيل طلب انطلق",
"Order History": "سجل الطلبات",
"Order ID": "رقم الطلب",
"Order Request Page": "صفحة طلب الرحلة",
@@ -1212,7 +1212,7 @@ final Map ar_jo = {
"Pay using MTN Cash wallet": "الدفع باستخدام محفظة MTN Cash",
"Pay using Sham Cash wallet": "الدفع باستخدام محفظة Sham Cash",
"Pay using Syriatel mobile wallet": "الدفع باستخدام محفظة سيريتل للجوال",
- "Pay via CliQ (Alias: siroapp)": "الدفع عبر CliQ (الاسم المستعار: intaleqapp)",
+ "Pay via CliQ (Alias: intaleqapp)": "الدفع عبر CliQ (الاسم المستعار: intaleqapp)",
"Pay with Credit Card": "الدفع ببطاقة ائتمان",
"Pay with Debit Card": "الدفع ببطاقة خصم",
"Pay with Wallet": "الدفع عبر المحفظة",
@@ -1304,7 +1304,7 @@ final Map ar_jo = {
"Please help! Contact me as soon as possible.": "ساعدني من فضلك! اتصل بي في أسرع وقت ممكن.",
"Please make sure not to leave any personal belongings in the car.": "يرجى التأكد من عدم ترك أي ممتلكات شخصية في السيارة.",
"Please make sure to read the license carefully.": "يرجى التأكد من قراءة الرخصة بعناية.",
- "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Siro app": "يرجى التأكد من أن لديك جميع ممتلكاتك الشخصية وأن أي أجرة متبقية، إن وجدت، قد تمت إضافتها إلى محفظتك قبل المغادرة. شكراً لاختيارك تطبيق انطلق",
+ "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app": "يرجى التأكد من أن لديك جميع ممتلكاتك الشخصية وأن أي أجرة متبقية، إن وجدت، قد تمت إضافتها إلى محفظتك قبل المغادرة. شكراً لاختيارك تطبيق انطلق",
"Please paste the transfer message": "يرجى لصق رسالة التحويل",
"Please provide details about any long-term diseases.": "يرجى تقديم تفاصيل عن أي أمراض طويلة الأمد.",
"Please put your licence in these border": "يرجى وضع رخصتك داخل هذا الإطار",
@@ -1314,7 +1314,7 @@ final Map ar_jo = {
"Please select a ride before submitting.": "يرجى اختيار رحلة قبل الإرسال.",
"Please stay on the picked point.": "يرجى البقاء في نقطة الالتقاط المحددة.",
"Please tell us why you want to cancel.": "يرجى إخبارنا لماذا تريد الإلغاء.",
- "Please transfer the amount to alias: siroapp": "يرجى تحويل المبلغ إلى الاسم المستعار: intaleqapp",
+ "Please transfer the amount to alias: intaleqapp": "يرجى تحويل المبلغ إلى الاسم المستعار: intaleqapp",
"Please try again in a few moments": "يرجى المحاولة مرة أخرى بعد لحظات",
"Please upload a clear photo of your face to be identified by passengers.": "يرجى رفع صورة واضحة لوجهك ليتمكن الركاب من التعرف عليك.",
"Please upload all 4 required documents.": "يرجى رفع جميع المستندات المطلوبة الأربعة.",
@@ -1496,7 +1496,7 @@ final Map ar_jo = {
"Send Email": "إرسال بريد إلكتروني",
"Send Invite": "إرسال دعوة",
"Send Message": "إرسال رسالة",
- "Send Siro app to him": "أرسل تطبيق انطلق له",
+ "Send Intaleq app to him": "أرسل تطبيق انطلق له",
"Send Verfication Code": "إرسال رمز التحقق",
"Send Verification Code": "إرسال رمز التحقق",
"Send WhatsApp Message": "إرسال رسالة واتساب",
@@ -1550,34 +1550,34 @@ final Map ar_jo = {
"Sign in with Google for easier email and name entry": "سجّل الدخول عبر جوجل لإدخال البريد الإلكتروني والاسم بسهولة",
"Sign in with a provider for easy access": "سجّل الدخول باستخدام مزوّد للوصول السهل",
"Silver badge": "شارة فضية",
- "Siro": "انطلق",
- "Siro Balance": "رصيد انطلق",
- "Siro DRIVER CODE": "رمز سائق انطلق",
- "Siro Driver": "سائق انطلق",
- "Siro LLC": "شركة انطلق ذ.م.م",
- "Siro LLC\\n\${'Syria": "Intaleq LLC\\n\${'Syria",
- "Siro LLC\\n\\\${'Syria": "شركة انطلق ذ.م.م\\n\\\${'سوريا",
- "Siro Order": "طلب انطلق",
- "Siro Over": "انتهى انطلق",
- "Siro Reminder": "تذكير انطلق",
- "Siro Wallet": "محفظة انطلق",
- "Siro Wallet Features:": "ميزات محفظة انطلق:",
- "Siro is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:": "انطلق هو تطبيق لمشاركة الرحلات صُمم مع مراعاة سلامتك وبأسعار معقولة. نربطك بسائقين موثوقين في منطقتك، مما يضمن لك تجربة سفر مريحة وخالية من التوتر. إليك بعض الميزات الرئيسية التي تميزنا:",
- "Siro is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:": "انطلق هو تطبيق لمشاركة الرحلات صُمم مع مراعاة سلامتك وتكلفتك. نربطك بسائقين موثوقين في منطقتك، مما يضمن لك تجربة سفر مريحة وخالية من التوتر.\\n\\nإليك بعض الميزات الرئيسية التي تميزنا:",
- "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "انطلق ملتزم بالسلامة، ويتم فحص جميع كباتننا بعناية والتحقق من خلفياتهم.",
- "Siro is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "انطلق هو أول تطبيق لمشاركة الرحلات في سوريا، صُمم لربطك بأقرب السائقين لتجربة سفر سريعة ومريحة.",
- "Siro is the ride-hailing app that is safe, reliable, and accessible.": "انطلق هو تطبيق طلب الرحلات الآمن والموثوق والمتاح للجميع.",
- "Siro is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Siro, you enjoy quality, safety, and peace of mind—every time you ride.": "انطلق هو تطبيق مشاركة الرحلات الأكثر أماناً وموثوقية المصمم خصيصاً للركاب في سوريا. نوفر تجربة ركوب مريحة ومحترمة وبأسعار معقولة مع ميزات تعطي الأولوية لسلامتك وراحتك. كباتننا الموثوقون يتم التحقق منهم وتأمينهم، ويدعمهم صيانة دورية للسيارات يقوم بها أفضل المهندسين. نقدم أيضاً خدمات دعم على الطريق لضمان أن تكون كل رحلة سلسة وخالية من الهموم. مع انطلق، تستمتع بالجودة والسلامة وراحة البال—في كل مرة تركب فيها.",
- "Siro is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.": "انطلق هو تطبيق مشاركة الرحلات الأكثر أماناً والذي يقدم العديد من الميزات لكل من الكباتن والركاب. نقدم أقل معدل عمولة وهو 8% فقط، مما يضمن لك الحصول على أفضل قيمة لرحلاتك. يتضمن تطبيقنا تأميناً لأفضل الكباتن، وصيانة دورية للسيارات مع أفضل المهندسين، وخدمات على الطريق لضمان تجربة محترمة وعالية الجودة لجميع المستخدمين.",
- "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "يقدم انطلق مجموعة متنوعة من الخيارات بما في ذلك الاقتصاد، والراحة، والفخامة لتتناسب مع احتياجاتك وميزانيتك.",
- "Siro offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.": "يقدم انطلق مجموعة متنوعة من خيارات المركبات لتتناسب مع احتياجاتك، بما في ذلك الاقتصاد، والراحة، والفخامة. اختر الخيار الأنسب لميزانيتك وعدد الركاب.",
- "Siro offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "يقدم انطلق طرق دفع متعددة لراحتك. اختر بين الدفع النقدي أو الدفع ببطاقة الائتمان/الخصم أثناء تأكيد الرحلة.",
- "Siro offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.": "يقدم انطلق ميزات أمان متنوعة تشمل التحقق من السائق، وتتبع الرحلة داخل التطبيق، وخيارات جهات اتصال الطوارئ، وإمكانية مشاركة حالة رحلتك مع جهات اتصال موثوقة.",
- "Siro prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "يضع انطلق سلامتك في المقام الأول. نقدم ميزات مثل التحقق من السائق، وتتبع الرحلة داخل التطبيق، وخيارات جهات اتصال الطوارئ.",
- "Siro provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "يوفر انطلق وظيفة الدردشة داخل التطبيق لتتمكن من التواصل مع سائقك أو راكبك أثناء رحلتك.",
- "Siro's Response": "رد انطلق",
- "Siro123": "انطلق123",
- "Siro: For fixed salary and endpoints.": "انطلق: للراتب الثابت ونقاط النهاية.",
+ "Intaleq": "انطلق",
+ "Intaleq Balance": "رصيد انطلق",
+ "Intaleq DRIVER CODE": "رمز سائق انطلق",
+ "Intaleq Driver": "سائق انطلق",
+ "Intaleq LLC": "شركة انطلق ذ.م.م",
+ "Intaleq LLC\\n\${'Syria": "Intaleq LLC\\n\${'Syria",
+ "Intaleq LLC\\n\\\${'Syria": "شركة انطلق ذ.م.م\\n\\\${'سوريا",
+ "Intaleq Order": "طلب انطلق",
+ "Intaleq Over": "انتهى انطلق",
+ "Intaleq Reminder": "تذكير انطلق",
+ "Intaleq Wallet": "محفظة انطلق",
+ "Intaleq Wallet Features:": "ميزات محفظة انطلق:",
+ "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:": "انطلق هو تطبيق لمشاركة الرحلات صُمم مع مراعاة سلامتك وبأسعار معقولة. نربطك بسائقين موثوقين في منطقتك، مما يضمن لك تجربة سفر مريحة وخالية من التوتر. إليك بعض الميزات الرئيسية التي تميزنا:",
+ "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:": "انطلق هو تطبيق لمشاركة الرحلات صُمم مع مراعاة سلامتك وتكلفتك. نربطك بسائقين موثوقين في منطقتك، مما يضمن لك تجربة سفر مريحة وخالية من التوتر.\\n\\nإليك بعض الميزات الرئيسية التي تميزنا:",
+ "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "انطلق ملتزم بالسلامة، ويتم فحص جميع كباتننا بعناية والتحقق من خلفياتهم.",
+ "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "انطلق هو أول تطبيق لمشاركة الرحلات في سوريا، صُمم لربطك بأقرب السائقين لتجربة سفر سريعة ومريحة.",
+ "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "انطلق هو تطبيق طلب الرحلات الآمن والموثوق والمتاح للجميع.",
+ "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.": "انطلق هو تطبيق مشاركة الرحلات الأكثر أماناً وموثوقية المصمم خصيصاً للركاب في سوريا. نوفر تجربة ركوب مريحة ومحترمة وبأسعار معقولة مع ميزات تعطي الأولوية لسلامتك وراحتك. كباتننا الموثوقون يتم التحقق منهم وتأمينهم، ويدعمهم صيانة دورية للسيارات يقوم بها أفضل المهندسين. نقدم أيضاً خدمات دعم على الطريق لضمان أن تكون كل رحلة سلسة وخالية من الهموم. مع انطلق، تستمتع بالجودة والسلامة وراحة البال—في كل مرة تركب فيها.",
+ "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.": "انطلق هو تطبيق مشاركة الرحلات الأكثر أماناً والذي يقدم العديد من الميزات لكل من الكباتن والركاب. نقدم أقل معدل عمولة وهو 8% فقط، مما يضمن لك الحصول على أفضل قيمة لرحلاتك. يتضمن تطبيقنا تأميناً لأفضل الكباتن، وصيانة دورية للسيارات مع أفضل المهندسين، وخدمات على الطريق لضمان تجربة محترمة وعالية الجودة لجميع المستخدمين.",
+ "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "يقدم انطلق مجموعة متنوعة من الخيارات بما في ذلك الاقتصاد، والراحة، والفخامة لتتناسب مع احتياجاتك وميزانيتك.",
+ "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.": "يقدم انطلق مجموعة متنوعة من خيارات المركبات لتتناسب مع احتياجاتك، بما في ذلك الاقتصاد، والراحة، والفخامة. اختر الخيار الأنسب لميزانيتك وعدد الركاب.",
+ "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "يقدم انطلق طرق دفع متعددة لراحتك. اختر بين الدفع النقدي أو الدفع ببطاقة الائتمان/الخصم أثناء تأكيد الرحلة.",
+ "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.": "يقدم انطلق ميزات أمان متنوعة تشمل التحقق من السائق، وتتبع الرحلة داخل التطبيق، وخيارات جهات اتصال الطوارئ، وإمكانية مشاركة حالة رحلتك مع جهات اتصال موثوقة.",
+ "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "يضع انطلق سلامتك في المقام الأول. نقدم ميزات مثل التحقق من السائق، وتتبع الرحلة داخل التطبيق، وخيارات جهات اتصال الطوارئ.",
+ "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "يوفر انطلق وظيفة الدردشة داخل التطبيق لتتمكن من التواصل مع سائقك أو راكبك أثناء رحلتك.",
+ "Intaleq's Response": "رد انطلق",
+ "Intaleq123": "انطلق123",
+ "Intaleq: For fixed salary and endpoints.": "انطلق: للراتب الثابت ونقاط النهاية.",
"Slide to End Trip": "مرر لإنهاء الرحلة",
"So go and gain your money": "اذهب واستلم أموالك",
"Social Butterfly": "الفراشة الاجتماعية",
@@ -1607,7 +1607,7 @@ final Map ar_jo = {
"Status": "الحالة",
"Status is": "الحالة هي",
"Stay": "ابقَ",
- "Step-by-step instructions on how to request a ride through the Siro app.": "تعليمات خطوة بخطوة حول كيفية طلب رحلة من خلال تطبيق انطلق.",
+ "Step-by-step instructions on how to request a ride through the Intaleq app.": "تعليمات خطوة بخطوة حول كيفية طلب رحلة من خلال تطبيق انطلق.",
"Stop": "توقف",
"Store your money with us and receive it in your bank as a monthly salary.": "احفظ أموالك معنا واحصل عليها في بنكك كراتب شهري.",
"Submission Failed": "فشل الإرسال",
@@ -1727,8 +1727,8 @@ final Map ar_jo = {
"To become a driver, you must review and agree to the": "لكي تصبح سائقاً، يجب عليك مراجعة والموافقة على",
"To become a driver, you must review and agree to the ": "لكي تصبح سائقاً، يجب عليك مراجعة والموافقة على",
"To become a passenger, you must review and agree to the": "لكي تصبح راكباً، يجب عليك مراجعة والموافقة على",
- "To become a ride-sharing driver on the Siro app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Siro app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "لكي تصبح سائقاً لمشاركة الرحلات على تطبيق انطلق، تحتاج إلى رفع رخصة قيادتك، ووثيقة هويتك، ووثيقة تسجيل سيارتك. سيقوم نظام الذكاء الاصطناعي لدينا بمراجعة وتوثيق صحتها فوراً خلال دقيقتين إلى 3 دقائق. إذا تمت الموافقة على مستنداتك، يمكنك البدء بالعمل كسائق على تطبيق انطلق. يرجى ملاحظة أن تقديم مستندات مزورة هو جريمة خطيرة وقد يؤدي إلى الإنهاء الفوري والعواقب القانونية.",
- "To become a ride-sharing driver on the Siro app...": "لكي تصبح سائقاً لمشاركة الرحلات على تطبيق انطلق...",
+ "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "لكي تصبح سائقاً لمشاركة الرحلات على تطبيق انطلق، تحتاج إلى رفع رخصة قيادتك، ووثيقة هويتك، ووثيقة تسجيل سيارتك. سيقوم نظام الذكاء الاصطناعي لدينا بمراجعة وتوثيق صحتها فوراً خلال دقيقتين إلى 3 دقائق. إذا تمت الموافقة على مستنداتك، يمكنك البدء بالعمل كسائق على تطبيق انطلق. يرجى ملاحظة أن تقديم مستندات مزورة هو جريمة خطيرة وقد يؤدي إلى الإنهاء الفوري والعواقب القانونية.",
+ "To become a ride-sharing driver on the Intaleq app...": "لكي تصبح سائقاً لمشاركة الرحلات على تطبيق انطلق...",
"To change Language the App": "لتغيير لغة التطبيق",
"To change some Settings": "لتغيير بعض الإعدادات",
"To display orders instantly, please grant permission to draw over other apps.": "لعرض الطلبات فوراً، يرجى منح الإذن بالعرض فوق التطبيقات الأخرى.",
@@ -1736,7 +1736,7 @@ final Map ar_jo = {
"To ensure you receive the most accurate information for your location, please select your country below. This will help tailor the app experience and content to your country.": "لضمان حصولك على أكثر المعلومات دقة لموقعك، يرجى اختيار دولتك أدناه. سيساعد ذلك في تخصيص تجربة التطبيق والمحتوى لدولتك.",
"To get a gift for both": "للحصول على هدية لكليكما",
"To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "لإعطائك أفضل تجربة، نحتاج إلى معرفة موقعك. يتم استخدام موقعك للعثور على كباتن قريبين ولعمليات الالتقاط.",
- "To register as a driver or learn about the requirements, please visit our website or contact Siro support directly.": "للتسجيل كسائق أو التعرف على المتطلبات، يرجى زيارة موقعنا أو الاتصال بدعم انطلق مباشرة.",
+ "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "للتسجيل كسائق أو التعرف على المتطلبات، يرجى زيارة موقعنا أو الاتصال بدعم انطلق مباشرة.",
"To use Wallet charge it": "لاستخدام المحفظة، قم بشحنها",
"Today": "اليوم",
"Today Overview": "نظرة عامة على اليوم",
@@ -1826,7 +1826,7 @@ final Map ar_jo = {
"Type your Email": "اكتب بريدك الإلكتروني",
"Type your message": "اكتب رسالتك",
"Type your message...": "اكتب رسالتك...",
- "Types of Trips in Siro:": "أنواع الرحلات في انطلق:",
+ "Types of Trips in Intaleq:": "أنواع الرحلات في انطلق:",
"USA": "الولايات المتحدة الأمريكية",
"Uncompromising Security": "أمان لا هوادة فيه",
"Unknown": "غير معروف",
@@ -1885,7 +1885,7 @@ final Map ar_jo = {
"View your past transactions": "عرض معاملاتك السابقة",
"Visa": "فيزا",
"Visit Website/Contact Support": "زيارة الموقع/الاتصال بالدعم",
- "Visit our website or contact Siro support for information on driver registration and requirements.": "قم بزيارة موقعنا أو اتصل بدعم انطلق للحصول على معلومات حول تسجيل السائق والمتطلبات.",
+ "Visit our website or contact Intaleq support for information on driver registration and requirements.": "قم بزيارة موقعنا أو اتصل بدعم انطلق للحصول على معلومات حول تسجيل السائق والمتطلبات.",
"Voice Calling": "المكالمات الصوتية",
"Voice call over internet": "مكالمة صوتية عبر الإنترنت",
"Wait for timer": "انتظر المؤقت",
@@ -1908,7 +1908,7 @@ final Map ar_jo = {
"Wallet is blocked": "المحفظة مقفلة",
"Wallet!": "المحفظة!",
"Warning": "تحذير",
- "Warning: Siroing detected!": "تحذير: تم اكتشاف مخالفات!",
+ "Warning: Intaleqing detected!": "تحذير: تم اكتشاف مخالفات!",
"Warning: Speeding detected!": "تحذير: تم اكتشاف تجاوز السرعة!",
"We Are Sorry That we dont have cars in your Location!": "نأسف لأننا لا نملك سيارات في موقعك!",
"We are looking for a captain but the price may increase to let a captain accept": "نحن نبحث عن كابتن ولكن قد يزيد السعر ليقبل كابتن",
@@ -1918,8 +1918,7 @@ final Map ar_jo = {
"We are searching for the nearest driver": "نحن نبحث عن أقرب سائق لك",
"We are searching for the nearest driver to you": "نحن نبحث عن أقرب سائق لك",
"We connect you with the nearest drivers for faster pickups and quicker journeys.": "نربطك بأقرب السائقين لالتقاط أسرع ورحلات أسرع.",
- "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Siro app and be part of our Siro family.": "لدينا عروض صيانة لسيارتك. يمكنك استخدامها بعد إكمال 600 رحلة للحصول على خصم 20% على إصلاحات السيارة. استمتع باستخدام تطبيق انطلق وكن جزءاً من عائلة انطلق.",
- "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Tripz app and be part of our Tripz family.": "لدينا عروض صيانة لسيارتك. يمكنك استخدامها بعد إكمال 600 رحلة للحصول على خصم 20% على إصلاحات السيارة. استمتع باستخدام تطبيق انطلق وكن جزءاً من عائلة انطلق.",
+ "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.": "لدينا عروض صيانة لسيارتك. يمكنك استخدامها بعد إكمال 600 رحلة للحصول على خصم 20% على إصلاحات السيارة. استمتع باستخدام تطبيق انطلق وكن جزءاً من عائلة انطلق.",
"We have partnered with health insurance providers to offer you special health coverage. Complete 500 trips and receive a 20% discount on health insurance premiums.": "لقد تعاونا مع مزوّدي التأمين الصحي لتقديم تغطية صحية خاصة لك. أكمل 500 رحلة واحصل على خصم 20% على أقساط التأمين الصحي.",
"We have received your application to join us as a driver. Our team is currently reviewing it. Thank you for your patience.": "لقد تلقينا طلبك للانضمام إلينا كسائق. يقوم فريقنا حالياً بمراجعته. شكراً لصبرك.",
"We have sent a verification code to your mobile number:": "لقد أرسلنا رمز التحقق إلى رقم هاتفك:",
@@ -1928,7 +1927,7 @@ final Map ar_jo = {
"We need your location to find nearby drivers for pickups and drop-offs.": "نحتاج إلى موقعك للعثور على سائقين قريبين لعمليات الالتقاط والتنزيل.",
"We need your phone number to contact you and to help you receive orders.": "نحتاج إلى رقم هاتفك للتواصل معك ومساعدتك في تلقي الطلبات.",
"We need your phone number to contact you and to help you.": "نحتاج إلى رقم هاتفك للتواصل معك ومساعدتك.",
- "We noticed the Siro is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.": "لقد لاحظنا أن انطلق يتجاوز 100 كم/ساعة. يرجى التباطؤ من أجل سلامتك. إذا شعرت بعدم الأمان، يمكنك مشاركة تفاصيل رحلتك مع جهة اتصال أو الاتصال بالشرطة باستخدام زر SOS الأحمر.",
+ "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.": "لقد لاحظنا أن انطلق يتجاوز 100 كم/ساعة. يرجى التباطؤ من أجل سلامتك. إذا شعرت بعدم الأمان، يمكنك مشاركة تفاصيل رحلتك مع جهة اتصال أو الاتصال بالشرطة باستخدام زر SOS الأحمر.",
"We regret to inform you that another driver has accepted this order.": "نأسف لإبلاغك أن سائقاً آخر قد قبل هذا الطلب.",
"We search nearst Driver to you": "نحن نبحث عن أقرب سائق لك",
"We sent 5 digit to your Email provided": "لقد أرسلنا 5 أرقام إلى بريدك الإلكتروني المقدم",
@@ -1946,12 +1945,12 @@ final Map ar_jo = {
"Welcome": "مرحباً",
"Welcome Back!": "مرحباً بعودتك!",
"Welcome Offer!": "عرض ترحيبي!",
- "Welcome to Siro!": "مرحباً بك في انطلق!",
+ "Welcome to Intaleq!": "مرحباً بك في انطلق!",
"What are the order details we provide to you?": "ما هي تفاصيل الطلب التي نقدمها لك؟",
"What are the requirements to become a driver?": "ما هي المتطلبات لل becoming سائق؟",
- "What is Types of Trips in Siro?": "ما هي أنواع الرحلات في انطلق؟",
+ "What is Types of Trips in Intaleq?": "ما هي أنواع الرحلات في انطلق؟",
"What is the feature of our wallet?": "ما هي ميزة محفظتنا؟",
- "What safety measures does Siro offer?": "ما هي إجراءات السلامة التي يقدمها انطلق؟",
+ "What safety measures does Intaleq offer?": "ما هي إجراءات السلامة التي يقدمها انطلق؟",
"What types of vehicles are available?": "ما هي أنواع المركبات المتاحة؟",
"WhatsApp": "واتساب",
"WhatsApp Location Extractor": "مستخرج موقع الواتساب",
@@ -1963,9 +1962,9 @@ final Map ar_jo = {
"Where to": "إلى أين؟",
"Where you want go": "إلى أين تريد الذهاب؟",
"Which method you will pay": "بأي طريقة ستدفع؟",
- "Why Choose Siro?": "لماذا تختار انطلق؟",
+ "Why Choose Intaleq?": "لماذا تختار انطلق؟",
"Why do you want to cancel this trip?": "لماذا تريد إلغاء هذه الرحلة؟",
- "With Siro, you can get a ride to your destination in minutes.": "مع انطلق، يمكنك الحصول على رحلة إلى وجهتك في دقائق.",
+ "With Intaleq, you can get a ride to your destination in minutes.": "مع انطلق، يمكنك الحصول على رحلة إلى وجهتك في دقائق.",
"Withdraw": "سحب",
"Work": "العمل",
"Work & Contact": "العمل والتواصل",
@@ -1989,7 +1988,7 @@ final Map ar_jo = {
"Yes": "نعم",
"Yes, Pay": "نعم، ادفع",
"Yes, optimize": "نعم، قم بالتحسين",
- "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Siro cancellation policy for details.": "نعم، يمكنك إلغاء رحلتك تحت ظروف معينة (مثل قبل تعيين السائق). راجع سياسة إلغاء انطلق للتفاصيل.",
+ "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "نعم، يمكنك إلغاء رحلتك تحت ظروف معينة (مثل قبل تعيين السائق). راجع سياسة إلغاء انطلق للتفاصيل.",
"Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.": "نعم، يمكنك إلغاء رحلتك، ولكن يرجى ملاحظة أن رسوم الإلغاء قد تنطبق اعتماداً على المدة الزمنية التي تقوم بالإلغاء فيها مسبقاً.",
"You": "أنت",
"You Are Stopped For this Day !": "تم إيقافك لهذا اليوم!",
@@ -2041,7 +2040,7 @@ final Map ar_jo = {
"You can purchase a budget to enable online access through the options listed below": "يمكنك شراء ميزانية لتمكين الوصول عبر الإنترنت من خلال الخيارات المدرجة أدناه",
"You can purchase a budget to enable online access through the options listed below.": "يمكنك شراء ميزانية لتمكين الوصول عبر الإنترنت من خلال الخيارات المدرجة أدناه.",
"You can resend in": "يمكنك إعادة الإرسال خلال",
- "You can share the Siro App with your friends and earn rewards for rides they take using your code": "يمكنك مشاركة تطبيق انطلق مع أصدقائك وكسب مكافآت عن الرحلات التي يقومون بها باستخدام رمزك",
+ "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "يمكنك مشاركة تطبيق انطلق مع أصدقائك وكسب مكافآت عن الرحلات التي يقومون بها باستخدام رمزك",
"You can upgrade price to may driver accept your order": "يمكنك رفع السعر ليقبل السائق طلبك",
"You can\\'t continue with us .\\nYou should renew Driver license": "لا يمكنك الاستمرار معنا.\\nيجب تجديد رخصة القيادة",
"You canceled VIP trip": "لقد ألغيت رحلة VIP",
@@ -2188,8 +2187,8 @@ final Map ar_jo = {
"\\\${\"You must leave at least": "\\\${\"يجب أن تترك على الأقل",
"\\\${\"amount": "\\\${\"المبلغ",
"\\\${\"transaction_id": "\\\${\"معرف المعاملة",
- "\\\${'*Siro APP CODE*": "\\\${'*رمز تطبيق انطلق*",
- "\\\${'*Siro DRIVER CODE*": "\\\${'*رمز سائق انطلق*",
+ "\\\${'*Intaleq APP CODE*": "\\\${'*رمز تطبيق انطلق*",
+ "\\\${'*Intaleq DRIVER CODE*": "\\\${'*رمز سائق انطلق*",
"\\\${'Address": "\\\${'العنوان",
"\\\${'Address: ": "\\\${'العنوان: ",
"\\\${'Age": "\\\${'العمر",
@@ -2436,7 +2435,7 @@ final Map ar_jo = {
"login or register subtitle": "عنوان تسجيل الدخول أو التسجيل",
"m": "م",
"m at the agreed-upon location": "في الموقع المتفق عليه",
- "m inviting you to try Siro.": "أدعوكم لتجربة انطلق.",
+ "m inviting you to try Intaleq.": "أدعوكم لتجربة انطلق.",
"m waiting for you": "أنتظركم",
"m waiting for you at the specified location.": "أنتظركم في الموقع المحدد.",
"message From Driver": "رسالة من السائق",
@@ -2492,16 +2491,16 @@ final Map ar_jo = {
"s Promo": "عرضه",
"s Promos": "عروضه",
"s Response": "ردّه",
- "s Siro account.": "حساب انطلق الخاص به.",
- "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "ميزات حساب انطلق الخاص به:\\n- تحويل الأموال عدة مرات.\\n- التحويل لأي شخص.\\n- إجراء عمليات الشراء.\\n- شحن حسابك.\\n- شحن حساب انطلق لصديق.\\n- احفظ أموالك معنا واحصل عليها في بنكك كراتب شهري.",
+ "s Intaleq account.": "حساب انطلق الخاص به.",
+ "s Intaleq account.\\nStore your money with us and receive it in your bank as a monthly salary.": "ميزات حساب انطلق الخاص به:\\n- تحويل الأموال عدة مرات.\\n- التحويل لأي شخص.\\n- إجراء عمليات الشراء.\\n- شحن حسابك.\\n- شحن حساب انطلق لصديق.\\n- احفظ أموالك معنا واحصل عليها في بنكك كراتب شهري.",
"s Terms & Review Privacy Notice": "شروطه ومراجعة إشعار الخصوصية",
"s heavy traffic here. Can you suggest an alternate pickup point?": "هناك ازدحام مروري شديد هنا. هل يمكنك اقتراح نقطة التقاء بديلة؟",
"s license does not match the one on your ID document. Please verify and provide the correct documents.": "لا تتطابق رخصته مع تلك الموجودة في وثيقة هويتك. يرجى التحقق وتقديم المستندات الصحيحة.",
- "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Siro app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "رخصة القيادة، وثيقة الهوية، ووثيقة تسجيل السيارة. سيقوم نظام الذكاء الاصطناعي لدينا بمراجعة وتوثيق صحتها فوراً خلال دقيقتين إلى 3 دقائق. إذا تمت الموافقة على مستنداتك، يمكنك البدء بالعمل كسائق على تطبيق انطلق. يرجى ملاحظة أن تقديم مستندات مزورة هو جريمة خطيرة وقد يؤدي إلى الإنهاء الفوري والعواقب القانونية.",
+ "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "رخصة القيادة، وثيقة الهوية، ووثيقة تسجيل السيارة. سيقوم نظام الذكاء الاصطناعي لدينا بمراجعة وتوثيق صحتها فوراً خلال دقيقتين إلى 3 دقائق. إذا تمت الموافقة على مستنداتك، يمكنك البدء بالعمل كسائق على تطبيق انطلق. يرجى ملاحظة أن تقديم مستندات مزورة هو جريمة خطيرة وقد يؤدي إلى الإنهاء الفوري والعواقب القانونية.",
"s license. Please verify and provide the correct documents.": "رخصته. يرجى التحقق وتقديم المستندات الصحيحة.",
"s phone": "هاتفه",
"s pioneering ride-sharing service, proudly developed by Arabian and local owners. We prioritize being near you – both our valued passengers and our dedicated captains.": "خدمة مشاركة الرحلات الرائدة، التي تم تطويرها بفخر من قبل مالكين عرب ومحليين. نعطي الأولوية لقربنا منكم – سواء كركاب قيّمين أو كباتن متفانين.",
- "s time to check the Siro app!": "حان الوقت للتحقق من تطبيق انطلق!",
+ "s time to check the Intaleq app!": "حان الوقت للتحقق من تطبيق انطلق!",
"safe_and_comfortable": "آمن ومريح",
"scams operations": "عمليات احتيال",
"scan Car License.": "امسح رخصة السيارة.",
@@ -2530,7 +2529,7 @@ final Map ar_jo = {
"t have a phone number.": "ليس لديك رقم هاتف.",
"t have a reason": "ليس لديك سبب",
"t have account": "ليس لديك حساب",
- "t have enough money in your Siro wallet": "ليس لديك ما يكفي من الأموال في محفظة انطلق الخاصة بك",
+ "t have enough money in your Intaleq wallet": "ليس لديك ما يكفي من الأموال في محفظة انطلق الخاصة بك",
"t moved sufficiently!": "لم تتحرك بشكل كافٍ!",
"t need a ride anymore": "لا تحتاج إلى رحلة بعد الآن",
"t return to use app after 1 month": "لن تتمكن من العودة لاستخدام التطبيق بعد شهر",
@@ -2580,10 +2579,10 @@ final Map ar_jo = {
"wallet due to a previous trip.": "محفظة بسبب رحلة سابقة.",
"wallet_credited_message": "تمت إضافة",
"wallet_updated": "تم تحديث المحفظة",
- "welcome to siro": "مرحباً بك في انطلق",
+ "welcome to intaleq": "مرحباً بك في انطلق",
"welcome user": "مرحباً بالمستخدم",
"welcome_message": "رسالة الترحيب",
- "welcome_to_siro": "مرحباً بك في انطلق",
+ "welcome_to_intaleq": "مرحباً بك في انطلق",
"whatsapp', phone1, 'Hello": "واتساب', phone1, 'مرحباً",
"with license plate": "مع لوحة الترخيص",
"with type": "مع النوع",
@@ -2607,7 +2606,7 @@ final Map ar_jo = {
"you must insert token code": "يجب عليك إدخال رمز الرمز",
"you must insert token code ": "يجب عليك إدخال رمز الرمز",
"you will pay to Driver": "سوف تدفع للسائق",
- "you will pay to Driver you will be pay the cost of driver time look to your Siro Wallet": "سوف تدفع للسائق، سوف تدفع تكلفة وقت السائق، انظر إلى محفظة انطلق الخاصة بك",
+ "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "سوف تدفع للسائق، سوف تدفع تكلفة وقت السائق، انظر إلى محفظة انطلق الخاصة بك",
"you will use this device?": "هل ستستخدم هذا الجهاز؟",
"your ride is Accepted": "تم قبول رحلتك",
"your ride is applied": "تم تطبيق رحلتك",
diff --git a/intaleq_driver/lib/controller/local/ar_sy.dart b/intaleq_driver/lib/controller/local/ar_sy.dart
index c601a5a..4b15d19 100644
--- a/intaleq_driver/lib/controller/local/ar_sy.dart
+++ b/intaleq_driver/lib/controller/local/ar_sy.dart
@@ -34,8 +34,8 @@ final Map ar_sy = {
"\${\"You must leave at least": "\${\"You must leave at least",
"\${\"amount": "\${\"amount",
"\${\"transaction_id": "\${\"transaction_id",
- "\${'*Siro APP CODE*": "\${'*Intaleq APP CODE*",
- "\${'*Siro DRIVER CODE*": "\${'*Intaleq DRIVER CODE*",
+ "\${'*Intaleq APP CODE*": "\${'*Intaleq APP CODE*",
+ "\${'*Intaleq DRIVER CODE*": "\${'*Intaleq DRIVER CODE*",
"\${'Address": "\${'Address",
"\${'Address: ": "\${'Address: ",
"\${'Age": "\${'Age",
@@ -133,8 +133,8 @@ final Map ar_sy = {
"([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'نص",
"([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'نص",
")[1]}": ")[1]}",
- "*Siro APP CODE*": "*كود تطبيق انطلق*",
- "*Siro DRIVER CODE*": "*كود سائق انطلق*",
+ "*Intaleq APP CODE*": "*كود تطبيق انطلق*",
+ "*Intaleq DRIVER CODE*": "*كود سائق انطلق*",
"--": "--",
"-1% commission": "خصم 1% من العمولة",
"-2% commission": "خصم 2% من العمولة",
@@ -556,7 +556,7 @@ final Map ar_sy = {
"Day Off": "يوم عطلة",
"Day Streak": "سلسلة الأيام",
"Days": "الأيام",
- "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Siro app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nSiro ,": "عزيزي/عزيزتي،\\n🚀 بلشت رحلة جديدة وحابب/حابّة أشاركك التفاصيل وموقعي الحالي معك مباشرة! تفضّل حمّل تطبيق انطلق...\\n👉 رابط التحميل:\\nأندرويد [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\nآيفون [https://getapp.cc/app/6458734951]\\nأتطلع لإبقائك قريباً خلال مغامرتي!\\nانطلق ،",
+ "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,": "عزيزي/عزيزتي،\\n🚀 بلشت رحلة جديدة وحابب/حابّة أشاركك التفاصيل وموقعي الحالي معك مباشرة! تفضّل حمّل تطبيق انطلق...\\n👉 رابط التحميل:\\nأندرويد [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\nآيفون [https://getapp.cc/app/6458734951]\\nأتطلع لإبقائك قريباً خلال مغامرتي!\\nانطلق ،",
"Debit": "خصم",
"Debit Card": "بطاقة خصم",
"Dec 15 - Dec 21, 2024": "15 كانون الأول - 21 كانون الأول 2024",
@@ -596,8 +596,8 @@ final Map ar_sy = {
"Don't have an account? Register": "ليس لديك حساب؟ سجل الآن",
"Done": "تم",
"Don’t forget your personal belongings.": "متنساش حاجاتك الشخصية.",
- "Download the Siro Driver app now and earn rewards!": "حمّل تطبيق سائق انطلق هلق واكسب مكافآت!",
- "Download the Siro app now and enjoy your ride!": "حمّل تطبيق انطلق هلق واستمتع برحلتك!",
+ "Download the Intaleq Driver app now and earn rewards!": "حمّل تطبيق سائق انطلق هلق واكسب مكافآت!",
+ "Download the Intaleq app now and enjoy your ride!": "حمّل تطبيق انطلق هلق واستمتع برحلتك!",
"Download the app now:": "حمّل التطبيق هلق:",
"Drawing route on map...": "عم نرسم الطريق على الخريطة...",
"Driver": "السائق",
@@ -719,7 +719,7 @@ final Map ar_sy = {
"Evening": "المساء",
"Excellent": "ممتاز",
"Exclusive offers and discounts always with the Sefer app": "عروض وخصومات حصرية دايماً مع تطبيق سفر",
- "Exclusive offers and discounts always with the Siro app": "عروض وخصومات حصرية دايماً مع تطبيق انطلق",
+ "Exclusive offers and discounts always with the Intaleq app": "عروض وخصومات حصرية دايماً مع تطبيق انطلق",
"Exit": "خروج",
"Exit Ride?": "تخرج من الرحلة؟",
"Expiration Date": "تاريخ الانتهاء",
@@ -766,8 +766,8 @@ final Map ar_sy = {
"Flag-down fee": "رسوم بداية المشوار",
"For Drivers": "للسواقين",
"For Egypt": "لمصر",
- "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "لرحلات انطلق والتوصيل، السعر بيحسب ديناميكياً. لرحلات الكومفورت، السعر بيعتمد على الوقت والمسافة.",
- "For Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "لرحلات انطلق والسكوتر، السعر بيحسب ديناميكياً. لرحلات الكومفورت، السعر بيعتمد على الوقت والمسافة.",
+ "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "لرحلات انطلق والتوصيل، السعر بيحسب ديناميكياً. لرحلات الكومفورت، السعر بيعتمد على الوقت والمسافة.",
+ "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "لرحلات انطلق والسكوتر، السعر بيحسب ديناميكياً. لرحلات الكومفورت، السعر بيعتمد على الوقت والمسافة.",
"Free Call": "مكالمة مجانية",
"Frequently Asked Questions": "الأسئلة الشائعة",
"Frequently Questions": "أسئلة متكررة",
@@ -789,7 +789,7 @@ final Map ar_sy = {
"Get": "احصل على",
"Get Details of Trip": "احصل على تفاصيل الرحلة",
"Get Direction": "احصل على الاتجاهات",
- "Get a discount on your first Siro ride!": "احصل على خصم بأول رحلة انطلق!",
+ "Get a discount on your first Intaleq ride!": "احصل على خصم بأول رحلة انطلق!",
"Get features for your country": "احصل على الميزات لبلدك",
"Get it Now!": "احصل عليها هلق!",
"Get to your destination quickly and easily.": "توصل لوجهتك بسرعة وسهولة.",
@@ -855,7 +855,7 @@ final Map ar_sy = {
"How much do you want to earn today?": "كم تريد أن تربح اليوم؟",
"How much longer will you be?": "قديش بعدك بتأخر؟",
"How to use App": "كيف تستخدم التطبيق",
- "How to use Siro": "كيف تستخدم انطلق",
+ "How to use Intaleq": "كيف تستخدم انطلق",
"How was the passenger?": "كيف كان الراكب؟",
"How was your trip with": "كيف كانت رحلتك مع",
"How would you like to receive your reward?": "كيف بدك تستلم مكافأتك؟",
@@ -939,7 +939,7 @@ final Map ar_sy = {
"IssueDate": "تاريخ الإصدار",
"JOD": "د.أ",
"Join": "انضم",
- "Join Siro as a driver using my referral code!": "انضم لسواقة انطلق بكود الدعوة بتاعي!",
+ "Join Intaleq as a driver using my referral code!": "انضم لسواقة انطلق بكود الدعوة بتاعي!",
"Jordan": "الأردن",
"Just now": "الآن",
"KM": "كم",
@@ -1161,7 +1161,7 @@ final Map ar_sy = {
"Order Applied": "تم تطبيق الطلب",
"Order Cancelled": "تم إلغاء الطلب",
"Order Cancelled by Passenger": "تم إلغاء الطلب من الراكب",
- "Order Details Siro": "تفاصيل الطلب انطلق",
+ "Order Details Intaleq": "تفاصيل الطلب انطلق",
"Order History": "سجل الطلبات",
"Order ID": "رقم الطلب",
"Order Request Page": "صفحة طلب الرحلة",
@@ -1212,7 +1212,7 @@ final Map ar_sy = {
"Pay using MTN Cash wallet": "الدفع باستخدام محفظة MTN Cash",
"Pay using Sham Cash wallet": "الدفع باستخدام محفظة Sham Cash",
"Pay using Syriatel mobile wallet": "الدفع باستخدام محفظة سيريتل",
- "Pay via CliQ (Alias: siroapp)": "الدفع عبر CliQ (الاسم المستعار: intaleqapp)",
+ "Pay via CliQ (Alias: intaleqapp)": "الدفع عبر CliQ (الاسم المستعار: intaleqapp)",
"Pay with Credit Card": "ادفع ببطاقة ائتمان",
"Pay with Debit Card": "ادفع ببطاقة خصم",
"Pay with Wallet": "ادفع من المحفظة",
@@ -1304,7 +1304,7 @@ final Map ar_sy = {
"Please help! Contact me as soon as possible.": "من فضلك ساعدني! اتصل بي بأسرع وقت ممكن.",
"Please make sure not to leave any personal belongings in the car.": "تفضّل تأكد ما تترك أي حاجات شخصية بالسيارة.",
"Please make sure to read the license carefully.": "تفضّل تأكد تقرأ الرخصة بعناية.",
- "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Siro app": "من فضلك تأكد إن معاك كل حاجاتك الشخصية وإن أي مبلغ متبقي، لو موجود، تم إضافته لمحفظتك قبل ما تمشي. شكرًا لاستخدامك تطبيق انطلق",
+ "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app": "من فضلك تأكد إن معاك كل حاجاتك الشخصية وإن أي مبلغ متبقي، لو موجود، تم إضافته لمحفظتك قبل ما تمشي. شكرًا لاستخدامك تطبيق انطلق",
"Please paste the transfer message": "يرجى لصق رسالة التحويل",
"Please provide details about any long-term diseases.": "تفضّل قدّم تفاصيل عن أي أمراض مزمنة.",
"Please put your licence in these border": "تفضّل حط رخصتك بهالإطار",
@@ -1314,7 +1314,7 @@ final Map ar_sy = {
"Please select a ride before submitting.": "تفضّل اختر المشوار قبل ما ترسل.",
"Please stay on the picked point.": "يرجى البقاء في نقطة الالتقاط المحددة.",
"Please tell us why you want to cancel.": "تفضّل قلنا ليش بدك تلغي.",
- "Please transfer the amount to alias: siroapp": "يرجى تحويل المبلغ إلى الاسم المستعار: intaleqapp",
+ "Please transfer the amount to alias: intaleqapp": "يرجى تحويل المبلغ إلى الاسم المستعار: intaleqapp",
"Please try again in a few moments": "تفضّل جرّب مرة تانية بعد شوي",
"Please upload a clear photo of your face to be identified by passengers.": "تفضّل ارفع صورة واضحة لوجهك عشان الركاب يتعرفوا عليك.",
"Please upload all 4 required documents.": "تفضّل ارفع كل الـ4 وثائق المطلوبة.",
@@ -1496,7 +1496,7 @@ final Map ar_sy = {
"Send Email": "أرسل بريد",
"Send Invite": "أرسل دعوة",
"Send Message": "أرسل رسالة",
- "Send Siro app to him": "أرسل تطبيق انطلق له",
+ "Send Intaleq app to him": "أرسل تطبيق انطلق له",
"Send Verfication Code": "أرسل رمز التحقق",
"Send Verification Code": "أرسل رمز التحقق",
"Send WhatsApp Message": "أرسل رسالة واتساب",
@@ -1550,34 +1550,34 @@ final Map ar_sy = {
"Sign in with Google for easier email and name entry": "سجل الدخول بجوجل لإدخال البريد والاسم بسهولة",
"Sign in with a provider for easy access": "سجل الدخول عبر مزود للوصول بسهولة",
"Silver badge": "وسام فضي",
- "Siro": "انطلق",
- "Siro Balance": "رصيد انطلق",
- "Siro DRIVER CODE": "كود سائق انطلق",
- "Siro Driver": "سائق انطلق",
- "Siro LLC": "شركة انطلق",
- "Siro LLC\\n\${'Syria": "Intaleq LLC\\n\${'Syria",
- "Siro LLC\\n\\\${'Syria": "شركة انطلق\\n\\\${'سوريا",
- "Siro Order": "طلب انطلق",
- "Siro Over": "انطلق انتهى",
- "Siro Reminder": "تذكير انطلق",
- "Siro Wallet": "محفظة انطلق",
- "Siro Wallet Features:": "ميزات محفظة انطلق:",
- "Siro is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:": "انطلق تطبيق مشاركة رحلات مصمم لسلامتك وتوفير فلوسك. بنربطك بسواقين موثوقين بمنطقتك...",
- "Siro is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:": "انطلق تطبيق مشاركة رحلات مصمم لسلامتك وتوفير فلوسك. بنربطك بسواقين موثوقين بمنطقتك، لنضمن لك تجربة سفر مريحة وخالية من التوتر.\\n\\nإليك بعض الميزات الرئيسية التي تميزنا:",
- "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "انطلق ملتزم بالسلامة، وكل سواقينا بتم فحصهم بدقة.",
- "Siro is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "انطلق أول تطبيق مشاركة رحلات بسوريا، مصمم يربطك بأقرب السواقين لرحلة سريعة ومريحة.",
- "Siro is the ride-hailing app that is safe, reliable, and accessible.": "انطلق تطبيق نقل آمن وموثوق ومتاح للجميع.",
- "Siro is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Siro, you enjoy quality, safety, and peace of mind—every time you ride.": "انطلق هو تطبيق مشاركة الرحلات الآمن والأكثر موثوقية المصمم خصيصاً للركاب بسوريا. بنقدملك تجربة رحلة مريحة، محترمة، وبأسعار مناسبة، مع ميزات بتعطي أولوية لسلامتك وراحتك. سواقينا الموثوقين موثقين ومؤمنين، وبيدعمهم صيانة دورية من مهندسين محترفين. كمان بنقدم خدمات دعم على الطريق عشان نضمنلك رحلة سلسة ومن دون هموم. مع انطلق، بتستمتع بالجودة، السلامة، وراحة البال—بكل رحلة.",
- "Siro is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.": "انطلق هو تطبيق مشاركة الرحلات الآمن اللي بقدّم ميزات كتير للسواقين والركاب. بنقدّم أقل عمولة بس 8% عشان تاخد أحسن قيمة لرحلاتك...",
- "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "انطلق بيقدم خيارات متنوعة منها اقتصادي، مريح، وفاخر لتناسب احتياجاتك وميزانيتك.",
- "Siro offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.": "انطلق بيقدم خيارات سيارات متنوعة تناسب احتياجاتك، منها الاقتصادي، المريح، والفاخر. اختر اللي بيناسب ميزانيتك وعدد الركاب.",
- "Siro offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "انطلق بيقدم طرق دفع متعددة لراحتك. اختر بين الدفع كاش أو ببطاقة ائتمان/خصم وقت تأكيد الرحلة.",
- "Siro offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.": "انطلق بيقدم ميزات سلامة متعددة منها التحقق من السائق، تتبع الرحلة جوا التطبيق، خيارات اتصال الطوارئ، وإمكانية مشاركة حالة رحلتك مع جهات موثوقة.",
- "Siro prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "انطلق بيعطي أولوية لسلامتك. بنقدم ميزات مثل التحقق من السائق، تتبع الرحلة جوا التطبيق، وخيارات اتصال الطوارئ.",
- "Siro provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "انطلق بوفر دردشة جوا التطبيق عشان تتواصل مع السائق أو الراكب وقت الرحلة.",
- "Siro's Response": "رد انطلق",
- "Siro123": "Intaleq123",
- "Siro: For fixed salary and endpoints.": "انطلق: للراتب الثابت والمحطات النهائية.",
+ "Intaleq": "انطلق",
+ "Intaleq Balance": "رصيد انطلق",
+ "Intaleq DRIVER CODE": "كود سائق انطلق",
+ "Intaleq Driver": "سائق انطلق",
+ "Intaleq LLC": "شركة انطلق",
+ "Intaleq LLC\\n\${'Syria": "Intaleq LLC\\n\${'Syria",
+ "Intaleq LLC\\n\\\${'Syria": "شركة انطلق\\n\\\${'سوريا",
+ "Intaleq Order": "طلب انطلق",
+ "Intaleq Over": "انطلق انتهى",
+ "Intaleq Reminder": "تذكير انطلق",
+ "Intaleq Wallet": "محفظة انطلق",
+ "Intaleq Wallet Features:": "ميزات محفظة انطلق:",
+ "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:": "انطلق تطبيق مشاركة رحلات مصمم لسلامتك وتوفير فلوسك. بنربطك بسواقين موثوقين بمنطقتك...",
+ "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:": "انطلق تطبيق مشاركة رحلات مصمم لسلامتك وتوفير فلوسك. بنربطك بسواقين موثوقين بمنطقتك، لنضمن لك تجربة سفر مريحة وخالية من التوتر.\\n\\nإليك بعض الميزات الرئيسية التي تميزنا:",
+ "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "انطلق ملتزم بالسلامة، وكل سواقينا بتم فحصهم بدقة.",
+ "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "انطلق أول تطبيق مشاركة رحلات بسوريا، مصمم يربطك بأقرب السواقين لرحلة سريعة ومريحة.",
+ "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "انطلق تطبيق نقل آمن وموثوق ومتاح للجميع.",
+ "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.": "انطلق هو تطبيق مشاركة الرحلات الآمن والأكثر موثوقية المصمم خصيصاً للركاب بسوريا. بنقدملك تجربة رحلة مريحة، محترمة، وبأسعار مناسبة، مع ميزات بتعطي أولوية لسلامتك وراحتك. سواقينا الموثوقين موثقين ومؤمنين، وبيدعمهم صيانة دورية من مهندسين محترفين. كمان بنقدم خدمات دعم على الطريق عشان نضمنلك رحلة سلسة ومن دون هموم. مع انطلق، بتستمتع بالجودة، السلامة، وراحة البال—بكل رحلة.",
+ "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.": "انطلق هو تطبيق مشاركة الرحلات الآمن اللي بقدّم ميزات كتير للسواقين والركاب. بنقدّم أقل عمولة بس 8% عشان تاخد أحسن قيمة لرحلاتك...",
+ "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "انطلق بيقدم خيارات متنوعة منها اقتصادي، مريح، وفاخر لتناسب احتياجاتك وميزانيتك.",
+ "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.": "انطلق بيقدم خيارات سيارات متنوعة تناسب احتياجاتك، منها الاقتصادي، المريح، والفاخر. اختر اللي بيناسب ميزانيتك وعدد الركاب.",
+ "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "انطلق بيقدم طرق دفع متعددة لراحتك. اختر بين الدفع كاش أو ببطاقة ائتمان/خصم وقت تأكيد الرحلة.",
+ "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.": "انطلق بيقدم ميزات سلامة متعددة منها التحقق من السائق، تتبع الرحلة جوا التطبيق، خيارات اتصال الطوارئ، وإمكانية مشاركة حالة رحلتك مع جهات موثوقة.",
+ "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "انطلق بيعطي أولوية لسلامتك. بنقدم ميزات مثل التحقق من السائق، تتبع الرحلة جوا التطبيق، وخيارات اتصال الطوارئ.",
+ "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "انطلق بوفر دردشة جوا التطبيق عشان تتواصل مع السائق أو الراكب وقت الرحلة.",
+ "Intaleq's Response": "رد انطلق",
+ "Intaleq123": "Intaleq123",
+ "Intaleq: For fixed salary and endpoints.": "انطلق: للراتب الثابت والمحطات النهائية.",
"Slide to End Trip": "اسحب عشان تنهي الرحلة",
"So go and gain your money": "يلا استلم فلوسك",
"Social Butterfly": "الفراشة الاجتماعية",
@@ -1607,7 +1607,7 @@ final Map ar_sy = {
"Status": "الحالة",
"Status is": "الحالة هي",
"Stay": "ابقى",
- "Step-by-step instructions on how to request a ride through the Siro app.": "تعليمات خطوة بخطوة عشان تطلب رحلة عبر تطبيق انطلق.",
+ "Step-by-step instructions on how to request a ride through the Intaleq app.": "تعليمات خطوة بخطوة عشان تطلب رحلة عبر تطبيق انطلق.",
"Stop": "توقف",
"Store your money with us and receive it in your bank as a monthly salary.": "خزّن فلوسك عنا واستلمها ببنكك كراتب شهري.",
"Submission Failed": "فشل الإرسال",
@@ -1727,8 +1727,8 @@ final Map ar_sy = {
"To become a driver, you must review and agree to the": "عشان تصير سائق، لازم تراجع وتوافق على",
"To become a driver, you must review and agree to the ": "عشان تصير سائق، لازم تراجع وتوافق على",
"To become a passenger, you must review and agree to the": "عشان تصير راكب، لازم تراجع وتوافق على",
- "To become a ride-sharing driver on the Siro app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Siro app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "عشان تصير سائق مشاركة رحلات بتطبيق انطلق، لازم ترفع رخصة قيادتك، وثيقة هويتك، ورخصة سيارتك. نظام الذكاء الاصطناعي رح يراجعها ويوثّقها بدقيقتين لـ 3. إذا انقبلت، تقبل تشتغل كسائق بانطلق. انتبه، تزوير وثائق جريمة خطيرة وبتسبب فصل فوري وعواقب قانونية.",
- "To become a ride-sharing driver on the Siro app...": "عشان تصير سائق مشاركة رحلات بتطبيق انطلق...",
+ "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "عشان تصير سائق مشاركة رحلات بتطبيق انطلق، لازم ترفع رخصة قيادتك، وثيقة هويتك، ورخصة سيارتك. نظام الذكاء الاصطناعي رح يراجعها ويوثّقها بدقيقتين لـ 3. إذا انقبلت، تقبل تشتغل كسائق بانطلق. انتبه، تزوير وثائق جريمة خطيرة وبتسبب فصل فوري وعواقب قانونية.",
+ "To become a ride-sharing driver on the Intaleq app...": "عشان تصير سائق مشاركة رحلات بتطبيق انطلق...",
"To change Language the App": "عشان تغير لغة التطبيق",
"To change some Settings": "عشان تغير بعض الإعدادات",
"To display orders instantly, please grant permission to draw over other apps.": "عشان تعرض الطلبات فوراً، تفضّل امنح صلاحية العرض فوق التطبيقات الأخرى.",
@@ -1736,7 +1736,7 @@ final Map ar_sy = {
"To ensure you receive the most accurate information for your location, please select your country below. This will help tailor the app experience and content to your country.": "عشان تاخد أدق معلومات لموقعك، تفضّل اختر بلدك من تحت. هالشي رح يساعدنا نخصّص تجربة التطبيق ومحتواه لبلدك.",
"To get a gift for both": "عشان تاخد هدية للكل",
"To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "عشان نعطيك أحسن تجربة، لازم نعرف وينك موقعك. بنستخدم موقعك عشان نلاقي سواقين قريبين ولعملية الالتقاط.",
- "To register as a driver or learn about the requirements, please visit our website or contact Siro support directly.": "عشان تسجل كسائق أو تتعرف على المتطلبات، تفضّل زور موقعنا أو تواصل مع دعم انطلق مباشرة.",
+ "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "عشان تسجل كسائق أو تتعرف على المتطلبات، تفضّل زور موقعنا أو تواصل مع دعم انطلق مباشرة.",
"To use Wallet charge it": "عشان تستخدم المحفظة اشحنها",
"Today": "اليوم",
"Today Overview": "نظرة عامة على اليوم",
@@ -1826,7 +1826,7 @@ final Map ar_sy = {
"Type your Email": "اكتب بريدك الإلكتروني",
"Type your message": "اكتب رسالتك",
"Type your message...": "اكتب رسالتك...",
- "Types of Trips in Siro:": "أنواع الرحلات بانطلق:",
+ "Types of Trips in Intaleq:": "أنواع الرحلات بانطلق:",
"USA": "أمريكا",
"Uncompromising Security": "أمان لا يتنازل عنه",
"Unknown": "غير معروف",
@@ -1885,7 +1885,7 @@ final Map ar_sy = {
"View your past transactions": "شوف معاملاتك السابقة",
"Visa": "فيزا",
"Visit Website/Contact Support": "زور الموقع/تواصل مع الدعم",
- "Visit our website or contact Siro support for information on driver registration and requirements.": "زور موقعنا أو تواصل مع دعم انطلق لمعلومات عن تسجيل السائق والمتطلبات.",
+ "Visit our website or contact Intaleq support for information on driver registration and requirements.": "زور موقعنا أو تواصل مع دعم انطلق لمعلومات عن تسجيل السائق والمتطلبات.",
"Voice Calling": "الاتصال الصوتي",
"Voice call over internet": "مكالمة صوتية عبر الإنترنت",
"Wait for timer": "استنى ليخلص الوقت",
@@ -1908,7 +1908,7 @@ final Map ar_sy = {
"Wallet is blocked": "المحفظة محظورة",
"Wallet!": "المحفظة!",
"Warning": "تحذير",
- "Warning: Siroing detected!": "تحذير: تم كشف تجاوزات!",
+ "Warning: Intaleqing detected!": "تحذير: تم كشف تجاوزات!",
"Warning: Speeding detected!": "تحذير: تم كشف سرعة زائدة!",
"We Are Sorry That we dont have cars in your Location!": "آسفين ما عندنا سيارات بموقعك!",
"We are looking for a captain but the price may increase to let a captain accept": "عم نبحث عن كابتن بس السعر ممكن يزيد عشان يقبل كابتن",
@@ -1918,8 +1918,7 @@ final Map ar_sy = {
"We are searching for the nearest driver": "عم نبحث عن أقرب سائق لك",
"We are searching for the nearest driver to you": "عم نبحث عن أقرب سائق لك",
"We connect you with the nearest drivers for faster pickups and quicker journeys.": "بنربطك بأقرب السواقين لالتقاط أسرع ورحلات أسرع.",
- "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Siro app and be part of our Siro family.": "عندنا عروض صيانة لسيارتك. تقدر تستخدمها بعد ما تكمل 600 رحلة عشان تاخد خصم 20% على تصليح السيارة. استمتع باستخدام تطبيق انطلق وكون جزء من عيلة انطلق.",
- "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Tripz app and be part of our Tripz family.": "عندنا عروض صيانة لسيارتك. تقدر تستخدمها بعد ما تكمل 600 رحلة عشان تاخد خصم 20% على تصليح السيارة. استمتع باستخدام تطبيق انطلق وكون جزء من عيلة انطلق.",
+ "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.": "عندنا عروض صيانة لسيارتك. تقدر تستخدمها بعد ما تكمل 600 رحلة عشان تاخد خصم 20% على تصليح السيارة. استمتع باستخدام تطبيق انطلق وكون جزء من عيلة انطلق.",
"We have partnered with health insurance providers to offer you special health coverage. Complete 500 trips and receive a 20% discount on health insurance premiums.": "عقدنا شراكة مع مزودي تأمين صحي عشان نعطيك تغطية صحية خاصة. اكمل 500 رحلة واحصل على خصم 20% على أقساط التأمين الصحي.",
"We have received your application to join us as a driver. Our team is currently reviewing it. Thank you for your patience.": "استلمنا طلبك للانضمام إلينا كسائق. فريقنا عم يراجعه هلق. شكراً لصبرك.",
"We have sent a verification code to your mobile number:": "أرسلنا رمز تحقق لرقم جوالك:",
@@ -1928,7 +1927,7 @@ final Map ar_sy = {
"We need your location to find nearby drivers for pickups and drop-offs.": "بنحتاج موقعك عشان نلاقي سواقين قريبين للالتقاط والتنزيل.",
"We need your phone number to contact you and to help you receive orders.": "بنحتاج رقم هاتفك عشان نتواصل معك ونساعدك تستلم طلبات.",
"We need your phone number to contact you and to help you.": "بنحتاج رقم هاتفك عشان نتواصل معك ونساعدك.",
- "We noticed the Siro is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.": "لاحظنا إن السرعة فوق 100 كم/ساعة. تفضّل خفف السرعة عشان سلامتك. إذا حسيت إنك مش بأمان، تقدر تشارك تفاصيل رحلتك مع جهة اتصال أو تتصل بالشرطة بزر الطوارئ الأحمر.",
+ "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.": "لاحظنا إن السرعة فوق 100 كم/ساعة. تفضّل خفف السرعة عشان سلامتك. إذا حسيت إنك مش بأمان، تقدر تشارك تفاصيل رحلتك مع جهة اتصال أو تتصل بالشرطة بزر الطوارئ الأحمر.",
"We regret to inform you that another driver has accepted this order.": "نأسف لإعلامك إن سائق تاني قبل هالطلب.",
"We search nearst Driver to you": "عم نبحث عن أقرب سائق لك",
"We sent 5 digit to your Email provided": "أرسلنا 5 أرقام لبريدك الإلكتروني اللي قدّمته",
@@ -1946,12 +1945,12 @@ final Map ar_sy = {
"Welcome": "ياهلا وسهلا",
"Welcome Back!": "مرحباً بعودتك!",
"Welcome Offer!": "عرض ترحيبي!",
- "Welcome to Siro!": "أهلاً بانطلق!",
+ "Welcome to Intaleq!": "أهلاً بانطلق!",
"What are the order details we provide to you?": "إيش تفاصيل الطلب اللي بنقدملك؟",
"What are the requirements to become a driver?": "إيش المتطلبات عشان تصير سائق؟",
- "What is Types of Trips in Siro?": "إيش أنواع الرحلات بانطلق؟",
+ "What is Types of Trips in Intaleq?": "إيش أنواع الرحلات بانطلق؟",
"What is the feature of our wallet?": "إيش مميزات محفظتنا؟",
- "What safety measures does Siro offer?": "إيش إجراءات السلامة اللي بيقدمها انطلق؟",
+ "What safety measures does Intaleq offer?": "إيش إجراءات السلامة اللي بيقدمها انطلق؟",
"What types of vehicles are available?": "إيش أنواع المركبات المتاحة؟",
"WhatsApp": "واتساب",
"WhatsApp Location Extractor": "مستخرج موقع الواتساب",
@@ -1963,9 +1962,9 @@ final Map ar_sy = {
"Where to": "وين بدك تروح؟",
"Where you want go": "وين بدك تروح",
"Which method you will pay": "إيش طريقة الدفع اللي بدك تستخدمها",
- "Why Choose Siro?": "ليش تختار انطلق؟",
+ "Why Choose Intaleq?": "ليش تختار انطلق؟",
"Why do you want to cancel this trip?": "ليش بدك تلغي هالرحلة؟",
- "With Siro, you can get a ride to your destination in minutes.": "مع انطلق، تقدر تاخد رحلة لوجهتك بدقايق.",
+ "With Intaleq, you can get a ride to your destination in minutes.": "مع انطلق، تقدر تاخد رحلة لوجهتك بدقايق.",
"Withdraw": "سحب",
"Work": "العمل",
"Work & Contact": "العمل والتواصل",
@@ -1989,7 +1988,7 @@ final Map ar_sy = {
"Yes": "إي",
"Yes, Pay": "إي، ادفع",
"Yes, optimize": "إي، حسن الأداء",
- "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Siro cancellation policy for details.": "إي، تقدر تلغي رحلتك بشروط معينة (مثلاً قبل ما يتحدد سائق). شوف سياسة الإلغاء بانطلق للتفاصيل.",
+ "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "إي، تقدر تلغي رحلتك بشروط معينة (مثلاً قبل ما يتحدد سائق). شوف سياسة الإلغاء بانطلق للتفاصيل.",
"Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.": "إي، تقدر تلغي رحلتك، بس انتبه إن في رسوم إلغاء ممكن تتطبق حسب الوقت اللي بتلغي فيه.",
"You": "أنت",
"You Are Stopped For this Day !": "تم إيقافك لهاليوم!",
@@ -2041,7 +2040,7 @@ final Map ar_sy = {
"You can purchase a budget to enable online access through the options listed below": "تقدر تشتري ميزانية عشان تفعّل الاتصال الأونلاين عبر الخيارات اللي تحت",
"You can purchase a budget to enable online access through the options listed below.": "تقدر تشتري ميزانية عشان تفعّل الاتصال الأونلاين عبر الخيارات اللي تحت.",
"You can resend in": "تقدر تعيد الإرسال بـ",
- "You can share the Siro App with your friends and earn rewards for rides they take using your code": "تقدر تشارك تطبيق انطلق مع صحابك وتكسب مكافآت عن الرحلات اللي يعملوها بكودك",
+ "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "تقدر تشارك تطبيق انطلق مع صحابك وتكسب مكافآت عن الرحلات اللي يعملوها بكودك",
"You can upgrade price to may driver accept your order": "تقدر ترفع السعر عشان يقبل سائق طلبك",
"You can\\'t continue with us .\\nYou should renew Driver license": "ما تقدر تكمل معنا.\\nلازم تجدّد رخصة السائق",
"You canceled VIP trip": "ألغيت رحلة VIP",
@@ -2206,8 +2205,8 @@ final Map ar_sy = {
"\\\${\"You must leave at least": "\\\${\"يجب أن تترك على الأقل",
"\\\${\"amount": "\\\${\"المبلغ",
"\\\${\"transaction_id": "\\\${\"رقم_العملية",
- "\\\${'*Siro APP CODE*": "\\\${'*كود تطبيق انطلق*",
- "\\\${'*Siro DRIVER CODE*": "\\\${'*كود سائق انطلق*",
+ "\\\${'*Intaleq APP CODE*": "\\\${'*كود تطبيق انطلق*",
+ "\\\${'*Intaleq DRIVER CODE*": "\\\${'*كود سائق انطلق*",
"\\\${'Address": "\\\${'العنوان",
"\\\${'Address: ": "\\\${'العنوان: ",
"\\\${'Age": "\\\${'العمر",
@@ -2454,7 +2453,7 @@ final Map ar_sy = {
"login or register subtitle": "عنوان تسجيل الدخول أو التسجيل",
"m": "م",
"m at the agreed-upon location": "بالموقع المتفق عليه",
- "m inviting you to try Siro.": "بدعوك تجرب انطلق.",
+ "m inviting you to try Intaleq.": "بدعوك تجرب انطلق.",
"m waiting for you": "عم أستناك",
"m waiting for you at the specified location.": "عم أستناك بالموقع المحدد.",
"message From Driver": "رسالة من السائق",
@@ -2510,16 +2509,16 @@ final Map ar_sy = {
"s Promo": "عرض",
"s Promos": "عروض",
"s Response": "رد",
- "s Siro account.": "حساب انطلق.",
- "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "ميزات محفظة انطلق:\\nتحويل الأموال عدة مرات.\\nالتحويل لأي شخص.\\nإجراء عمليات شراء.\\nشحن حسابك.\\nشحن حساب انطلق لصديق.\\nخزّن فلوسك عنا واستلمها ببنكك كراتب شهري.",
+ "s Intaleq account.": "حساب انطلق.",
+ "s Intaleq account.\\nStore your money with us and receive it in your bank as a monthly salary.": "ميزات محفظة انطلق:\\nتحويل الأموال عدة مرات.\\nالتحويل لأي شخص.\\nإجراء عمليات شراء.\\nشحن حسابك.\\nشحن حساب انطلق لصديق.\\nخزّن فلوسك عنا واستلمها ببنكك كراتب شهري.",
"s Terms & Review Privacy Notice": "شروط ومراجعة إشعار الخصوصية",
"s heavy traffic here. Can you suggest an alternate pickup point?": "في زحمة كتير هون. تقترّح نقطة التقاط تانية؟",
"s license does not match the one on your ID document. Please verify and provide the correct documents.": "رخصته ما بتتطابق مع الهوية. تفضّل تحقق وقدّم الوثائق الصحيحة.",
- "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Siro app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "رخصته، الهوية، ورخصة السيارة. نظام الذكاء الاصطناعي رح يراجعها ويوثّقها بدقيقتين لـ 3. إذا انقبلت، تقبل تشتغل كسائق بانطلق. انتبه، تزوير وثائق جريمة خطيرة وبتسبب فصل فوري وعواقب قانونية.",
+ "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "رخصته، الهوية، ورخصة السيارة. نظام الذكاء الاصطناعي رح يراجعها ويوثّقها بدقيقتين لـ 3. إذا انقبلت، تقبل تشتغل كسائق بانطلق. انتبه، تزوير وثائق جريمة خطيرة وبتسبب فصل فوري وعواقب قانونية.",
"s license. Please verify and provide the correct documents.": "رخصته. تفضّل تحقق وقدّم الوثائق الصحيحة.",
"s phone": "هاتف",
"s pioneering ride-sharing service, proudly developed by Arabian and local owners. We prioritize being near you – both our valued passengers and our dedicated captains.": "خدمة مشاركة الرحلات الرائدة، مطورة بفخر من ملاك عرب ومحليين. بنعطي أولوية للقرب منك – ركابنا وسواقينا.",
- "s time to check the Siro app!": "وقت تتفقد تطبيق انطلق!",
+ "s time to check the Intaleq app!": "وقت تتفقد تطبيق انطلق!",
"safe_and_comfortable": "آمن ومريح",
"scams operations": "عمليات احتيال",
"scan Car License.": "امسح رخصة السيارة.",
@@ -2548,7 +2547,7 @@ final Map ar_sy = {
"t have a phone number.": "ما عندك رقم هاتف.",
"t have a reason": "ما عندك سبب",
"t have account": "ما عندك حساب",
- "t have enough money in your Siro wallet": "ما عندك فلوس كافية بمحفظة انطلق",
+ "t have enough money in your Intaleq wallet": "ما عندك فلوس كافية بمحفظة انطلق",
"t moved sufficiently!": "ما تحركت بشكل كافي!",
"t need a ride anymore": "ما بدك رحلة بعد هيك",
"t return to use app after 1 month": "ما ترجع تستخدم التطبيق بعد شهر",
@@ -2598,10 +2597,10 @@ final Map ar_sy = {
"wallet due to a previous trip.": "المحفظة بسبب رحلة سابقة.",
"wallet_credited_message": "تم إضافة",
"wallet_updated": "تم تحديث المحفظة",
- "welcome to siro": "أهلاً بك في انطلق",
+ "welcome to intaleq": "أهلاً بك في انطلق",
"welcome user": "أهلاً بالمستخدم",
"welcome_message": "رسالة الترحيب",
- "welcome_to_siro": "أهلاً بك في انطلق",
+ "welcome_to_intaleq": "أهلاً بك في انطلق",
"whatsapp', phone1, 'Hello": "whatsapp', phone1, 'أهلاً",
"with license plate": "لوحة أرقام",
"with type": "بالنوع",
@@ -2625,7 +2624,7 @@ final Map ar_sy = {
"you must insert token code": "لازم تدخل رمز الرمز",
"you must insert token code ": "لازم تدخل رمز الرمز",
"you will pay to Driver": "رح تدفع للسائق",
- "you will pay to Driver you will be pay the cost of driver time look to your Siro Wallet": "رح تدفع للسائق هتدفع تكلفة وقت السائق شوف محفظة انطلق بتاعتك",
+ "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "رح تدفع للسائق هتدفع تكلفة وقت السائق شوف محفظة انطلق بتاعتك",
"you will use this device?": "رح تستخدم هالجهاز؟",
"your ride is Accepted": "رحلتك انقبلت",
"your ride is applied": "تم تقديم رحلتك",
diff --git a/intaleq_driver/lib/controller/local/de.dart b/intaleq_driver/lib/controller/local/de.dart
index e5ca49e..e9dfbed 100644
--- a/intaleq_driver/lib/controller/local/de.dart
+++ b/intaleq_driver/lib/controller/local/de.dart
@@ -18,8 +18,8 @@ final Map de = {
"\${\"You must leave at least": "\${\"You must leave at least",
"\${\"amount": "\${\"amount",
"\${\"transaction_id": "\${\"transaction_id",
- "\${'*Siro APP CODE*": "\${'*Intaleq APP CODE*",
- "\${'*Siro DRIVER CODE*": "\${'*Intaleq DRIVER CODE*",
+ "\${'*Intaleq APP CODE*": "\${'*Intaleq APP CODE*",
+ "\${'*Intaleq DRIVER CODE*": "\${'*Intaleq DRIVER CODE*",
"\${'Address": "\${'Address",
"\${'Address: ": "\${'Address: ",
"\${'Age": "\${'Age",
@@ -117,8 +117,8 @@ final Map de = {
"([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string",
"([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string",
")[1]}": ")[1]}",
- "*Siro APP CODE*": "*Intaleq APP CODE*",
- "*Siro DRIVER CODE*": "*Intaleq DRIVER CODE*",
+ "*Intaleq APP CODE*": "*Intaleq APP CODE*",
+ "*Intaleq DRIVER CODE*": "*Intaleq DRIVER CODE*",
"--": "--",
"-1% commission": "-1% commission",
"-2% commission": "-2% commission",
@@ -540,7 +540,7 @@ final Map de = {
"Day Off": "Day Off",
"Day Streak": "Day Streak",
"Days": "Tage",
- "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Siro app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nSiro ,": "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,",
+ "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,": "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,",
"Debit": "Debit",
"Debit Card": "Debit Card",
"Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024",
@@ -580,8 +580,8 @@ final Map de = {
"Don't have an account? Register": "Don't have an account? Register",
"Done": "Fertig",
"Don’t forget your personal belongings.": "Vergessen Sie nicht Ihre persönlichen Gegenstände.",
- "Download the Siro Driver app now and earn rewards!": "Download the Intaleq Driver app now and earn rewards!",
- "Download the Siro app now and enjoy your ride!": "Download the Intaleq app now and enjoy your ride!",
+ "Download the Intaleq Driver app now and earn rewards!": "Download the Intaleq Driver app now and earn rewards!",
+ "Download the Intaleq app now and enjoy your ride!": "Download the Intaleq app now and enjoy your ride!",
"Download the app now:": "Laden Sie die App jetzt herunter:",
"Drawing route on map...": "Drawing route on map...",
"Driver": "Fahrer",
@@ -703,7 +703,7 @@ final Map de = {
"Evening": "Abend",
"Excellent": "Excellent",
"Exclusive offers and discounts always with the Sefer app": "Exclusive offers and discounts always with the Sefer app",
- "Exclusive offers and discounts always with the Siro app": "Exclusive offers and discounts always with the Intaleq app",
+ "Exclusive offers and discounts always with the Intaleq app": "Exclusive offers and discounts always with the Intaleq app",
"Exit": "Exit",
"Exit Ride?": "Exit Ride?",
"Expiration Date": "Ablaufdatum",
@@ -750,8 +750,8 @@ final Map de = {
"Flag-down fee": "Grundpreis",
"For Drivers": "Für Fahrer",
"For Egypt": "For Egypt",
- "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
- "For Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
+ "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
+ "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
"Free Call": "Free Call",
"Frequently Asked Questions": "Häufig gestellte Fragen",
"Frequently Questions": "Häufige Fragen",
@@ -773,7 +773,7 @@ final Map de = {
"Get": "Erhalten",
"Get Details of Trip": "Fahrtdetails erhalten",
"Get Direction": "Route erhalten",
- "Get a discount on your first Siro ride!": "Get a discount on your first Intaleq ride!",
+ "Get a discount on your first Intaleq ride!": "Get a discount on your first Intaleq ride!",
"Get features for your country": "Get features for your country",
"Get it Now!": "Holen Sie es sich jetzt!",
"Get to your destination quickly and easily.": "Erreichen Sie Ihr Ziel schnell und einfach.",
@@ -838,7 +838,7 @@ final Map de = {
"How much do you want to earn today?": "How much do you want to earn today?",
"How much longer will you be?": "Wie viel länger werden Sie brauchen?",
"How to use App": "How to use App",
- "How to use Siro": "How to use Intaleq",
+ "How to use Intaleq": "How to use Intaleq",
"How was the passenger?": "How was the passenger?",
"How was your trip with": "How was your trip with",
"How would you like to receive your reward?": "How would you like to receive your reward?",
@@ -922,7 +922,7 @@ final Map de = {
"IssueDate": "Ausstellungsdatum",
"JOD": "JOD",
"Join": "Beitreten",
- "Join Siro as a driver using my referral code!": "Join Intaleq as a driver using my referral code!",
+ "Join Intaleq as a driver using my referral code!": "Join Intaleq as a driver using my referral code!",
"Jordan": "Jordanien",
"Just now": "Just now",
"KM": "KM",
@@ -1144,7 +1144,7 @@ final Map de = {
"Order Applied": "Bestellung übernommen",
"Order Cancelled": "Bestellung storniert",
"Order Cancelled by Passenger": "Bestellung vom Fahrgast storniert",
- "Order Details Siro": "Order Details Intaleq",
+ "Order Details Intaleq": "Order Details Intaleq",
"Order History": "Bestellverlauf",
"Order ID": "Order ID",
"Order Request Page": "Bestellanfrageseite",
@@ -1195,7 +1195,7 @@ final Map de = {
"Pay using MTN Cash wallet": "Pay using MTN Cash wallet",
"Pay using Sham Cash wallet": "Pay using Sham Cash wallet",
"Pay using Syriatel mobile wallet": "Pay using Syriatel mobile wallet",
- "Pay via CliQ (Alias: siroapp)": "Pay via CliQ (Alias: intaleqapp)",
+ "Pay via CliQ (Alias: intaleqapp)": "Pay via CliQ (Alias: intaleqapp)",
"Pay with Credit Card": "Mit Kreditkarte bezahlen",
"Pay with Debit Card": "Pay with Debit Card",
"Pay with Wallet": "Mit Portemonnaie bezahlen",
@@ -1287,7 +1287,7 @@ final Map de = {
"Please help! Contact me as soon as possible.": "Bitte helfen Sie! Kontaktieren Sie mich so schnell wie möglich.",
"Please make sure not to leave any personal belongings in the car.": "Please make sure not to leave any personal belongings in the car.",
"Please make sure to read the license carefully.": "Please make sure to read the license carefully.",
- "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Siro app": "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app",
+ "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app": "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app",
"Please paste the transfer message": "Please paste the transfer message",
"Please provide details about any long-term diseases.": "Please provide details about any long-term diseases.",
"Please put your licence in these border": "Bitte legen Sie Ihren Führerschein in diesen Rahmen",
@@ -1297,7 +1297,7 @@ final Map de = {
"Please select a ride before submitting.": "Please select a ride before submitting.",
"Please stay on the picked point.": "Bitte bleiben Sie am ausgewählten Punkt.",
"Please tell us why you want to cancel.": "Please tell us why you want to cancel.",
- "Please transfer the amount to alias: siroapp": "Please transfer the amount to alias: intaleqapp",
+ "Please transfer the amount to alias: intaleqapp": "Please transfer the amount to alias: intaleqapp",
"Please try again in a few moments": "Bitte versuchen Sie es in einigen Augenblicken erneut",
"Please upload a clear photo of your face to be identified by passengers.": "Please upload a clear photo of your face to be identified by passengers.",
"Please upload all 4 required documents.": "Please upload all 4 required documents.",
@@ -1479,7 +1479,7 @@ final Map de = {
"Send Email": "Send Email",
"Send Invite": "Einladung senden",
"Send Message": "Send Message",
- "Send Siro app to him": "Send Intaleq app to him",
+ "Send Intaleq app to him": "Send Intaleq app to him",
"Send Verfication Code": "Verifizierungscode senden",
"Send Verification Code": "Verifizierungscode senden",
"Send WhatsApp Message": "Send WhatsApp Message",
@@ -1533,34 +1533,34 @@ final Map de = {
"Sign in with Google for easier email and name entry": "Melden Sie sich mit Google an, um E-Mail und Namen einfacher einzugeben",
"Sign in with a provider for easy access": "Sign in with a provider for easy access",
"Silver badge": "Silver badge",
- "Siro": "Intaleq",
- "Siro Balance": "Intaleq Balance",
- "Siro DRIVER CODE": "Intaleq DRIVER CODE",
- "Siro Driver": "Intaleq Driver",
- "Siro LLC": "Intaleq LLC",
- "Siro LLC\\n\${'Syria": "Intaleq LLC\\n\${'Syria",
- "Siro LLC\\n\\\${'Syria": "Intaleq LLC\\n\\\${'Syria",
- "Siro Order": "Intaleq Order",
- "Siro Over": "Intaleq Over",
- "Siro Reminder": "Intaleq Reminder",
- "Siro Wallet": "Intaleq Wallet",
- "Siro Wallet Features:": "Intaleq Wallet Features:",
- "Siro is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:",
- "Siro is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:",
- "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.",
- "Siro is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.",
- "Siro is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq is the ride-hailing app that is safe, reliable, and accessible.",
- "Siro is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Siro, you enjoy quality, safety, and peace of mind—every time you ride.": "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.",
- "Siro is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.": "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.",
- "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.",
- "Siro offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.": "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.",
- "Siro offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.",
- "Siro offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.": "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.",
- "Siro prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.",
- "Siro provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.",
- "Siro's Response": "Intaleq's Response",
- "Siro123": "Intaleq123",
- "Siro: For fixed salary and endpoints.": "Intaleq: For fixed salary and endpoints.",
+ "Intaleq": "Intaleq",
+ "Intaleq Balance": "Intaleq Balance",
+ "Intaleq DRIVER CODE": "Intaleq DRIVER CODE",
+ "Intaleq Driver": "Intaleq Driver",
+ "Intaleq LLC": "Intaleq LLC",
+ "Intaleq LLC\\n\${'Syria": "Intaleq LLC\\n\${'Syria",
+ "Intaleq LLC\\n\\\${'Syria": "Intaleq LLC\\n\\\${'Syria",
+ "Intaleq Order": "Intaleq Order",
+ "Intaleq Over": "Intaleq Over",
+ "Intaleq Reminder": "Intaleq Reminder",
+ "Intaleq Wallet": "Intaleq Wallet",
+ "Intaleq Wallet Features:": "Intaleq Wallet Features:",
+ "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:",
+ "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:",
+ "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.",
+ "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.",
+ "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq is the ride-hailing app that is safe, reliable, and accessible.",
+ "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.": "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.",
+ "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.": "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.",
+ "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.",
+ "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.": "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.",
+ "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.",
+ "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.": "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.",
+ "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.",
+ "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.",
+ "Intaleq's Response": "Intaleq's Response",
+ "Intaleq123": "Intaleq123",
+ "Intaleq: For fixed salary and endpoints.": "Intaleq: For fixed salary and endpoints.",
"Slide to End Trip": "Slide to End Trip",
"So go and gain your money": "So go and gain your money",
"Social Butterfly": "Social Butterfly",
@@ -1590,7 +1590,7 @@ final Map de = {
"Status": "Status",
"Status is": "Status is",
"Stay": "Stay",
- "Step-by-step instructions on how to request a ride through the Siro app.": "Step-by-step instructions on how to request a ride through the Intaleq app.",
+ "Step-by-step instructions on how to request a ride through the Intaleq app.": "Step-by-step instructions on how to request a ride through the Intaleq app.",
"Stop": "Stop",
"Store your money with us and receive it in your bank as a monthly salary.": "Store your money with us and receive it in your bank as a monthly salary.",
"Submission Failed": "Submission Failed",
@@ -1710,8 +1710,8 @@ final Map de = {
"To become a driver, you must review and agree to the": "To become a driver, you must review and agree to the",
"To become a driver, you must review and agree to the ": "To become a driver, you must review and agree to the ",
"To become a passenger, you must review and agree to the": "To become a passenger, you must review and agree to the",
- "To become a ride-sharing driver on the Siro app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Siro app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
- "To become a ride-sharing driver on the Siro app...": "To become a ride-sharing driver on the Intaleq app...",
+ "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
+ "To become a ride-sharing driver on the Intaleq app...": "To become a ride-sharing driver on the Intaleq app...",
"To change Language the App": "Um die Sprache der App zu ändern",
"To change some Settings": "Um einige Einstellungen zu ändern",
"To display orders instantly, please grant permission to draw over other apps.": "To display orders instantly, please grant permission to draw over other apps.",
@@ -1719,7 +1719,7 @@ final Map de = {
"To ensure you receive the most accurate information for your location, please select your country below. This will help tailor the app experience and content to your country.": "Um sicherzustellen, dass Sie die genauesten Informationen für Ihren Standort erhalten, wählen Sie bitte unten Ihr Land aus. Dies hilft, das App-Erlebnis und den Inhalt auf Ihr Land zuzuschneiden.",
"To get a gift for both": "To get a gift for both",
"To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "Um Ihnen das beste Erlebnis zu bieten, müssen wir wissen, wo Sie sich befinden. Ihr Standort wird verwendet, um Kapitäne in der Nähe zu finden und für die Abholung.",
- "To register as a driver or learn about the requirements, please visit our website or contact Siro support directly.": "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.",
+ "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.",
"To use Wallet charge it": "Um das Portemonnaie zu verwenden, laden Sie es auf",
"Today": "Today",
"Today Overview": "Today Overview",
@@ -1809,7 +1809,7 @@ final Map de = {
"Type your Email": "Geben Sie Ihre E-Mail ein",
"Type your message": "Geben Sie Ihre Nachricht ein",
"Type your message...": "Type your message...",
- "Types of Trips in Siro:": "Types of Trips in Intaleq:",
+ "Types of Trips in Intaleq:": "Types of Trips in Intaleq:",
"USA": "USA",
"Uncompromising Security": "Kompromisslose Sicherheit",
"Unknown": "Unknown",
@@ -1868,7 +1868,7 @@ final Map de = {
"View your past transactions": "View your past transactions",
"Visa": "Visa",
"Visit Website/Contact Support": "Website besuchen/Support kontaktieren",
- "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Intaleq support for information on driver registration and requirements.",
+ "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Visit our website or contact Intaleq support for information on driver registration and requirements.",
"Voice Calling": "Voice Calling",
"Voice call over internet": "Voice call over internet",
"Wait for timer": "Wait for timer",
@@ -1891,7 +1891,7 @@ final Map de = {
"Wallet is blocked": "Wallet is blocked",
"Wallet!": "Portemonnaie!",
"Warning": "Warning",
- "Warning: Siroing detected!": "Warning: Intaleqing detected!",
+ "Warning: Intaleqing detected!": "Warning: Intaleqing detected!",
"Warning: Speeding detected!": "Warning: Speeding detected!",
"We Are Sorry That we dont have cars in your Location!": "Es tut uns leid, dass wir keine Autos in Ihrer Region haben!",
"We are looking for a captain but the price may increase to let a captain accept": "Wir suchen einen Kapitän, aber der Preis könnte steigen, damit ein Kapitän annimmt",
@@ -1901,8 +1901,7 @@ final Map de = {
"We are searching for the nearest driver": "Wir suchen den nächstgelegenen Fahrer",
"We are searching for the nearest driver to you": "Wir suchen den nächstgelegenen Fahrer für Sie",
"We connect you with the nearest drivers for faster pickups and quicker journeys.": "Wir verbinden Sie mit den nächstgelegenen Fahrern für schnellere Abholungen und kürzere Fahrten.",
- "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Siro app and be part of our Siro family.": "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.",
- "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Tripz app and be part of our Tripz family.": "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Tripz app and be part of our Tripz family.",
+ "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.": "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.",
"We have partnered with health insurance providers to offer you special health coverage. Complete 500 trips and receive a 20% discount on health insurance premiums.": "We have partnered with health insurance providers to offer you special health coverage. Complete 500 trips and receive a 20% discount on health insurance premiums.",
"We have received your application to join us as a driver. Our team is currently reviewing it. Thank you for your patience.": "We have received your application to join us as a driver. Our team is currently reviewing it. Thank you for your patience.",
"We have sent a verification code to your mobile number:": "Wir haben einen Verifizierungscode an Ihre Handynummer gesendet:",
@@ -1911,7 +1910,7 @@ final Map de = {
"We need your location to find nearby drivers for pickups and drop-offs.": "Wir benötigen Ihren Standort, um nahegelegene Fahrer für Abholungen und Absetzungen zu finden.",
"We need your phone number to contact you and to help you receive orders.": "Wir benötigen Ihre Telefonnummer, um Sie zu kontaktieren und Ihnen zu helfen, Bestellungen zu erhalten.",
"We need your phone number to contact you and to help you.": "Wir benötigen Ihre Telefonnummer, um Sie zu kontaktieren und Ihnen zu helfen.",
- "We noticed the Siro is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.": "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.",
+ "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.": "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.",
"We regret to inform you that another driver has accepted this order.": "Wir bedauern, Ihnen mitteilen zu müssen, dass ein anderer Fahrer diese Bestellung angenommen hat.",
"We search nearst Driver to you": "Wir suchen den nächstgelegenen Fahrer für Sie",
"We sent 5 digit to your Email provided": "Wir haben einen 5-stelligen Code an die angegebene E-Mail gesendet",
@@ -1929,12 +1928,12 @@ final Map de = {
"Welcome": "Welcome",
"Welcome Back!": "Willkommen zurück!",
"Welcome Offer!": "Welcome Offer!",
- "Welcome to Siro!": "Welcome to Intaleq!",
+ "Welcome to Intaleq!": "Welcome to Intaleq!",
"What are the order details we provide to you?": "What are the order details we provide to you?",
"What are the requirements to become a driver?": "Welche Anforderungen gibt es, um Fahrer zu werden?",
- "What is Types of Trips in Siro?": "What is Types of Trips in Intaleq?",
+ "What is Types of Trips in Intaleq?": "What is Types of Trips in Intaleq?",
"What is the feature of our wallet?": "What is the feature of our wallet?",
- "What safety measures does Siro offer?": "What safety measures does Intaleq offer?",
+ "What safety measures does Intaleq offer?": "What safety measures does Intaleq offer?",
"What types of vehicles are available?": "Welche Fahrzeugtypen sind verfügbar?",
"WhatsApp": "WhatsApp",
"WhatsApp Location Extractor": "WhatsApp-Standort-Extraktor",
@@ -1946,9 +1945,9 @@ final Map de = {
"Where to": "Wohin",
"Where you want go": "Where you want go",
"Which method you will pay": "Which method you will pay",
- "Why Choose Siro?": "Why Choose Intaleq?",
+ "Why Choose Intaleq?": "Why Choose Intaleq?",
"Why do you want to cancel this trip?": "Why do you want to cancel this trip?",
- "With Siro, you can get a ride to your destination in minutes.": "With Intaleq, you can get a ride to your destination in minutes.",
+ "With Intaleq, you can get a ride to your destination in minutes.": "With Intaleq, you can get a ride to your destination in minutes.",
"Withdraw": "Withdraw",
"Work": "Arbeit",
"Work & Contact": "Arbeit & Kontakt",
@@ -1972,7 +1971,7 @@ final Map de = {
"Yes": "Yes",
"Yes, Pay": "Yes, Pay",
"Yes, optimize": "Yes, optimize",
- "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Siro cancellation policy for details.": "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.",
+ "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.",
"Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.": "Ja, Sie können Ihre Fahrt stornieren, aber bitte beachten Sie, dass Stornierungsgebühren anfallen können, je nachdem, wie weit im Voraus Sie stornieren.",
"You": "You",
"You Are Stopped For this Day !": "Sie sind für diesen Tag gestoppt!",
@@ -2024,7 +2023,7 @@ final Map de = {
"You can purchase a budget to enable online access through the options listed below": "You can purchase a budget to enable online access through the options listed below",
"You can purchase a budget to enable online access through the options listed below.": "You can purchase a budget to enable online access through the options listed below.",
"You can resend in": "Erneutes Senden möglich in",
- "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Intaleq App with your friends and earn rewards for rides they take using your code",
+ "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "You can share the Intaleq App with your friends and earn rewards for rides they take using your code",
"You can upgrade price to may driver accept your order": "Sie können den Preis erhöhen, damit der Fahrer Ihre Bestellung annimmt",
"You can\\'t continue with us .\\nYou should renew Driver license": "You can\\'t continue with us .\\nYou should renew Driver license",
"You canceled VIP trip": "Sie haben die VIP-Fahrt storniert",
@@ -2171,8 +2170,8 @@ final Map de = {
"\\\${\"You must leave at least": "\\\${\"You must leave at least",
"\\\${\"amount": "\\\${\"amount",
"\\\${\"transaction_id": "\\\${\"transaction_id",
- "\\\${'*Siro APP CODE*": "\\\${'*Intaleq APP CODE*",
- "\\\${'*Siro DRIVER CODE*": "\\\${'*Intaleq DRIVER CODE*",
+ "\\\${'*Intaleq APP CODE*": "\\\${'*Intaleq APP CODE*",
+ "\\\${'*Intaleq DRIVER CODE*": "\\\${'*Intaleq DRIVER CODE*",
"\\\${'Address": "\\\${'Address",
"\\\${'Address: ": "\\\${'Address: ",
"\\\${'Age": "\\\${'Age",
@@ -2419,7 +2418,7 @@ final Map de = {
"login or register subtitle": "Anmelden oder registrieren",
"m": "Minuten",
"m at the agreed-upon location": "m at the agreed-upon location",
- "m inviting you to try Siro.": "m inviting you to try Intaleq.",
+ "m inviting you to try Intaleq.": "m inviting you to try Intaleq.",
"m waiting for you": "m waiting for you",
"m waiting for you at the specified location.": "m waiting for you at the specified location.",
"message From Driver": "Nachricht vom Fahrer",
@@ -2475,16 +2474,16 @@ final Map de = {
"s Promo": "s Promo",
"s Promos": "s Promos",
"s Response": "s Response",
- "s Siro account.": "s Intaleq account.",
- "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Intaleq account.\\nStore your money with us and receive it in your bank as a monthly salary.",
+ "s Intaleq account.": "s Intaleq account.",
+ "s Intaleq account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Intaleq account.\\nStore your money with us and receive it in your bank as a monthly salary.",
"s Terms & Review Privacy Notice": "s Terms & Review Privacy Notice",
"s heavy traffic here. Can you suggest an alternate pickup point?": "s heavy traffic here. Can you suggest an alternate pickup point?",
"s license does not match the one on your ID document. Please verify and provide the correct documents.": "s license does not match the one on your ID document. Please verify and provide the correct documents.",
- "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Siro app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
+ "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
"s license. Please verify and provide the correct documents.": "s license. Please verify and provide the correct documents.",
"s phone": "s phone",
"s pioneering ride-sharing service, proudly developed by Arabian and local owners. We prioritize being near you – both our valued passengers and our dedicated captains.": "s pioneering ride-sharing service, proudly developed by Arabian and local owners. We prioritize being near you – both our valued passengers and our dedicated captains.",
- "s time to check the Siro app!": "s time to check the Intaleq app!",
+ "s time to check the Intaleq app!": "s time to check the Intaleq app!",
"safe_and_comfortable": "Genießen Sie eine sichere und komfortable Fahrt.",
"scams operations": "scams operations",
"scan Car License.": "scan Car License.",
@@ -2513,7 +2512,7 @@ final Map de = {
"t have a phone number.": "t have a phone number.",
"t have a reason": "t have a reason",
"t have account": "t have account",
- "t have enough money in your Siro wallet": "t have enough money in your Intaleq wallet",
+ "t have enough money in your Intaleq wallet": "t have enough money in your Intaleq wallet",
"t moved sufficiently!": "t moved sufficiently!",
"t need a ride anymore": "t need a ride anymore",
"t return to use app after 1 month": "t return to use app after 1 month",
@@ -2563,10 +2562,10 @@ final Map de = {
"wallet due to a previous trip.": "Portemonnaie aufgrund einer vorherigen Fahrt.",
"wallet_credited_message": "wallet_credited_message",
"wallet_updated": "wallet_updated",
- "welcome to siro": "welcome to intaleq",
+ "welcome to intaleq": "welcome to intaleq",
"welcome user": "Willkommen",
"welcome_message": "Willkommen bei Intaleq!",
- "welcome_to_siro": "welcome_to_intaleq",
+ "welcome_to_intaleq": "welcome_to_intaleq",
"whatsapp', phone1, 'Hello": "whatsapp', phone1, 'Hello",
"with license plate": "with license plate",
"with type": "mit Typ",
@@ -2590,7 +2589,7 @@ final Map de = {
"you must insert token code": "you must insert token code",
"you must insert token code ": "you must insert token code ",
"you will pay to Driver": "Sie werden den Fahrer bezahlen",
- "you will pay to Driver you will be pay the cost of driver time look to your Siro Wallet": "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet",
+ "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet",
"you will use this device?": "you will use this device?",
"your ride is Accepted": "Ihre Fahrt wurde angenommen",
"your ride is applied": "Ihre Fahrt wurde übernommen",
diff --git a/intaleq_driver/lib/controller/local/el.dart b/intaleq_driver/lib/controller/local/el.dart
index 0a2599d..32174d5 100644
--- a/intaleq_driver/lib/controller/local/el.dart
+++ b/intaleq_driver/lib/controller/local/el.dart
@@ -18,8 +18,8 @@ final Map el = {
"\${\"You must leave at least": "\${\"You must leave at least",
"\${\"amount": "\${\"amount",
"\${\"transaction_id": "\${\"transaction_id",
- "\${'*Siro APP CODE*": "\${'*Intaleq APP CODE*",
- "\${'*Siro DRIVER CODE*": "\${'*Intaleq DRIVER CODE*",
+ "\${'*Intaleq APP CODE*": "\${'*Intaleq APP CODE*",
+ "\${'*Intaleq DRIVER CODE*": "\${'*Intaleq DRIVER CODE*",
"\${'Address": "\${'Address",
"\${'Address: ": "\${'Address: ",
"\${'Age": "\${'Age",
@@ -117,8 +117,8 @@ final Map el = {
"([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string",
"([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string",
")[1]}": ")[1]}",
- "*Siro APP CODE*": "*Intaleq APP CODE*",
- "*Siro DRIVER CODE*": "*Intaleq DRIVER CODE*",
+ "*Intaleq APP CODE*": "*Intaleq APP CODE*",
+ "*Intaleq DRIVER CODE*": "*Intaleq DRIVER CODE*",
"--": "--",
"-1% commission": "-1% commission",
"-2% commission": "-2% commission",
@@ -540,7 +540,7 @@ final Map el = {
"Day Off": "Day Off",
"Day Streak": "Day Streak",
"Days": "Ημέρες",
- "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Siro app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nSiro ,": "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,",
+ "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,": "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,",
"Debit": "Debit",
"Debit Card": "Debit Card",
"Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024",
@@ -580,8 +580,8 @@ final Map el = {
"Don't have an account? Register": "Don't have an account? Register",
"Done": "Τέλος",
"Don’t forget your personal belongings.": "Μην ξεχάσετε τα αντικείμενά σας.",
- "Download the Siro Driver app now and earn rewards!": "Download the Intaleq Driver app now and earn rewards!",
- "Download the Siro app now and enjoy your ride!": "Download the Intaleq app now and enjoy your ride!",
+ "Download the Intaleq Driver app now and earn rewards!": "Download the Intaleq Driver app now and earn rewards!",
+ "Download the Intaleq app now and enjoy your ride!": "Download the Intaleq app now and enjoy your ride!",
"Download the app now:": "Κατέβασε την εφαρμογή:",
"Drawing route on map...": "Drawing route on map...",
"Driver": "Οδηγός",
@@ -703,7 +703,7 @@ final Map el = {
"Evening": "Απόγευμα",
"Excellent": "Excellent",
"Exclusive offers and discounts always with the Sefer app": "Exclusive offers and discounts always with the Sefer app",
- "Exclusive offers and discounts always with the Siro app": "Exclusive offers and discounts always with the Intaleq app",
+ "Exclusive offers and discounts always with the Intaleq app": "Exclusive offers and discounts always with the Intaleq app",
"Exit": "Exit",
"Exit Ride?": "Exit Ride?",
"Expiration Date": "Ημερομηνία Λήξης",
@@ -750,8 +750,8 @@ final Map el = {
"Flag-down fee": "Σημαία",
"For Drivers": "Για Οδηγούς",
"For Egypt": "For Egypt",
- "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
- "For Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
+ "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
+ "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
"Free Call": "Free Call",
"Frequently Asked Questions": "Συχνές Ερωτήσεις",
"Frequently Questions": "Συχνές Ερωτήσεις",
@@ -773,7 +773,7 @@ final Map el = {
"Get": "Get",
"Get Details of Trip": "Λεπτομέρειες",
"Get Direction": "Οδηγίες",
- "Get a discount on your first Siro ride!": "Get a discount on your first Intaleq ride!",
+ "Get a discount on your first Intaleq ride!": "Get a discount on your first Intaleq ride!",
"Get features for your country": "Get features for your country",
"Get it Now!": "Πάρτε το!",
"Get to your destination quickly and easily.": "Φτάστε γρήγορα στον προορισμό.",
@@ -838,7 +838,7 @@ final Map el = {
"How much do you want to earn today?": "How much do you want to earn today?",
"How much longer will you be?": "How much longer will you be?",
"How to use App": "How to use App",
- "How to use Siro": "How to use Intaleq",
+ "How to use Intaleq": "How to use Intaleq",
"How was the passenger?": "How was the passenger?",
"How was your trip with": "How was your trip with",
"How would you like to receive your reward?": "How would you like to receive your reward?",
@@ -922,7 +922,7 @@ final Map el = {
"IssueDate": "Ημ. Έκδοσης",
"JOD": "€",
"Join": "Συμμετοχή",
- "Join Siro as a driver using my referral code!": "Join Intaleq as a driver using my referral code!",
+ "Join Intaleq as a driver using my referral code!": "Join Intaleq as a driver using my referral code!",
"Jordan": "Ιορδανία",
"Just now": "Just now",
"KM": "Χλμ",
@@ -1144,7 +1144,7 @@ final Map el = {
"Order Applied": "Το αίτημα υποβλήθηκε",
"Order Cancelled": "Order Cancelled",
"Order Cancelled by Passenger": "Ακύρωση από Επιβάτη",
- "Order Details Siro": "Order Details Intaleq",
+ "Order Details Intaleq": "Order Details Intaleq",
"Order History": "Ιστορικό Διαδρομών",
"Order ID": "Order ID",
"Order Request Page": "Σελίδα Αιτήματος",
@@ -1195,7 +1195,7 @@ final Map el = {
"Pay using MTN Cash wallet": "Pay using MTN Cash wallet",
"Pay using Sham Cash wallet": "Pay using Sham Cash wallet",
"Pay using Syriatel mobile wallet": "Pay using Syriatel mobile wallet",
- "Pay via CliQ (Alias: siroapp)": "Pay via CliQ (Alias: intaleqapp)",
+ "Pay via CliQ (Alias: intaleqapp)": "Pay via CliQ (Alias: intaleqapp)",
"Pay with Credit Card": "Πληρωμή με Κάρτα",
"Pay with Debit Card": "Pay with Debit Card",
"Pay with Wallet": "Πληρωμή με Πορτοφόλι",
@@ -1287,7 +1287,7 @@ final Map el = {
"Please help! Contact me as soon as possible.": "Βοήθεια! Επικοινωνήστε άμεσα.",
"Please make sure not to leave any personal belongings in the car.": "Βεβαιωθείτε ότι δεν αφήσατε προσωπικά αντικείμενα στο αμάξι.",
"Please make sure to read the license carefully.": "Please make sure to read the license carefully.",
- "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Siro app": "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app",
+ "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app": "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app",
"Please paste the transfer message": "Please paste the transfer message",
"Please provide details about any long-term diseases.": "Please provide details about any long-term diseases.",
"Please put your licence in these border": "Τοποθετήστε το δίπλωμα στο πλαίσιο",
@@ -1297,7 +1297,7 @@ final Map el = {
"Please select a ride before submitting.": "Please select a ride before submitting.",
"Please stay on the picked point.": "Παρακαλώ μείνετε στο επιλεγμένο σημείο.",
"Please tell us why you want to cancel.": "Please tell us why you want to cancel.",
- "Please transfer the amount to alias: siroapp": "Please transfer the amount to alias: intaleqapp",
+ "Please transfer the amount to alias: intaleqapp": "Please transfer the amount to alias: intaleqapp",
"Please try again in a few moments": "Please try again in a few moments",
"Please upload a clear photo of your face to be identified by passengers.": "Please upload a clear photo of your face to be identified by passengers.",
"Please upload all 4 required documents.": "Please upload all 4 required documents.",
@@ -1479,7 +1479,7 @@ final Map el = {
"Send Email": "Send Email",
"Send Invite": "Αποστολή Πρόσκλησης",
"Send Message": "Send Message",
- "Send Siro app to him": "Send Intaleq app to him",
+ "Send Intaleq app to him": "Send Intaleq app to him",
"Send Verfication Code": "Αποστολή Κωδικού",
"Send Verification Code": "Αποστολή Κωδικού",
"Send WhatsApp Message": "Send WhatsApp Message",
@@ -1533,34 +1533,34 @@ final Map el = {
"Sign in with Google for easier email and name entry": "Είσοδος με Google",
"Sign in with a provider for easy access": "Sign in with a provider for easy access",
"Silver badge": "Silver badge",
- "Siro": "Intaleq",
- "Siro Balance": "Intaleq Balance",
- "Siro DRIVER CODE": "Intaleq DRIVER CODE",
- "Siro Driver": "Intaleq Driver",
- "Siro LLC": "Intaleq LLC",
- "Siro LLC\\n\${'Syria": "Intaleq LLC\\n\${'Syria",
- "Siro LLC\\n\\\${'Syria": "Intaleq LLC\\n\\\${'Syria",
- "Siro Order": "Intaleq Order",
- "Siro Over": "Intaleq Over",
- "Siro Reminder": "Intaleq Reminder",
- "Siro Wallet": "Intaleq Wallet",
- "Siro Wallet Features:": "Intaleq Wallet Features:",
- "Siro is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:",
- "Siro is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:",
- "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.",
- "Siro is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.",
- "Siro is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq is the ride-hailing app that is safe, reliable, and accessible.",
- "Siro is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Siro, you enjoy quality, safety, and peace of mind—every time you ride.": "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.",
- "Siro is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.": "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.",
- "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.",
- "Siro offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.": "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.",
- "Siro offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.",
- "Siro offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.": "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.",
- "Siro prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.",
- "Siro provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.",
- "Siro's Response": "Intaleq's Response",
- "Siro123": "Intaleq123",
- "Siro: For fixed salary and endpoints.": "Intaleq: For fixed salary and endpoints.",
+ "Intaleq": "Intaleq",
+ "Intaleq Balance": "Intaleq Balance",
+ "Intaleq DRIVER CODE": "Intaleq DRIVER CODE",
+ "Intaleq Driver": "Intaleq Driver",
+ "Intaleq LLC": "Intaleq LLC",
+ "Intaleq LLC\\n\${'Syria": "Intaleq LLC\\n\${'Syria",
+ "Intaleq LLC\\n\\\${'Syria": "Intaleq LLC\\n\\\${'Syria",
+ "Intaleq Order": "Intaleq Order",
+ "Intaleq Over": "Intaleq Over",
+ "Intaleq Reminder": "Intaleq Reminder",
+ "Intaleq Wallet": "Intaleq Wallet",
+ "Intaleq Wallet Features:": "Intaleq Wallet Features:",
+ "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:",
+ "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:",
+ "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.",
+ "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.",
+ "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq is the ride-hailing app that is safe, reliable, and accessible.",
+ "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.": "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.",
+ "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.": "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.",
+ "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.",
+ "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.": "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.",
+ "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.",
+ "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.": "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.",
+ "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.",
+ "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.",
+ "Intaleq's Response": "Intaleq's Response",
+ "Intaleq123": "Intaleq123",
+ "Intaleq: For fixed salary and endpoints.": "Intaleq: For fixed salary and endpoints.",
"Slide to End Trip": "Slide to End Trip",
"So go and gain your money": "So go and gain your money",
"Social Butterfly": "Social Butterfly",
@@ -1590,7 +1590,7 @@ final Map el = {
"Status": "Status",
"Status is": "Status is",
"Stay": "Stay",
- "Step-by-step instructions on how to request a ride through the Siro app.": "Step-by-step instructions on how to request a ride through the Intaleq app.",
+ "Step-by-step instructions on how to request a ride through the Intaleq app.": "Step-by-step instructions on how to request a ride through the Intaleq app.",
"Stop": "Stop",
"Store your money with us and receive it in your bank as a monthly salary.": "Store your money with us and receive it in your bank as a monthly salary.",
"Submission Failed": "Submission Failed",
@@ -1710,8 +1710,8 @@ final Map el = {
"To become a driver, you must review and agree to the": "To become a driver, you must review and agree to the",
"To become a driver, you must review and agree to the ": "To become a driver, you must review and agree to the ",
"To become a passenger, you must review and agree to the": "To become a passenger, you must review and agree to the",
- "To become a ride-sharing driver on the Siro app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Siro app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
- "To become a ride-sharing driver on the Siro app...": "To become a ride-sharing driver on the Intaleq app...",
+ "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
+ "To become a ride-sharing driver on the Intaleq app...": "To become a ride-sharing driver on the Intaleq app...",
"To change Language the App": "To change Language the App",
"To change some Settings": "Αλλαγή Ρυθμίσεων",
"To display orders instantly, please grant permission to draw over other apps.": "To display orders instantly, please grant permission to draw over other apps.",
@@ -1719,7 +1719,7 @@ final Map el = {
"To ensure you receive the most accurate information for your location, please select your country below. This will help tailor the app experience and content to your country.": "Επιλέξτε χώρα για ακριβείς πληροφορίες.",
"To get a gift for both": "To get a gift for both",
"To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "Για την καλύτερη εμπειρία, χρειαζόμαστε την τοποθεσία σας για να βρούμε κοντινούς οδηγούς.",
- "To register as a driver or learn about the requirements, please visit our website or contact Siro support directly.": "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.",
+ "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.",
"To use Wallet charge it": "Φορτίστε το πορτοφόλι",
"Today": "Today",
"Today Overview": "Today Overview",
@@ -1809,7 +1809,7 @@ final Map el = {
"Type your Email": "Πληκτρολογήστε το Email",
"Type your message": "Γράψτε μήνυμα",
"Type your message...": "Type your message...",
- "Types of Trips in Siro:": "Types of Trips in Intaleq:",
+ "Types of Trips in Intaleq:": "Types of Trips in Intaleq:",
"USA": "ΗΠΑ",
"Uncompromising Security": "Ασφάλεια",
"Unknown": "Unknown",
@@ -1868,7 +1868,7 @@ final Map el = {
"View your past transactions": "Δείτε τις προηγούμενες συναλλαγές",
"Visa": "Visa",
"Visit Website/Contact Support": "Ιστοσελίδα/Υποστήριξη",
- "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Intaleq support for information on driver registration and requirements.",
+ "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Visit our website or contact Intaleq support for information on driver registration and requirements.",
"Voice Calling": "Voice Calling",
"Voice call over internet": "Voice call over internet",
"Wait for timer": "Wait for timer",
@@ -1891,7 +1891,7 @@ final Map el = {
"Wallet is blocked": "Το πορτοφόλι έχει αποκλειστεί",
"Wallet!": "Πορτοφόλι!",
"Warning": "Warning",
- "Warning: Siroing detected!": "Warning: Intaleqing detected!",
+ "Warning: Intaleqing detected!": "Warning: Intaleqing detected!",
"Warning: Speeding detected!": "Προειδοποίηση: Εντοπίστηκε υπερβολική ταχύτητα!",
"We Are Sorry That we dont have cars in your Location!": "Λυπούμαστε, κανένα όχημα στην περιοχή!",
"We are looking for a captain but the price may increase to let a captain accept": "We are looking for a captain but the price may increase to let a captain accept",
@@ -1901,8 +1901,7 @@ final Map el = {
"We are searching for the nearest driver": "Αναζήτηση οδηγού",
"We are searching for the nearest driver to you": "Ψάχνουμε τον κοντινότερο οδηγό",
"We connect you with the nearest drivers for faster pickups and quicker journeys.": "Γρηγορότερη εξυπηρέτηση.",
- "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Siro app and be part of our Siro family.": "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.",
- "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Tripz app and be part of our Tripz family.": "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Tripz app and be part of our Tripz family.",
+ "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.": "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.",
"We have partnered with health insurance providers to offer you special health coverage. Complete 500 trips and receive a 20% discount on health insurance premiums.": "We have partnered with health insurance providers to offer you special health coverage. Complete 500 trips and receive a 20% discount on health insurance premiums.",
"We have received your application to join us as a driver. Our team is currently reviewing it. Thank you for your patience.": "We have received your application to join us as a driver. Our team is currently reviewing it. Thank you for your patience.",
"We have sent a verification code to your mobile number:": "Στείλαμε έναν κωδικό επαλήθευσης στο κινητό σας:",
@@ -1911,7 +1910,7 @@ final Map el = {
"We need your location to find nearby drivers for pickups and drop-offs.": "We need your location to find nearby drivers for pickups and drop-offs.",
"We need your phone number to contact you and to help you receive orders.": "Χρειαζόμαστε το τηλέφωνο για λήψη παραγγελιών.",
"We need your phone number to contact you and to help you.": "Χρειαζόμαστε το τηλέφωνο για επικοινωνία.",
- "We noticed the Siro is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.": "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.",
+ "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.": "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.",
"We regret to inform you that another driver has accepted this order.": "Λυπούμαστε, ένας άλλος οδηγός αποδέχτηκε αυτό το αίτημα.",
"We search nearst Driver to you": "Αναζήτηση κοντινού οδηγού",
"We sent 5 digit to your Email provided": "Στείλαμε 5ψήφιο κωδικό",
@@ -1929,12 +1928,12 @@ final Map el = {
"Welcome": "Welcome",
"Welcome Back!": "Καλώς ήρθατε ξανά!",
"Welcome Offer!": "Welcome Offer!",
- "Welcome to Siro!": "Welcome to Intaleq!",
+ "Welcome to Intaleq!": "Welcome to Intaleq!",
"What are the order details we provide to you?": "What are the order details we provide to you?",
"What are the requirements to become a driver?": "Απαιτήσεις οδηγού;",
- "What is Types of Trips in Siro?": "What is Types of Trips in Intaleq?",
+ "What is Types of Trips in Intaleq?": "What is Types of Trips in Intaleq?",
"What is the feature of our wallet?": "What is the feature of our wallet?",
- "What safety measures does Siro offer?": "What safety measures does Intaleq offer?",
+ "What safety measures does Intaleq offer?": "What safety measures does Intaleq offer?",
"What types of vehicles are available?": "Τι οχήματα υπάρχουν;",
"WhatsApp": "WhatsApp",
"WhatsApp Location Extractor": "Εξαγωγή Τοποθεσίας WhatsApp",
@@ -1946,9 +1945,9 @@ final Map el = {
"Where to": "Πού πάτε;",
"Where you want go": "Where you want go",
"Which method you will pay": "Which method you will pay",
- "Why Choose Siro?": "Why Choose Intaleq?",
+ "Why Choose Intaleq?": "Why Choose Intaleq?",
"Why do you want to cancel this trip?": "Why do you want to cancel this trip?",
- "With Siro, you can get a ride to your destination in minutes.": "With Intaleq, you can get a ride to your destination in minutes.",
+ "With Intaleq, you can get a ride to your destination in minutes.": "With Intaleq, you can get a ride to your destination in minutes.",
"Withdraw": "Withdraw",
"Work": "Εργασία",
"Work & Contact": "Εργασία & Επικοινωνία",
@@ -1972,7 +1971,7 @@ final Map el = {
"Yes": "Yes",
"Yes, Pay": "Yes, Pay",
"Yes, optimize": "Yes, optimize",
- "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Siro cancellation policy for details.": "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.",
+ "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.",
"Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.": "Ναι, μπορείτε να ακυρώσετε (ενδέχεται να υπάρξει χρέωση).",
"You": "You",
"You Are Stopped For this Day !": "Αποκλεισμός για σήμερα!",
@@ -2024,7 +2023,7 @@ final Map el = {
"You can purchase a budget to enable online access through the options listed below": "You can purchase a budget to enable online access through the options listed below",
"You can purchase a budget to enable online access through the options listed below.": "You can purchase a budget to enable online access through the options listed below.",
"You can resend in": "Επαναποστολή σε",
- "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Intaleq App with your friends and earn rewards for rides they take using your code",
+ "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "You can share the Intaleq App with your friends and earn rewards for rides they take using your code",
"You can upgrade price to may driver accept your order": "You can upgrade price to may driver accept your order",
"You can\\'t continue with us .\\nYou should renew Driver license": "You can\\'t continue with us .\\nYou should renew Driver license",
"You canceled VIP trip": "You canceled VIP trip",
@@ -2171,8 +2170,8 @@ final Map el = {
"\\\${\"You must leave at least": "\\\${\"You must leave at least",
"\\\${\"amount": "\\\${\"amount",
"\\\${\"transaction_id": "\\\${\"transaction_id",
- "\\\${'*Siro APP CODE*": "\\\${'*Intaleq APP CODE*",
- "\\\${'*Siro DRIVER CODE*": "\\\${'*Intaleq DRIVER CODE*",
+ "\\\${'*Intaleq APP CODE*": "\\\${'*Intaleq APP CODE*",
+ "\\\${'*Intaleq DRIVER CODE*": "\\\${'*Intaleq DRIVER CODE*",
"\\\${'Address": "\\\${'Address",
"\\\${'Address: ": "\\\${'Address: ",
"\\\${'Age": "\\\${'Age",
@@ -2419,7 +2418,7 @@ final Map el = {
"login or register subtitle": "Εισάγετε τον αριθμό κινητού για είσοδο ή εγγραφή",
"m": "λ",
"m at the agreed-upon location": "m at the agreed-upon location",
- "m inviting you to try Siro.": "m inviting you to try Intaleq.",
+ "m inviting you to try Intaleq.": "m inviting you to try Intaleq.",
"m waiting for you": "m waiting for you",
"m waiting for you at the specified location.": "m waiting for you at the specified location.",
"message From Driver": "Μήνυμα από τον Οδηγό",
@@ -2475,16 +2474,16 @@ final Map el = {
"s Promo": "s Promo",
"s Promos": "s Promos",
"s Response": "s Response",
- "s Siro account.": "s Intaleq account.",
- "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Intaleq account.\\nStore your money with us and receive it in your bank as a monthly salary.",
+ "s Intaleq account.": "s Intaleq account.",
+ "s Intaleq account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Intaleq account.\\nStore your money with us and receive it in your bank as a monthly salary.",
"s Terms & Review Privacy Notice": "s Terms & Review Privacy Notice",
"s heavy traffic here. Can you suggest an alternate pickup point?": "s heavy traffic here. Can you suggest an alternate pickup point?",
"s license does not match the one on your ID document. Please verify and provide the correct documents.": "s license does not match the one on your ID document. Please verify and provide the correct documents.",
- "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Siro app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
+ "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
"s license. Please verify and provide the correct documents.": "s license. Please verify and provide the correct documents.",
"s phone": "s phone",
"s pioneering ride-sharing service, proudly developed by Arabian and local owners. We prioritize being near you – both our valued passengers and our dedicated captains.": "s pioneering ride-sharing service, proudly developed by Arabian and local owners. We prioritize being near you – both our valued passengers and our dedicated captains.",
- "s time to check the Siro app!": "s time to check the Intaleq app!",
+ "s time to check the Intaleq app!": "s time to check the Intaleq app!",
"safe_and_comfortable": "Ασφάλεια και άνεση.",
"scams operations": "scams operations",
"scan Car License.": "scan Car License.",
@@ -2513,7 +2512,7 @@ final Map el = {
"t have a phone number.": "t have a phone number.",
"t have a reason": "t have a reason",
"t have account": "t have account",
- "t have enough money in your Siro wallet": "t have enough money in your Intaleq wallet",
+ "t have enough money in your Intaleq wallet": "t have enough money in your Intaleq wallet",
"t moved sufficiently!": "t moved sufficiently!",
"t need a ride anymore": "t need a ride anymore",
"t return to use app after 1 month": "t return to use app after 1 month",
@@ -2563,10 +2562,10 @@ final Map el = {
"wallet due to a previous trip.": "wallet due to a previous trip.",
"wallet_credited_message": "wallet_credited_message",
"wallet_updated": "wallet_updated",
- "welcome to siro": "welcome to intaleq",
+ "welcome to intaleq": "welcome to intaleq",
"welcome user": "Καλώς ήρθες, @firstName!",
"welcome_message": "Καλώς ήρθατε στο Intaleq!",
- "welcome_to_siro": "welcome_to_intaleq",
+ "welcome_to_intaleq": "welcome_to_intaleq",
"whatsapp', phone1, 'Hello": "whatsapp', phone1, 'Hello",
"with license plate": "with license plate",
"with type": "with type",
@@ -2590,7 +2589,7 @@ final Map el = {
"you must insert token code": "you must insert token code",
"you must insert token code ": "you must insert token code ",
"you will pay to Driver": "Θα πληρώσετε στον Οδηγό",
- "you will pay to Driver you will be pay the cost of driver time look to your Siro Wallet": "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet",
+ "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet",
"you will use this device?": "you will use this device?",
"your ride is Accepted": "Η διαδρομή έγινε δεκτή",
"your ride is applied": "η διαδρομή καταχωρήθηκε",
diff --git a/intaleq_driver/lib/controller/local/en.dart b/intaleq_driver/lib/controller/local/en.dart
index 1d75ada..088f139 100644
--- a/intaleq_driver/lib/controller/local/en.dart
+++ b/intaleq_driver/lib/controller/local/en.dart
@@ -18,8 +18,8 @@ final Map en = {
"\${\"You must leave at least": "\${\"You must leave at least",
"\${\"amount": "\${\"amount",
"\${\"transaction_id": "\${\"transaction_id",
- "\${'*Siro APP CODE*": "\${'*Intaleq APP CODE*",
- "\${'*Siro DRIVER CODE*": "\${'*Intaleq DRIVER CODE*",
+ "\${'*Intaleq APP CODE*": "\${'*Intaleq APP CODE*",
+ "\${'*Intaleq DRIVER CODE*": "\${'*Intaleq DRIVER CODE*",
"\${'Address": "\${'Address",
"\${'Address: ": "\${'Address: ",
"\${'Age": "\${'Age",
@@ -117,8 +117,8 @@ final Map en = {
"([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string",
"([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string",
")[1]}": ")[1]}",
- "*Siro APP CODE*": "*Intaleq APP CODE*",
- "*Siro DRIVER CODE*": "*Intaleq DRIVER CODE*",
+ "*Intaleq APP CODE*": "*Intaleq APP CODE*",
+ "*Intaleq DRIVER CODE*": "*Intaleq DRIVER CODE*",
"--": "--",
"-1% commission": "-1% commission",
"-2% commission": "-2% commission",
@@ -540,7 +540,7 @@ final Map en = {
"Day Off": "Day Off",
"Day Streak": "Day Streak",
"Days": "Days",
- "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Siro app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nSiro ,": "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,",
+ "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,": "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,",
"Debit": "Debit",
"Debit Card": "Debit Card",
"Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024",
@@ -580,8 +580,8 @@ final Map en = {
"Don't have an account? Register": "Don't have an account? Register",
"Done": "Done",
"Don’t forget your personal belongings.": "Don’t forget your personal belongings.",
- "Download the Siro Driver app now and earn rewards!": "Download the Intaleq Driver app now and earn rewards!",
- "Download the Siro app now and enjoy your ride!": "Download the Intaleq app now and enjoy your ride!",
+ "Download the Intaleq Driver app now and earn rewards!": "Download the Intaleq Driver app now and earn rewards!",
+ "Download the Intaleq app now and enjoy your ride!": "Download the Intaleq app now and enjoy your ride!",
"Download the app now:": "Download the app now:",
"Drawing route on map...": "Drawing route on map...",
"Driver": "Driver",
@@ -703,7 +703,7 @@ final Map en = {
"Evening": "Evening",
"Excellent": "Excellent",
"Exclusive offers and discounts always with the Sefer app": "Exclusive offers and discounts always with the Sefer app",
- "Exclusive offers and discounts always with the Siro app": "Exclusive offers and discounts always with the Intaleq app",
+ "Exclusive offers and discounts always with the Intaleq app": "Exclusive offers and discounts always with the Intaleq app",
"Exit": "Exit",
"Exit Ride?": "Exit Ride?",
"Expiration Date": "Expiration Date",
@@ -750,8 +750,8 @@ final Map en = {
"Flag-down fee": "Flag-down fee",
"For Drivers": "For Drivers",
"For Egypt": "For Egypt",
- "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
- "For Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
+ "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
+ "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
"Free Call": "Free Call",
"Frequently Asked Questions": "Frequently Asked Questions",
"Frequently Questions": "Frequently Questions",
@@ -773,7 +773,7 @@ final Map en = {
"Get": "Get",
"Get Details of Trip": "Get Details of Trip",
"Get Direction": "Get Direction",
- "Get a discount on your first Siro ride!": "Get a discount on your first Intaleq ride!",
+ "Get a discount on your first Intaleq ride!": "Get a discount on your first Intaleq ride!",
"Get features for your country": "Get features for your country",
"Get it Now!": "Get it Now!",
"Get to your destination quickly and easily.": "Get to your destination quickly and easily.",
@@ -839,7 +839,7 @@ final Map en = {
"How much do you want to earn today?": "How much do you want to earn today?",
"How much longer will you be?": "How much longer will you be?",
"How to use App": "How to use App",
- "How to use Siro": "How to use Intaleq",
+ "How to use Intaleq": "How to use Intaleq",
"How was the passenger?": "How was the passenger?",
"How was your trip with": "How was your trip with",
"How would you like to receive your reward?": "How would you like to receive your reward?",
@@ -923,7 +923,7 @@ final Map en = {
"IssueDate": "IssueDate",
"JOD": "JOD",
"Join": "Join",
- "Join Siro as a driver using my referral code!": "Join Intaleq as a driver using my referral code!",
+ "Join Intaleq as a driver using my referral code!": "Join Intaleq as a driver using my referral code!",
"Jordan": "Jordan",
"Just now": "Just now",
"KM": "KM",
@@ -1145,7 +1145,7 @@ final Map en = {
"Order Applied": "Order Applied",
"Order Cancelled": "Order Cancelled",
"Order Cancelled by Passenger": "Order Cancelled by Passenger",
- "Order Details Siro": "Order Details Intaleq",
+ "Order Details Intaleq": "Order Details Intaleq",
"Order History": "Order History",
"Order ID": "Order ID",
"Order Request Page": "Order Request Page",
@@ -1196,7 +1196,7 @@ final Map en = {
"Pay using MTN Cash wallet": "Pay using MTN Cash wallet",
"Pay using Sham Cash wallet": "Pay using Sham Cash wallet",
"Pay using Syriatel mobile wallet": "Pay using Syriatel mobile wallet",
- "Pay via CliQ (Alias: siroapp)": "Pay via CliQ (Alias: intaleqapp)",
+ "Pay via CliQ (Alias: intaleqapp)": "Pay via CliQ (Alias: intaleqapp)",
"Pay with Credit Card": "Pay with Credit Card",
"Pay with Debit Card": "Pay with Debit Card",
"Pay with Wallet": "Pay with Wallet",
@@ -1288,7 +1288,7 @@ final Map en = {
"Please help! Contact me as soon as possible.": "Please help! Contact me as soon as possible.",
"Please make sure not to leave any personal belongings in the car.": "Please make sure not to leave any personal belongings in the car.",
"Please make sure to read the license carefully.": "Please make sure to read the license carefully.",
- "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Siro app": "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app",
+ "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app": "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app",
"Please paste the transfer message": "Please paste the transfer message",
"Please provide details about any long-term diseases.": "Please provide details about any long-term diseases.",
"Please put your licence in these border": "Please put your licence in these border",
@@ -1298,7 +1298,7 @@ final Map en = {
"Please select a ride before submitting.": "Please select a ride before submitting.",
"Please stay on the picked point.": "Please stay on the picked point.",
"Please tell us why you want to cancel.": "Please tell us why you want to cancel.",
- "Please transfer the amount to alias: siroapp": "Please transfer the amount to alias: intaleqapp",
+ "Please transfer the amount to alias: intaleqapp": "Please transfer the amount to alias: intaleqapp",
"Please try again in a few moments": "Please try again in a few moments",
"Please upload a clear photo of your face to be identified by passengers.": "Please upload a clear photo of your face to be identified by passengers.",
"Please upload all 4 required documents.": "Please upload all 4 required documents.",
@@ -1480,7 +1480,7 @@ final Map en = {
"Send Email": "Send Email",
"Send Invite": "Send Invite",
"Send Message": "Send Message",
- "Send Siro app to him": "Send Intaleq app to him",
+ "Send Intaleq app to him": "Send Intaleq app to him",
"Send Verfication Code": "Send Verfication Code",
"Send Verification Code": "Send Verification Code",
"Send WhatsApp Message": "Send WhatsApp Message",
@@ -1534,34 +1534,34 @@ final Map en = {
"Sign in with Google for easier email and name entry": "Sign in with Google for easier email and name entry",
"Sign in with a provider for easy access": "Sign in with a provider for easy access",
"Silver badge": "Silver badge",
- "Siro": "Intaleq",
- "Siro Balance": "Intaleq Balance",
- "Siro DRIVER CODE": "Intaleq DRIVER CODE",
- "Siro Driver": "Intaleq Driver",
- "Siro LLC": "Intaleq LLC",
- "Siro LLC\\n\${'Syria": "Intaleq LLC\\n\${'Syria",
- "Siro LLC\\n\\\${'Syria": "Intaleq LLC\\n\\\${'Syria",
- "Siro Order": "Intaleq Order",
- "Siro Over": "Intaleq Over",
- "Siro Reminder": "Intaleq Reminder",
- "Siro Wallet": "Intaleq Wallet",
- "Siro Wallet Features:": "Intaleq Wallet Features:",
- "Siro is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:",
- "Siro is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:",
- "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.",
- "Siro is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.",
- "Siro is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq is the ride-hailing app that is safe, reliable, and accessible.",
- "Siro is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Siro, you enjoy quality, safety, and peace of mind—every time you ride.": "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.",
- "Siro is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.": "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.",
- "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.",
- "Siro offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.": "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.",
- "Siro offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.",
- "Siro offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.": "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.",
- "Siro prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.",
- "Siro provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.",
- "Siro's Response": "Intaleq's Response",
- "Siro123": "Intaleq123",
- "Siro: For fixed salary and endpoints.": "Intaleq: For fixed salary and endpoints.",
+ "Intaleq": "Intaleq",
+ "Intaleq Balance": "Intaleq Balance",
+ "Intaleq DRIVER CODE": "Intaleq DRIVER CODE",
+ "Intaleq Driver": "Intaleq Driver",
+ "Intaleq LLC": "Intaleq LLC",
+ "Intaleq LLC\\n\${'Syria": "Intaleq LLC\\n\${'Syria",
+ "Intaleq LLC\\n\\\${'Syria": "Intaleq LLC\\n\\\${'Syria",
+ "Intaleq Order": "Intaleq Order",
+ "Intaleq Over": "Intaleq Over",
+ "Intaleq Reminder": "Intaleq Reminder",
+ "Intaleq Wallet": "Intaleq Wallet",
+ "Intaleq Wallet Features:": "Intaleq Wallet Features:",
+ "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:",
+ "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:",
+ "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.",
+ "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.",
+ "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq is the ride-hailing app that is safe, reliable, and accessible.",
+ "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.": "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.",
+ "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.": "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.",
+ "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.",
+ "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.": "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.",
+ "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.",
+ "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.": "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.",
+ "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.",
+ "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.",
+ "Intaleq's Response": "Intaleq's Response",
+ "Intaleq123": "Intaleq123",
+ "Intaleq: For fixed salary and endpoints.": "Intaleq: For fixed salary and endpoints.",
"Slide to End Trip": "Slide to End Trip",
"So go and gain your money": "So go and gain your money",
"Social Butterfly": "Social Butterfly",
@@ -1591,7 +1591,7 @@ final Map en = {
"Status": "Status",
"Status is": "Status is",
"Stay": "Stay",
- "Step-by-step instructions on how to request a ride through the Siro app.": "Step-by-step instructions on how to request a ride through the Intaleq app.",
+ "Step-by-step instructions on how to request a ride through the Intaleq app.": "Step-by-step instructions on how to request a ride through the Intaleq app.",
"Stop": "Stop",
"Store your money with us and receive it in your bank as a monthly salary.": "Store your money with us and receive it in your bank as a monthly salary.",
"Submission Failed": "Submission Failed",
@@ -1727,8 +1727,8 @@ final Map en = {
"To become a driver, you must review and agree to the": "To become a driver, you must review and agree to the",
"To become a driver, you must review and agree to the ": "To become a driver, you must review and agree to the ",
"To become a passenger, you must review and agree to the": "To become a passenger, you must review and agree to the",
- "To become a ride-sharing driver on the Siro app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Siro app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
- "To become a ride-sharing driver on the Siro app...": "To become a ride-sharing driver on the Intaleq app...",
+ "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
+ "To become a ride-sharing driver on the Intaleq app...": "To become a ride-sharing driver on the Intaleq app...",
"To change Language the App": "To change Language the App",
"To change some Settings": "To change some Settings",
"To display orders instantly, please grant permission to draw over other apps.": "To display orders instantly, please grant permission to draw over other apps.",
@@ -1736,7 +1736,7 @@ final Map en = {
"To ensure you receive the most accurate information for your location, please select your country below. This will help tailor the app experience and content to your country.": "To ensure you receive the most accurate information for your location, please select your country below. This will help tailor the app experience and content to your country.",
"To get a gift for both": "To get a gift for both",
"To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.",
- "To register as a driver or learn about the requirements, please visit our website or contact Siro support directly.": "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.",
+ "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.",
"To use Wallet charge it": "To use Wallet charge it",
"Today": "Today",
"Today Overview": "Today Overview",
@@ -1826,7 +1826,7 @@ final Map en = {
"Type your Email": "Type your Email",
"Type your message": "Type your message",
"Type your message...": "Type your message...",
- "Types of Trips in Siro:": "Types of Trips in Intaleq:",
+ "Types of Trips in Intaleq:": "Types of Trips in Intaleq:",
"USA": "USA",
"Uncompromising Security": "Uncompromising Security",
"Unknown": "Unknown",
@@ -1885,7 +1885,7 @@ final Map en = {
"View your past transactions": "View your past transactions",
"Visa": "Visa",
"Visit Website/Contact Support": "Visit Website/Contact Support",
- "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Intaleq support for information on driver registration and requirements.",
+ "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Visit our website or contact Intaleq support for information on driver registration and requirements.",
"Voice Calling": "Voice Calling",
"Voice call over internet": "Voice call over internet",
"Wait for timer": "Wait for timer",
@@ -1908,7 +1908,7 @@ final Map en = {
"Wallet is blocked": "Wallet is blocked",
"Wallet!": "Wallet!",
"Warning": "Warning",
- "Warning: Siroing detected!": "Warning: Intaleqing detected!",
+ "Warning: Intaleqing detected!": "Warning: Intaleqing detected!",
"Warning: Speeding detected!": "Warning: Speeding detected!",
"We Are Sorry That we dont have cars in your Location!": "We Are Sorry That we dont have cars in your Location!",
"We are looking for a captain but the price may increase to let a captain accept": "We are looking for a captain but the price may increase to let a captain accept",
@@ -1918,8 +1918,7 @@ final Map en = {
"We are searching for the nearest driver": "We are searching for the nearest driver",
"We are searching for the nearest driver to you": "We are searching for the nearest driver to you",
"We connect you with the nearest drivers for faster pickups and quicker journeys.": "We connect you with the nearest drivers for faster pickups and quicker journeys.",
- "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Siro app and be part of our Siro family.": "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.",
- "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Tripz app and be part of our Tripz family.": "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Tripz app and be part of our Tripz family.",
+ "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.": "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.",
"We have partnered with health insurance providers to offer you special health coverage. Complete 500 trips and receive a 20% discount on health insurance premiums.": "We have partnered with health insurance providers to offer you special health coverage. Complete 500 trips and receive a 20% discount on health insurance premiums.",
"We have received your application to join us as a driver. Our team is currently reviewing it. Thank you for your patience.": "We have received your application to join us as a driver. Our team is currently reviewing it. Thank you for your patience.",
"We have sent a verification code to your mobile number:": "We have sent a verification code to your mobile number:",
@@ -1928,7 +1927,7 @@ final Map en = {
"We need your location to find nearby drivers for pickups and drop-offs.": "We need your location to find nearby drivers for pickups and drop-offs.",
"We need your phone number to contact you and to help you receive orders.": "We need your phone number to contact you and to help you receive orders.",
"We need your phone number to contact you and to help you.": "We need your phone number to contact you and to help you.",
- "We noticed the Siro is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.": "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.",
+ "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.": "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.",
"We regret to inform you that another driver has accepted this order.": "We regret to inform you that another driver has accepted this order.",
"We search nearst Driver to you": "We search nearst Driver to you",
"We sent 5 digit to your Email provided": "We sent 5 digit to your Email provided",
@@ -1946,12 +1945,12 @@ final Map en = {
"Welcome": "Welcome",
"Welcome Back!": "Welcome Back!",
"Welcome Offer!": "Welcome Offer!",
- "Welcome to Siro!": "Welcome to Intaleq!",
+ "Welcome to Intaleq!": "Welcome to Intaleq!",
"What are the order details we provide to you?": "What are the order details we provide to you?",
"What are the requirements to become a driver?": "What are the requirements to become a driver?",
- "What is Types of Trips in Siro?": "What is Types of Trips in Intaleq?",
+ "What is Types of Trips in Intaleq?": "What is Types of Trips in Intaleq?",
"What is the feature of our wallet?": "What is the feature of our wallet?",
- "What safety measures does Siro offer?": "What safety measures does Intaleq offer?",
+ "What safety measures does Intaleq offer?": "What safety measures does Intaleq offer?",
"What types of vehicles are available?": "What types of vehicles are available?",
"WhatsApp": "WhatsApp",
"WhatsApp Location Extractor": "WhatsApp Location Extractor",
@@ -1963,9 +1962,9 @@ final Map en = {
"Where to": "Where to",
"Where you want go": "Where you want go",
"Which method you will pay": "Which method you will pay",
- "Why Choose Siro?": "Why Choose Intaleq?",
+ "Why Choose Intaleq?": "Why Choose Intaleq?",
"Why do you want to cancel this trip?": "Why do you want to cancel this trip?",
- "With Siro, you can get a ride to your destination in minutes.": "With Intaleq, you can get a ride to your destination in minutes.",
+ "With Intaleq, you can get a ride to your destination in minutes.": "With Intaleq, you can get a ride to your destination in minutes.",
"Withdraw": "Withdraw",
"Work": "Work",
"Work & Contact": "Work & Contact",
@@ -1989,7 +1988,7 @@ final Map en = {
"Yes": "Yes",
"Yes, Pay": "Yes, Pay",
"Yes, optimize": "Yes, optimize",
- "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Siro cancellation policy for details.": "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.",
+ "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.",
"Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.": "Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.",
"You": "You",
"You Are Stopped For this Day !": "You Are Stopped For this Day !",
@@ -2041,7 +2040,7 @@ final Map en = {
"You can purchase a budget to enable online access through the options listed below": "You can purchase a budget to enable online access through the options listed below",
"You can purchase a budget to enable online access through the options listed below.": "You can purchase a budget to enable online access through the options listed below.",
"You can resend in": "You can resend in",
- "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Intaleq App with your friends and earn rewards for rides they take using your code",
+ "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "You can share the Intaleq App with your friends and earn rewards for rides they take using your code",
"You can upgrade price to may driver accept your order": "You can upgrade price to may driver accept your order",
"You can\\'t continue with us .\\nYou should renew Driver license": "You can\\'t continue with us .\\nYou should renew Driver license",
"You canceled VIP trip": "You canceled VIP trip",
@@ -2188,8 +2187,8 @@ final Map en = {
"\\\${\"You must leave at least": "\\\${\"You must leave at least",
"\\\${\"amount": "\\\${\"amount",
"\\\${\"transaction_id": "\\\${\"transaction_id",
- "\\\${'*Siro APP CODE*": "\\\${'*Intaleq APP CODE*",
- "\\\${'*Siro DRIVER CODE*": "\\\${'*Intaleq DRIVER CODE*",
+ "\\\${'*Intaleq APP CODE*": "\\\${'*Intaleq APP CODE*",
+ "\\\${'*Intaleq DRIVER CODE*": "\\\${'*Intaleq DRIVER CODE*",
"\\\${'Address": "\\\${'Address",
"\\\${'Address: ": "\\\${'Address: ",
"\\\${'Age": "\\\${'Age",
@@ -2436,7 +2435,7 @@ final Map en = {
"login or register subtitle": "login or register subtitle",
"m": "m",
"m at the agreed-upon location": "m at the agreed-upon location",
- "m inviting you to try Siro.": "m inviting you to try Intaleq.",
+ "m inviting you to try Intaleq.": "m inviting you to try Intaleq.",
"m waiting for you": "m waiting for you",
"m waiting for you at the specified location.": "m waiting for you at the specified location.",
"message From Driver": "message From Driver",
@@ -2492,16 +2491,16 @@ final Map en = {
"s Promo": "s Promo",
"s Promos": "s Promos",
"s Response": "s Response",
- "s Siro account.": "s Intaleq account.",
- "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Intaleq account.\\nStore your money with us and receive it in your bank as a monthly salary.",
+ "s Intaleq account.": "s Intaleq account.",
+ "s Intaleq account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Intaleq account.\\nStore your money with us and receive it in your bank as a monthly salary.",
"s Terms & Review Privacy Notice": "s Terms & Review Privacy Notice",
"s heavy traffic here. Can you suggest an alternate pickup point?": "s heavy traffic here. Can you suggest an alternate pickup point?",
"s license does not match the one on your ID document. Please verify and provide the correct documents.": "s license does not match the one on your ID document. Please verify and provide the correct documents.",
- "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Siro app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
+ "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
"s license. Please verify and provide the correct documents.": "s license. Please verify and provide the correct documents.",
"s phone": "s phone",
"s pioneering ride-sharing service, proudly developed by Arabian and local owners. We prioritize being near you – both our valued passengers and our dedicated captains.": "s pioneering ride-sharing service, proudly developed by Arabian and local owners. We prioritize being near you – both our valued passengers and our dedicated captains.",
- "s time to check the Siro app!": "s time to check the Intaleq app!",
+ "s time to check the Intaleq app!": "s time to check the Intaleq app!",
"safe_and_comfortable": "safe_and_comfortable",
"scams operations": "scams operations",
"scan Car License.": "scan Car License.",
@@ -2530,7 +2529,7 @@ final Map en = {
"t have a phone number.": "t have a phone number.",
"t have a reason": "t have a reason",
"t have account": "t have account",
- "t have enough money in your Siro wallet": "t have enough money in your Intaleq wallet",
+ "t have enough money in your Intaleq wallet": "t have enough money in your Intaleq wallet",
"t moved sufficiently!": "t moved sufficiently!",
"t need a ride anymore": "t need a ride anymore",
"t return to use app after 1 month": "t return to use app after 1 month",
@@ -2580,10 +2579,10 @@ final Map en = {
"wallet due to a previous trip.": "wallet due to a previous trip.",
"wallet_credited_message": "wallet_credited_message",
"wallet_updated": "wallet_updated",
- "welcome to siro": "welcome to intaleq",
+ "welcome to intaleq": "welcome to intaleq",
"welcome user": "welcome user",
"welcome_message": "welcome_message",
- "welcome_to_siro": "welcome_to_intaleq",
+ "welcome_to_intaleq": "welcome_to_intaleq",
"whatsapp', phone1, 'Hello": "whatsapp', phone1, 'Hello",
"with license plate": "with license plate",
"with type": "with type",
@@ -2607,7 +2606,7 @@ final Map en = {
"you must insert token code": "you must insert token code",
"you must insert token code ": "you must insert token code ",
"you will pay to Driver": "you will pay to Driver",
- "you will pay to Driver you will be pay the cost of driver time look to your Siro Wallet": "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet",
+ "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet",
"you will use this device?": "you will use this device?",
"your ride is Accepted": "your ride is Accepted",
"your ride is applied": "your ride is applied",
diff --git a/intaleq_driver/lib/controller/local/es.dart b/intaleq_driver/lib/controller/local/es.dart
index b7cf101..efae0bc 100644
--- a/intaleq_driver/lib/controller/local/es.dart
+++ b/intaleq_driver/lib/controller/local/es.dart
@@ -18,8 +18,8 @@ final Map es = {
"\${\"You must leave at least": "\${\"You must leave at least",
"\${\"amount": "\${\"amount",
"\${\"transaction_id": "\${\"transaction_id",
- "\${'*Siro APP CODE*": "\${'*Intaleq APP CODE*",
- "\${'*Siro DRIVER CODE*": "\${'*Intaleq DRIVER CODE*",
+ "\${'*Intaleq APP CODE*": "\${'*Intaleq APP CODE*",
+ "\${'*Intaleq DRIVER CODE*": "\${'*Intaleq DRIVER CODE*",
"\${'Address": "\${'Address",
"\${'Address: ": "\${'Address: ",
"\${'Age": "\${'Age",
@@ -117,8 +117,8 @@ final Map es = {
"([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string",
"([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string",
")[1]}": ")[1]}",
- "*Siro APP CODE*": "*Intaleq APP CODE*",
- "*Siro DRIVER CODE*": "*Intaleq DRIVER CODE*",
+ "*Intaleq APP CODE*": "*Intaleq APP CODE*",
+ "*Intaleq DRIVER CODE*": "*Intaleq DRIVER CODE*",
"--": "--",
"-1% commission": "-1% commission",
"-2% commission": "-2% commission",
@@ -540,7 +540,7 @@ final Map es = {
"Day Off": "Day Off",
"Day Streak": "Day Streak",
"Days": "Días",
- "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Siro app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nSiro ,": "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,",
+ "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,": "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,",
"Debit": "Debit",
"Debit Card": "Debit Card",
"Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024",
@@ -580,8 +580,8 @@ final Map es = {
"Don't have an account? Register": "Don't have an account? Register",
"Done": "Hecho",
"Don’t forget your personal belongings.": "No olvides tus pertenencias personales.",
- "Download the Siro Driver app now and earn rewards!": "Download the Intaleq Driver app now and earn rewards!",
- "Download the Siro app now and enjoy your ride!": "Download the Intaleq app now and enjoy your ride!",
+ "Download the Intaleq Driver app now and earn rewards!": "Download the Intaleq Driver app now and earn rewards!",
+ "Download the Intaleq app now and enjoy your ride!": "Download the Intaleq app now and enjoy your ride!",
"Download the app now:": "Descarga la aplicación ahora:",
"Drawing route on map...": "Drawing route on map...",
"Driver": "Conductor",
@@ -703,7 +703,7 @@ final Map es = {
"Evening": "Tarde",
"Excellent": "Excellent",
"Exclusive offers and discounts always with the Sefer app": "Exclusive offers and discounts always with the Sefer app",
- "Exclusive offers and discounts always with the Siro app": "Exclusive offers and discounts always with the Intaleq app",
+ "Exclusive offers and discounts always with the Intaleq app": "Exclusive offers and discounts always with the Intaleq app",
"Exit": "Exit",
"Exit Ride?": "Exit Ride?",
"Expiration Date": "Fecha de vencimiento",
@@ -750,8 +750,8 @@ final Map es = {
"Flag-down fee": "Tarifa base",
"For Drivers": "Para conductores",
"For Egypt": "For Egypt",
- "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
- "For Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
+ "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
+ "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
"Free Call": "Free Call",
"Frequently Asked Questions": "Preguntas frecuentes",
"Frequently Questions": "Preguntas frecuentes",
@@ -773,7 +773,7 @@ final Map es = {
"Get": "Obtener",
"Get Details of Trip": "Obtener detalles del viaje",
"Get Direction": "Obtener dirección",
- "Get a discount on your first Siro ride!": "Get a discount on your first Intaleq ride!",
+ "Get a discount on your first Intaleq ride!": "Get a discount on your first Intaleq ride!",
"Get features for your country": "Get features for your country",
"Get it Now!": "¡Consíguelo ahora!",
"Get to your destination quickly and easily.": "Llega a tu destino de manera rápida y sencilla.",
@@ -838,7 +838,7 @@ final Map es = {
"How much do you want to earn today?": "How much do you want to earn today?",
"How much longer will you be?": "¿Cuánto tiempo más tardarás?",
"How to use App": "How to use App",
- "How to use Siro": "How to use Intaleq",
+ "How to use Intaleq": "How to use Intaleq",
"How was the passenger?": "How was the passenger?",
"How was your trip with": "How was your trip with",
"How would you like to receive your reward?": "How would you like to receive your reward?",
@@ -922,7 +922,7 @@ final Map es = {
"IssueDate": "Fecha de emisión",
"JOD": "JOD",
"Join": "Unirse",
- "Join Siro as a driver using my referral code!": "Join Intaleq as a driver using my referral code!",
+ "Join Intaleq as a driver using my referral code!": "Join Intaleq as a driver using my referral code!",
"Jordan": "Jordania",
"Just now": "Just now",
"KM": "KM",
@@ -1144,7 +1144,7 @@ final Map es = {
"Order Applied": "Pedido aplicado",
"Order Cancelled": "Pedido cancelado",
"Order Cancelled by Passenger": "Pedido cancelado por el pasajero",
- "Order Details Siro": "Order Details Intaleq",
+ "Order Details Intaleq": "Order Details Intaleq",
"Order History": "Historial de pedidos",
"Order ID": "Order ID",
"Order Request Page": "Página de solicitud de pedido",
@@ -1195,7 +1195,7 @@ final Map es = {
"Pay using MTN Cash wallet": "Pay using MTN Cash wallet",
"Pay using Sham Cash wallet": "Pay using Sham Cash wallet",
"Pay using Syriatel mobile wallet": "Pay using Syriatel mobile wallet",
- "Pay via CliQ (Alias: siroapp)": "Pay via CliQ (Alias: intaleqapp)",
+ "Pay via CliQ (Alias: intaleqapp)": "Pay via CliQ (Alias: intaleqapp)",
"Pay with Credit Card": "Pagar con tarjeta de crédito",
"Pay with Debit Card": "Pay with Debit Card",
"Pay with Wallet": "Pagar con billetera",
@@ -1287,7 +1287,7 @@ final Map es = {
"Please help! Contact me as soon as possible.": "¡Por favor, ayuda! Contáctame lo antes posible.",
"Please make sure not to leave any personal belongings in the car.": "Please make sure not to leave any personal belongings in the car.",
"Please make sure to read the license carefully.": "Please make sure to read the license carefully.",
- "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Siro app": "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app",
+ "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app": "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app",
"Please paste the transfer message": "Please paste the transfer message",
"Please provide details about any long-term diseases.": "Please provide details about any long-term diseases.",
"Please put your licence in these border": "Por favor, coloca tu licencia en este marco",
@@ -1297,7 +1297,7 @@ final Map es = {
"Please select a ride before submitting.": "Please select a ride before submitting.",
"Please stay on the picked point.": "Por favor, permanece en el punto seleccionado.",
"Please tell us why you want to cancel.": "Please tell us why you want to cancel.",
- "Please transfer the amount to alias: siroapp": "Please transfer the amount to alias: intaleqapp",
+ "Please transfer the amount to alias: intaleqapp": "Please transfer the amount to alias: intaleqapp",
"Please try again in a few moments": "Por favor, inténtalo de nuevo en unos momentos",
"Please upload a clear photo of your face to be identified by passengers.": "Please upload a clear photo of your face to be identified by passengers.",
"Please upload all 4 required documents.": "Please upload all 4 required documents.",
@@ -1479,7 +1479,7 @@ final Map es = {
"Send Email": "Send Email",
"Send Invite": "Enviar invitación",
"Send Message": "Send Message",
- "Send Siro app to him": "Send Intaleq app to him",
+ "Send Intaleq app to him": "Send Intaleq app to him",
"Send Verfication Code": "Enviar código de verificación",
"Send Verification Code": "Enviar código de verificación",
"Send WhatsApp Message": "Send WhatsApp Message",
@@ -1533,34 +1533,34 @@ final Map es = {
"Sign in with Google for easier email and name entry": "Inicia sesión con Google para ingresar el correo electrónico y el nombre más fácilmente",
"Sign in with a provider for easy access": "Sign in with a provider for easy access",
"Silver badge": "Silver badge",
- "Siro": "Intaleq",
- "Siro Balance": "Intaleq Balance",
- "Siro DRIVER CODE": "Intaleq DRIVER CODE",
- "Siro Driver": "Intaleq Driver",
- "Siro LLC": "Intaleq LLC",
- "Siro LLC\\n\${'Syria": "Intaleq LLC\\n\${'Syria",
- "Siro LLC\\n\\\${'Syria": "Intaleq LLC\\n\\\${'Syria",
- "Siro Order": "Intaleq Order",
- "Siro Over": "Intaleq Over",
- "Siro Reminder": "Intaleq Reminder",
- "Siro Wallet": "Intaleq Wallet",
- "Siro Wallet Features:": "Intaleq Wallet Features:",
- "Siro is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:",
- "Siro is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:",
- "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.",
- "Siro is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.",
- "Siro is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq is the ride-hailing app that is safe, reliable, and accessible.",
- "Siro is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Siro, you enjoy quality, safety, and peace of mind—every time you ride.": "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.",
- "Siro is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.": "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.",
- "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.",
- "Siro offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.": "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.",
- "Siro offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.",
- "Siro offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.": "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.",
- "Siro prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.",
- "Siro provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.",
- "Siro's Response": "Intaleq's Response",
- "Siro123": "Intaleq123",
- "Siro: For fixed salary and endpoints.": "Intaleq: For fixed salary and endpoints.",
+ "Intaleq": "Intaleq",
+ "Intaleq Balance": "Intaleq Balance",
+ "Intaleq DRIVER CODE": "Intaleq DRIVER CODE",
+ "Intaleq Driver": "Intaleq Driver",
+ "Intaleq LLC": "Intaleq LLC",
+ "Intaleq LLC\\n\${'Syria": "Intaleq LLC\\n\${'Syria",
+ "Intaleq LLC\\n\\\${'Syria": "Intaleq LLC\\n\\\${'Syria",
+ "Intaleq Order": "Intaleq Order",
+ "Intaleq Over": "Intaleq Over",
+ "Intaleq Reminder": "Intaleq Reminder",
+ "Intaleq Wallet": "Intaleq Wallet",
+ "Intaleq Wallet Features:": "Intaleq Wallet Features:",
+ "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:",
+ "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:",
+ "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.",
+ "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.",
+ "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq is the ride-hailing app that is safe, reliable, and accessible.",
+ "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.": "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.",
+ "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.": "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.",
+ "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.",
+ "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.": "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.",
+ "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.",
+ "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.": "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.",
+ "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.",
+ "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.",
+ "Intaleq's Response": "Intaleq's Response",
+ "Intaleq123": "Intaleq123",
+ "Intaleq: For fixed salary and endpoints.": "Intaleq: For fixed salary and endpoints.",
"Slide to End Trip": "Slide to End Trip",
"So go and gain your money": "So go and gain your money",
"Social Butterfly": "Social Butterfly",
@@ -1590,7 +1590,7 @@ final Map es = {
"Status": "Status",
"Status is": "Status is",
"Stay": "Stay",
- "Step-by-step instructions on how to request a ride through the Siro app.": "Step-by-step instructions on how to request a ride through the Intaleq app.",
+ "Step-by-step instructions on how to request a ride through the Intaleq app.": "Step-by-step instructions on how to request a ride through the Intaleq app.",
"Stop": "Stop",
"Store your money with us and receive it in your bank as a monthly salary.": "Store your money with us and receive it in your bank as a monthly salary.",
"Submission Failed": "Submission Failed",
@@ -1710,8 +1710,8 @@ final Map es = {
"To become a driver, you must review and agree to the": "To become a driver, you must review and agree to the",
"To become a driver, you must review and agree to the ": "To become a driver, you must review and agree to the ",
"To become a passenger, you must review and agree to the": "To become a passenger, you must review and agree to the",
- "To become a ride-sharing driver on the Siro app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Siro app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
- "To become a ride-sharing driver on the Siro app...": "To become a ride-sharing driver on the Intaleq app...",
+ "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
+ "To become a ride-sharing driver on the Intaleq app...": "To become a ride-sharing driver on the Intaleq app...",
"To change Language the App": "Para cambiar el idioma de la aplicación",
"To change some Settings": "Para cambiar algunas configuraciones",
"To display orders instantly, please grant permission to draw over other apps.": "To display orders instantly, please grant permission to draw over other apps.",
@@ -1719,7 +1719,7 @@ final Map es = {
"To ensure you receive the most accurate information for your location, please select your country below. This will help tailor the app experience and content to your country.": "Para asegurarte de recibir la información más precisa para tu ubicación, por favor selecciona tu país a continuación. Esto ayudará a personalizar la experiencia de la aplicación y el contenido para tu país.",
"To get a gift for both": "To get a gift for both",
"To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "Para brindarle la mejor experiencia, necesitamos saber dónde se encuentra. Su ubicación se utiliza para encontrar capitanes cercanos y para las recogidas.",
- "To register as a driver or learn about the requirements, please visit our website or contact Siro support directly.": "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.",
+ "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.",
"To use Wallet charge it": "Para usar la billetera, cárgala",
"Today": "Today",
"Today Overview": "Today Overview",
@@ -1809,7 +1809,7 @@ final Map es = {
"Type your Email": "Escribe tu correo electrónico",
"Type your message": "Escribe tu mensaje",
"Type your message...": "Type your message...",
- "Types of Trips in Siro:": "Types of Trips in Intaleq:",
+ "Types of Trips in Intaleq:": "Types of Trips in Intaleq:",
"USA": "EE. UU.",
"Uncompromising Security": "Seguridad sin compromisos",
"Unknown": "Unknown",
@@ -1868,7 +1868,7 @@ final Map es = {
"View your past transactions": "View your past transactions",
"Visa": "Visa",
"Visit Website/Contact Support": "Visita el sitio web/Contacta al soporte",
- "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Intaleq support for information on driver registration and requirements.",
+ "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Visit our website or contact Intaleq support for information on driver registration and requirements.",
"Voice Calling": "Voice Calling",
"Voice call over internet": "Voice call over internet",
"Wait for timer": "Wait for timer",
@@ -1891,7 +1891,7 @@ final Map es = {
"Wallet is blocked": "Wallet is blocked",
"Wallet!": "¡Billetera!",
"Warning": "Warning",
- "Warning: Siroing detected!": "Warning: Intaleqing detected!",
+ "Warning: Intaleqing detected!": "Warning: Intaleqing detected!",
"Warning: Speeding detected!": "Warning: Speeding detected!",
"We Are Sorry That we dont have cars in your Location!": "¡Lamentamos no tener coches en tu ubicación!",
"We are looking for a captain but the price may increase to let a captain accept": "Estamos buscando un capitán, pero el precio puede aumentar para que un capitán acepte",
@@ -1901,8 +1901,7 @@ final Map es = {
"We are searching for the nearest driver": "Estamos buscando al conductor más cercano",
"We are searching for the nearest driver to you": "Estamos buscando al conductor más cercano para ti",
"We connect you with the nearest drivers for faster pickups and quicker journeys.": "Te conectamos con los conductores más cercanos para recogidas más rápidas y viajes más cortos.",
- "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Siro app and be part of our Siro family.": "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.",
- "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Tripz app and be part of our Tripz family.": "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Tripz app and be part of our Tripz family.",
+ "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.": "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.",
"We have partnered with health insurance providers to offer you special health coverage. Complete 500 trips and receive a 20% discount on health insurance premiums.": "We have partnered with health insurance providers to offer you special health coverage. Complete 500 trips and receive a 20% discount on health insurance premiums.",
"We have received your application to join us as a driver. Our team is currently reviewing it. Thank you for your patience.": "We have received your application to join us as a driver. Our team is currently reviewing it. Thank you for your patience.",
"We have sent a verification code to your mobile number:": "Hemos enviado un código de verificación a su número de móvil:",
@@ -1911,7 +1910,7 @@ final Map es = {
"We need your location to find nearby drivers for pickups and drop-offs.": "Necesitamos tu ubicación para encontrar conductores cercanos para recogidas y dejadas.",
"We need your phone number to contact you and to help you receive orders.": "Necesitamos tu número de teléfono para contactarte y ayudarte a recibir pedidos.",
"We need your phone number to contact you and to help you.": "Necesitamos tu número de teléfono para contactarte y ayudarte.",
- "We noticed the Siro is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.": "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.",
+ "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.": "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.",
"We regret to inform you that another driver has accepted this order.": "Lamentamos informarte que otro conductor ha aceptado este pedido.",
"We search nearst Driver to you": "Buscamos al conductor más cercano para ti",
"We sent 5 digit to your Email provided": "Enviamos un código de 5 dígitos al correo electrónico proporcionado",
@@ -1929,12 +1928,12 @@ final Map es = {
"Welcome": "Welcome",
"Welcome Back!": "¡Bienvenido de nuevo!",
"Welcome Offer!": "Welcome Offer!",
- "Welcome to Siro!": "Welcome to Intaleq!",
+ "Welcome to Intaleq!": "Welcome to Intaleq!",
"What are the order details we provide to you?": "What are the order details we provide to you?",
"What are the requirements to become a driver?": "¿Cuáles son los requisitos para convertirse en conductor?",
- "What is Types of Trips in Siro?": "What is Types of Trips in Intaleq?",
+ "What is Types of Trips in Intaleq?": "What is Types of Trips in Intaleq?",
"What is the feature of our wallet?": "What is the feature of our wallet?",
- "What safety measures does Siro offer?": "What safety measures does Intaleq offer?",
+ "What safety measures does Intaleq offer?": "What safety measures does Intaleq offer?",
"What types of vehicles are available?": "¿Qué tipos de vehículos están disponibles?",
"WhatsApp": "WhatsApp",
"WhatsApp Location Extractor": "Extractor de ubicación de WhatsApp",
@@ -1946,9 +1945,9 @@ final Map es = {
"Where to": "A dónde",
"Where you want go": "Where you want go",
"Which method you will pay": "Which method you will pay",
- "Why Choose Siro?": "Why Choose Intaleq?",
+ "Why Choose Intaleq?": "Why Choose Intaleq?",
"Why do you want to cancel this trip?": "Why do you want to cancel this trip?",
- "With Siro, you can get a ride to your destination in minutes.": "With Intaleq, you can get a ride to your destination in minutes.",
+ "With Intaleq, you can get a ride to your destination in minutes.": "With Intaleq, you can get a ride to your destination in minutes.",
"Withdraw": "Withdraw",
"Work": "Trabajo",
"Work & Contact": "Trabajo y contacto",
@@ -1972,7 +1971,7 @@ final Map es = {
"Yes": "Yes",
"Yes, Pay": "Yes, Pay",
"Yes, optimize": "Yes, optimize",
- "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Siro cancellation policy for details.": "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.",
+ "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.",
"Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.": "Sí, puedes cancelar tu viaje, pero ten en cuenta que pueden aplicarse tarifas de cancelación dependiendo de cuánto tiempo antes canceles.",
"You": "You",
"You Are Stopped For this Day !": "¡Estás detenido por este día!",
@@ -2024,7 +2023,7 @@ final Map es = {
"You can purchase a budget to enable online access through the options listed below": "You can purchase a budget to enable online access through the options listed below",
"You can purchase a budget to enable online access through the options listed below.": "You can purchase a budget to enable online access through the options listed below.",
"You can resend in": "Puedes reenviar en",
- "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Intaleq App with your friends and earn rewards for rides they take using your code",
+ "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "You can share the Intaleq App with your friends and earn rewards for rides they take using your code",
"You can upgrade price to may driver accept your order": "Puedes aumentar el precio para que el conductor acepte tu pedido",
"You can\\'t continue with us .\\nYou should renew Driver license": "You can\\'t continue with us .\\nYou should renew Driver license",
"You canceled VIP trip": "Cancelaste el viaje VIP",
@@ -2171,8 +2170,8 @@ final Map es = {
"\\\${\"You must leave at least": "\\\${\"You must leave at least",
"\\\${\"amount": "\\\${\"amount",
"\\\${\"transaction_id": "\\\${\"transaction_id",
- "\\\${'*Siro APP CODE*": "\\\${'*Intaleq APP CODE*",
- "\\\${'*Siro DRIVER CODE*": "\\\${'*Intaleq DRIVER CODE*",
+ "\\\${'*Intaleq APP CODE*": "\\\${'*Intaleq APP CODE*",
+ "\\\${'*Intaleq DRIVER CODE*": "\\\${'*Intaleq DRIVER CODE*",
"\\\${'Address": "\\\${'Address",
"\\\${'Address: ": "\\\${'Address: ",
"\\\${'Age": "\\\${'Age",
@@ -2419,7 +2418,7 @@ final Map es = {
"login or register subtitle": "Inicia sesión o regístrate",
"m": "minutos",
"m at the agreed-upon location": "m at the agreed-upon location",
- "m inviting you to try Siro.": "m inviting you to try Intaleq.",
+ "m inviting you to try Intaleq.": "m inviting you to try Intaleq.",
"m waiting for you": "m waiting for you",
"m waiting for you at the specified location.": "m waiting for you at the specified location.",
"message From Driver": "Mensaje del conductor",
@@ -2475,16 +2474,16 @@ final Map es = {
"s Promo": "s Promo",
"s Promos": "s Promos",
"s Response": "s Response",
- "s Siro account.": "s Intaleq account.",
- "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Intaleq account.\\nStore your money with us and receive it in your bank as a monthly salary.",
+ "s Intaleq account.": "s Intaleq account.",
+ "s Intaleq account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Intaleq account.\\nStore your money with us and receive it in your bank as a monthly salary.",
"s Terms & Review Privacy Notice": "s Terms & Review Privacy Notice",
"s heavy traffic here. Can you suggest an alternate pickup point?": "s heavy traffic here. Can you suggest an alternate pickup point?",
"s license does not match the one on your ID document. Please verify and provide the correct documents.": "s license does not match the one on your ID document. Please verify and provide the correct documents.",
- "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Siro app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
+ "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "s license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
"s license. Please verify and provide the correct documents.": "s license. Please verify and provide the correct documents.",
"s phone": "s phone",
"s pioneering ride-sharing service, proudly developed by Arabian and local owners. We prioritize being near you – both our valued passengers and our dedicated captains.": "s pioneering ride-sharing service, proudly developed by Arabian and local owners. We prioritize being near you – both our valued passengers and our dedicated captains.",
- "s time to check the Siro app!": "s time to check the Intaleq app!",
+ "s time to check the Intaleq app!": "s time to check the Intaleq app!",
"safe_and_comfortable": "Disfruta de un viaje seguro y cómodo.",
"scams operations": "scams operations",
"scan Car License.": "scan Car License.",
@@ -2513,7 +2512,7 @@ final Map es = {
"t have a phone number.": "t have a phone number.",
"t have a reason": "t have a reason",
"t have account": "t have account",
- "t have enough money in your Siro wallet": "t have enough money in your Intaleq wallet",
+ "t have enough money in your Intaleq wallet": "t have enough money in your Intaleq wallet",
"t moved sufficiently!": "t moved sufficiently!",
"t need a ride anymore": "t need a ride anymore",
"t return to use app after 1 month": "t return to use app after 1 month",
@@ -2563,10 +2562,10 @@ final Map es = {
"wallet due to a previous trip.": "billetera debido a un viaje anterior.",
"wallet_credited_message": "wallet_credited_message",
"wallet_updated": "wallet_updated",
- "welcome to siro": "welcome to intaleq",
+ "welcome to intaleq": "welcome to intaleq",
"welcome user": "Bienvenido",
"welcome_message": "Bienvenido a Intaleq!",
- "welcome_to_siro": "welcome_to_intaleq",
+ "welcome_to_intaleq": "welcome_to_intaleq",
"whatsapp', phone1, 'Hello": "whatsapp', phone1, 'Hello",
"with license plate": "with license plate",
"with type": "con tipo",
@@ -2590,7 +2589,7 @@ final Map es = {
"you must insert token code": "you must insert token code",
"you must insert token code ": "you must insert token code ",
"you will pay to Driver": "pagarás al conductor",
- "you will pay to Driver you will be pay the cost of driver time look to your Siro Wallet": "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet",
+ "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet",
"you will use this device?": "you will use this device?",
"your ride is Accepted": "tu viaje ha sido aceptado",
"your ride is applied": "tu viaje ha sido aplicado",
diff --git a/intaleq_driver/lib/controller/local/fa.dart b/intaleq_driver/lib/controller/local/fa.dart
index d098210..4db76f8 100644
--- a/intaleq_driver/lib/controller/local/fa.dart
+++ b/intaleq_driver/lib/controller/local/fa.dart
@@ -18,8 +18,8 @@ final Map fa = {
"\${\"You must leave at least": "\${\"You must leave at least",
"\${\"amount": "\${\"amount",
"\${\"transaction_id": "\${\"transaction_id",
- "\${'*Siro APP CODE*": "\${'*Intaleq APP CODE*",
- "\${'*Siro DRIVER CODE*": "\${'*Intaleq DRIVER CODE*",
+ "\${'*Intaleq APP CODE*": "\${'*Intaleq APP CODE*",
+ "\${'*Intaleq DRIVER CODE*": "\${'*Intaleq DRIVER CODE*",
"\${'Address": "\${'Address",
"\${'Address: ": "\${'Address: ",
"\${'Age": "\${'Age",
@@ -117,8 +117,8 @@ final Map fa = {
"([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string",
"([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string",
")[1]}": ")[1]}",
- "*Siro APP CODE*": "*Intaleq APP CODE*",
- "*Siro DRIVER CODE*": "*Intaleq DRIVER CODE*",
+ "*Intaleq APP CODE*": "*Intaleq APP CODE*",
+ "*Intaleq DRIVER CODE*": "*Intaleq DRIVER CODE*",
"--": "--",
"-1% commission": "-1% commission",
"-2% commission": "-2% commission",
@@ -540,7 +540,7 @@ final Map fa = {
"Day Off": "Day Off",
"Day Streak": "Day Streak",
"Days": "روزها",
- "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Siro app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nSiro ,": "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,",
+ "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,": "Dear ,\\n🚀 I have just started an exciting trip and I would like to share the details of my journey and my current location with you in real-time! Please download the Intaleq app. It will allow you to view my trip details and my latest location.\\n👉 Download link:\\nAndroid [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\niOS [https://getapp.cc/app/6458734951]\\nI look forward to keeping you close during my adventure!\\nIntaleq ,",
"Debit": "Debit",
"Debit Card": "Debit Card",
"Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024",
@@ -580,8 +580,8 @@ final Map fa = {
"Don't have an account? Register": "Don't have an account? Register",
"Done": "انجام شد",
"Don’t forget your personal belongings.": "وسایل شخصی خود را جا نگذارید.",
- "Download the Siro Driver app now and earn rewards!": "Download the Intaleq Driver app now and earn rewards!",
- "Download the Siro app now and enjoy your ride!": "Download the Intaleq app now and enjoy your ride!",
+ "Download the Intaleq Driver app now and earn rewards!": "Download the Intaleq Driver app now and earn rewards!",
+ "Download the Intaleq app now and enjoy your ride!": "Download the Intaleq app now and enjoy your ride!",
"Download the app now:": "اپلیکیشن را دانلود کنید:",
"Drawing route on map...": "Drawing route on map...",
"Driver": "راننده",
@@ -703,7 +703,7 @@ final Map fa = {
"Evening": "عصر",
"Excellent": "Excellent",
"Exclusive offers and discounts always with the Sefer app": "Exclusive offers and discounts always with the Sefer app",
- "Exclusive offers and discounts always with the Siro app": "Exclusive offers and discounts always with the Intaleq app",
+ "Exclusive offers and discounts always with the Intaleq app": "Exclusive offers and discounts always with the Intaleq app",
"Exit": "Exit",
"Exit Ride?": "Exit Ride?",
"Expiration Date": "تاریخ انقضا",
@@ -750,8 +750,8 @@ final Map fa = {
"Flag-down fee": "ورودی",
"For Drivers": "برای رانندگان",
"For Egypt": "For Egypt",
- "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
- "For Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
+ "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
+ "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance",
"Free Call": "Free Call",
"Frequently Asked Questions": "سوالات متداول",
"Frequently Questions": "سوالات متداول",
@@ -773,7 +773,7 @@ final Map fa = {
"Get": "Get",
"Get Details of Trip": "دریافت جزئیات سفر",
"Get Direction": "مسیریابی",
- "Get a discount on your first Siro ride!": "Get a discount on your first Intaleq ride!",
+ "Get a discount on your first Intaleq ride!": "Get a discount on your first Intaleq ride!",
"Get features for your country": "Get features for your country",
"Get it Now!": "همین الان بگیر!",
"Get to your destination quickly and easily.": "سریع و آسان به مقصد برسید.",
@@ -838,7 +838,7 @@ final Map fa = {
"How much do you want to earn today?": "How much do you want to earn today?",
"How much longer will you be?": "How much longer will you be?",
"How to use App": "How to use App",
- "How to use Siro": "How to use Intaleq",
+ "How to use Intaleq": "How to use Intaleq",
"How was the passenger?": "How was the passenger?",
"How was your trip with": "How was your trip with",
"How would you like to receive your reward?": "How would you like to receive your reward?",
@@ -922,7 +922,7 @@ final Map fa = {
"IssueDate": "تاریخ صدور",
"JOD": "تومان",
"Join": "پیوستن",
- "Join Siro as a driver using my referral code!": "Join Intaleq as a driver using my referral code!",
+ "Join Intaleq as a driver using my referral code!": "Join Intaleq as a driver using my referral code!",
"Jordan": "اردن",
"Just now": "Just now",
"KM": "کیلومتر",
@@ -1144,7 +1144,7 @@ final Map fa = {
"Order Applied": "درخواست ثبت شد",
"Order Cancelled": "Order Cancelled",
"Order Cancelled by Passenger": "لغو توسط مسافر",
- "Order Details Siro": "Order Details Intaleq",
+ "Order Details Intaleq": "Order Details Intaleq",
"Order History": "تاریخچه سفارشها",
"Order ID": "Order ID",
"Order Request Page": "صفحه درخواست سفر",
@@ -1195,7 +1195,7 @@ final Map fa = {
"Pay using MTN Cash wallet": "Pay using MTN Cash wallet",
"Pay using Sham Cash wallet": "Pay using Sham Cash wallet",
"Pay using Syriatel mobile wallet": "Pay using Syriatel mobile wallet",
- "Pay via CliQ (Alias: siroapp)": "Pay via CliQ (Alias: intaleqapp)",
+ "Pay via CliQ (Alias: intaleqapp)": "Pay via CliQ (Alias: intaleqapp)",
"Pay with Credit Card": "پرداخت با کارت اعتباری",
"Pay with Debit Card": "Pay with Debit Card",
"Pay with Wallet": "پرداخت با کیف پول",
@@ -1287,7 +1287,7 @@ final Map fa = {
"Please help! Contact me as soon as possible.": "کمک! سریعاً تماس بگیرید.",
"Please make sure not to leave any personal belongings in the car.": "لطفاً مطمئن شوید هیچ وسیله شخصی در خودرو جا نماند.",
"Please make sure to read the license carefully.": "Please make sure to read the license carefully.",
- "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Siro app": "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app",
+ "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app": "Please make sure you have all your personal belongings and that any remaining fare, if applicable, has been added to your wallet before leaving. Thank you for choosing the Intaleq app",
"Please paste the transfer message": "Please paste the transfer message",
"Please provide details about any long-term diseases.": "Please provide details about any long-term diseases.",
"Please put your licence in these border": "گواهینامه را در کادر قرار دهید",
@@ -1297,7 +1297,7 @@ final Map fa = {
"Please select a ride before submitting.": "Please select a ride before submitting.",
"Please stay on the picked point.": "لطفاً در نقطه انتخاب شده بمانید.",
"Please tell us why you want to cancel.": "Please tell us why you want to cancel.",
- "Please transfer the amount to alias: siroapp": "Please transfer the amount to alias: intaleqapp",
+ "Please transfer the amount to alias: intaleqapp": "Please transfer the amount to alias: intaleqapp",
"Please try again in a few moments": "Please try again in a few moments",
"Please upload a clear photo of your face to be identified by passengers.": "Please upload a clear photo of your face to be identified by passengers.",
"Please upload all 4 required documents.": "Please upload all 4 required documents.",
@@ -1479,7 +1479,7 @@ final Map fa = {
"Send Email": "Send Email",
"Send Invite": "ارسال دعوتنامه",
"Send Message": "Send Message",
- "Send Siro app to him": "Send Intaleq app to him",
+ "Send Intaleq app to him": "Send Intaleq app to him",
"Send Verfication Code": "ارسال کد تأیید",
"Send Verification Code": "ارسال کد تأیید",
"Send WhatsApp Message": "Send WhatsApp Message",
@@ -1533,34 +1533,34 @@ final Map fa = {
"Sign in with Google for easier email and name entry": "ورود با گوگل برای سهولت",
"Sign in with a provider for easy access": "Sign in with a provider for easy access",
"Silver badge": "Silver badge",
- "Siro": "Intaleq",
- "Siro Balance": "Intaleq Balance",
- "Siro DRIVER CODE": "Intaleq DRIVER CODE",
- "Siro Driver": "Intaleq Driver",
- "Siro LLC": "Intaleq LLC",
- "Siro LLC\\n\${'Syria": "Intaleq LLC\\n\${'Syria",
- "Siro LLC\\n\\\${'Syria": "Intaleq LLC\\n\\\${'Syria",
- "Siro Order": "Intaleq Order",
- "Siro Over": "Intaleq Over",
- "Siro Reminder": "Intaleq Reminder",
- "Siro Wallet": "Intaleq Wallet",
- "Siro Wallet Features:": "Intaleq Wallet Features:",
- "Siro is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:",
- "Siro is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:",
- "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.",
- "Siro is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.",
- "Siro is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq is the ride-hailing app that is safe, reliable, and accessible.",
- "Siro is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Siro, you enjoy quality, safety, and peace of mind—every time you ride.": "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.",
- "Siro is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.": "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.",
- "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.",
- "Siro offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.": "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.",
- "Siro offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.",
- "Siro offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.": "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.",
- "Siro prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.",
- "Siro provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.",
- "Siro's Response": "Intaleq's Response",
- "Siro123": "Intaleq123",
- "Siro: For fixed salary and endpoints.": "Intaleq: For fixed salary and endpoints.",
+ "Intaleq": "Intaleq",
+ "Intaleq Balance": "Intaleq Balance",
+ "Intaleq DRIVER CODE": "Intaleq DRIVER CODE",
+ "Intaleq Driver": "Intaleq Driver",
+ "Intaleq LLC": "Intaleq LLC",
+ "Intaleq LLC\\n\${'Syria": "Intaleq LLC\\n\${'Syria",
+ "Intaleq LLC\\n\\\${'Syria": "Intaleq LLC\\n\\\${'Syria",
+ "Intaleq Order": "Intaleq Order",
+ "Intaleq Over": "Intaleq Over",
+ "Intaleq Reminder": "Intaleq Reminder",
+ "Intaleq Wallet": "Intaleq Wallet",
+ "Intaleq Wallet Features:": "Intaleq Wallet Features:",
+ "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\nHere are some of the key features that set us apart:",
+ "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:": "Intaleq is a ride-sharing app designed with your safety and affordability in mind. We connect you with reliable drivers in your area, ensuring a convenient and stress-free travel experience.\\n\\nHere are some of the key features that set us apart:",
+ "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.",
+ "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.",
+ "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq is the ride-hailing app that is safe, reliable, and accessible.",
+ "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.": "Intaleq is the safest and most reliable ride-sharing app designed especially for passengers in Syria. We provide a comfortable, respectful, and affordable riding experience with features that prioritize your safety and convenience. Our trusted captains are verified, insured, and supported by regular car maintenance carried out by top engineers. We also offer on-road support services to make sure every trip is smooth and worry-free. With Intaleq, you enjoy quality, safety, and peace of mind—every time you ride.",
+ "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.": "Intaleq is the safest ride-sharing app that introduces many features for both captains and passengers. We offer the lowest commission rate of just 8%, ensuring you get the best value for your rides. Our app includes insurance for the best captains, regular maintenance of cars with top engineers, and on-road services to ensure a respectful and high-quality experience for all users.",
+ "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.",
+ "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.": "Intaleq offers a variety of vehicle options to suit your needs, including economy, comfort, and luxury. Choose the option that best fits your budget and passenger count.",
+ "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.",
+ "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.": "Intaleq offers various safety features including driver verification, in-app trip tracking, emergency contact options, and the ability to share your trip status with trusted contacts.",
+ "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.",
+ "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.",
+ "Intaleq's Response": "Intaleq's Response",
+ "Intaleq123": "Intaleq123",
+ "Intaleq: For fixed salary and endpoints.": "Intaleq: For fixed salary and endpoints.",
"Slide to End Trip": "Slide to End Trip",
"So go and gain your money": "So go and gain your money",
"Social Butterfly": "Social Butterfly",
@@ -1590,7 +1590,7 @@ final Map fa = {
"Status": "Status",
"Status is": "Status is",
"Stay": "Stay",
- "Step-by-step instructions on how to request a ride through the Siro app.": "Step-by-step instructions on how to request a ride through the Intaleq app.",
+ "Step-by-step instructions on how to request a ride through the Intaleq app.": "Step-by-step instructions on how to request a ride through the Intaleq app.",
"Stop": "Stop",
"Store your money with us and receive it in your bank as a monthly salary.": "Store your money with us and receive it in your bank as a monthly salary.",
"Submission Failed": "Submission Failed",
@@ -1710,8 +1710,8 @@ final Map fa = {
"To become a driver, you must review and agree to the": "To become a driver, you must review and agree to the",
"To become a driver, you must review and agree to the ": "To become a driver, you must review and agree to the ",
"To become a passenger, you must review and agree to the": "To become a passenger, you must review and agree to the",
- "To become a ride-sharing driver on the Siro app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Siro app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
- "To become a ride-sharing driver on the Siro app...": "To become a ride-sharing driver on the Intaleq app...",
+ "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.": "To become a ride-sharing driver on the Intaleq app, you need to upload your driver's license, ID document, and car registration document. Our AI system will instantly review and verify their authenticity in just 2-3 minutes. If your documents are approved, you can start working as a driver on the Intaleq app. Please note, submitting fraudulent documents is a serious offense and may result in immediate termination and legal consequences.",
+ "To become a ride-sharing driver on the Intaleq app...": "To become a ride-sharing driver on the Intaleq app...",
"To change Language the App": "To change Language the App",
"To change some Settings": "برای تغییر برخی تنظیمات",
"To display orders instantly, please grant permission to draw over other apps.": "To display orders instantly, please grant permission to draw over other apps.",
@@ -1719,7 +1719,7 @@ final Map fa = {
"To ensure you receive the most accurate information for your location, please select your country below. This will help tailor the app experience and content to your country.": "لطفاً کشور خود را انتخاب کنید تا اطلاعات دقیق دریافت کنید.",
"To get a gift for both": "To get a gift for both",
"To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "برای ارائه بهترین خدمات، باید بدانیم کجا هستید. موقعیت شما برای یافتن رانندگان نزدیک استفاده میشود.",
- "To register as a driver or learn about the requirements, please visit our website or contact Siro support directly.": "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.",
+ "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.",
"To use Wallet charge it": "برای استفاده از کیف پول آن را شارژ کنید",
"Today": "Today",
"Today Overview": "Today Overview",
@@ -1809,7 +1809,7 @@ final Map fa = {
"Type your Email": "ایمیل خود را وارد کنید",
"Type your message": "پیام خود را بنویسید",
"Type your message...": "Type your message...",
- "Types of Trips in Siro:": "Types of Trips in Intaleq:",
+ "Types of Trips in Intaleq:": "Types of Trips in Intaleq:",
"USA": "آمریکا",
"Uncompromising Security": "امنیت بی چون و چرا",
"Unknown": "Unknown",
@@ -1868,7 +1868,7 @@ final Map fa = {
"View your past transactions": "مشاهده تراکنشهای قبلی",
"Visa": "Visa",
"Visit Website/Contact Support": "مشاهده وبسایت / تماس با پشتیبانی",
- "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Intaleq support for information on driver registration and requirements.",
+ "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Visit our website or contact Intaleq support for information on driver registration and requirements.",
"Voice Calling": "Voice Calling",
"Voice call over internet": "Voice call over internet",
"Wait for timer": "Wait for timer",
@@ -1891,7 +1891,7 @@ final Map fa = {
"Wallet is blocked": "کیف پول مسدود شده است",
"Wallet!": "کیف پول!",
"Warning": "Warning",
- "Warning: Siroing detected!": "Warning: Intaleqing detected!",
+ "Warning: Intaleqing detected!": "Warning: Intaleqing detected!",
"Warning: Speeding detected!": "هشدار: سرعت غیرمجاز تشخیص داده شد!",
"We Are Sorry That we dont have cars in your Location!": "متاسفیم، در موقعیت شما خودرویی نداریم!",
"We are looking for a captain but the price may increase to let a captain accept": "We are looking for a captain but the price may increase to let a captain accept",
@@ -1901,8 +1901,7 @@ final Map fa = {
"We are searching for the nearest driver": "جستجوی نزدیکترین راننده",
"We are searching for the nearest driver to you": "در حال جستجو برای نزدیکترین راننده به شما",
"We connect you with the nearest drivers for faster pickups and quicker journeys.": "ما شما را به نزدیکترین رانندگان متصل میکنیم.",
- "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Siro app and be part of our Siro family.": "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.",
- "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Tripz app and be part of our Tripz family.": "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Tripz app and be part of our Tripz family.",
+ "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.": "We have maintenance offers for your car. You can use them after completing 600 trips to get a 20% discount on car repairs. Enjoy using our Intaleq app and be part of our Intaleq family.",
"We have partnered with health insurance providers to offer you special health coverage. Complete 500 trips and receive a 20% discount on health insurance premiums.": "We have partnered with health insurance providers to offer you special health coverage. Complete 500 trips and receive a 20% discount on health insurance premiums.",
"We have received your application to join us as a driver. Our team is currently reviewing it. Thank you for your patience.": "We have received your application to join us as a driver. Our team is currently reviewing it. Thank you for your patience.",
"We have sent a verification code to your mobile number:": "ما یک کد تأیید به شماره موبایل شما ارسال کردیم:",
@@ -1911,7 +1910,7 @@ final Map fa = {
"We need your location to find nearby drivers for pickups and drop-offs.": "We need your location to find nearby drivers for pickups and drop-offs.",
"We need your phone number to contact you and to help you receive orders.": "برای دریافت سفارشات به شماره تلفن نیاز داریم.",
"We need your phone number to contact you and to help you.": "برای تماس و کمک به شما به شماره تلفن نیاز داریم.",
- "We noticed the Siro is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.": "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.",
+ "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.": "We noticed the Intaleq is exceeding 100 km/h. Please slow down for your safety. If you feel unsafe, you can share your trip details with a contact or call the police using the red SOS button.",
"We regret to inform you that another driver has accepted this order.": "متاسفیم، راننده دیگری این درخواست را پذیرفته است.",
"We search nearst Driver to you": "جستجوی نزدیکترین راننده",
"We sent 5 digit to your Email provided": "کد ۵ رقمی به ایمیل شما ارسال شد",
@@ -1929,12 +1928,12 @@ final Map